Merge branch 'master' of github.com:apache/tomee-site-generator into new-home-page
diff --git a/pom.xml b/pom.xml
index bebefcf..38bf22d 100755
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
   <name>Apache TomEE :: WebSite NG</name>
 
   <properties>
-    <tomee.version>7.0.3</tomee.version>
+    <tomee.version>8.0.6</tomee.version>
     <jbake.http>false</jbake.http>
     <jbake.pdf>false</jbake.pdf>
 
@@ -38,23 +38,28 @@
     </dependency>
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
-      <artifactId>geronimo-json_1.0_spec</artifactId>
-      <version>1.0-alpha-1</version>
+      <artifactId>geronimo-json_1.1_spec</artifactId>
+      <version>1.5</version>
     </dependency>
     <dependency>
       <groupId>org.apache.johnzon</groupId>
       <artifactId>johnzon-jaxrs</artifactId>
-      <version>0.9.5</version>
+      <version>1.2.11</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.johnzon</groupId>
+      <artifactId>johnzon-jsonb</artifactId>
+      <version>1.2.11</version>
     </dependency>
     <dependency>
       <groupId>org.apache.cxf</groupId>
       <artifactId>cxf-rt-rs-client</artifactId>
-      <version>3.1.8</version>
+      <version>3.4.3</version>
     </dependency>
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>javaee-api</artifactId>
-      <version>7.0-1</version>
+      <version>8.0-5</version>
     </dependency>
     <dependency>
       <groupId>org.apache.tomee</groupId>
diff --git a/src/main/java/org/apache/tomee/website/Contributors.java b/src/main/java/org/apache/tomee/website/Contributors.java
deleted file mode 100755
index fb4d0bf..0000000
--- a/src/main/java/org/apache/tomee/website/Contributors.java
+++ /dev/null
@@ -1,222 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.tomee.website;
-
-import lombok.Builder;
-import lombok.Data;
-import org.apache.johnzon.jaxrs.JohnzonProvider;
-
-import javax.net.ssl.HttpsURLConnection;
-import javax.ws.rs.client.ClientBuilder;
-import javax.ws.rs.client.WebTarget;
-import javax.ws.rs.core.MediaType;
-import javax.ws.rs.core.Response;
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.StringReader;
-import java.io.UnsupportedEncodingException;
-import java.security.MessageDigest;
-import java.security.NoSuchAlgorithmException;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.List;
-import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Executors;
-import java.util.concurrent.TimeUnit;
-import java.util.stream.Stream;
-
-import static java.util.Collections.emptyList;
-import static java.util.Optional.ofNullable;
-import static java.util.stream.Collectors.toList;
-
-public class Contributors {
-    private static final String GRAVATAR_BASE = "http://fr.gravatar.com/";
-
-    private Contributors() {
-        // no-op
-    }
-
-    public static Contributor singleLoad(final WebTarget target, final String input) throws IOException {
-        try {
-            return ofNullable(loadGravatar(target, input)).orElse(loadStatic(input));
-        } catch (Exception e) {
-            e.printStackTrace();
-            return loadStatic(input);
-        }
-    }
-
-    public static Contributor loadStatic(final String input) {
-        final String[] strings = input.split(" *\\| *");
-        final String mail = strings[0].replaceAll("\\*$", "");
-        final boolean committer = strings[0].endsWith("*");
-        final String name = strings.length > 1 ? strings[1] : mail.replaceAll("@.*", "");
-        final String picture = strings.length > 2 ? strings[2] : "../img/noimg.png";
-        return Contributor.builder()
-                .name(name)
-                .id(mail)
-                .committer(committer)
-                .gravatar(picture)
-                .build();
-    }
-
-    public static Contributor loadGravatar(final WebTarget target, final String input) throws IOException {
-        final String[] strings = input.split(" *\\| *");
-        final boolean committer = strings[0].endsWith("*");
-        final String mail = committer ? strings[0].substring(0, strings[0].length() - 1) : strings[0];
-        final String hash = gravatarHash(mail);
-        final Response gravatar = target.path(hash + ".json").request(MediaType.APPLICATION_JSON_TYPE).get();
-        if (gravatar.getStatus() != HttpsURLConnection.HTTP_OK) {
-            System.err.println("[ERROR] No gravatar for " + mail);
-            return null;
-        }
-        final Contributor contributor = ofNullable(gravatar.readEntity(Gravatar.class).getEntry())
-                .map(e -> e[0])
-                .map(e -> Contributor.builder()
-                        .id(e.getId())
-                        .name(
-                                ofNullable(e.getName())
-                                        .map(n -> ofNullable(n.getFormatted()).orElse(ofNullable(n.getGivenName()).orElse("") + ofNullable(n.getFamilyName()).orElse("")))
-                                        .orElseGet(() -> ofNullable(e.getDisplayName()).orElse(ofNullable(e.getPreferredUsername()).orElse(mail))))
-                        .description(e.getAboutMe())
-                        .link(
-                                Stream.concat(
-                                        ofNullable(e.getAccounts())
-                                                .map(a -> Stream.of(a).map(l -> Link.builder().name(l.getShortname()).url(l.getUrl()).build()).collect(toList()))
-                                                .orElse(emptyList()).stream(),
-                                        ofNullable(e.getUrls())
-                                                .map(a -> Stream.of(a).map(l -> Link.builder().name(l.getTitle()).url(l.getValue()).build()).collect(toList()))
-                                                .orElse(emptyList()).stream())
-                                        .collect(toList()))
-                        .gravatar("http://www.gravatar.com/avatar/" + hash + "?s=140")
-                        .build())
-                .orElse(Contributor.builder().name(mail).id(mail).build());
-        contributor.setCommitter(committer);
-        ofNullable(contributor.getLink()).ifPresent(l -> Collections.sort(l, (o1, o2) -> o1.getName().compareTo(o2.getName())));
-        return contributor;
-    }
-
-    public static Collection<Contributor> load(final String contributorsList) throws IOException { // used in page.gsp
-        final WebTarget target = ClientBuilder.newClient().register(new JohnzonProvider()).target(GRAVATAR_BASE);
-        final List<Contributor> contributors = new ArrayList<>();
-        final ExecutorService es = Executors.newFixedThreadPool(16);
-        final String rawList = contributorsList.substring(contributorsList.indexOf("<pre>") + "<pre>".length(), contributorsList.indexOf("</pre>"));
-        try (final BufferedReader reader = new BufferedReader(new StringReader(rawList))) {
-            String line;
-            while ((line = reader.readLine()) != null) {
-                line = line.trim();
-                if (line.isEmpty() || line.startsWith("#")) {
-                    continue;
-                }
-                final String mail = line;
-                es.submit(() -> {
-                    Contributor contributor = null;
-                    try {
-                        contributor = singleLoad(target, mail);
-                    } catch (final IOException e) {
-                        throw new IllegalStateException(e);
-                    }
-                    if (contributor != null) {
-                        synchronized (contributors) {
-                            contributors.add(contributor);
-                        }
-                    }
-                });
-            }
-        }
-        es.shutdown();
-        try {
-            es.awaitTermination(30, TimeUnit.MINUTES);
-        } catch (final InterruptedException e) {
-            Thread.interrupted();
-            return Collections.emptyList();
-        }
-        Collections.sort(contributors, (o1, o2) -> o1.name.compareTo(o2.id));
-        return contributors;
-    }
-
-    private static String gravatarHash(final String mail) {
-        try {
-            final MessageDigest md = MessageDigest.getInstance("MD5");
-            byte[] cp1252s = md.digest(mail.getBytes("CP1252"));
-            final StringBuilder sb = new StringBuilder();
-            for (final byte anArray : cp1252s) {
-                sb.append(Integer.toHexString((anArray & 0xFF) | 0x100).substring(1, 3));
-            }
-            return sb.toString();
-        } catch (final NoSuchAlgorithmException | UnsupportedEncodingException e) {
-            throw new IllegalStateException(e);
-        }
-    }
-
-    @Data
-    @Builder
-    public static class Link {
-        private String name;
-        private String url;
-    }
-
-    @Data
-    @Builder
-    public static class Contributor {
-        private String id;
-        private boolean committer;
-        private String name;
-        private String description;
-        private String gravatar;
-        private List<Link> link;
-    }
-
-    @Data
-    public static class GravatarName {
-        private String formatted;
-        private String givenName;
-        private String familyName;
-    }
-
-    @Data
-    public static class GravatarUrl {
-        private String value;
-        private String title;
-    }
-
-    @Data
-    public static class GravatarAccount {
-        private String shortname;
-        private String url;
-    }
-
-    @Data
-    public static class Gravatar {
-        private GravatarEntry[] entry;
-    }
-
-    @Data
-    public static class GravatarEntry {
-        private String id;
-        private String hash;
-        private String aboutMe;
-        private String requestHash;
-        private String profileUrl;
-        private String preferredUsername;
-        private String thumbnailUrl;
-        private GravatarName name;
-        private GravatarUrl[] urls;
-        private GravatarAccount[] accounts;
-        private String displayName;
-    }
-}
diff --git a/src/main/java/org/apache/tomee/website/GitHubContributors.java b/src/main/java/org/apache/tomee/website/GitHubContributors.java
new file mode 100644
index 0000000..075a0e1
--- /dev/null
+++ b/src/main/java/org/apache/tomee/website/GitHubContributors.java
@@ -0,0 +1,74 @@
+package org.apache.tomee.website;
+
+import lombok.Data;
+import org.json.JSONArray;
+import org.json.JSONObject;
+import org.tomitribe.util.IO;
+
+import java.io.IOException;
+import java.net.URL;
+import java.util.ArrayList;
+import java.util.List;
+
+public class GitHubContributors {
+
+    protected static final String BASE_URL = "https://api.github.com/repos/apache/tomee/contributors";
+
+    /*
+     * Can be used to retrieve an up 2 date list of contributors via the GitHub API
+     * The output of this class can be pasted into /src/main/jbake/content/community/contributors.adoc
+     */
+    public static void main(String[] args) throws IOException {
+
+        final List<Contributor> contributorList = GitHubContributors.fillContributors();
+
+        for (Contributor c : contributorList) {
+            System.out.println(c);
+        }
+    }
+
+
+    public static List<Contributor> fillContributors() throws IOException {
+        final List<Contributor> contributorList = new ArrayList<>();
+
+        boolean hasPagesLeft = true;
+
+        int currentPage = 1;
+        while (hasPagesLeft) {
+            final String content = IO.slurp(new URL(BASE_URL + "?per_page=100&page=" + currentPage));
+            final JSONArray contributors = new JSONArray(content);
+
+            if (contributors.length() == 0) {
+                hasPagesLeft = false;
+            } else {
+                for (int i = 0; i < contributors.length(); i++) {
+
+                    JSONObject c = contributors.getJSONObject(i);
+
+                    contributorList.add(new Contributor(
+                            c.getString("id"),
+                            c.getString("login"),
+                            c.getString("avatar_url"),
+                            c.getString("html_url"),
+                            c.getLong("contributions")));
+                }
+            }
+            currentPage++;
+        }
+        return contributorList;
+    }
+
+    @Data
+    public static class Contributor {
+        private final String id;
+        private final String name;
+        private final String avatar;
+        private final String url;
+        private final long contributions;
+
+        @Override
+        public String toString() {
+            return name + " | " + url + " | " + avatar;
+        }
+    }
+}
diff --git a/src/main/java/org/apache/tomee/website/contributors/Contributor.java b/src/main/java/org/apache/tomee/website/contributors/Contributor.java
new file mode 100644
index 0000000..0ff60aa
--- /dev/null
+++ b/src/main/java/org/apache/tomee/website/contributors/Contributor.java
@@ -0,0 +1,61 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import lombok.Builder;
+import lombok.Data;
+
+import java.util.List;
+import java.util.Map;
+import java.util.stream.Collectors;
+
+@Data
+@Builder
+public class Contributor {
+    private String id;
+    private boolean committer;
+    private String name;
+    private String github;
+    private String avatar;
+    private Stats stats;
+
+    public Contributor add(final Contributor that) {
+        return new Contributor(id, committer, name, github, avatar, stats.add(that.stats));
+    }
+
+    /**
+     * Take the specified list of Contributors, which may have duplicates, and
+     * combine each duplicate down to one Contributor instance while keeping a
+     * total of all their stats.
+     */
+    public static List<Contributor> unique(final List<Contributor> listWithDuplicates) {
+        final Map<String, List<Contributor>> map = listWithDuplicates.stream()
+                .collect(Collectors.groupingBy(Contributor::getName));
+
+        return map.values().stream()
+                .map(Contributor::reduce)
+                .collect(Collectors.toList());
+    }
+
+    private static Contributor reduce(final List<Contributor> instances) {
+        return instances.stream()
+                .reduce(Contributor::add)
+                .orElseThrow(IllegalStateException::new);
+    }
+
+
+}
diff --git a/src/main/java/org/apache/tomee/website/contributors/ContributorData.java b/src/main/java/org/apache/tomee/website/contributors/ContributorData.java
new file mode 100644
index 0000000..ccea200
--- /dev/null
+++ b/src/main/java/org/apache/tomee/website/contributors/ContributorData.java
@@ -0,0 +1,106 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import lombok.AllArgsConstructor;
+import lombok.Builder;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+
+import javax.json.bind.annotation.JsonbProperty;
+import java.util.List;
+
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@Builder
+@EqualsAndHashCode(onlyExplicitlyIncluded = true)
+public class ContributorData {
+
+    @JsonbProperty("total")
+    private int total;
+
+    @JsonbProperty("author")
+    private Author author;
+
+    @JsonbProperty("weeks")
+    private List<Week> weeks;
+
+    public Stats getStats() {
+        return weeks.stream()
+                .map(week -> new Stats(week.c, week.a, week.d))
+                .reduce(Stats::add)
+                .orElse(new Stats(0, 0, 0));
+    }
+
+    /**
+     * Convert the ContributorData to a Contributor instance
+     */
+    public Contributor asContributor() {
+        final ContributorData.Author author = this.getAuthor();
+
+        return Contributor.builder()
+                .id(author.getId() + "")
+                .name(author.getLogin())
+                .github("https://github.com/" + author.getLogin())
+                .avatar("https://avatars.githubusercontent.com/u/" + author.getId() + "?v=4")
+                .stats(this.getStats())
+                .build();
+    }
+
+    @Data
+    @NoArgsConstructor
+    @AllArgsConstructor
+    @Builder
+    @EqualsAndHashCode(onlyExplicitlyIncluded = true)
+    public static class Author {
+        @JsonbProperty("id")
+        private int id;
+
+        @JsonbProperty("login")
+        private String login;
+
+        @JsonbProperty("avatar")
+        private String avatar;
+
+        @JsonbProperty("path")
+        private String path;
+
+        @JsonbProperty("hovercard_url")
+        private String hovercardUrl;
+    }
+
+    @Data
+    @NoArgsConstructor
+    @AllArgsConstructor
+    @Builder
+    @EqualsAndHashCode(onlyExplicitlyIncluded = true)
+    public static class Week {
+        @JsonbProperty("w")
+        private long w;
+
+        @JsonbProperty("a")
+        private int a;
+
+        @JsonbProperty("d")
+        private int d;
+
+        @JsonbProperty("c")
+        private int c;
+    }
+}
diff --git a/src/main/java/org/apache/tomee/website/contributors/Contributors.java b/src/main/java/org/apache/tomee/website/contributors/Contributors.java
new file mode 100755
index 0000000..1c26dee
--- /dev/null
+++ b/src/main/java/org/apache/tomee/website/contributors/Contributors.java
@@ -0,0 +1,118 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.StringReader;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.Comparator;
+import java.util.List;
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+import java.util.concurrent.TimeUnit;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+public class Contributors {
+    private static final Logger log = Logger.getLogger(Github.class.getName());
+
+    private Contributors() {
+        // no-op
+    }
+
+    public static Contributor loadStatic(final String input) {
+        final String[] strings = input.split(" *\\| *");
+        final String name = strings.length > 0 ? strings[0] : "";
+        final String github = strings.length > 1 ? strings[1] : "";
+        final String picture = strings.length > 2 ? strings[2] : "../img/noimg.png";
+        return Contributor.builder()
+                .name(name)
+                .id(name)
+                .avatar(picture)
+                .github(github)
+                .build();
+    }
+
+    public static Collection<Contributor> load(final String contributorsList) throws IOException { // used in page.gsp
+        /*
+         * Try getting the full list from Github across all repositories
+         */
+        try {
+            final List<Contributor> contributors = new Github().getContributors();
+            return sort(contributors);
+        } catch (Exception e) {
+            log.log(Level.SEVERE, "Unable to fetch contributors from github.com", e);
+        }
+
+        /*
+         * Fallback to our cached list
+         */
+        final List<Contributor> contributors = new ArrayList<>();
+        final ExecutorService es = Executors.newFixedThreadPool(16);
+        final String rawList = contributorsList.substring(contributorsList.indexOf("<pre>") + "<pre>".length(), contributorsList.indexOf("</pre>"));
+        try (final BufferedReader reader = new BufferedReader(new StringReader(rawList))) {
+            String line;
+            while ((line = reader.readLine()) != null) {
+                line = line.trim();
+                if (line.isEmpty() || line.startsWith("#")) {
+                    continue;
+                }
+                final String mail = line;
+                es.submit(() -> {
+                    Contributor contributor = null;
+                    contributor = loadStatic(mail);
+                    synchronized (contributors) {
+                        contributors.add(contributor);
+                    }
+                });
+            }
+        }
+        es.shutdown();
+        try {
+            es.awaitTermination(30, TimeUnit.MINUTES);
+        } catch (final InterruptedException e) {
+            Thread.interrupted();
+            return Collections.emptyList();
+        }
+        Collections.sort(contributors, Comparator.comparing(Contributor::getName));
+        return contributors;
+    }
+
+    public static List<Contributor> sort(final List<Contributor> list) {
+        final Stats max = list.stream()
+                .map(Contributor::getStats)
+                .reduce(Stats::max)
+                .orElse(new Stats(0, 0, 0));
+
+        list.sort(Comparator.<Contributor, Integer>comparing(contributor -> max.score(contributor.getStats())).reversed());
+
+        final boolean debug = false;
+        if (debug){
+            for (final Contributor contributor : list) {
+                final Stats stats = contributor.getStats();
+                System.out.printf("Contributor: %-7s %-20s %5s %7s %7s%n",
+                        max.score(contributor.getStats()), contributor.getName(),
+                        stats.getCommits(), stats.getLinesAdded(),
+                        stats.getLinesRemoved());
+            }
+        }
+        return list;
+    }
+}
\ No newline at end of file
diff --git a/src/main/java/org/apache/tomee/website/contributors/Github.java b/src/main/java/org/apache/tomee/website/contributors/Github.java
new file mode 100644
index 0000000..33ed5ff
--- /dev/null
+++ b/src/main/java/org/apache/tomee/website/contributors/Github.java
@@ -0,0 +1,130 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import org.apache.johnzon.jaxrs.JohnzonProvider;
+import org.apache.openejb.loader.IO;
+import org.tomitribe.swizzle.stream.StreamBuilder;
+
+import javax.json.bind.Jsonb;
+import javax.json.bind.JsonbBuilder;
+import javax.ws.rs.client.Client;
+import javax.ws.rs.client.ClientBuilder;
+import javax.ws.rs.client.WebTarget;
+import javax.ws.rs.core.Response;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.UncheckedIOException;
+import java.net.URI;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+import java.util.logging.Logger;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+public class Github {
+
+    private static final Logger log = Logger.getLogger(Github.class.getName());
+    private final Client client = ClientBuilder.newClient().register(new JohnzonProvider<>());
+
+    public List<Contributor> getContributors() {
+        final List<URI> repositoryURIs = getRepositoryURIs();
+        final List<Contributor> list = repositoryURIs.stream()
+                .map(this::getContributorsForRepository)
+                .flatMap(Collection::stream)
+                .collect(Collectors.toList());
+
+        return Contributor.unique(list);
+    }
+
+    /**
+     * List all the repositories for Apache TomEE
+     */
+    public List<URI> getRepositoryURIs() {
+        try {
+            final WebTarget github = client.target("https://github.com");
+            final String content = github.path("/apache").queryParam("q", "tomee").request().get(String.class);
+            final List<String> links = new ArrayList<String>();
+            StreamBuilder.create(IO.read(content))
+                    .watch("href=\"/apache/tomee", "\"", links::add)
+                    .run();
+
+            return links.stream()
+                    .filter(s -> !s.contains("/"))
+                    .filter(s -> !s.equals("-site-pub"))
+                    .distinct()
+                    .map(s -> "https://github.com/apache/tomee" + s)
+                    .map(URI::create)
+                    .collect(Collectors.toList());
+        } catch (IOException e) {
+            throw new UncheckedIOException("Unable to list TomEE repositories", e);
+        }
+    }
+
+    /**
+     * Get the contributor-data json for the specified repository
+     */
+    private List<Contributor> getContributorsForRepository(final URI repositoryUri) {
+        final Response response = client.target(repositoryUri.toASCIIString())
+                .path("graphs/contributors-data")
+                .request()
+                .header("referer", repositoryUri.toASCIIString() + "/graphs/contributors")
+                .header("authority", "github.com")
+                .header("pragma", "no-cache")
+                .header("cache-control", "no-cache")
+                .header("sec-ch-ua", "\" Not A;Brand\";v=\"99\", \"Chromium\";v=\"90\", \"Google Chrome\";v=\"90\"")
+                .header("accept", "application/json")
+                .header("sec-ch-ua-mobile", "?0")
+                .header("user-agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36")
+                .header("sec-fetch-site", "same-origin")
+                .header("sec-fetch-mode", "cors")
+                .header("sec-fetch-dest", "empty")
+                .header("accept-language", "en-US,en;q=0.9,es;q=0.8")
+                .get();
+
+        if (response.getStatus() != 200) {
+            log.severe("Unexpected status from " + repositoryUri + ": " + response.getStatus());
+            return Collections.EMPTY_LIST;
+        }
+
+        if (!response.getHeaderString("content-type").startsWith("application/json")) {
+            log.severe("Unexpected content-type from " + repositoryUri + ": " + response.getHeaderString("content-type"));
+            return Collections.EMPTY_LIST;
+        }
+        
+        final String json;
+        try {
+            json = IO.slurp((InputStream) response.getEntity());
+        } catch (IOException e) {
+            throw new UncheckedIOException("Unable to read response from " + repositoryUri, e);
+        }
+        
+        final ContributorData[] data;
+        try {
+            final Jsonb jsonb = JsonbBuilder.create();
+            data = jsonb.fromJson(json, ContributorData[].class);
+        } catch (final Exception e) {
+            throw new IllegalStateException("Unable to unmarshal response from " + repositoryUri + "\n\n" + json, e);
+        }
+        return Stream.of(data)
+                .map(ContributorData::asContributor)
+                .collect(Collectors.toList());
+    }
+
+}
diff --git a/src/main/java/org/apache/tomee/website/contributors/Stats.java b/src/main/java/org/apache/tomee/website/contributors/Stats.java
new file mode 100644
index 0000000..447c7e0
--- /dev/null
+++ b/src/main/java/org/apache/tomee/website/contributors/Stats.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import lombok.Data;
+
+/**
+ * We add a contributor's commits, lines added and lines removed together
+ * across all repos to create an overall score that is used to sort contributors.
+ */
+@Data
+@lombok.Builder(builderClassName = "Builder", toBuilder = true)
+public class Stats {
+    private final int commits;
+    private final int linesAdded;
+    private final int linesRemoved;
+
+    /**
+     * Aggregate the stats from one git repo with the same
+     * contributors stats on another repo
+     */
+    public Stats add(final Stats that) {
+        return new Stats(
+                this.commits + that.commits,
+                this.linesAdded + that.linesAdded,
+                this.linesRemoved + that.linesRemoved);
+    }
+
+    public Stats max(final Stats that) {
+        return new Stats(
+                Math.max(this.commits, that.commits),
+                Math.max(this.linesAdded, that.linesAdded),
+                Math.max(this.linesRemoved, that.linesRemoved));
+    }
+
+    /**
+     * Assumes this instance of Stats holds the max (highest)
+     * possible values for commits, lines added, and lines removed.
+     *
+     * The passed in stats will be evaluated against these numbers
+     * a percentage (0-100) will be returned.  The return value is
+     * intentionally an int so it can easily be used for sorting.
+     */
+    public int score(final Stats that) {
+        final double commitsPercentage = that.commits / (double) this.commits;
+        final double linesAddedPercentage = that.linesAdded / (double) this.linesAdded;
+        final double linesRemovedPercentage = that.linesRemoved / (double) this.linesRemoved;
+        final double average = (commitsPercentage + linesAddedPercentage + linesRemovedPercentage) / 3;
+
+        return (int) Math.round(average * 1000000);
+    }
+}
diff --git a/src/main/jbake/assets/.htaccess b/src/main/jbake/assets/.htaccess
new file mode 100644
index 0000000..dcad3d0
--- /dev/null
+++ b/src/main/jbake/assets/.htaccess
@@ -0,0 +1,162 @@
+# Redirect visitors from HTTP to HTTPS
+RewriteEngine On
+RewriteCond %{HTTPS} off
+RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
+
+# Index config
+DirectoryIndex index.html README.html
+
+# Legacy redirects
+Redirect permanent /builds.html                 https://tomee.apache.org/download.html
+Redirect permanent /tomcat.html                 https://tomee.apache.org/apache-tomee.html
+Redirect permanent /3.0/tomcat.html             https://tomee.apache.org/apache-tomee.html
+Redirect permanent /3.0/apache-tomee.html       https://tomee.apache.org/apache-tomee.html
+Redirect permanent /3.0/tomee.html              https://tomee.apache.org/apache-tomee.html
+Redirect permanent /download-ng.html            https://tomee.apache.org/download.html
+Redirect permanent /download/index.html         https://tomee.apache.org/download.html
+Redirect permanent /downloads.html              https://tomee.apache.org/download.html
+Redirect permanent /3.0/index.html              https://tomee.apache.org/documentation.html
+Redirect permanent /design.html                 https://tomee.apache.org/dev/design.html
+Redirect permanent /design_appserver.html       https://tomee.apache.org/dev/design-application-server.html
+Redirect permanent /design_assembler.html       https://tomee.apache.org/dev/design-assembler.html
+Redirect permanent /design_bmpcontainer.html    https://tomee.apache.org/dev/design-bmp-entitybean-container.html
+Redirect permanent /design_classicassembler.html        https://tomee.apache.org/dev/design-classic-assembler.html
+Redirect permanent /design_cmpcontainer.html    https://tomee.apache.org/dev/design-cmp-entitybean-container.html
+Redirect permanent /design_configfactory.html   https://tomee.apache.org/dev/design-configuration-factory.html
+Redirect permanent /design_container.html       https://tomee.apache.org/dev/design-container.html
+Redirect permanent /design_intravm.html         https://tomee.apache.org/dev/design-local-server.html
+Redirect permanent /design_novaconfig.html      https://tomee.apache.org/dev/design-nova-configuration-factory.html
+Redirect permanent /design_openejb.html         https://tomee.apache.org/dev/design.html
+Redirect permanent /design_rafpassivator.html   https://tomee.apache.org/dev/design-random-file-passivator.html
+Redirect permanent /design_remoteserver.html    https://tomee.apache.org/dev/design-remote-server.html
+Redirect permanent /design_resmanager.html      https://tomee.apache.org/dev/design-resource-manager.html
+Redirect permanent /design_secservice.html      https://tomee.apache.org/dev/design-security-service.html
+Redirect permanent /design_simplepassivator.html        https://tomee.apache.org/dev/design-simple-passivator.html
+Redirect permanent /design_stfulcontainer.html  https://tomee.apache.org/dev/design-stateful-sessionbean-container.html
+Redirect permanent /design_stfulpassivator.html https://tomee.apache.org/dev/design-passivation-strategy.html
+Redirect permanent /design_stlesscontainer.html https://tomee.apache.org/dev/design-stateless-sessionbean-container.html
+Redirect permanent /design_txservice.html       https://tomee.apache.org/dev/design-transaction-service.html
+Redirect permanent /embedded-and-remotable.html https://tomee.apache.org/3.0/embedded-and-remotable.html
+
+Redirect permanent /3.0/apache-tomee.html https://tomee.apache.org/apache-tomee.html
+Redirect permanent /3.0/jpa-concepts.html https://tomee.apache.org/jpa-concepts.html
+
+
+Redirect permanent /3.0/injection-of-entitymanager-example.html https://tomee.apache.org/examples-trunk/injection-of-entitymanager/README.html
+Redirect permanent /3.0/simple-stateless-example.html           https://tomee.apache.org/examples-trunk/simple-stateless/README.html
+Redirect permanent /3.0/stateless-session-beans.html            https://tomee.apache.org/examples-trunk/simple-stateless/README.html
+Redirect permanent /3.0/injection-of-other-ejbs-example.html    https://tomee.apache.org/examples-trunk/injection-of-ejbs/README.html
+Redirect permanent /3.0/simple-stateful-example.html            https://tomee.apache.org/examples-trunk/simple-stateful/README.html
+Redirect permanent /3.0/testing-transactions-example.html       https://tomee.apache.org/examples-trunk/testing-transactions/README.html
+Redirect permanent /3.0/injection-of-datasource-example.html    https://tomee.apache.org/examples-trunk/injection-of-datasource/README.html
+Redirect permanent /3.0/injection-of-env-entry-example.html     https://tomee.apache.org/examples-trunk/injection-of-env-entry/README.html
+Redirect permanent /3.0/ejb-21-compatibility-example.html       https://tomee.apache.org/examples-trunk/component-interfaces/README.html
+Redirect permanent /3.0/testing-security-example.html           https://tomee.apache.org/examples-trunk/testing-security/README.html
+Redirect permanent /3.0/lookup-of-other-ejbs-example.html       https://tomee.apache.org/examples-trunk/lookup-of-ejbs/README.html
+Redirect permanent /3.0/embedded-and-remotable.html             https://tomee.apache.org/examples-trunk/telephone-stateful/README.html
+Redirect permanent /3.0/unit-testing-transactions.html          https://tomee.apache.org/examples-trunk/testing-transactions/README.html
+Redirect permanent /3.0/singleton-example.html                  https://tomee.apache.org/examples-trunk/simple-singleton/README.html
+Redirect permanent /3.0/interceptor-example.html                https://tomee.apache.org/examples-trunk/interceptors/README.html
+
+
+Redirect permanent /3.0/transaction-annotations.html https://tomee.apache.org/transaction-annotations.html
+Redirect permanent /3.0/index.html https://tomee.apache.org/index.html
+Redirect permanent /3.0/jndi-names.html https://tomee.apache.org/jndi-names.html
+Redirect permanent /3.0/openjpa.html https://tomee.apache.org/openjpa.html
+Redirect permanent /3.0/spring-ejb-and-jpa.html https://tomee.apache.org/spring-ejb-and-jpa.html
+Redirect permanent /3.0/configuring-persistenceunits-in-tests.html https://tomee.apache.org/configuring-persistenceunits-in-tests.html
+Redirect permanent /3.0/persistence-context.html https://tomee.apache.org/persistence-context.html
+Redirect permanent /3.0/hibernate.html https://tomee.apache.org/hibernate.html
+Redirect permanent /3.0/tomcat.html https://tomee.apache.org/tomcat.html
+Redirect permanent /3.0/ejb-local-ref.html https://tomee.apache.org/ejb-local-ref.html
+Redirect permanent /3.0/ejb-refs.html https://tomee.apache.org/ejb-refs.html
+Redirect permanent /3.0/security-annotations.html https://tomee.apache.org/security-annotations.html
+Redirect permanent /3.0/configuring-datasources.html https://tomee.apache.org/configuring-datasources.html
+Redirect permanent /3.0/persistence-unit-ref.html https://tomee.apache.org/persistence-unit-ref.html
+Redirect permanent /3.0/resource-injection.html https://tomee.apache.org/resource-injection.html
+Redirect permanent /3.0/resource-ref-for-datasource.html https://tomee.apache.org/resource-ref-for-datasource.html
+Redirect permanent /3.0/javaagent.html https://tomee.apache.org/javaagent.html
+Redirect permanent /3.0/basics-getting-things.html https://tomee.apache.org/basics-getting-things.html
+Redirect permanent /3.0/ejb-30-specification.html https://tomee.apache.org/ejb-30-specification.html
+Redirect permanent /3.0/local-client-injection.html https://tomee.apache.org/local-client-injection.html
+Redirect permanent /3.0/deploy-tool.html https://tomee.apache.org/deploy-tool.html
+Redirect permanent /3.0/examples.html https://tomee.apache.org/examples.html
+Redirect permanent /3.0/embedded-configuration.html https://tomee.apache.org/embedded-configuration.html
+Redirect permanent /3.0/javaagent-with-maven-surefire.html https://tomee.apache.org/javaagent-with-maven-surefire.html
+Redirect permanent /3.0/tomcat-detailed-instructions.html https://tomee.apache.org/tomcat-detailed-instructions.html
+Redirect permanent /3.0/jms-resources-and-mdb-container.html https://tomee.apache.org/jms-resources-and-mdb-container.html
+Redirect permanent /3.0/spring.html https://tomee.apache.org/spring.html
+Redirect permanent /3.0/startup.html https://tomee.apache.org/startup.html
+Redirect permanent /3.0/service-locator.html https://tomee.apache.org/service-locator.html
+Redirect permanent /3.0/singleton-beans.html https://tomee.apache.org/singleton-beans.html
+Redirect permanent /3.0/containers-and-resources.html https://tomee.apache.org/containers-and-resources.html
+Redirect permanent /3.0/tomcat-ejb-refs.html https://tomee.apache.org/tomcat-ejb-refs.html
+Redirect permanent /3.0/application-discovery-via-the-classpath.html https://tomee.apache.org/application-discovery-via-the-classpath.html
+Redirect permanent /3.0/failover.html https://tomee.apache.org/ejb-failover.html
+Redirect permanent /3.0/clients.html https://tomee.apache.org/clients.html
+Redirect permanent /3.0/ejb-jpa-jsf-jax-rs.html https://tomee.apache.org/ejb-jpa-jsf-jax-rs.html
+Redirect permanent /3.0/common-persistenceprovider-properties.html https://tomee.apache.org/common-persistenceprovider-properties.html
+Redirect permanent /3.0/jpa-usage.html https://tomee.apache.org/jpa-usage.html
+Redirect permanent /3.0/ejb-ref.html https://tomee.apache.org/ejb-ref.html
+Redirect permanent /3.0/alternate-descriptors.html https://tomee.apache.org/alternate-descriptors.html
+Redirect permanent /3.0/deployments.html https://tomee.apache.org/deployments.html
+Redirect permanent /3.0/constructor-injection.html https://tomee.apache.org/constructor-injection.html
+Redirect permanent /3.0/databases.html https://tomee.apache.org/databases.html
+Redirect permanent /3.0/properties-tool.html https://tomee.apache.org/properties-tool.html
+Redirect permanent /3.0/space-index.html https://tomee.apache.org/space-index.html
+Redirect permanent /3.0/callbacks.html https://tomee.apache.org/callbacks.html
+Redirect permanent /3.0/custom-injection.html https://tomee.apache.org/custom-injection.html
+Redirect permanent /3.0/dynamic-datasource.html https://tomee.apache.org/dynamic-datasource.html
+Redirect permanent /3.0/basics-security.html https://tomee.apache.org/basics-security.html
+Redirect permanent /3.0/datasource-password-encryption.html https://tomee.apache.org/datasource-password-encryption.html
+Redirect permanent /3.0/helloworld-weblogic.html https://tomee.apache.org/helloworld-weblogic.html
+Redirect permanent /3.0/mdb-container.html https://tomee.apache.org/mdb-container.html
+Redirect permanent /3.0/system-properties.html https://tomee.apache.org/system-properties.html
+Redirect permanent /3.0/configuring-logging-in-tests.html https://tomee.apache.org/configuring-logging-in-tests.html
+Redirect permanent /3.0/spring-and-openejb-30.html https://tomee.apache.org/spring-and-openejb-30.html
+Redirect permanent /3.0/configuring-datasources-in-tests.html https://tomee.apache.org/configuring-datasources-in-tests.html
+Redirect permanent /3.0/tomcat-installation.html https://tomee.apache.org/tomcat-installation.html
+Redirect permanent /3.0/webapp-based-ejbs.html https://tomee.apache.org/webapp-based-ejbs.html
+Redirect permanent /3.0/openejbxml.html https://tomee.apache.org/openejbxml.html
+Redirect permanent /3.0/security.html https://tomee.apache.org/security.html
+Redirect permanent /3.0/understanding-callbacks.html https://tomee.apache.org/understanding-callbacks.html
+Redirect permanent /3.0/annotations-xml-and-defaults.html https://tomee.apache.org/annotations-xml-and-defaults.html
+Redirect permanent /3.0/manual-installation.html https://tomee.apache.org/manual-installation.html
+Redirect permanent /3.0/common-datasource-configurations.html https://tomee.apache.org/common-datasource-configurations.html
+Redirect permanent /3.0/getting-started.html https://tomee.apache.org/getting-started.html
+Redirect permanent /3.0/configuring-javamail.html https://tomee.apache.org/configuring-javamail.html
+Redirect permanent /3.0/restful-web-service-with-openejb-jersey-junit-maven-mysql-and-tomcat.html https://tomee.apache.org/restful-web-service-with-openejb-jersey-junit-maven-mysql-and-tomcat.html
+Redirect permanent /3.0/testcase-with-testbean-inner-class.html https://tomee.apache.org/testcase-with-testbean-inner-class.html
+Redirect permanent /3.0/basics-transactions.html https://tomee.apache.org/basics-transactions.html
+Redirect permanent /3.0/design-application-server.html https://tomee.apache.org/design-application-server.html
+Redirect permanent /3.0/understanding-the-directory-layout.html https://tomee.apache.org/understanding-the-directory-layout.html
+Redirect permanent /3.0/design-container.html https://tomee.apache.org/design-container.html
+Redirect permanent /3.0/openejb-per-tomcat-installation.html https://tomee.apache.org/openejb-per-tomcat-installation.html
+Redirect permanent /3.0/client-server-transports.html https://tomee.apache.org/client-server-transports.html
+Redirect permanent /3.0/property-overriding.html https://tomee.apache.org/property-overriding.html
+Redirect permanent /3.0/configuring-containers-in-tests.html https://tomee.apache.org/configuring-containers-in-tests.html
+Redirect permanent /3.0/design-assembler.html https://tomee.apache.org/design-assembler.html
+Redirect permanent /3.0/design-configuration-factory.html https://tomee.apache.org/design-configuration-factory.html
+Redirect permanent /3.0/ejb-servlet.html https://tomee.apache.org/ejb-servlet.html
+Redirect permanent /3.0/collapsed-ear-on-linux.html https://tomee.apache.org/collapsed-ear-on-linux.html
+Redirect permanent /3.0/app-clients-and-jndi.html https://tomee.apache.org/app-clients-and-jndi.html
+Redirect permanent /3.0/built-in-type-converters.html https://tomee.apache.org/built-in-type-converters.html
+Redirect permanent /3.0/configuring-durations.html https://tomee.apache.org/configuring-durations.html
+Redirect permanent /3.0/design-classic-assembler.html https://tomee.apache.org/design-classic-assembler.html
+Redirect permanent /3.0/design-random-access-file-passivater.html https://tomee.apache.org/design-random-access-file-passivater.html
+Redirect permanent /3.0/users-guide.html https://tomee.apache.org/users-guide.html
+Redirect permanent /3.0/configuration-properties.html https://tomee.apache.org/configuration-properties.html
+Redirect permanent /3.0/design-cmp-entitybean-container.html https://tomee.apache.org/design-cmp-entitybean-container.html
+Redirect permanent /3.0/design-passivation-strategy.html https://tomee.apache.org/design-passivation-strategy.html
+Redirect permanent /3.0/design-transaction-service.html https://tomee.apache.org/design-transaction-service.html
+Redirect permanent /3.0/hello-world.html https://tomee.apache.org/hello-world.html
+Redirect permanent /3.0/online-javadocs.html https://tomee.apache.org/online-javadocs.html
+Redirect permanent /3.0/design-bmp-entitybean-container.html https://tomee.apache.org/design-bmp-entitybean-container.html
+Redirect permanent /3.0/design-nova-configuration-factory.html https://tomee.apache.org/design-nova-configuration-factory.html
+Redirect permanent /3.0/design-resource-manager.html https://tomee.apache.org/design-resource-manager.html
+Redirect permanent /3.0/design-simple-passivater.html https://tomee.apache.org/design-simple-passivater.html
+Redirect permanent /3.0/design-stateless-sessionbean-container.html https://tomee.apache.org/design-stateless-sessionbean-container.html
+Redirect permanent /3.0/design.html https://tomee.apache.org/design.html
+Redirect permanent /3.0/documentation.html https://tomee.apache.org/documentation.html
+Redirect permanent /3.0/embedding.html https://tomee.apache.org/embedding.html
+Redirect permanent /3.0/introduction-to-the-command-line-tools.html https://tomee.apache.org/introduction-to-the-command-line-tools.html
\ No newline at end of file
diff --git a/src/main/jbake/content/community/commercial.adoc b/src/main/jbake/content/community/commercial.adoc
index 6f686d5..24f463d 100755
--- a/src/main/jbake/content/community/commercial.adoc
+++ b/src/main/jbake/content/community/commercial.adoc
@@ -27,4 +27,4 @@
 
 All submitted information must be factual and informational in nature and not be a marketing statement. Statements that promote your products and services over other offerings on the page will not be tolerated and will be removed. Such marketing statements can be added to your own pages on your own site.
 
-When in doubt, email the Apache TomEE PMC list (see xref:../security/support.adoc[Mailing Lists]) and ask. We are be happy to help.
+When in doubt, email the Apache TomEE PMC list (see xref:../security/support.adoc[Mailing Lists]) and ask. We are happy to help.
diff --git a/src/main/jbake/content/community/contributing/contribution-tips.adoc b/src/main/jbake/content/community/contributing/contribution-tips.adoc
index 7067ef1..3197fc3 100755
--- a/src/main/jbake/content/community/contributing/contribution-tips.adoc
+++ b/src/main/jbake/content/community/contributing/contribution-tips.adoc
@@ -27,7 +27,7 @@
 
 == What is the process?
 
-Check and follow the xref:community/contributing/workflow.adoc[workflow for contributing].
+Check and follow the xref:workflow.adoc[workflow for contributing].
 
 After a while when people feel comfortable with you as contributor, they vote you in as a committer and ... big surprise ... there's almost no change in the daily routine. You get access to svn and pretty much everything else stays the same. Instead of submitting patches, now you have to help review them and commit them. Instead of learning how to contribute to an open source project, now you have to learn how to help others get involved. And of course it doesn't happen all at once, you never stop learning these things and you never stop wishing you had more time.
 
diff --git a/src/main/jbake/content/community/contributing/jira-ticket.adoc b/src/main/jbake/content/community/contributing/jira-ticket.adoc
index ff4a639..e9b6987 100644
--- a/src/main/jbake/content/community/contributing/jira-ticket.adoc
+++ b/src/main/jbake/content/community/contributing/jira-ticket.adoc
@@ -20,4 +20,4 @@
 To inform others that you are working on a task, the corresponding ticket in JIRA should be assigned to you. +
 If you don't have permission to assign tickets (there is no edit sign behind the Field "Assignee"), just ask on the developers mailing list.
 
-(xref:community/contributing/workflow.adoc[back to Contribution workflow])
+(xref:workflow.adoc[back to Contribution workflow])
diff --git a/src/main/jbake/content/community/contributing/process-task.adoc b/src/main/jbake/content/community/contributing/process-task.adoc
index 0098aa1..52a2e56 100644
--- a/src/main/jbake/content/community/contributing/process-task.adoc
+++ b/src/main/jbake/content/community/contributing/process-task.adoc
@@ -20,11 +20,11 @@
 == Hands on
 Work on the code. Use local commit as often as you want.
 Use push (to your own forked repository) as often as you like.
-Consider the xref:community/contributing/contribution-tips.adoc[contribution tips].
+Consider the xref:contribution-tips.adoc[contribution tips].
 If a task is to hard to get it done: no problem. Just ask for help.
 If you want to cancel working on a task, don't forget to unassign the JIRA ticket!
 
 == Comments in JIRA
 Use comments for the JIRA ticket to document your work.
 
-(xref:community/contributing/workflow.adoc[back to Contribution workflow])
+(xref:workflow.adoc[back to Contribution workflow])
diff --git a/src/main/jbake/content/community/contributing/submit-changes.adoc b/src/main/jbake/content/community/contributing/submit-changes.adoc
index 7836eed..e944b41 100644
--- a/src/main/jbake/content/community/contributing/submit-changes.adoc
+++ b/src/main/jbake/content/community/contributing/submit-changes.adoc
@@ -52,4 +52,4 @@
 
 Here we flip it.  The real subject as at the beginning.  The verbs and generic nouns like "options" come after.  When you can pull it off, huge respect. 
 
-(xref:community/contributing/workflow.adoc[back to Contribution workflow])
+(xref:workflow.adoc[back to Contribution workflow])
diff --git a/src/main/jbake/content/community/contributing/website.adoc b/src/main/jbake/content/community/contributing/website.adoc
index 97a3027..34850da 100755
--- a/src/main/jbake/content/community/contributing/website.adoc
+++ b/src/main/jbake/content/community/contributing/website.adoc
@@ -8,15 +8,15 @@
 
  - https://gitbox.apache.org/repos/asf/tomee-site-generator.git. (Apache)
 
- - https://github.com/apache/tomee-site-generator.git (Github mirror)
+ - https://github.com/apache/tomee-site-generator.git (GitHub mirror)
 
 To submit a change do the following:
 
-- Create a ticket on http://issues.apache.org/jira/browse/TOMEE
+- Create a ticket on https://issues.apache.org/jira/browse/TOMEE
 
-- Open a PR in the Gihub mirror with the ticket number e.g `TOMEE-1000 - Ticket Description`
+- Open a PR in the GitHub mirror with the ticket number e.g `TOMEE-1000 - Ticket Description`
 
-A committer will review it and redeploy the website using Apache CMS.
+A committer will review it and redeploy the website using a Jenkins CI build job.
 
 Building the website is mainly about running `mvn compile`, note you can use `JBake` main to develop.
 Publishing the website is about running `mvn pre-site` - needs to be a TomEE committer.
diff --git a/src/main/jbake/content/community/contributing/workflow.adoc b/src/main/jbake/content/community/contributing/workflow.adoc
index 5f7fd62..6e73338 100644
--- a/src/main/jbake/content/community/contributing/workflow.adoc
+++ b/src/main/jbake/content/community/contributing/workflow.adoc
@@ -11,7 +11,7 @@
 - create ticket in JIRA, if not already existing
 - if ticket already assigned to someone else => talk
 - assign ticket to contributor, if not already assigned +
-  (xref:community/contributing/jira-ticket.adoc[more details])
+  (xref:jira-ticket.adoc[more details])
 
 
 
@@ -21,14 +21,14 @@
 - discuss on mailing list
 - work on code
 - document work in JIRA ticket +
-  (xref:community/contributing/process-task.adoc[more details])
+  (xref:process-task.adoc[more details])
 
 == Submit Changes
 - ensure code compiles 
 - ensure tests passes
 - create PR (pull request)
 - ask for review on mailing list +
-  (xref:community/contributing/submit-changes.adoc[more details])
+  (xref:submit-changes.adoc[more details])
 
 == Merge Changes (done by a committer)
 - review changes
diff --git a/src/main/jbake/content/community/contributors.adoc b/src/main/jbake/content/community/contributors.adoc
index 1a700de..aa75236 100755
--- a/src/main/jbake/content/community/contributors.adoc
+++ b/src/main/jbake/content/community/contributors.adoc
@@ -1,35 +1,113 @@
-= Wall of fame
+= Wall of Fame - Contributors
 :jbake-date: 2016-03-16
 :jbake-type: contributors
 :jbake-status: published
 
 ----
-adc@apache.org* | Alan Cabrera | https://twitter.com/maguro/profile_image?size=bigger
-ammulder@apache.org* | Aaron Mulder | ../img/ammulder.png
-agumbrecht@tomitribe.com*
-dain@iq80.com*
-dblevins@apache.org*
-djencks@apache.org* | David Jencks
-dsh@apache.org* | Daniel Stefan Haischt | https://twitter.com/uebermodean/profile_image?size=bigger
-gawor@apache.org* | Jarek Gawor | https://twitter.com/jgawor/profile_image?size=bigger
-gdamour@apache.org* | Gianny Damour | ../img/gdamour.jpg
-genspring@apache.org* | Lin Quan Jiang | ../img/genspring.jpg
-hogstrom@apache.org* | Matt Richard Hogstrom | https://twitter.com/hogstrom/profile_image?size=bigger
-jgallimore@apache.org* | Jonathan Gallimore | https://twitter.com/jongallimore/profile_image?size=bigger
-jgenender@apache.org* | Jeff Genender | ../img/jgenender.jpg
-jlaskowski@apache.org* | Jacek Laskowski | https://twitter.com/jaceklaskowski/profile_image?size=bigger
-jlmonteiro@apache.org* | Jean-Louis Monteiro | https://twitter.com/JLouisMonteiro/profile_image?size=bigger
-jvanzyl@apache.org*
-jwhitlock@apache.org*
-kevan@apache.org* | Kevan Lee Miller | https://twitter.com/kevanmiller/profile_image?size=bigger
-kmalhi@apache.org* | Karan Singh Malhi | https://twitter.com/KrnMal/profile_image?size=bigger
-lajos@apache.org* | Lajos Moczar
-manugeorge@apache.org* | Manu George | ../img/manugeorge.jpg
-mnour@apache.org* | Mohammad Nour El-Din | ../img/mnour.jpg
-rickmcguire@apache.org* | Rick McGuire | ../img/rickmcguire.jpg
-rmannibucau@gmail.com*
-struberg@yahoo.de*
-tveronezi@apache.org*
-vishwanathk@apache.org* | Vishwanath | https://twitter.com/stratwine/profile_image?size=bigger
-xuhaihong@apache.org* | Haihong Xu | ../img/xuhaihong.jpg
+rmannibucau | https://github.com/rmannibucau | https://avatars.githubusercontent.com/u/1249546?v=4
+dblevins | https://github.com/dblevins | https://avatars.githubusercontent.com/u/94926?v=4
+jgallimore | https://github.com/jgallimore | https://avatars.githubusercontent.com/u/548624?v=4
+AndyGee | https://github.com/AndyGee | https://avatars.githubusercontent.com/u/2536412?v=4
+jeanouii | https://github.com/jeanouii | https://avatars.githubusercontent.com/u/1233474?v=4
+tveronezi | https://github.com/tveronezi | https://avatars.githubusercontent.com/u/1918442?v=4
+dain | https://github.com/dain | https://avatars.githubusercontent.com/u/58298?v=4
+jaceklaskowski | https://github.com/jaceklaskowski | https://avatars.githubusercontent.com/u/62313?v=4
+radcortez | https://github.com/radcortez | https://avatars.githubusercontent.com/u/5796305?v=4
+Daniel-Dos | https://github.com/Daniel-Dos | https://avatars.githubusercontent.com/u/8139890?v=4
+struberg | https://github.com/struberg | https://avatars.githubusercontent.com/u/79310?v=4
+djencks | https://github.com/djencks | https://avatars.githubusercontent.com/u/569822?v=4
+otaviojava | https://github.com/otaviojava | https://avatars.githubusercontent.com/u/863011?v=4
+cesarhernandezgt | https://github.com/cesarhernandezgt | https://avatars.githubusercontent.com/u/1454523?v=4
+kmalhi | https://github.com/kmalhi | https://avatars.githubusercontent.com/u/5103199?v=4
+ivanjunckes | https://github.com/ivanjunckes | https://avatars.githubusercontent.com/u/2260551?v=4
+brunobat | https://github.com/brunobat | https://avatars.githubusercontent.com/u/2318030?v=4
+j4fm | https://github.com/j4fm | https://avatars.githubusercontent.com/u/6817157?v=4
+rzo1 | https://github.com/rzo1 | https://avatars.githubusercontent.com/u/13417392?v=4
+jgawor | https://github.com/jgawor | https://avatars.githubusercontent.com/u/796079?v=4
+stratwine | https://github.com/stratwine | https://avatars.githubusercontent.com/u/696945?v=4
+doychin | https://github.com/doychin | https://avatars.githubusercontent.com/u/7131283?v=4
+danielsoro | https://github.com/danielsoro | https://avatars.githubusercontent.com/u/350841?v=4
+emecas | https://github.com/emecas | https://avatars.githubusercontent.com/u/849502?v=4
+cchacin | https://github.com/cchacin | https://avatars.githubusercontent.com/u/292938?v=4
+cicekhayri | https://github.com/cicekhayri | https://avatars.githubusercontent.com/u/143997?v=4
+exabrial | https://github.com/exabrial | https://avatars.githubusercontent.com/u/1392297?v=4
+tandraschko | https://github.com/tandraschko | https://avatars.githubusercontent.com/u/2485545?v=4
+ShermanMarshall | https://github.com/ShermanMarshall | https://avatars.githubusercontent.com/u/10781839?v=4
+eapjunior | https://github.com/eapjunior | https://avatars.githubusercontent.com/u/20850916?v=4
+gabrielbussolo | https://github.com/gabrielbussolo | https://avatars.githubusercontent.com/u/4117683?v=4
+vrossellotravelc | https://github.com/vrossellotravelc | https://avatars.githubusercontent.com/u/45101500?v=4
+mnour | https://github.com/mnour | https://avatars.githubusercontent.com/u/153299?v=4
+josehenriqueventura | https://github.com/josehenriqueventura | https://avatars.githubusercontent.com/u/2358940?v=4
+CristianDVN | https://github.com/CristianDVN | https://avatars.githubusercontent.com/u/14073354?v=4
+rmcguinness | https://github.com/rmcguinness | https://avatars.githubusercontent.com/u/906421?v=4
+SvetlinZarev-SAP | https://github.com/SvetlinZarev-SAP | https://avatars.githubusercontent.com/u/43135961?v=4
+uncommon-design | https://github.com/uncommon-design | https://avatars.githubusercontent.com/u/53859462?v=4
+jgenender | https://github.com/jgenender | https://avatars.githubusercontent.com/u/643609?v=4
+marcoantoniobferreira | https://github.com/marcoantoniobferreira | https://avatars.githubusercontent.com/u/23589475?v=4
+svenruppert | https://github.com/svenruppert | https://avatars.githubusercontent.com/u/2665330?v=4
+gdiazs | https://github.com/gdiazs | https://avatars.githubusercontent.com/u/2397243?v=4
+BogdanStirbat | https://github.com/BogdanStirbat | https://avatars.githubusercontent.com/u/2213741?v=4
+alexferreiradev | https://github.com/alexferreiradev | https://avatars.githubusercontent.com/u/8191965?v=4
+mpredli01 | https://github.com/mpredli01 | https://avatars.githubusercontent.com/u/4043260?v=4
+sercheo87 | https://github.com/sercheo87 | https://avatars.githubusercontent.com/u/1036090?v=4
+Croway | https://github.com/Croway | https://avatars.githubusercontent.com/u/34543311?v=4
+dineshkumarg | https://github.com/dineshkumarg | https://avatars.githubusercontent.com/u/13047948?v=4
+gerdogdu | https://github.com/gerdogdu | https://avatars.githubusercontent.com/u/1370429?v=4
+robinsonvs | https://github.com/robinsonvs | https://avatars.githubusercontent.com/u/8331918?v=4
+cotnic | https://github.com/cotnic | https://avatars.githubusercontent.com/u/10333974?v=4
+jrxxjr | https://github.com/jrxxjr | https://avatars.githubusercontent.com/u/8740736?v=4
+davidsalter | https://github.com/davidsalter | https://avatars.githubusercontent.com/u/32864282?v=4
+gmcdonald | https://github.com/gmcdonald | https://avatars.githubusercontent.com/u/287517?v=4
+fost14oct-zz | https://github.com/fost14oct-zz | https://avatars.githubusercontent.com/u/36649784?v=4
+cassunde | https://github.com/cassunde | https://avatars.githubusercontent.com/u/3828140?v=4
+weverthon-medeiros | https://github.com/weverthon-medeiros | https://avatars.githubusercontent.com/u/14115193?v=4
+puneethps | https://github.com/puneethps | https://avatars.githubusercontent.com/u/16502032?v=4
+carljmosca | https://github.com/carljmosca | https://avatars.githubusercontent.com/u/215651?v=4
+dheffelfinger | https://github.com/dheffelfinger | https://avatars.githubusercontent.com/u/13482727?v=4
+gacsnic | https://github.com/gacsnic | https://avatars.githubusercontent.com/u/24616597?v=4
+chongma | https://github.com/chongma | https://avatars.githubusercontent.com/u/6253322?v=4
+nishantraut | https://github.com/nishantraut | https://avatars.githubusercontent.com/u/10669557?v=4
+davidromero | https://github.com/davidromero | https://avatars.githubusercontent.com/u/2968138?v=4
+fredster33 | https://github.com/fredster33 | https://avatars.githubusercontent.com/u/64927044?v=4
+pavelsmajda | https://github.com/pavelsmajda | https://avatars.githubusercontent.com/u/24811669?v=4
+rhuan080 | https://github.com/rhuan080 | https://avatars.githubusercontent.com/u/10210672?v=4
+ferdisn | https://github.com/ferdisn | https://avatars.githubusercontent.com/u/28998445?v=4
+bitcod3r | https://github.com/bitcod3r | https://avatars.githubusercontent.com/u/4358449?v=4
+ivannov | https://github.com/ivannov | https://avatars.githubusercontent.com/u/664730?v=4
+whitlockjc | https://github.com/whitlockjc | https://avatars.githubusercontent.com/u/98899?v=4
+jchemile | https://github.com/jchemile | https://avatars.githubusercontent.com/u/7410390?v=4
+juneau001 | https://github.com/juneau001 | https://avatars.githubusercontent.com/u/121002?v=4
+patriciauz | https://github.com/patriciauz | https://avatars.githubusercontent.com/u/20784387?v=4
+sendilkumarn | https://github.com/sendilkumarn | https://avatars.githubusercontent.com/u/12471122?v=4
+breakponchito | https://github.com/breakponchito | https://avatars.githubusercontent.com/u/279375?v=4
+dalexandrov | https://github.com/dalexandrov | https://avatars.githubusercontent.com/u/2016949?v=4
+dependabot[bot] | https://github.com/apps/dependabot | https://avatars.githubusercontent.com/in/29110?v=4
+aboullaite | https://github.com/aboullaite | https://avatars.githubusercontent.com/u/2836850?v=4
+avermeer | https://github.com/avermeer | https://avatars.githubusercontent.com/u/17863217?v=4
+Dexmaster | https://github.com/Dexmaster | https://avatars.githubusercontent.com/u/6061000?v=4
+brettporter | https://github.com/brettporter | https://avatars.githubusercontent.com/u/49108?v=4
+cbos | https://github.com/cbos | https://avatars.githubusercontent.com/u/255404?v=4
+danielshahaf | https://github.com/danielshahaf | https://avatars.githubusercontent.com/u/2141904?v=4
+deki | https://github.com/deki | https://avatars.githubusercontent.com/u/858827?v=4
+kaminfeuer | https://github.com/kaminfeuer | https://avatars.githubusercontent.com/u/7949105?v=4
+gerwinjansen | https://github.com/gerwinjansen | https://avatars.githubusercontent.com/u/13243946?v=4
+HillmerCh | https://github.com/HillmerCh | https://avatars.githubusercontent.com/u/29781653?v=4
+jimmycasey | https://github.com/jimmycasey | https://avatars.githubusercontent.com/u/5089723?v=4
+JuanMorenoDeveloper | https://github.com/JuanMorenoDeveloper | https://avatars.githubusercontent.com/u/7319391?v=4
+kaloyanspiridonov | https://github.com/kaloyanspiridonov | https://avatars.githubusercontent.com/u/42994528?v=4
+katya-stoycheva | https://github.com/katya-stoycheva | https://avatars.githubusercontent.com/u/24268910?v=4
+mawiesne | https://github.com/mawiesne | https://avatars.githubusercontent.com/u/20473513?v=4
+revmischa | https://github.com/revmischa | https://avatars.githubusercontent.com/u/245131?v=4
+scriptmonkey | https://github.com/scriptmonkey | https://avatars.githubusercontent.com/u/1366409?v=4
+sebfz1 | https://github.com/sebfz1 | https://avatars.githubusercontent.com/u/1717144?v=4
+suyogbarve | https://github.com/suyogbarve | https://avatars.githubusercontent.com/u/1817914?v=4
+SvetlinZarev | https://github.com/SvetlinZarev | https://avatars.githubusercontent.com/u/1794797?v=4
+kakawait | https://github.com/kakawait | https://avatars.githubusercontent.com/u/275609?v=4
+cocorossello | https://github.com/cocorossello | https://avatars.githubusercontent.com/u/3096556?v=4
+violetagg | https://github.com/violetagg | https://avatars.githubusercontent.com/u/696661?v=4
+pendor | https://github.com/pendor | https://avatars.githubusercontent.com/u/209193?v=4
+javalenjara | https://github.com/javalenjara | https://avatars.githubusercontent.com/u/51468684?v=4
+mayens | https://github.com/mayens | https://avatars.githubusercontent.com/u/233983?v=4
+t4fm | https://github.com/t4fm | https://avatars.githubusercontent.com/u/47995607?v=4
+yenerm | https://github.com/yenerm | https://avatars.githubusercontent.com/u/715370?v=4
 ----
diff --git a/src/main/jbake/content/community/index.adoc b/src/main/jbake/content/community/index.adoc
index 119f393..965fdde 100755
--- a/src/main/jbake/content/community/index.adoc
+++ b/src/main/jbake/content/community/index.adoc
@@ -6,15 +6,15 @@
 
 == Contribute
 
-* xref:community/contributing/contribution-tips.adoc[Contribution tips]
-* xref:community/contributing/workflow.adoc[Contribution workflow]
-* xref:community/sources.adoc[Apache TomEE]
-* xref:community/contributing/website.adoc[This website]
-* xref:community/contributors.adoc[TomEE Wall Of Fame]
+* xref:contributing/contribution-tips.adoc[Contribution tips]
+* xref:contributing/workflow.adoc[Contribution workflow]
+* xref:sources.adoc[Contribute to Apache TomEE]
+* xref:contributing/website.adoc[Contribute to this Website]
+* xref:contributors.adoc[Apache TomEE - Wall Of Fame]
 
 == Social Media: cause contributing is not only about coding
 
-Facebook, Twitter, Google+: if that speaks to you just follow this xref:community/social.adoc[TomEE on Social Media].
+Facebook or Twitter: if that speaks to you just follow this xref:social.adoc[TomEE on Social Media].
 
 == Support
 
diff --git a/src/main/jbake/content/community/social.adoc b/src/main/jbake/content/community/social.adoc
index 4e9c3b4..5d4920a 100755
--- a/src/main/jbake/content/community/social.adoc
+++ b/src/main/jbake/content/community/social.adoc
@@ -10,8 +10,4 @@
 
 == Twitter
 
-icon:twitter[size=2x] https://twitter.com/apachetomee[TomEE @ Twitter]
-
-== Google+
-
-icon:google-plus[size=2x] https://plus.google.com/communities/105208241852045684449[TomEE @ Goole+]
+icon:twitter[size=2x] https://twitter.com/apachetomee[TomEE @ Twitter]
\ No newline at end of file
diff --git a/src/main/jbake/content/community/sources.adoc b/src/main/jbake/content/community/sources.adoc
index cc41423..11cb2f3 100755
--- a/src/main/jbake/content/community/sources.adoc
+++ b/src/main/jbake/content/community/sources.adoc
@@ -3,11 +3,11 @@
 :jbake-type: page
 :jbake-status: published
 
-== Github
+== GitHub
 
-TomEE is on Github at https://github.com/apache/tomee . The sources are synchronized by Apache on Github
+TomEE is on GitHub at https://github.com/apache/tomee . The sources are synchronized by Apache on GitHub
 but Pull/Requests are integrated with Apache Infrastructure which means you can just submit us a patch as
-you would do on any Github project and Apache takes care of the rest of the process.
+you would do on any other GitHub project and Apache takes care of the rest of the process.
 
 == Apache Git
 
@@ -27,7 +27,7 @@
 git clone -b tomee-1.7.x https://gitbox.apache.org/repos/asf/tomee.git tomee-1.7.x
 ----
 
-Master branch is the more up to date version of the codebase and currently targets TomEE 7.x branch.
+Master branch is the more up to date version of the codebase and currently targets TomEE 8.x branch.
 
 == Building
 
@@ -57,15 +57,14 @@
 
 == Continuous Integration
 
-TomEE is using Buildbot for its continuous integration. You can access main builds (Ubuntu ones) at these address:
+TomEE is using Jenkins CI for its continuous integration. You can access builds at these address:
 
-- https://ci.apache.org/builders/tomee-trunk-ubuntu-jvm8[TomEE Master]
-- https://ci.apache.org/builders/tomee-1.7.x-ubuntu[TomEE 1.7.x]
+- https://ci-builds.apache.org/job/Tomee/[TomEE @ Jenkins CI]
 
 == Issues
 
-Tomee uses Jira for issues, if you are looking for a problem or reporting one, use the following address:
+TomEE uses Jira for issues, if you are looking for a problem or reporting one, use the following address:
 
-- Create a ticket on http://issues.apache.org/jira/browse/TOMEE
+- Create a ticket on https://issues.apache.org/jira/browse/TOMEE
 
-- Open a PR in the Gihub mirror with the ticket number e.g `TOMEE-1000 - Ticket Description`
+- Open a PR in the GitHub mirror with the ticket number e.g. `TOMEE-1000 - Ticket Description`
diff --git a/src/main/jbake/content/contribute.adoc b/src/main/jbake/content/contribute.adoc
index 0dc6626..5d6b4c7 100644
--- a/src/main/jbake/content/contribute.adoc
+++ b/src/main/jbake/content/contribute.adoc
@@ -18,13 +18,11 @@
 
 * http://twitter.com/ApacheTomEE
 * http://facebook.com/ApacheTomEE
-* https://plus.google.com/118203123063829126066
 
 The more people we reach the more the project grows.
 
 * Become an active retweeter + +++<a onclick="javascript:twshare()" class="tw-share sprite" title="share on Twitter">+++share [tw]+++</a>+++
 * Share pages you like on Facebook + +++<a onclick="javascript:fbshare()" class="fb-share sprite" title="share on Facebook">+++share [fb]+++</a>+++
-* Share pages you like on Google+ + +++<a onclick="javascript:gpshare()" class="gp-share sprite" title="share on Google+">+++share [gp]+++</a>+++
 * Share pages you like on Pinterest + +++<a onclick="javascript:pinshare()" class="pin-share sprite" title="Share on Pinterest">+++share [pin]+++</a>+++
 
 Doing these things as often as possible are simple and powerful ways to help.
diff --git a/src/main/jbake/content/dev/asf.adoc b/src/main/jbake/content/dev/asf.adoc
index f237547..ca40c44 100644
--- a/src/main/jbake/content/dev/asf.adoc
+++ b/src/main/jbake/content/dev/asf.adoc
@@ -4,31 +4,31 @@
 
 Reports must be filed monthly for the first three months after Incubation:
 
-* xref:dev/june2007.adoc[June 18, 2007]
-* xref:dev/july2007.adoc[July 16, 2007]
-* xref:dev/august2007.adoc[August 13, 2007]
+* xref:june2007.adoc[June 18, 2007]
+* xref:july2007.adoc[July 16, 2007]
+* xref:august2007.adoc[August 13, 2007]
 
 Then quarterly after that starting the month after:
 
-* xref:dev/october2007.adoc[October 15, 2007]
-* xref:dev/january2008.adoc[January 14, 2008]
-* xref:dev/april2008.adoc[April 14, 2008]
-* xref:dev/july2008.adoc[July 14, 2008]
-* xref:dev/october2008.adoc[October 13, 2008]
+* xref:october2007.adoc[October 15, 2007]
+* xref:january2008.adoc[January 14, 2008]
+* xref:april2008.adoc[April 14, 2008]
+* xref:july2008.adoc[July 14, 2008]
+* xref:october2008.adoc[October 13, 2008]
 
 NOTE: january2009 is missing
 
-* xref:dev/january2009.adoc[January 19, 2009]
-* xref:dev/april2009.adoc[April 13, 2009]
-* xref:dev/july2009.adoc[July 13, 2009]
-* xref:dev/october2009.adoc[October 21, 2009]
-* xref:dev/january2010.adoc[January 20, 2010]
+* xref:january2009.adoc[January 19, 2009]
+* xref:april2009.adoc[April 13, 2009]
+* xref:july2009.adoc[July 13, 2009]
+* xref:october2009.adoc[October 21, 2009]
+* xref:january2010.adoc[January 20, 2010]
 
 NOTE: april2010 is missing
 
-* xref:dev/april2010.adoc[April 21, 2010]
-* xref:dev/july2010.adoc[July 21, 2010]
+* xref:april2010.adoc[April 21, 2010]
+* xref:july2010.adoc[July 21, 2010]
 
 NOTE: october2010 is missing
 
-* xref:dev/october2010.adoc[October 20, 2010]
+* xref:october2010.adoc[October 20, 2010]
diff --git a/src/main/jbake/content/dev/design-application-server.adoc b/src/main/jbake/content/dev/design-application-server.adoc
index d2e6ce5..e2ce9b9 100644
--- a/src/main/jbake/content/dev/design-application-server.adoc
+++ b/src/main/jbake/content/dev/design-application-server.adoc
@@ -4,7 +4,7 @@
 
 == Application Server
 
-Sub-component of xref:dev/design.adoc[OpenEJB]
+Sub-component of xref:design.adoc[OpenEJB]
 
 
 == Definition
@@ -34,5 +34,5 @@
 
 == Implementations
 
-* xref:dev/design-local-server.adoc[Local Server]
-* xref:dev/design-remote-server.adoc[Remote Server]
+* xref:design-local-server.adoc[Local Server]
+* xref:design-remote-server.adoc[Remote Server]
diff --git a/src/main/jbake/content/dev/design-assembler.adoc b/src/main/jbake/content/dev/design-assembler.adoc
index 037c513..707eaa6 100644
--- a/src/main/jbake/content/dev/design-assembler.adoc
+++ b/src/main/jbake/content/dev/design-assembler.adoc
@@ -4,7 +4,7 @@
 
 == Assembler
 
-Sub-component of xref:dev/design.adoc[OpenEJB]
+Sub-component of xref:design.adoc[OpenEJB]
 
 == Definition
 
@@ -28,4 +28,4 @@
 
 == Implementations
 
-* xref:dev/design-classic-assembler.adoc[Classic Assembler]
+* xref:design-classic-assembler.adoc[Classic Assembler]
diff --git a/src/main/jbake/content/dev/design-bmp-entitybean-container.adoc b/src/main/jbake/content/dev/design-bmp-entitybean-container.adoc
index 1f47ade..c8dc518 100644
--- a/src/main/jbake/content/dev/design-bmp-entitybean-container.adoc
+++ b/src/main/jbake/content/dev/design-bmp-entitybean-container.adoc
@@ -4,7 +4,7 @@
 
 == BMP EntityBean Container
 
-Implementation of xref:dev/design-container.adoc[Container]
+Implementation of xref:design-container.adoc[Container]
 
 == Description
 
diff --git a/src/main/jbake/content/dev/design-classic-assembler.adoc b/src/main/jbake/content/dev/design-classic-assembler.adoc
index 00995db..96fad54 100644
--- a/src/main/jbake/content/dev/design-classic-assembler.adoc
+++ b/src/main/jbake/content/dev/design-classic-assembler.adoc
@@ -4,7 +4,7 @@
 
 == Classic Assembler
 
-Implementation of xref:dev/design-assembler.adoc[Assembler]
+Implementation of xref:design-assembler.adoc[Assembler]
 
 == Description
 
@@ -23,4 +23,4 @@
 
 == Sub-components
 
-* xref:dev/design-configuration-factory.adoc[Configuration Factory]
+* xref:design-configuration-factory.adoc[Configuration Factory]
diff --git a/src/main/jbake/content/dev/design-cmp-entitybean-container.adoc b/src/main/jbake/content/dev/design-cmp-entitybean-container.adoc
index 363e79a..b4f478f 100644
--- a/src/main/jbake/content/dev/design-cmp-entitybean-container.adoc
+++ b/src/main/jbake/content/dev/design-cmp-entitybean-container.adoc
@@ -4,7 +4,7 @@
 
 == CMP EntityBean Container
 
-Implementation of xref:dev/design-container.adoc[Container]
+Implementation of xref:design-container.adoc[Container]
 
 == Description
 
diff --git a/src/main/jbake/content/dev/design-configuration-factory.adoc b/src/main/jbake/content/dev/design-configuration-factory.adoc
index 2a254aa..d0e0add 100644
--- a/src/main/jbake/content/dev/design-configuration-factory.adoc
+++ b/src/main/jbake/content/dev/design-configuration-factory.adoc
@@ -4,7 +4,7 @@
 
 == Configuration Factory
 
-Sub-component of xref:dev/design-classic-assembler.adoc[Classic Assembler]
+Sub-component of xref:design-classic-assembler.adoc[Classic Assembler]
 
 == Definition
 
@@ -30,4 +30,4 @@
 == Implementations
 
 * XML Configuration Factory _(no longer supported)_
-* xref:dev/design-nova-configuration-factory.adoc[Nova Configuration Factory]
+* xref:design-nova-configuration-factory.adoc[Nova Configuration Factory]
diff --git a/src/main/jbake/content/dev/design-container.adoc b/src/main/jbake/content/dev/design-container.adoc
index 7330325..d0b6d23 100644
--- a/src/main/jbake/content/dev/design-container.adoc
+++ b/src/main/jbake/content/dev/design-container.adoc
@@ -4,7 +4,7 @@
 
 == Container
 
-Sub-component of xref:dev/design.adoc[OpenEJB]
+Sub-component of xref:design.adoc[OpenEJB]
 
 == Definition
 
@@ -28,7 +28,7 @@
 
 == Implementations
 
-* xref:dev/design-stateful-sessionbean-container.adoc[Stateful SessionBean Container]
-* xref:dev/design-stateless-sessionbean-container.adoc[Stateless SessionBean Container]
-* xref:dev/design-bmp-entitybean-container.adoc[BMP EntityBean Container]
-* xref:dev/design-cmp-entitybean-container.adoc[CMP EntityBean Container]
+* xref:design-stateful-sessionbean-container.adoc[Stateful SessionBean Container]
+* xref:design-stateless-sessionbean-container.adoc[Stateless SessionBean Container]
+* xref:design-bmp-entitybean-container.adoc[BMP EntityBean Container]
+* xref:design-cmp-entitybean-container.adoc[CMP EntityBean Container]
diff --git a/src/main/jbake/content/dev/design-local-server.adoc b/src/main/jbake/content/dev/design-local-server.adoc
index 7217e14..36d096a 100644
--- a/src/main/jbake/content/dev/design-local-server.adoc
+++ b/src/main/jbake/content/dev/design-local-server.adoc
@@ -4,7 +4,7 @@
 
 == Local Server
 
-Implementation of xref:dev/design-application-server.adoc[Application Server]
+Implementation of xref:design-application-server.adoc[Application Server]
 
 
 == Description
diff --git a/src/main/jbake/content/dev/design-nova-configuration-factory.adoc b/src/main/jbake/content/dev/design-nova-configuration-factory.adoc
index 8d75597..cc9f47b 100644
--- a/src/main/jbake/content/dev/design-nova-configuration-factory.adoc
+++ b/src/main/jbake/content/dev/design-nova-configuration-factory.adoc
@@ -4,7 +4,7 @@
 
 == Nova Configuration Factory
 
-Implementation of xref:dev/design-configuration-factory.adoc[Configuration Factory]
+Implementation of xref:design-configuration-factory.adoc[Configuration Factory]
 
 == Description
 
diff --git a/src/main/jbake/content/dev/design-passivation-strategy.adoc b/src/main/jbake/content/dev/design-passivation-strategy.adoc
index 7116b5d..97b76bd 100644
--- a/src/main/jbake/content/dev/design-passivation-strategy.adoc
+++ b/src/main/jbake/content/dev/design-passivation-strategy.adoc
@@ -4,7 +4,7 @@
 
 == Passivation Strategy
 
-Sub-component of xref:dev/design-stateful-sessionbean-container.adoc[Stateful SessionBean Container]
+Sub-component of xref:design-stateful-sessionbean-container.adoc[Stateful SessionBean Container]
 
 == Definition
 
@@ -20,5 +20,5 @@
 
 == Implementations
 
-* xref:dev/design-random-access-file-passivater.adoc[Random Access File Passivater]
-* xref:dev/design-simple-passivater.adoc[Simple Passivater]
+* xref:design-random-access-file-passivater.adoc[Random Access File Passivater]
+* xref:design-simple-passivater.adoc[Simple Passivater]
diff --git a/src/main/jbake/content/dev/design-random-access-file-passivater.adoc b/src/main/jbake/content/dev/design-random-access-file-passivater.adoc
index edde0f5..08d42a1 100644
--- a/src/main/jbake/content/dev/design-random-access-file-passivater.adoc
+++ b/src/main/jbake/content/dev/design-random-access-file-passivater.adoc
@@ -4,7 +4,7 @@
 
 == Random Access File Passivater
 
-Implementation of xref:dev/design-passivation-strategy.adoc[Passivation Strategy]
+Implementation of xref:design-passivation-strategy.adoc[Passivation Strategy]
 
 == Description
 
diff --git a/src/main/jbake/content/dev/design-remote-server.adoc b/src/main/jbake/content/dev/design-remote-server.adoc
index a4e22da..cd87018 100644
--- a/src/main/jbake/content/dev/design-remote-server.adoc
+++ b/src/main/jbake/content/dev/design-remote-server.adoc
@@ -4,7 +4,7 @@
 
 == Remote Server
 
-Implementation of xref:dev/design-application-server.adoc[Application Server]
+Implementation of xref:design-application-server.adoc[Application Server]
 
 == Description
 
diff --git a/src/main/jbake/content/dev/design-simple-passivater.adoc b/src/main/jbake/content/dev/design-simple-passivater.adoc
index 7e7c503..62cbf30 100644
--- a/src/main/jbake/content/dev/design-simple-passivater.adoc
+++ b/src/main/jbake/content/dev/design-simple-passivater.adoc
@@ -4,7 +4,7 @@
 
 == Simple Passivater
 
-Implementation of xref:dev/design-passivation-strategy.adoc[Passivation Strategy]
+Implementation of xref:design-passivation-strategy.adoc[Passivation Strategy]
 
 == Description
 
diff --git a/src/main/jbake/content/dev/design-stateful-sessionbean-container.adoc b/src/main/jbake/content/dev/design-stateful-sessionbean-container.adoc
index 9b5b990..d06ddb2 100644
--- a/src/main/jbake/content/dev/design-stateful-sessionbean-container.adoc
+++ b/src/main/jbake/content/dev/design-stateful-sessionbean-container.adoc
@@ -4,7 +4,7 @@
 
 == Stateful SessionBean Container
 
-Implementation of xref:dev/design-container.adoc[Container]
+Implementation of xref:design-container.adoc[Container]
 
 == Description
 
@@ -21,4 +21,4 @@
 
 == Sub-components
 
-* xref:dev/design-passivation-strategy.adoc[Passivation Strategy]
+* xref:design-passivation-strategy.adoc[Passivation Strategy]
diff --git a/src/main/jbake/content/dev/design-stateless-sessionbean-container.adoc b/src/main/jbake/content/dev/design-stateless-sessionbean-container.adoc
index d168c0b..cf7fcae 100644
--- a/src/main/jbake/content/dev/design-stateless-sessionbean-container.adoc
+++ b/src/main/jbake/content/dev/design-stateless-sessionbean-container.adoc
@@ -4,7 +4,7 @@
 
 == Stateless SessionBean Container
 
-Implementation of xref:dev/design-container.adoc[Container]
+Implementation of xref:design-container.adoc[Container]
 
 == Description
 
diff --git a/src/main/jbake/content/dev/design-transaction-service.adoc b/src/main/jbake/content/dev/design-transaction-service.adoc
index 7fc8750..1c7694f 100644
--- a/src/main/jbake/content/dev/design-transaction-service.adoc
+++ b/src/main/jbake/content/dev/design-transaction-service.adoc
@@ -4,7 +4,7 @@
 
 == Transaction Service
 
-Sub-component of xref:dev/design.adoc[OpenEJB]
+Sub-component of xref:design.adoc[OpenEJB]
 
 == Definition
 
diff --git a/src/main/jbake/content/dev/design.adoc b/src/main/jbake/content/dev/design.adoc
index 5a53ea4..232b4ca 100644
--- a/src/main/jbake/content/dev/design.adoc
+++ b/src/main/jbake/content/dev/design.adoc
@@ -35,9 +35,9 @@
 
 == Sub-components
 
-* xref:dev/design-application-server.adoc[Application Server]
-* xref:dev/design-transaction-service.adoc[Transaction Service]
-* xref:dev/design-security-service.adoc[Security Service]
-* xref:dev/design-resource-manager.adoc[Resource Manager]
-* xref:dev/design-container.adoc[Container]
-* xref:dev/design-assembler.adoc[Assembler]
+* xref:design-application-server.adoc[Application Server]
+* xref:design-transaction-service.adoc[Transaction Service]
+* xref:design-security-service.adoc[Security Service]
+* xref:design-resource-manager.adoc[Resource Manager]
+* xref:design-container.adoc[Container]
+* xref:design-assembler.adoc[Assembler]
diff --git a/src/main/jbake/content/dev/release-tomee.adoc b/src/main/jbake/content/dev/release-tomee.adoc
index d3b5dac..a211513 100644
--- a/src/main/jbake/content/dev/release-tomee.adoc
+++ b/src/main/jbake/content/dev/release-tomee.adoc
@@ -279,7 +279,7 @@
 done | sort | grep 'http'
 ....
 
-Commit and publish changes to the site, see xref:dev/release-tomee.adoc#staging[Site Staging]
+Commit and publish changes to the site, see xref:release-tomee.adoc#staging[Site Staging]
 
  https://cms.apache.org/tomee/publish
 
@@ -287,4 +287,4 @@
 
 Announce to the world that TomEE has new bells and whistles!
 
-https://blogs.apache.org/roller-ui/login.rol + http://twitter.com/ApacheTomEE + http://facebook.com/ApacheTomEE + https://plus.google.com/118203123063829126066
+https://blogs.apache.org/roller-ui/login.rol + http://twitter.com/ApacheTomEE + http://facebook.com/ApacheTomEE
diff --git a/src/main/jbake/content/dev/source-code.adoc b/src/main/jbake/content/dev/source-code.adoc
index fcc54ae..5eaf882 100644
--- a/src/main/jbake/content/dev/source-code.adoc
+++ b/src/main/jbake/content/dev/source-code.adoc
@@ -40,7 +40,7 @@
 
 == GIT Information for TomEE Contributors
 
-*Please read our own detailed GitFlow workflow information xref:dev/git.adoc[here]*
+*Please read our own detailed GitFlow workflow information xref:git.adoc[here]*
 
 We will be using the https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow[Gitflow Workflow] from day one.
 Please read and understand how this works.
diff --git a/src/main/jbake/content/dev/writing-validation-tests.adoc b/src/main/jbake/content/dev/writing-validation-tests.adoc
index 961923d..06c5eff 100644
--- a/src/main/jbake/content/dev/writing-validation-tests.adoc
+++ b/src/main/jbake/content/dev/writing-validation-tests.adoc
@@ -106,7 +106,7 @@
 mvn test -Dtest=ValidationKeysAuditorTest -DconfluenceUsername=YourConfluenceUsername -DconfluencePassword=YourConfluencePassword
 ----
 
-The above command will create a complete test coverage report and post it to this location xref:dev/validation-keys-audit-report.adoc[Validation Keys Audit Report]
+The above command will create a complete test coverage report and post it to this location xref:validation-keys-audit-report.adoc[Validation Keys Audit Report]
 
 === Quick facts about ValidationRunner and things to keep in mind while writing tests
 
diff --git a/src/main/jbake/content/security/security.adoc b/src/main/jbake/content/security/security.adoc
index 8caab27..5c7b76e 100755
--- a/src/main/jbake/content/security/security.adoc
+++ b/src/main/jbake/content/security/security.adoc
@@ -66,7 +66,7 @@
 
 == Links
 
-- http://apache.org/security/
-- http://apache.org/security/projects.html
-- http://apache.org/security/committers.html
-- http://cve.mitre.org/[Common Vulnerabilities and Exposures database]
+- https://apache.org/security/
+- https://apache.org/security/projects.html
+- https://apache.org/security/committers.html
+- https://cve.mitre.org/[Common Vulnerabilities and Exposures database]
diff --git a/src/main/jbake/templates/contributors.gsp b/src/main/jbake/templates/contributors.gsp
index c4049d8..afd4fb3 100755
--- a/src/main/jbake/templates/contributors.gsp
+++ b/src/main/jbake/templates/contributors.gsp
@@ -16,23 +16,18 @@
         </div>
         <div class="row">
             <div class="col-md-12 contributors">
-              <div class="text-center" style="padding-bottom: 2em;">A <i class="fa fa-star-o" style="color:#F38F24;"></i> means the contributor is also a committer.</div>
+              <div class="text-center" style="padding-bottom: 2em;">We want to thank the following individuals for contributing to Apache TomEE. An up to date contributor list can be found <a href="https://github.com/apache/tomee/graphs/contributors">here</a>. The current list of committers can be found <a href="https://projects.apache.org/committee.html?tomee">here</a>.</div>
               <ul>
                 <%
-                    org.apache.tomee.website.Contributors.load(content.body).each {contributor ->
+                    org.apache.tomee.website.contributors.Contributors.load(content.body).each { contributor ->
                 %>
                   <div class="col-sm-4">
                     <div class="photo col-sm-5">
-                      <img alt="${contributor.name}" src="${contributor.gravatar}" style="width:140px">
-                      <% if (contributor.committer){ %><i class="pull-right fa fa-star-o" style="color:#F38F24;"></i><% } %>
+                      <img src="${contributor.avatar}" style="width:140px">
                     </div>
                     <div class="col-sm-7">
-                      <h3 class="contributor-name" style="font-size:1.4em;">${contributor.name}</h3>
+                        <h5 class="contributor-name" style="font-size:1.0em;"><a href="${contributor.github}">${contributor.name}</a></h5>
                       <p></p>
-                      <ul class="list-inline">
-                      <%contributor.link.each {l ->%>
-                      <li><a href="${l.url}">${l.name}</a></li>
-                      <%}%>
                     </div>
                   </div>
               <% } %>
diff --git a/src/test/java/org/apache/tomee/website/contributors/ContributorDataTest.java b/src/test/java/org/apache/tomee/website/contributors/ContributorDataTest.java
new file mode 100644
index 0000000..5669e44
--- /dev/null
+++ b/src/test/java/org/apache/tomee/website/contributors/ContributorDataTest.java
@@ -0,0 +1,63 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import org.apache.openejb.loader.IO;
+import org.junit.Test;
+
+import javax.json.bind.Jsonb;
+import javax.json.bind.JsonbBuilder;
+import java.net.URL;
+
+import static org.junit.Assert.assertEquals;
+
+public class ContributorDataTest {
+
+    @Test
+    public void read() throws Exception {
+
+        final URL resource = this.getClass().getClassLoader().getResource("contributor-data.json");
+        final String json = IO.slurp(resource);
+        final Jsonb jsonb = JsonbBuilder.create();
+        final ContributorData[] data = jsonb.fromJson(json, ContributorData[].class);
+
+        assertEquals(12, data.length);
+        assertEquals("djencks", data[3].getAuthor().getLogin());
+        assertEquals(36, data[3].getTotal());
+        assertEquals(19581, data[3].getWeeks().get(135).getA());
+        assertEquals(9998, data[3].getWeeks().get(135).getD());
+        assertEquals(6, data[3].getWeeks().get(135).getC());
+    }
+
+    @Test
+    public void getStats() throws Exception {
+
+        final URL resource = this.getClass().getClassLoader().getResource("contributor-data.json");
+        final String json = IO.slurp(resource);
+        final Jsonb jsonb = JsonbBuilder.create();
+        final ContributorData[] data = jsonb.fromJson(json, ContributorData[].class);
+
+        assertEquals(12, data.length);
+        assertEquals("djencks", data[3].getAuthor().getLogin());
+
+        final Stats stats = data[3].getStats();
+        assertEquals(36, stats.getCommits());
+        assertEquals(35243, stats.getLinesAdded());
+        assertEquals(25020, stats.getLinesRemoved());
+    }
+
+}
diff --git a/src/test/java/org/apache/tomee/website/contributors/ContributorTest.java b/src/test/java/org/apache/tomee/website/contributors/ContributorTest.java
new file mode 100644
index 0000000..51da5d1
--- /dev/null
+++ b/src/test/java/org/apache/tomee/website/contributors/ContributorTest.java
@@ -0,0 +1,86 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import org.apache.openejb.loader.IO;
+import org.junit.Test;
+
+import javax.json.bind.Jsonb;
+import javax.json.bind.JsonbBuilder;
+import java.io.IOException;
+import java.net.URL;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Map;
+import java.util.function.Function;
+import java.util.stream.Collectors;
+
+import static org.junit.Assert.assertEquals;
+
+public class ContributorTest {
+
+    @Test
+    public void unique() throws IOException {
+        final URL resource = this.getClass().getClassLoader().getResource("contributor-data.json");
+        final String json = IO.slurp(resource);
+        final Jsonb jsonb = JsonbBuilder.create();
+        final ContributorData[] data = jsonb.fromJson(json, ContributorData[].class);
+
+        final List<ContributorData> list = new ArrayList<>(Arrays.asList(data));
+        list.add(data[3]); // djencks
+        list.add(data[5]); // rzo1
+        list.add(data[5]); // rzo1
+        list.add(data[5]); // rzo1
+        list.add(data[10]); // dblevins
+
+        final List<Contributor> duplicates = list.stream()
+                .map(ContributorData::asContributor)
+                .collect(Collectors.toList());
+
+        final List<Contributor> unique = Contributor.unique(duplicates);
+        final Map<String, Contributor> map = unique.stream().collect(Collectors.toMap(Contributor::getName, Function.identity()));
+        
+        assertEquals(17, duplicates.size());
+        assertEquals(12, unique.size());
+        assertEquals(12, map.size());
+
+        final Contributor djencks = map.get("djencks");
+        assertEquals("djencks", djencks.getName());
+        assertEquals(72, djencks.getStats().getCommits());
+        assertEquals(70486, djencks.getStats().getLinesAdded());
+        assertEquals(50040, djencks.getStats().getLinesRemoved());
+
+        final Contributor rzo1 = map.get("rzo1");
+        assertEquals("rzo1", rzo1.getName());
+        assertEquals(48, rzo1.getStats().getCommits());
+        assertEquals(5952, rzo1.getStats().getLinesAdded());
+        assertEquals(4164, rzo1.getStats().getLinesRemoved());
+
+        final Contributor dblevins = map.get("dblevins");
+        assertEquals("dblevins", dblevins.getName());
+        assertEquals(158, dblevins.getStats().getCommits());
+        assertEquals(88898, dblevins.getStats().getLinesAdded());
+        assertEquals(139256, dblevins.getStats().getLinesRemoved());
+
+        final Contributor cesarhernandezgt = map.get("cesarhernandezgt");
+        assertEquals("cesarhernandezgt", cesarhernandezgt.getName());
+        assertEquals(14, cesarhernandezgt.getStats().getCommits());
+        assertEquals(1073, cesarhernandezgt.getStats().getLinesAdded());
+        assertEquals(356, cesarhernandezgt.getStats().getLinesRemoved());
+    }
+}
diff --git a/src/test/java/org/apache/tomee/website/contributors/StatsTest.java b/src/test/java/org/apache/tomee/website/contributors/StatsTest.java
new file mode 100644
index 0000000..f66efb7
--- /dev/null
+++ b/src/test/java/org/apache/tomee/website/contributors/StatsTest.java
@@ -0,0 +1,57 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.website.contributors;
+
+import org.junit.Test;
+
+import static org.junit.Assert.*;
+
+public class StatsTest {
+
+    @Test
+    public void add() {
+        final Stats a = new Stats(3, 5, 7);
+        final Stats b = new Stats(11, 13, 17);
+
+        final Stats c = a.add(b);
+        assertEquals(14, c.getCommits());
+        assertEquals(18, c.getLinesAdded());
+        assertEquals(24, c.getLinesRemoved());
+    }
+
+    @Test
+    public void max() {
+        final Stats a = new Stats(157, 241, 37);
+        final Stats b = new Stats(211, 113, 23);
+
+        final Stats c = a.max(b);
+        assertEquals(211, c.getCommits());
+        assertEquals(241, c.getLinesAdded());
+        assertEquals(37, c.getLinesRemoved());
+    }
+
+    @Test
+    public void score() {
+        final Stats max = new Stats(157, 241, 37);
+
+        assertEquals(0, max.score(new Stats(0, 0, 0)));
+        assertEquals(333333, max.score(new Stats(157, 0, 0)));
+        assertEquals(666667, max.score(new Stats(157, 241, 0)));
+        assertEquals(1000000, max.score(new Stats(157, 241, 37)));
+        assertEquals(431752, max.score(new Stats(50, 40, 30)));
+    }
+}
diff --git a/src/test/resources/contributor-data.json b/src/test/resources/contributor-data.json
new file mode 100644
index 0000000..2510473
--- /dev/null
+++ b/src/test/resources/contributor-data.json
@@ -0,0 +1,14762 @@
+[
+  {
+    "total": 1,
+    "author": {
+      "id": 7949105,
+      "login": "kaminfeuer",
+      "avatar": "https://avatars.githubusercontent.com/u/7949105?s=60&v=4",
+      "path": "/kaminfeuer",
+      "hovercard_url": "/users/kaminfeuer/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 147,
+        "d": 49,
+        "c": 1
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 1,
+    "author": {
+      "id": 6817157,
+      "login": "j4fm",
+      "avatar": "https://avatars.githubusercontent.com/u/6817157?s=60&v=4",
+      "path": "/j4fm",
+      "hovercard_url": "/users/j4fm/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 33,
+        "d": 17,
+        "c": 1
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 29,
+    "author": {
+      "id": 548624,
+      "login": "jgallimore",
+      "avatar": "https://avatars.githubusercontent.com/u/548624?s=60&v=4",
+      "path": "/jgallimore",
+      "hovercard_url": "/users/jgallimore/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 75,
+        "d": 49,
+        "c": 3
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 17,
+        "d": 3,
+        "c": 1
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 41,
+        "d": 17,
+        "c": 4
+      },
+      {
+        "w": 1540080000,
+        "a": 14,
+        "d": 14,
+        "c": 1
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 33,
+        "d": 21,
+        "c": 1
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 30,
+        "d": 30,
+        "c": 2
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 56,
+        "d": 27,
+        "c": 1
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 67,
+        "d": 67,
+        "c": 2
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 70,
+        "d": 62,
+        "c": 3
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 83,
+        "d": 36,
+        "c": 1
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 7,
+        "d": 9,
+        "c": 2
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 88,
+        "d": 43,
+        "c": 1
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 103,
+        "d": 74,
+        "c": 3
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 48,
+        "d": 21,
+        "c": 1
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 206,
+        "d": 156,
+        "c": 2
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 36,
+        "d": 22,
+        "c": 1
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 36,
+    "author": {
+      "id": 569822,
+      "login": "djencks",
+      "avatar": "https://avatars.githubusercontent.com/u/569822?s=60&v=4",
+      "path": "/djencks",
+      "hovercard_url": "/users/djencks/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 19581,
+        "d": 9998,
+        "c": 6
+      },
+      {
+        "w": 1581206400,
+        "a": 12626,
+        "d": 12610,
+        "c": 5
+      },
+      {
+        "w": 1581811200,
+        "a": 655,
+        "d": 443,
+        "c": 16
+      },
+      {
+        "w": 1582416000,
+        "a": 172,
+        "d": 0,
+        "c": 1
+      },
+      {
+        "w": 1583020800,
+        "a": 2209,
+        "d": 1969,
+        "c": 8
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 4,
+    "author": {
+      "id": 1249546,
+      "login": "rmannibucau",
+      "avatar": "https://avatars.githubusercontent.com/u/1249546?s=60&v=4",
+      "path": "/rmannibucau",
+      "hovercard_url": "/users/rmannibucau/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 59465,
+        "d": 26,
+        "c": 4
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 12,
+    "author": {
+      "id": 13417392,
+      "login": "rzo1",
+      "avatar": "https://avatars.githubusercontent.com/u/13417392?s=60&v=4",
+      "path": "/rzo1",
+      "hovercard_url": "/users/rzo1/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 64,
+        "d": 58,
+        "c": 3
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 1186,
+        "d": 761,
+        "c": 3
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 11,
+        "d": 6,
+        "c": 1
+      },
+      {
+        "w": 1621123200,
+        "a": 227,
+        "d": 216,
+        "c": 5
+      }
+    ]
+  },
+  {
+    "total": 5,
+    "author": {
+      "id": 8139890,
+      "login": "Daniel-Dos",
+      "avatar": "https://avatars.githubusercontent.com/u/8139890?s=60&v=4",
+      "path": "/Daniel-Dos",
+      "hovercard_url": "/users/Daniel-Dos/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 15,
+        "d": 15,
+        "c": 2
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 8,
+        "d": 0,
+        "c": 1
+      },
+      {
+        "w": 1545523200,
+        "a": 76,
+        "d": 76,
+        "c": 1
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 1,
+        "d": 1,
+        "c": 1
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 2,
+    "author": {
+      "id": 12471122,
+      "login": "sendilkumarn",
+      "avatar": "https://avatars.githubusercontent.com/u/12471122?s=60&v=4",
+      "path": "/sendilkumarn",
+      "hovercard_url": "/users/sendilkumarn/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 18,
+        "d": 17,
+        "c": 2
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 1,
+    "author": {
+      "id": 292938,
+      "login": "cchacin",
+      "avatar": "https://avatars.githubusercontent.com/u/292938?s=60&v=4",
+      "path": "/cchacin",
+      "hovercard_url": "/users/cchacin/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 84,
+        "d": 0,
+        "c": 1
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 14,
+    "author": {
+      "id": 1454523,
+      "login": "cesarhernandezgt",
+      "avatar": "https://avatars.githubusercontent.com/u/1454523?s=60&v=4",
+      "path": "/cesarhernandezgt",
+      "hovercard_url": "/users/cesarhernandezgt/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 37,
+        "d": 12,
+        "c": 1
+      },
+      {
+        "w": 1543708800,
+        "a": 134,
+        "d": 15,
+        "c": 1
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 277,
+        "d": 75,
+        "c": 2
+      },
+      {
+        "w": 1546732800,
+        "a": 205,
+        "d": 179,
+        "c": 3
+      },
+      {
+        "w": 1547337600,
+        "a": 54,
+        "d": 17,
+        "c": 1
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 52,
+        "d": 1,
+        "c": 1
+      },
+      {
+        "w": 1619913600,
+        "a": 314,
+        "d": 57,
+        "c": 5
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  },
+  {
+    "total": 79,
+    "author": {
+      "id": 94926,
+      "login": "dblevins",
+      "avatar": "https://avatars.githubusercontent.com/u/94926?s=60&v=4",
+      "path": "/dblevins",
+      "hovercard_url": "/users/dblevins/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1499558400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500163200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 12791,
+        "d": 33275,
+        "c": 16
+      },
+      {
+        "w": 1543708800,
+        "a": 2033,
+        "d": 847,
+        "c": 11
+      },
+      {
+        "w": 1544313600,
+        "a": 214,
+        "d": 625,
+        "c": 4
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 176,
+        "d": 45,
+        "c": 4
+      },
+      {
+        "w": 1546732800,
+        "a": 11161,
+        "d": 11050,
+        "c": 3
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 54,
+        "d": 6,
+        "c": 2
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 224,
+        "d": 0,
+        "c": 1
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 1122,
+        "d": 89,
+        "c": 6
+      },
+      {
+        "w": 1593907200,
+        "a": 38,
+        "d": 30,
+        "c": 1
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 212,
+        "d": 4,
+        "c": 2
+      },
+      {
+        "w": 1596931200,
+        "a": 4300,
+        "d": 723,
+        "c": 8
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 20,
+        "d": 170,
+        "c": 1
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 12104,
+        "d": 22764,
+        "c": 20
+      }
+    ]
+  },
+  {
+    "total": 9,
+    "author": {
+      "id": 2260551,
+      "login": "ivanjunckes",
+      "avatar": "https://avatars.githubusercontent.com/u/2260551?s=60&v=4",
+      "path": "/ivanjunckes",
+      "hovercard_url": "/users/ivanjunckes/hovercard"
+    },
+    "weeks": [
+      {
+        "w": 1498953600,
+        "a": 356,
+        "d": 314,
+        "c": 6
+      },
+      {
+        "w": 1499558400,
+        "a": 8,
+        "d": 12,
+        "c": 2
+      },
+      {
+        "w": 1500163200,
+        "a": 9,
+        "d": 1,
+        "c": 1
+      },
+      {
+        "w": 1500768000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501372800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1501977600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1502582400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503187200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1503792000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1504396800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505001600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1505606400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506211200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1506816000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1507420800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508025600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1508630400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509235200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1509840000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1510444800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511049600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1511654400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512259200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1512864000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1513468800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514073600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1514678400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515283200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1515888000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1516492800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517097600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1517702400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518307200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1518912000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1519516800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520121600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1520726400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521331200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1521936000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1522540800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523145600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1523750400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524355200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1524960000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1525564800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526169600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1526774400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527379200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1527984000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1528588800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529193600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1529798400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1530403200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531008000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1531612800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532217600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1532822400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1533427200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534032000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1534636800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535241600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1535846400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1536451200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537056000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1537660800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538265600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1538870400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1539475200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540080000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1540684800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541289600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1541894400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1542499200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543104000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1543708800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544313600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1544918400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1545523200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546128000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1546732800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547337600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1547942400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1548547200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549152000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1549756800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550361600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1550966400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1551571200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552176000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1552780800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553385600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1553990400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1554595200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555200000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1555804800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1556409600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557014400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1557619200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558224000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1558828800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1559433600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560038400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1560643200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561248000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1561852800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1562457600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563062400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1563667200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564272000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1564876800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1565481600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566086400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1566691200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567296000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1567900800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1568505600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569110400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1569715200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570320000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1570924800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1571529600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572134400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1572739200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573344000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1573948800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1574553600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575158400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1575763200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576368000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1576972800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1577577600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578182400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1578787200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579392000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1579996800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1580601600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581206400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1581811200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1582416000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583020800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1583625600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584230400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1584835200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1585440000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586044800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1586649600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587254400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1587859200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1588464000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589068800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1589673600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590278400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1590883200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1591488000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592092800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1592697600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593302400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1593907200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1594512000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595116800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1595721600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596326400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1596931200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1597536000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598140800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1598745600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599350400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1599955200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1600560000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601164800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1601769600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602374400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1602979200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1603584000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604188800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1604793600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1605398400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606003200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1606608000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607212800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1607817600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1608422400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609027200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1609632000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610236800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1610841600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1611446400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612051200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1612656000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613260800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1613865600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1614470400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615075200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1615680000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616284800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1616889600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1617494400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618099200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1618704000,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619308800,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1619913600,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1620518400,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      },
+      {
+        "w": 1621123200,
+        "a": 0,
+        "d": 0,
+        "c": 0
+      }
+    ]
+  }
+]
\ No newline at end of file