From c2976dc0372809e2845eacfd53b16dccfdb762ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 7 Feb 2024 02:40:03 +0000 Subject: [PATCH] Rebuild pages at 07955e126c640cbb34287aba205abfd114c337ab --- LargeCrowd_ip_master/authorship.json | 2 +- LargeCrowd_ip_master/commits.json | 2 +- archive.zip | Bin 6178125 -> 6178887 bytes reposense-logs/reposense.log.0 | 13288 ++++++++++++------------- summary.json | 2 +- 5 files changed, 6647 insertions(+), 6647 deletions(-) diff --git a/LargeCrowd_ip_master/authorship.json b/LargeCrowd_ip_master/authorship.json index 867325b1..8d746b28 100644 --- a/LargeCrowd_ip_master/authorship.json +++ b/LargeCrowd_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/duke/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-02"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-02"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-02"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Deadline class","lastModifiedDate":"2024-02-01"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate byDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected String byString;","lastModifiedDate":"2024-02-02"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Deadline","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" this.byString \u003d by;","lastModifiedDate":"2024-02-02"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-02"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.byDate \u003d parseDate(by, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the by string","lastModifiedDate":"2024-02-07"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-02"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Deadline: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-02"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" return \"D\";","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (by: \" + byDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-02"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":42}},{"path":"src/main/java/duke/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * Main class","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"public class Duke {","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private TaskList tasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" private Parser parser;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Duke","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" public Duke() {","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d new Storage(taskList);","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" storage.loadTaskList();","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" this.tasks \u003d new TaskList(storage, taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" this.parser \u003d new Parser(tasks);","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" * Starts the program","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * @throws StringIndexOutOfBoundsException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void start() {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" ui.showGreeting();","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" String input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" while (true) {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" if (!parser.executeUserInput(input)) {","lastModifiedDate":"2024-02-06"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" ui.showGoodbye();","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" ui.closeScanner();","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" * Main method","lastModifiedDate":"2024-02-07"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" * @param args","lastModifiedDate":"2024-02-07"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" Duke mainApp \u003d new Duke();","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" mainApp.start();","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-01"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":60}},{"path":"src/main/java/duke/Events.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Events class","lastModifiedDate":"2024-02-01"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Events extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate fromDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate toDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected String fromString;","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected String toString;","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Events","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * @param from","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * @param to","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Events(String description, String from, String to) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.fromString \u003d from;","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" this.toString \u003d to;","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" this.fromDate \u003d parseDate(from, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the from string","lastModifiedDate":"2024-02-07"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" this.toDate \u003d parseDate( ","lastModifiedDate":"2024-02-07"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" to, DATE_FORMAT_1,DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the to string","lastModifiedDate":"2024-02-07"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Events: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" return \"E\";","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (from: \" + fromDate.format(displayFormatter) + \", to: \" ","lastModifiedDate":"2024-02-07"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" + toDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-07"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":50}},{"path":"src/main/java/duke/Parser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" * This class is responsible for making sense of the user input","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"public class Parser {","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private TaskList taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Parser ","lastModifiedDate":"2024-02-07"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" public Parser(TaskList taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * Executes user input","lastModifiedDate":"2024-02-07"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" * @param input user input","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-07"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" */ ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" public boolean executeUserInput(String input) {","lastModifiedDate":"2024-02-06"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"bye\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" return false;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"list\")) { // show list","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" taskList.printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark done\")) { // mark as done","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(9).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" taskList.markDone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark undone\")) { // mark as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(11).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" taskList.markUndone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" taskList.addTask(input);","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" return true;","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":52}},{"path":"src/main/java/duke/Storage.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.io.IOException;","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Files;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Path;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Paths;","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"public class Storage {","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" private static final String FOLDER_PATH \u003d \"./tasklist\";","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" private static final String TASKLIST_PATH \u003d FOLDER_PATH + \"/tasklist.txt\";","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" private Path taskListPath \u003d Paths.get(TASKLIST_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" private Path folderPath \u003d Paths.get(FOLDER_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Storage","lastModifiedDate":"2024-02-07"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-07"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Storage(ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" createTaskList();","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * Loads taskList from file","lastModifiedDate":"2024-02-07"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void loadTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" // Clear existing tasks before loading","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.clear();","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" // Load tasks from file","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e taskListFromFile \u003d new ArrayList\u003c\u003e(Files.readAllLines(taskListPath));","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" // For each task in the file, add it to the taskList","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" for (String task : taskListFromFile) {","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" String[] taskParts \u003d task.split(\" \\\\| \", 3);","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" String taskType \u003d taskParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" String taskStatus \u003d taskParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" String taskDescription \u003d taskParts[2];","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" case \"T\":","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo(taskDescription);","lastModifiedDate":"2024-02-03"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" newTodo.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-03"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" case \"D\":","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineParts \u003d taskDescription.split(\" \\\\(by: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" String deadlineDescription \u003d deadlineParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" String deadlineByDateTime \u003d deadlineParts[1]","lastModifiedDate":"2024-02-07"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" .substring(0, deadlineParts[1].length() - 1);","lastModifiedDate":"2024-02-07"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(deadlineDescription, deadlineByDateTime);","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" newDeadline.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" case \"E\":","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d taskDescription.split(\" \\\\(from: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" String eventDescription \u003d eventParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" String eventAt \u003d eventParts[1].substring(0, eventParts[1].length() - 1);","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" String[] eventAtParts \u003d eventAt.split(\", to: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" String eventFrom \u003d eventAtParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" String eventTo \u003d eventAtParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(eventDescription, eventFrom, eventTo);","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" newEvent.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-03"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Unrecognized task type: \" + task);","lastModifiedDate":"2024-02-03"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" throw new IOException(\"Error loading data from file: unrecognized task type\");","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error loading data from file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" e.printStackTrace();","lastModifiedDate":"2024-02-03"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" * Saves taskList to file","lastModifiedDate":"2024-02-07"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" public void saveTaskListToFile() {","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e newTaskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-03"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-03"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" newTaskList.add(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" Files.write(taskListPath, newTaskList);","lastModifiedDate":"2024-02-03"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error saving data to file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" * Creates taskList and tasklist.txt if they do not exist","lastModifiedDate":"2024-02-07"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" private void createTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(folderPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" Files.createDirectories(folderPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(taskListPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" Files.createFile(taskListPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error creating tasklist: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":127}},{"path":"src/main/java/duke/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Locale;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Task class","lastModifiedDate":"2024-02-01"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected String task;","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_1 \u003d DateTimeFormatter.ofPattern(\"d/M/yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_2 \u003d DateTimeFormatter.ofPattern(\"yyyy-M-d\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_3 \u003d DateTimeFormatter.ofPattern(\"d-M-yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_4 \u003d DateTimeFormatter.ofPattern(\"d MMM yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Task","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param task","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Task(String task) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.task \u003d task;","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as done","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void markDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d true;","lastModifiedDate":"2024-02-01"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as undone","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" * Check if task is done","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-01"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" public boolean isDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" return \"\";","lastModifiedDate":"2024-02-01"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" public String getTaskStatus() {","lastModifiedDate":"2024-02-06"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone ? \"done\" : \"not done\";","lastModifiedDate":"2024-02-01"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" * Parse the date string and return a LocalDate object","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" * @param formatters","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" * @return LocalDate","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" * @throws IllegalArgumentException","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" * @throws Exception","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" protected static LocalDate parseDate(String by, DateTimeFormatter... formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" for (DateTimeFormatter formatter : formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" return LocalDate.parse(by, formatter);","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" } catch (Exception e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" // Try the next format","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" // If none of the formats match, you may want to handle this case","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" throw new IllegalArgumentException(\"Date could not be parsed with any of the provided formats\");","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" return getTaskType() + \" | \" + getTaskStatus() + \" | \" + this.task;","lastModifiedDate":"2024-02-06"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" * TaskType enum","lastModifiedDate":"2024-02-01"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":"enum TaskType {","lastModifiedDate":"2024-02-01"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" TODO,","lastModifiedDate":"2024-02-01"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" DEADLINE,","lastModifiedDate":"2024-02-01"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" EVENT,","lastModifiedDate":"2024-02-01"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" HELP,","lastModifiedDate":"2024-02-01"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" DELETE","lastModifiedDate":"2024-02-07"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":93}},{"path":"src/main/java/duke/TaskList.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"public class TaskList {","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" private int taskIndex;","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" public TaskList(Storage storage, ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Adds task to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" public void addTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" TaskType taskType \u003d getTaskType(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" case TODO:","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" addTodoTask(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" case DEADLINE:","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" addDeadline(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" case EVENT:","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" addEvent(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" case HELP:","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" ui.showHelp();","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" case DELETE:","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(task.substring(6).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" deleteTask(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid task index.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Sorry, that\u0027s not a command :( Enter \u0027help\u0027 for instructions.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" * Adds todoTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" public void addTodoTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" String todoDescription \u003d task.substring(4).trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" if (todoDescription.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid todo task.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo (todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added todo: \" + todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" * Adds deadline to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" public void addDeadline(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineDescription \u003d task.substring(8).trim().split(\"/by\", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" if (deadlineDescription.length !\u003d 2 || deadlineDescription[0].trim().isEmpty() ","lastModifiedDate":"2024-02-04"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" || deadlineDescription[1].trim().isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Enter \u0027deadline \u003ctask\u003e /by \u003cDEADLINE\u003e\u0027\");","lastModifiedDate":"2024-02-04"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" String description \u003d deadlineDescription[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" String by \u003d deadlineDescription[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added deadline: \" + newDeadline.toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":" * Adds eventTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" public void addEvent(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d task.substring(6).trim().split(\"/from\");","lastModifiedDate":"2024-02-04"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" if (eventParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" String[] durationParts \u003d eventParts[1].trim().split(\"/to\");","lastModifiedDate":"2024-02-04"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" if (durationParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" String desc \u003d eventParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":" String from \u003d durationParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" String to \u003d durationParts[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(desc, from, to);","lastModifiedDate":"2024-02-04"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-04"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added event: \" + desc + \" (from: \" + from + \", to: \" + to + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" * Deletes task from taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be deleted","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":129,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":130,"author":{"gitId":"LargeCrowd"},"content":" public void deleteTask(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":131,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":132,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Noted. I\u0027ve removed this task:\" + \"\\n\" + \"\\t\" ","lastModifiedDate":"2024-02-04"},{"lineNumber":133,"author":{"gitId":"LargeCrowd"},"content":" + \"[ \" + this.taskList.get(index) + \" ]\");","lastModifiedDate":"2024-02-04"},{"lineNumber":134,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.remove(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":135,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"There are \" + this.taskList.size() + \" tasks in your list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":136,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":137,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":138,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":139,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":140,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":141,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":142,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":143,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":144,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":145,"author":{"gitId":"LargeCrowd"},"content":" * Returns task type","lastModifiedDate":"2024-02-04"},{"lineNumber":146,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":147,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":148,"author":{"gitId":"LargeCrowd"},"content":" * @return TaskType","lastModifiedDate":"2024-02-04"},{"lineNumber":149,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":150,"author":{"gitId":"LargeCrowd"},"content":" public TaskType getTaskType(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":151,"author":{"gitId":"LargeCrowd"},"content":" if (task.startsWith(\"todo\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":152,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.TODO;","lastModifiedDate":"2024-02-04"},{"lineNumber":153,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"deadline\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":154,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DEADLINE;","lastModifiedDate":"2024-02-04"},{"lineNumber":155,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"event\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":156,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.EVENT;","lastModifiedDate":"2024-02-04"},{"lineNumber":157,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.equals(\"help\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":158,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.HELP;","lastModifiedDate":"2024-02-04"},{"lineNumber":159,"author":{"gitId":"LargeCrowd"},"content":" } else { // if (task.startsWith(\"delete\"))","lastModifiedDate":"2024-02-06"},{"lineNumber":160,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DELETE;","lastModifiedDate":"2024-02-04"},{"lineNumber":161,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":162,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":163,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":164,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":165,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as done","lastModifiedDate":"2024-02-04"},{"lineNumber":166,"author":{"gitId":"LargeCrowd"},"content":" * If task is already done, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":167,"author":{"gitId":"LargeCrowd"},"content":" * If task is undone, marks as done","lastModifiedDate":"2024-02-04"},{"lineNumber":168,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":169,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":170,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":171,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as done","lastModifiedDate":"2024-02-04"},{"lineNumber":172,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":173,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":174,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":175,"author":{"gitId":"LargeCrowd"},"content":" public void markDone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":176,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":177,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":178,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"You completed this task already!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":179,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":180,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":181,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":182,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Good job completing the task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":183,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":184,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":185,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":186,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":187,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":188,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":189,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":190,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":191,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":192,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":193,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":194,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":195,"author":{"gitId":"LargeCrowd"},"content":" * If task is already undone, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":196,"author":{"gitId":"LargeCrowd"},"content":" * If task is done, marks as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":197,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":198,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":199,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":200,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":201,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":202,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":203,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":204,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":205,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":206,"author":{"gitId":"LargeCrowd"},"content":" if (!this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":207,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops! You still haven\u0027t done this task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":208,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":209,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":210,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Better get to it soon!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":211,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":212,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":213,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":214,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":215,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":216,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":217,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":218,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":219,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":220,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-04"},{"lineNumber":221,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":222,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":223,"author":{"gitId":"LargeCrowd"},"content":" * Prints taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":224,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":225,"author":{"gitId":"LargeCrowd"},"content":" public void printList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":226,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":227,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Your tasklist is empty\");","lastModifiedDate":"2024-02-04"},{"lineNumber":228,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":229,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Here is your to-do list:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":230,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex \u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":231,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":232,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + this.taskIndex + \". \" + task);","lastModifiedDate":"2024-02-04"},{"lineNumber":233,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex++;","lastModifiedDate":"2024-02-04"},{"lineNumber":234,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":235,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":236,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":237,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":238,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":238}},{"path":"src/main/java/duke/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":" * Todo class","lastModifiedDate":"2024-02-01"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"public class Todo extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Todo","lastModifiedDate":"2024-02-07"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-07"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" public Todo (String description) {","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" return \"T\";","lastModifiedDate":"2024-02-01"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" return super.toString();","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/main/java/duke/Ui.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"public class Ui {","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" private static final String LINE \u003d \"____________________________________________________________\";","lastModifiedDate":"2024-02-07"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" private Scanner scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" public Ui() {","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" this.scanner \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" * Prints the greeting message","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" public void showGreeting() {","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" showHelp();","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * Prints the exit message","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public void showGoodbye() {","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" * Handles user input","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" * @return String user input","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" public String getUserInput() {","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Enter a task below: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" return scanner.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" * Close the scanner","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" public void closeScanner() {","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" scanner.close();","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" * Prints the line","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" public void printLine() {","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(LINE);","lastModifiedDate":"2024-02-07"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * Prints list of available commands","lastModifiedDate":"2024-02-03"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" public void showHelp() {","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Help: \");","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" String[] instructions \u003d {","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" \"DISPLAY LIST: list\",","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" \"ADD TODO: todo \u003cTASK NAME\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" \"ADD DEADLINE: deadline \u003cTASK NAME\u003e /by \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" \"ADD EVENT: event \u003cTASK NAME\u003e /from \u003cDD/MM/YYYY\u003e /to \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" \"MARK DONE: mark done \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" \"MARK UNDONE: mark undone \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" \"DELETE TASK: delete \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" \"EXIT: bye\"","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" };","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" for (int i \u003d 0; i \u003c instructions.length; i++) {","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + (i + 1) + \". \" + instructions[i]);","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" * Invalid task index message","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" public void printInvalidTaskIndex() {","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops, that wasn\u0027t a valid task index :P\");","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":79}},{"path":"src/test/java/duke/DeadlineTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertEquals;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class DeadlineTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if getTaskType returns correct task type","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_getTaskType_task() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.getTaskType(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertEquals(taskList.get(0).getTaskType(), \"D\");","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/test/java/duke/TodoTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertTrue;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class TodoTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if markDone marks task as done","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_markDone_taskUndone() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"todo task1\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.markDone(0);","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertTrue(taskList.get(0).isDone());","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"tasklist/tasklist.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"D | not done | deadline1 (by: 12 Dec 2020)","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":1}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"todo Buy groceries","lastModifiedDate":"2024-01-28"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"deadline Submit report /by some-time-later","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"event Team meeting /from abc /to xyz","lastModifiedDate":"2024-02-01"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"help","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"mark done 1","lastModifiedDate":"2024-01-28"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"mark undone 2","lastModifiedDate":"2024-01-28"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"delete 3","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"list","lastModifiedDate":"2024-01-28"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"bye","lastModifiedDate":"2024-01-28"}],"authorContributionMap":{"LargeCrowd":9}}] +[{"path":"src/main/java/duke/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-02"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-02"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-02"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Deadline class handles the deadline tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate byDate;","lastModifiedDate":"2024-02-02"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected String byString;","lastModifiedDate":"2024-02-02"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Deadline","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" this.byString \u003d by;","lastModifiedDate":"2024-02-02"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-02"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.byDate \u003d parseDate(by, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the by string","lastModifiedDate":"2024-02-07"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-02"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Deadline: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-02"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" return \"D\";","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (by: \" + byDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-02"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":42}},{"path":"src/main/java/duke/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * Main class","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"public class Duke {","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private TaskList tasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" private Parser parser;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Duke","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" public Duke() {","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d new Storage(taskList);","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" storage.loadTaskList();","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" this.tasks \u003d new TaskList(storage, taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" this.parser \u003d new Parser(tasks);","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" * Starts the program","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * @throws StringIndexOutOfBoundsException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void start() {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" ui.showGreeting();","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" String input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" while (true) {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" if (!parser.executeUserInput(input)) {","lastModifiedDate":"2024-02-06"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" input \u003d ui.getUserInput();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" ui.showGoodbye();","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" ui.closeScanner();","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" * Main method","lastModifiedDate":"2024-02-07"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" * @param args","lastModifiedDate":"2024-02-07"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" Duke mainApp \u003d new Duke();","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" mainApp.start();","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-01"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":60}},{"path":"src/main/java/duke/Events.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.DateTimeException;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Events class handles the events tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Events extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate fromDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected LocalDate toDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected String fromString;","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected String toString;","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Events","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * @param from","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * @param to","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @throws DateTimeException","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Events(String description, String from, String to) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.fromString \u003d from;","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" this.toString \u003d to;","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" this.fromDate \u003d parseDate(from, DATE_FORMAT_1, DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the from string","lastModifiedDate":"2024-02-07"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" this.toDate \u003d parseDate( ","lastModifiedDate":"2024-02-07"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" to, DATE_FORMAT_1,DATE_FORMAT_2, ","lastModifiedDate":"2024-02-07"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" DATE_FORMAT_3, DATE_FORMAT_4); // Parse the to string","lastModifiedDate":"2024-02-07"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" } catch (DateTimeException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" throw new DateTimeException(\"Error parsing date in Events: \" + e.getMessage());","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" return \"E\";","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" DateTimeFormatter displayFormatter \u003d DATE_FORMAT_4;","lastModifiedDate":"2024-02-07"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" return super.toString() + \" (from: \" + fromDate.format(displayFormatter) + \", to: \" ","lastModifiedDate":"2024-02-07"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" + toDate.format(displayFormatter) + \")\";","lastModifiedDate":"2024-02-07"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":50}},{"path":"src/main/java/duke/Parser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" * Parser class deals with making sense of the user command","lastModifiedDate":"2024-02-07"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"public class Parser {","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private TaskList taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Parser ","lastModifiedDate":"2024-02-07"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" public Parser(TaskList taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * Executes user input","lastModifiedDate":"2024-02-07"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" * @param input user input","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-07"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" */ ","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" public boolean executeUserInput(String input) {","lastModifiedDate":"2024-02-06"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"bye\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" return false;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" if (input.equals(\"list\")) { // show list","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" taskList.printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark done\")) { // mark as done","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(9).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" taskList.markDone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"mark undone\")) { // mark as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(input.substring(11).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" taskList.markUndone(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" } else if (input.startsWith(\"find\")) { // tasks that contain keyword","lastModifiedDate":"2024-02-07"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-07"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" String keyword \u003d input.substring(5).trim();","lastModifiedDate":"2024-02-07"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" taskList.findTasks(keyword);","lastModifiedDate":"2024-02-07"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" } catch (StringIndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-07"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidKeyword();","lastModifiedDate":"2024-02-07"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" } else { ","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" taskList.addTask(input);","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" return true;","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":59}},{"path":"src/main/java/duke/Storage.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.io.IOException;","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Files;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Path;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.nio.file.Paths;","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-07"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" * Storage class deals with loading tasks from the file and saving tasks in the file","lastModifiedDate":"2024-02-07"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":"public class Storage {","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" private static final String FOLDER_PATH \u003d \"./tasklist\";","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" private static final String TASKLIST_PATH \u003d FOLDER_PATH + \"/tasklist.txt\";","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" private Path taskListPath \u003d Paths.get(TASKLIST_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" private Path folderPath \u003d Paths.get(FOLDER_PATH);","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Storage","lastModifiedDate":"2024-02-07"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" *","lastModifiedDate":"2024-02-07"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" * @param taskList","lastModifiedDate":"2024-02-07"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" public Storage(ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" createTaskList();","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" * Loads taskList from file","lastModifiedDate":"2024-02-07"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" public void loadTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" // Clear existing tasks before loading","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.clear();","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" // Load tasks from file","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e taskListFromFile \u003d new ArrayList\u003c\u003e(Files.readAllLines(taskListPath));","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" // For each task in the file, add it to the taskList","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" for (String task : taskListFromFile) {","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" String[] taskParts \u003d task.split(\" \\\\| \", 3);","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" String taskType \u003d taskParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" String taskStatus \u003d taskParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" String taskDescription \u003d taskParts[2];","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" case \"T\":","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo(taskDescription);","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" newTodo.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" case \"D\":","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineParts \u003d taskDescription.split(\" \\\\(by: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" String deadlineDescription \u003d deadlineParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" String deadlineByDateTime \u003d deadlineParts[1]","lastModifiedDate":"2024-02-07"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" .substring(0, deadlineParts[1].length() - 1);","lastModifiedDate":"2024-02-07"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(deadlineDescription, deadlineByDateTime);","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" newDeadline.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" case \"E\":","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d taskDescription.split(\" \\\\(from: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" String eventDescription \u003d eventParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" String eventAt \u003d eventParts[1].substring(0, eventParts[1].length() - 1);","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" String[] eventAtParts \u003d eventAt.split(\", to: \", 2);","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" String eventFrom \u003d eventAtParts[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" String eventTo \u003d eventAtParts[1];","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(eventDescription, eventFrom, eventTo);","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" if (taskStatus.equals(\"done\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" newEvent.markDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-03"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-03"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Unrecognized task type: \" + task);","lastModifiedDate":"2024-02-03"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" throw new IOException(\"Error loading data from file: unrecognized task type\");","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error loading data from file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":" e.printStackTrace();","lastModifiedDate":"2024-02-03"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" * Saves taskList to file","lastModifiedDate":"2024-02-07"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" public void saveTaskListToFile() {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cString\u003e newTaskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-03"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-03"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" newTaskList.add(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" Files.write(taskListPath, newTaskList);","lastModifiedDate":"2024-02-03"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error saving data to file: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-07"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" * Creates taskList and tasklist.txt if they do not exist","lastModifiedDate":"2024-02-07"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" private void createTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(folderPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" Files.createDirectories(folderPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" if (Files.notExists(taskListPath)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" Files.createFile(taskListPath);","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" } catch (IOException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Error creating tasklist: \" + e.getMessage());","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":129,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":130,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":130}},{"path":"src/main/java/duke/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.time.LocalDate;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Locale;","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * Task class handles the tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":"public class Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" protected String task;","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_1 \u003d DateTimeFormatter.ofPattern(\"d/M/yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_2 \u003d DateTimeFormatter.ofPattern(\"yyyy-M-d\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_3 \u003d DateTimeFormatter.ofPattern(\"d-M-yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" protected DateTimeFormatter DATE_FORMAT_4 \u003d DateTimeFormatter.ofPattern(\"d MMM yyyy\", Locale.ENGLISH);","lastModifiedDate":"2024-02-07"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Task","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param task","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public Task(String task) {","lastModifiedDate":"2024-02-01"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" this.task \u003d task;","lastModifiedDate":"2024-02-01"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as done","lastModifiedDate":"2024-02-01"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" public void markDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d true;","lastModifiedDate":"2024-02-01"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" * Mark task as undone","lastModifiedDate":"2024-02-01"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-01"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-01"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" * Check if task is done","lastModifiedDate":"2024-02-01"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-01"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" * @return boolean","lastModifiedDate":"2024-02-01"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" public boolean isDone() {","lastModifiedDate":"2024-02-01"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone;","lastModifiedDate":"2024-02-01"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" return \"\";","lastModifiedDate":"2024-02-01"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" public String getTaskStatus() {","lastModifiedDate":"2024-02-06"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" return this.isDone ? \"done\" : \"not done\";","lastModifiedDate":"2024-02-01"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" * Parse the date string and return a LocalDate object","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" * @param by","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" * @param formatters","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" * @return LocalDate","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" * @throws IllegalArgumentException","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" * @throws Exception","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" protected static LocalDate parseDate(String by, DateTimeFormatter... formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" for (DateTimeFormatter formatter : formatters) {","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" return LocalDate.parse(by, formatter);","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" } catch (Exception e) {","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" // Try the next format","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" // If none of the formats match, you may want to handle this case","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" throw new IllegalArgumentException(\"Date could not be parsed with any of the provided formats\");","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" return getTaskType() + \" | \" + getTaskStatus() + \" | \" + this.task;","lastModifiedDate":"2024-02-06"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" * TaskType enum","lastModifiedDate":"2024-02-01"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":"enum TaskType {","lastModifiedDate":"2024-02-01"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" TODO,","lastModifiedDate":"2024-02-01"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" DEADLINE,","lastModifiedDate":"2024-02-01"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" EVENT,","lastModifiedDate":"2024-02-01"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" HELP,","lastModifiedDate":"2024-02-01"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" DELETE","lastModifiedDate":"2024-02-07"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":93}},{"path":"src/main/java/duke/TaskList.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/** ","lastModifiedDate":"2024-02-07"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * TaskList class contains the task list","lastModifiedDate":"2024-02-07"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"public class TaskList {","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" private ArrayList\u003cTask\u003e taskList;","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private Ui ui;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private int taskIndex;","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" private Storage storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" public TaskList(Storage storage, ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" this.taskList \u003d taskList;","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" this.ui \u003d new Ui();","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" this.storage \u003d storage;","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" * Adds task to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":" public void addTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" TaskType taskType \u003d getTaskType(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" switch (taskType) {","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" case TODO:","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" addTodoTask(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":" case DEADLINE:","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" addDeadline(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" case EVENT:","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" addEvent(task);","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" case HELP:","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" ui.showHelp();","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" case DELETE:","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" int index \u003d Integer.parseInt(task.substring(6).trim()) - 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" deleteTask(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid task index.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":" default:","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Sorry, that\u0027s not a command :( Enter \u0027help\u0027 for instructions.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":" * Adds todoTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" public void addTodoTask(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":" String todoDescription \u003d task.substring(4).trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" if (todoDescription.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Please enter a valid todo task.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" Todo newTodo \u003d new Todo (todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newTodo);","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added todo: \" + todoDescription);","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" * Adds deadline to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" public void addDeadline(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" String[] deadlineDescription \u003d task.substring(8).trim().split(\"/by\", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" if (deadlineDescription.length !\u003d 2 || deadlineDescription[0].trim().isEmpty() ","lastModifiedDate":"2024-02-04"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" || deadlineDescription[1].trim().isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input. Enter \u0027deadline \u003ctask\u003e /by \u003cDEADLINE\u003e\u0027\");","lastModifiedDate":"2024-02-04"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" String description \u003d deadlineDescription[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" String by \u003d deadlineDescription[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" Deadline newDeadline \u003d new Deadline(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newDeadline);","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":91,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added deadline: \" + newDeadline.toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":92,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":93,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":95,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":97,"author":{"gitId":"LargeCrowd"},"content":" * Adds eventTask to taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":98,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":100,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":101,"author":{"gitId":"LargeCrowd"},"content":" public void addEvent(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":103,"author":{"gitId":"LargeCrowd"},"content":" String[] eventParts \u003d task.substring(6).trim().split(\"/from\");","lastModifiedDate":"2024-02-04"},{"lineNumber":104,"author":{"gitId":"LargeCrowd"},"content":" if (eventParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":105,"author":{"gitId":"LargeCrowd"},"content":" String[] durationParts \u003d eventParts[1].trim().split(\"/to\");","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"LargeCrowd"},"content":" if (durationParts.length \u003d\u003d 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":107,"author":{"gitId":"LargeCrowd"},"content":" String desc \u003d eventParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":108,"author":{"gitId":"LargeCrowd"},"content":" String from \u003d durationParts[0].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":109,"author":{"gitId":"LargeCrowd"},"content":" String to \u003d durationParts[1].trim();","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"LargeCrowd"},"content":" Events newEvent \u003d new Events(desc, from, to);","lastModifiedDate":"2024-02-04"},{"lineNumber":111,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.add(newEvent);","lastModifiedDate":"2024-02-04"},{"lineNumber":112,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-04"},{"lineNumber":113,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Added event: \" + desc + \" (from: \" + from + \", to: \" + to + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":114,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":115,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-03"},{"lineNumber":116,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":117,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":118,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":119,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":120,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":121,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Invalid input for event. \"","lastModifiedDate":"2024-02-07"},{"lineNumber":122,"author":{"gitId":"LargeCrowd"},"content":" + \"Please use the format: event \u003ctask\u003e /from \u003cstart time\u003e /to \u003cend time\u003e\");","lastModifiedDate":"2024-02-07"},{"lineNumber":123,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":124,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":125,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"LargeCrowd"},"content":" * Deletes task from taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":129,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be deleted","lastModifiedDate":"2024-02-04"},{"lineNumber":130,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":131,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":132,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":133,"author":{"gitId":"LargeCrowd"},"content":" public void deleteTask(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":134,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":135,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Noted. I\u0027ve removed this task:\" + \"\\n\" + \"\\t\" ","lastModifiedDate":"2024-02-04"},{"lineNumber":136,"author":{"gitId":"LargeCrowd"},"content":" + \"[ \" + this.taskList.get(index) + \" ]\");","lastModifiedDate":"2024-02-04"},{"lineNumber":137,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.remove(index);","lastModifiedDate":"2024-02-04"},{"lineNumber":138,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"There are \" + this.taskList.size() + \" tasks in your list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":139,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":140,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":141,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":142,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":143,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":144,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":145,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":146,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":147,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-04"},{"lineNumber":148,"author":{"gitId":"LargeCrowd"},"content":" * Returns task type","lastModifiedDate":"2024-02-04"},{"lineNumber":149,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":150,"author":{"gitId":"LargeCrowd"},"content":" * @param task task to be added","lastModifiedDate":"2024-02-04"},{"lineNumber":151,"author":{"gitId":"LargeCrowd"},"content":" * @return TaskType","lastModifiedDate":"2024-02-04"},{"lineNumber":152,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":153,"author":{"gitId":"LargeCrowd"},"content":" public TaskType getTaskType(String task) {","lastModifiedDate":"2024-02-04"},{"lineNumber":154,"author":{"gitId":"LargeCrowd"},"content":" if (task.startsWith(\"todo\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":155,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.TODO;","lastModifiedDate":"2024-02-04"},{"lineNumber":156,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"deadline\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":157,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DEADLINE;","lastModifiedDate":"2024-02-04"},{"lineNumber":158,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.startsWith(\"event\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":159,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.EVENT;","lastModifiedDate":"2024-02-04"},{"lineNumber":160,"author":{"gitId":"LargeCrowd"},"content":" } else if (task.equals(\"help\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":161,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.HELP;","lastModifiedDate":"2024-02-04"},{"lineNumber":162,"author":{"gitId":"LargeCrowd"},"content":" } else { // if (task.startsWith(\"delete\"))","lastModifiedDate":"2024-02-06"},{"lineNumber":163,"author":{"gitId":"LargeCrowd"},"content":" return TaskType.DELETE;","lastModifiedDate":"2024-02-04"},{"lineNumber":164,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":165,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":166,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":167,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":168,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as done","lastModifiedDate":"2024-02-04"},{"lineNumber":169,"author":{"gitId":"LargeCrowd"},"content":" * If task is already done, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":170,"author":{"gitId":"LargeCrowd"},"content":" * If task is undone, marks as done","lastModifiedDate":"2024-02-04"},{"lineNumber":171,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":172,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":173,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":174,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as done","lastModifiedDate":"2024-02-04"},{"lineNumber":175,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":176,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":177,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":178,"author":{"gitId":"LargeCrowd"},"content":" public void markDone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":179,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":180,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":181,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"You completed this task already!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":182,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":183,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":184,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":185,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Good job completing the task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":186,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":187,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":188,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":189,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":190,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":191,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":192,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":193,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":194,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":195,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":196,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":197,"author":{"gitId":"LargeCrowd"},"content":" * Marks task as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":198,"author":{"gitId":"LargeCrowd"},"content":" * If task is already undone, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":199,"author":{"gitId":"LargeCrowd"},"content":" * If task is done, marks as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":200,"author":{"gitId":"LargeCrowd"},"content":" * If task does not exist, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":201,"author":{"gitId":"LargeCrowd"},"content":" * If input is not a number, prints error message","lastModifiedDate":"2024-02-04"},{"lineNumber":202,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-04"},{"lineNumber":203,"author":{"gitId":"LargeCrowd"},"content":" * @param index index of task to be marked as undone","lastModifiedDate":"2024-02-04"},{"lineNumber":204,"author":{"gitId":"LargeCrowd"},"content":" * @throws IndexOutOfBoundsException if index is out of bounds","lastModifiedDate":"2024-02-04"},{"lineNumber":205,"author":{"gitId":"LargeCrowd"},"content":" * @throws NumberFormatException if input is not a number","lastModifiedDate":"2024-02-04"},{"lineNumber":206,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":207,"author":{"gitId":"LargeCrowd"},"content":" public void markUndone(int index) {","lastModifiedDate":"2024-02-04"},{"lineNumber":208,"author":{"gitId":"LargeCrowd"},"content":" try {","lastModifiedDate":"2024-02-04"},{"lineNumber":209,"author":{"gitId":"LargeCrowd"},"content":" if (!this.taskList.get(index).isDone()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":210,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops! You still haven\u0027t done this task!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":211,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":212,"author":{"gitId":"LargeCrowd"},"content":" this.taskList.get(index).markUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":213,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Better get to it soon!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":214,"author":{"gitId":"LargeCrowd"},"content":" storage.saveTaskListToFile();","lastModifiedDate":"2024-02-04"},{"lineNumber":215,"author":{"gitId":"LargeCrowd"},"content":" printList();","lastModifiedDate":"2024-02-04"},{"lineNumber":216,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":217,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":218,"author":{"gitId":"LargeCrowd"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":219,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":220,"author":{"gitId":"LargeCrowd"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2024-02-04"},{"lineNumber":221,"author":{"gitId":"LargeCrowd"},"content":" ui.printInvalidTaskIndex();","lastModifiedDate":"2024-02-04"},{"lineNumber":222,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":223,"author":{"gitId":"LargeCrowd"},"content":" } ","lastModifiedDate":"2024-02-04"},{"lineNumber":224,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":225,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":226,"author":{"gitId":"LargeCrowd"},"content":" * Find tasks that contain keyword","lastModifiedDate":"2024-02-07"},{"lineNumber":227,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":228,"author":{"gitId":"LargeCrowd"},"content":" public void findTasks(String keyword) {","lastModifiedDate":"2024-02-07"},{"lineNumber":229,"author":{"gitId":"LargeCrowd"},"content":" int count \u003d 0;","lastModifiedDate":"2024-02-07"},{"lineNumber":230,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-07"},{"lineNumber":231,"author":{"gitId":"LargeCrowd"},"content":" if (task.toString().contains(keyword)) {","lastModifiedDate":"2024-02-07"},{"lineNumber":232,"author":{"gitId":"LargeCrowd"},"content":" if (count \u003d\u003d 0) {","lastModifiedDate":"2024-02-07"},{"lineNumber":233,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Here are the matching tasks in your list:\");","lastModifiedDate":"2024-02-07"},{"lineNumber":234,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":235,"author":{"gitId":"LargeCrowd"},"content":" count++;","lastModifiedDate":"2024-02-07"},{"lineNumber":236,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + count + \". \" + task);","lastModifiedDate":"2024-02-07"},{"lineNumber":237,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":238,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":239,"author":{"gitId":"LargeCrowd"},"content":" if (count \u003d\u003d 0) {","lastModifiedDate":"2024-02-07"},{"lineNumber":240,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"No matching tasks found :(\");","lastModifiedDate":"2024-02-07"},{"lineNumber":241,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":242,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-07"},{"lineNumber":243,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":244,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":245,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-04"},{"lineNumber":246,"author":{"gitId":"LargeCrowd"},"content":" * Prints taskList","lastModifiedDate":"2024-02-04"},{"lineNumber":247,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-04"},{"lineNumber":248,"author":{"gitId":"LargeCrowd"},"content":" public void printList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":249,"author":{"gitId":"LargeCrowd"},"content":" if (this.taskList.isEmpty()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":250,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Your tasklist is empty\");","lastModifiedDate":"2024-02-04"},{"lineNumber":251,"author":{"gitId":"LargeCrowd"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":252,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Here is your to-do list:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":253,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex \u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":254,"author":{"gitId":"LargeCrowd"},"content":" for (Task task : this.taskList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":255,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + this.taskIndex + \". \" + task);","lastModifiedDate":"2024-02-04"},{"lineNumber":256,"author":{"gitId":"LargeCrowd"},"content":" this.taskIndex++;","lastModifiedDate":"2024-02-04"},{"lineNumber":257,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":258,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":259,"author":{"gitId":"LargeCrowd"},"content":" ui.printLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":260,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":261,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":261}},{"path":"src/main/java/duke/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":" * Todo class handles the todo tasks of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"public class Todo extends Task {","lastModifiedDate":"2024-02-01"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":" * Constructor for Todo","lastModifiedDate":"2024-02-07"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-07"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" * @param description","lastModifiedDate":"2024-02-07"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" public Todo (String description) {","lastModifiedDate":"2024-02-01"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" super(description);","lastModifiedDate":"2024-02-01"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" protected String getTaskType() {","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" return \"T\";","lastModifiedDate":"2024-02-01"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-01"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" @Override","lastModifiedDate":"2024-02-01"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" public String toString() {","lastModifiedDate":"2024-02-01"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" return super.toString();","lastModifiedDate":"2024-02-01"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-01"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-01"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/main/java/duke/Ui.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"/**","lastModifiedDate":"2024-02-07"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":" * Ui class handles the user interactions of the application","lastModifiedDate":"2024-02-07"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"public class Ui {","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":" private static final String LINE \u003d \"____________________________________________________________\";","lastModifiedDate":"2024-02-07"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" private Scanner scanner;","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" public Ui() {","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" this.scanner \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" * Prints the greeting message","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" public void showGreeting() {","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" showHelp();","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"LargeCrowd"},"content":" * Prints the exit message","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"LargeCrowd"},"content":" public void showGoodbye() {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"LargeCrowd"},"content":" * Handles user input","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"LargeCrowd"},"content":" * ","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"LargeCrowd"},"content":" * @return String user input","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"LargeCrowd"},"content":" public String getUserInput() {","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"Enter a task below: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"LargeCrowd"},"content":" return scanner.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"LargeCrowd"},"content":" * Close the scanner","lastModifiedDate":"2024-02-03"},{"lineNumber":44,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"LargeCrowd"},"content":" public void closeScanner() {","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"LargeCrowd"},"content":" scanner.close();","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":50,"author":{"gitId":"LargeCrowd"},"content":" * Prints the line","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"LargeCrowd"},"content":" public void printLine() {","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(LINE);","lastModifiedDate":"2024-02-07"},{"lineNumber":54,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"LargeCrowd"},"content":" * Prints list of available commands","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"LargeCrowd"},"content":" public void showHelp() {","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Help: \");","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"LargeCrowd"},"content":" String[] instructions \u003d {","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"LargeCrowd"},"content":" \"DISPLAY LIST: list\",","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"LargeCrowd"},"content":" \"ADD TODO: todo \u003cTASK NAME\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"LargeCrowd"},"content":" \"ADD DEADLINE: deadline \u003cTASK NAME\u003e /by \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"LargeCrowd"},"content":" \"ADD EVENT: event \u003cTASK NAME\u003e /from \u003cDD/MM/YYYY\u003e /to \u003cDD/MM/YYYY\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"LargeCrowd"},"content":" \"MARK DONE: mark done \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"LargeCrowd"},"content":" \"MARK UNDONE: mark undone \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"LargeCrowd"},"content":" \"DELETE TASK: delete \u003cINDEX\u003e\",","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"LargeCrowd"},"content":" \"EXIT: bye\"","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"LargeCrowd"},"content":" };","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"LargeCrowd"},"content":" for (int i \u003d 0; i \u003c instructions.length; i++) {","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + (i + 1) + \". \" + instructions[i]);","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"LargeCrowd"},"content":" * Invalid task index message","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"LargeCrowd"},"content":" public void printInvalidTaskIndex() {","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"Oops, that wasn\u0027t a valid task index :P\");","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-07"},{"lineNumber":84,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-07"},{"lineNumber":85,"author":{"gitId":"LargeCrowd"},"content":" * Invalid keyword message","lastModifiedDate":"2024-02-07"},{"lineNumber":86,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-07"},{"lineNumber":87,"author":{"gitId":"LargeCrowd"},"content":" public void printInvalidKeyword() {","lastModifiedDate":"2024-02-07"},{"lineNumber":88,"author":{"gitId":"LargeCrowd"},"content":" System.out.println(\"\\t\" + \"No tasks match that keyword :(\");","lastModifiedDate":"2024-02-07"},{"lineNumber":89,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-07"},{"lineNumber":90,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"LargeCrowd":90}},{"path":"src/test/java/duke/DeadlineTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertEquals;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class DeadlineTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /** ","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if getTaskType returns correct task type","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_getTaskType_task() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.getTaskType(\"deadline deadline1 /by 2020-12-12\");","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertEquals(taskList.get(0).getTaskType(), \"D\");","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"src/test/java/duke/TodoTest.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"package duke;","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"import org.junit.jupiter.api.Test;","lastModifiedDate":"2024-02-06"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"import static org.junit.jupiter.api.Assertions.assertTrue;","lastModifiedDate":"2024-02-06"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"import java.util.ArrayList;","lastModifiedDate":"2024-02-06"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"","lastModifiedDate":"2024-02-06"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"public class TodoTest {","lastModifiedDate":"2024-02-06"},{"lineNumber":10,"author":{"gitId":"LargeCrowd"},"content":" /**","lastModifiedDate":"2024-02-06"},{"lineNumber":11,"author":{"gitId":"LargeCrowd"},"content":" * Tests if markDone marks task as done","lastModifiedDate":"2024-02-06"},{"lineNumber":12,"author":{"gitId":"LargeCrowd"},"content":" */","lastModifiedDate":"2024-02-06"},{"lineNumber":13,"author":{"gitId":"LargeCrowd"},"content":" @Test","lastModifiedDate":"2024-02-06"},{"lineNumber":14,"author":{"gitId":"LargeCrowd"},"content":" public void test_markDone_taskUndone() {","lastModifiedDate":"2024-02-06"},{"lineNumber":15,"author":{"gitId":"LargeCrowd"},"content":" ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2024-02-06"},{"lineNumber":16,"author":{"gitId":"LargeCrowd"},"content":" TaskList taskListObj \u003d new TaskList(new Storage(taskList), taskList);","lastModifiedDate":"2024-02-06"},{"lineNumber":17,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.addTask(\"todo task1\");","lastModifiedDate":"2024-02-06"},{"lineNumber":18,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":19,"author":{"gitId":"LargeCrowd"},"content":" taskListObj.markDone(0);","lastModifiedDate":"2024-02-06"},{"lineNumber":20,"author":{"gitId":"LargeCrowd"},"content":" ","lastModifiedDate":"2024-02-06"},{"lineNumber":21,"author":{"gitId":"LargeCrowd"},"content":" assertTrue(taskList.get(0).isDone());","lastModifiedDate":"2024-02-06"},{"lineNumber":22,"author":{"gitId":"LargeCrowd"},"content":" }","lastModifiedDate":"2024-02-06"},{"lineNumber":23,"author":{"gitId":"LargeCrowd"},"content":"}","lastModifiedDate":"2024-02-06"}],"authorContributionMap":{"LargeCrowd":23}},{"path":"tasklist/tasklist.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"D | not done | deadline1 (by: 12 Dec 2020)","lastModifiedDate":"2024-02-06"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"D | not done | deadline2 (by: 23 Mar 2030)","lastModifiedDate":"2024-02-07"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"T | not done | newthing","lastModifiedDate":"2024-02-07"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"T | not done | thing2","lastModifiedDate":"2024-02-07"}],"authorContributionMap":{"LargeCrowd":4}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LargeCrowd"},"content":"todo Buy groceries","lastModifiedDate":"2024-01-28"},{"lineNumber":2,"author":{"gitId":"LargeCrowd"},"content":"deadline Submit report /by some-time-later","lastModifiedDate":"2024-02-01"},{"lineNumber":3,"author":{"gitId":"LargeCrowd"},"content":"event Team meeting /from abc /to xyz","lastModifiedDate":"2024-02-01"},{"lineNumber":4,"author":{"gitId":"LargeCrowd"},"content":"help","lastModifiedDate":"2024-02-01"},{"lineNumber":5,"author":{"gitId":"LargeCrowd"},"content":"mark done 1","lastModifiedDate":"2024-01-28"},{"lineNumber":6,"author":{"gitId":"LargeCrowd"},"content":"mark undone 2","lastModifiedDate":"2024-01-28"},{"lineNumber":7,"author":{"gitId":"LargeCrowd"},"content":"delete 3","lastModifiedDate":"2024-02-01"},{"lineNumber":8,"author":{"gitId":"LargeCrowd"},"content":"list","lastModifiedDate":"2024-01-28"},{"lineNumber":9,"author":{"gitId":"LargeCrowd"},"content":"bye","lastModifiedDate":"2024-01-28"}],"authorContributionMap":{"LargeCrowd":9}}] diff --git a/LargeCrowd_ip_master/commits.json b/LargeCrowd_ip_master/commits.json index 9f695c41..da48e161 100644 --- a/LargeCrowd_ip_master/commits.json +++ b/LargeCrowd_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"LargeCrowd":[{"date":"2024-01-24","commitResults":[{"hash":"49c29dfd840f28a7c585fafccf84d4c585513b90","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-0 changes. Program exits after greeting with new name\n","tags":["level-0"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":6}}},{"hash":"c5b339d785b2bd60106ead0793fd41f02ee29212","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-1 changes. Takes an input then repeats it\n","tags":["level-1"],"fileTypesAndContributionMap":{"java":{"insertions":16,"deletions":6}}},{"hash":"70f4b4a57bc03080d7f74ec1fbd22587ae90010d","isMergeCommit":false,"messageTitle":"Level 2: Add, List","messageBody":"","tags":["level-2"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":2}}}]},{"date":"2024-01-25","commitResults":[{"hash":"9e13702b1e147029741876c1f3cb6dfbf2788a18","isMergeCommit":false,"messageTitle":"level 3.1","messageBody":"","tags":["level-3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":1}}},{"hash":"0dc9957d7a630586fc880929a4c3d6d487ffa74f","isMergeCommit":false,"messageTitle":"level-3. Mark as Done","messageBody":"","tags":["level-3.2"],"fileTypesAndContributionMap":{"java":{"insertions":117,"deletions":36}}},{"hash":"dbf8aa393644779dded98e8ea0bd58cf2a64fb0e","isMergeCommit":false,"messageTitle":"changed \"item\" to \"task\"","messageBody":"","tags":["level-3.2.3"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":25}}},{"hash":"b9c353a36b895fee6e33f009a1b831a64c506ded","isMergeCommit":false,"messageTitle":"Starting level 4","messageBody":"","tags":["level-4"],"fileTypesAndContributionMap":{"java":{"insertions":42,"deletions":3}}}]},{"date":"2024-01-26","commitResults":[{"hash":"b23904d215ed8f89a707750fa2a5d39d1d31b326","isMergeCommit":false,"messageTitle":"debug level-3","messageBody":"","tags":["level-3.3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"11ad844336850d14f62429eaa3d080342d2d7d67","isMergeCommit":false,"messageTitle":"added documentation and other small bug fixes","messageBody":"","tags":["level-3.3.1"],"fileTypesAndContributionMap":{"java":{"insertions":116,"deletions":36}}}]},{"date":"2024-01-27","commitResults":[{"hash":"dea5ab21319f3d168240ea0f706e374acce6c466","isMergeCommit":false,"messageTitle":"Level 4","messageBody":"","tags":["level-4.1"],"fileTypesAndContributionMap":{"java":{"insertions":103,"deletions":18}}}]},{"date":"2024-01-28","commitResults":[{"hash":"86c1154327fd326c76b2480e98d852bfb711b8ad","isMergeCommit":false,"messageTitle":"A-TextUiTesting","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":7,"deletions":0}}},{"hash":"0b62f5899c33e44fc6faf4fffb17be68a33d76c4","isMergeCommit":false,"messageTitle":"Level 5","messageBody":"","tags":["level-5"],"fileTypesAndContributionMap":{"java":{"insertions":10,"deletions":4}}},{"hash":"8a09305dca94dc77f9abdf88d3be49249ee9097b","isMergeCommit":false,"messageTitle":"Level 6: Delete, and did better organisation of task adding","messageBody":"","tags":["level-6"],"fileTypesAndContributionMap":{"java":{"insertions":79,"deletions":41}}},{"hash":"f6ed6d5d20397dd850ea9ec4bea01927dd3c8b62","isMergeCommit":false,"messageTitle":"A-Enums","messageBody":"","tags":["A-Enums"],"fileTypesAndContributionMap":{"java":{"insertions":73,"deletions":18}}}]},{"date":"2024-01-29","commitResults":[{"hash":"3bea4090f6e51587351549c1b5d1d95cf953884d","isMergeCommit":false,"messageTitle":"Edit documentation \u0026 styling","messageBody":"","tags":["A-Enums-1"],"fileTypesAndContributionMap":{"java":{"insertions":75,"deletions":99}}}]},{"date":"2024-01-30","commitResults":[{"hash":"fecfe9263e9deb5a640acb38a0406e2262e27223","isMergeCommit":false,"messageTitle":"Start level 7","messageBody":"","tags":["level-7"],"fileTypesAndContributionMap":{"java":{"insertions":77,"deletions":0}}}]},{"date":"2024-01-31","commitResults":[{"hash":"fcb55b1d324f63e0f98c76824d3afbe5c146794a","isMergeCommit":false,"messageTitle":"Reorganise and restart level 7","messageBody":"","tags":["level-7.1"],"fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":68}}},{"hash":"ad060a44bdc740665f4bc06a9edd1cd4c03bc013","isMergeCommit":false,"messageTitle":"Create tasklist.txt","messageBody":"","tags":["level-7.1.1"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":8,"deletions":5}}},{"hash":"c733256816719c5a1a6abeccee493058242a76fb","isMergeCommit":false,"messageTitle":"Add ability to save list, but doesnt load data.","messageBody":"","tags":["level-7.2"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":107,"deletions":44}}},{"hash":"787789ea53788aeeccdb0dabd671dda6edf346a2","isMergeCommit":false,"messageTitle":"Need to fix tasklist display.","messageBody":"","tags":["level-7.2.1"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":3},"java":{"insertions":60,"deletions":28}}},{"hash":"5ef31e7fa4425364539b0db51c954eae9ad03c86","isMergeCommit":false,"messageTitle":"Work on loading tasks.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":2},"java":{"insertions":7,"deletions":4}}},{"hash":"e65dbf65f68d319fac74a39df2a06ef4bfed3876","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":0}}},{"hash":"0fb93d29d597fe6de3486edfb392e4ea5ec57e48","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":183,"deletions":55}}},{"hash":"3923d96c97d94067355508eedaa5285d06669024","isMergeCommit":false,"messageTitle":"Complete level 7","messageBody":"","tags":["level-7.3"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":21,"deletions":8}}}]},{"date":"2024-02-01","commitResults":[{"hash":"564f5179943ecab1a1ab0e6d69a4ac9ca0bbd52e","isMergeCommit":false,"messageTitle":"Small changes.","messageBody":"","tags":["level-7.3.1"],"fileTypesAndContributionMap":{"txt":{"insertions":4,"deletions":4},"java":{"insertions":4,"deletions":2}}},{"hash":"2800ecfcd568f2c45cc7dc9015e9692a615e52dc","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4"],"fileTypesAndContributionMap":{}},{"hash":"87ac477211dbb0ac40c22631d1fa9c93e770a509","isMergeCommit":false,"messageTitle":"Small if logic change","messageBody":"","tags":["level-7.4.1"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"d38f4f89b87e683a27b390220d1aa453ea44a191","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4.2"],"fileTypesAndContributionMap":{}},{"hash":"c4bd5843ffa8aa640cb01a5c1520e6d9b8044d07","isMergeCommit":false,"messageTitle":"Better encapsulation and abstraction.","messageBody":"","tags":["level-8"],"fileTypesAndContributionMap":{"java":{"insertions":627,"deletions":566}}},{"hash":"6a2ed1e0bfae8be022a77c575d1a713d3d6a1bd3","isMergeCommit":false,"messageTitle":"Reset level 8","messageBody":"","tags":["level-8.1"],"fileTypesAndContributionMap":{"java":{"insertions":554,"deletions":547}}}]},{"date":"2024-02-02","commitResults":[{"hash":"eba55d2a233c526626621c6e246098eb39e6fd8d","isMergeCommit":false,"messageTitle":"Reset level 8-2","messageBody":"","tags":["level-8.1.1"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":10}}},{"hash":"4beaa4e8e99c63767b1abc246ed6c9ff2e9fc43f","isMergeCommit":false,"messageTitle":"Add date formatting to Deadline","messageBody":"Not yet added to Events. Deadline accepts 4 formats of dates and displays as \"d MMM yyyy\"\n","tags":["level-8.2"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":54,"deletions":19}}}]},{"date":"2024-02-03","commitResults":[{"hash":"b4abb14f0736d46f8496f48c5c28b5bc6e536b2b","isMergeCommit":false,"messageTitle":"Move date parsing logic to Task class","messageBody":"","tags":["level-8.3"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":2},"java":{"insertions":74,"deletions":78}}},{"hash":"a1dfcb1ab211642a1ae8da5467ed4c1d2d5c61fb","isMergeCommit":false,"messageTitle":"Add Ui class. Work on Storage Class","messageBody":"","tags":["level-8.9"],"fileTypesAndContributionMap":{"java":{"insertions":325,"deletions":171}}}]},{"date":"2024-02-04","commitResults":[{"hash":"284848c06e6abb640399907b40aa08109748d180","isMergeCommit":false,"messageTitle":"Work on the new classes.","messageBody":"","tags":["level-8.9.1"],"fileTypesAndContributionMap":{"java":{"insertions":759,"deletions":482}}},{"hash":"3f7e5393eb0f8fc8c2398d849da772a5f8a64927","isMergeCommit":false,"messageTitle":"Complete MoreOOP","messageBody":"","tags":["A-MoreOOPs","A-MoreOOP"],"fileTypesAndContributionMap":{"java":{"insertions":45,"deletions":421}}},{"hash":"ddfbec7607f0833b1f037bc2c14343d635db37c3","isMergeCommit":false,"messageTitle":"Divide classes into packages.","messageBody":"","tags":["A-Packages-1.1"],"fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":4}}},{"hash":"4a22ec75c6103248a502cf97305715b2b1414bb7","isMergeCommit":true,"messageTitle":"Merge pull request #1 from LargeCrowd/A-Packages","messageBody":"Divide classes into packages.","tags":["A-Packages"],"fileTypesAndContributionMap":{}},{"hash":"21a49802136a30836a5f1545ea46156b0026401a","isMergeCommit":true,"messageTitle":"Merge remote-tracking branch \u0027upstream/add-gradle-support\u0027","messageBody":"","tags":["A-Gradle"],"fileTypesAndContributionMap":{}}]},{"date":"2024-02-06","commitResults":[{"hash":"41fad8ac49df61000694c20d7fe5473a8b519834","isMergeCommit":false,"messageTitle":"Debug Storage.","messageBody":"Incomplete\n","tags":["A-JUnit"],"fileTypesAndContributionMap":{"java":{"insertions":23,"deletions":6}}},{"hash":"24d5183bd7e574272299e051e2d808af0a935bb6","isMergeCommit":false,"messageTitle":"Update storage logic.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":3},"java":{"insertions":6,"deletions":8}}},{"hash":"f3537197a1efbcb637c278454116026b183b75b7","isMergeCommit":false,"messageTitle":"Fix issues based on PR.","messageBody":"Renamed the taskType() methods to getTaskType() to follow the coding standard. Renamed parseInput() in Parser.java to executeUserInput() to show better description. Reformatted the switch/case block to follow standard\n","tags":["PR-1"],"fileTypesAndContributionMap":{"java":{"insertions":47,"deletions":49}}},{"hash":"1e24e8d6ead0094004c7980f76bfe6c475537d68","isMergeCommit":false,"messageTitle":"Add JUnit for deadline and todo classes.","messageBody":"","tags":["A-Jar","A-JUnit-1"],"fileTypesAndContributionMap":{"txt":{"insertions":1,"deletions":0},"java":{"insertions":46,"deletions":17}}}]},{"date":"2024-02-07","commitResults":[{"hash":"15061573183f0b2ba48548b0e807ce774441b4c9","isMergeCommit":false,"messageTitle":"Add javadocs.","messageBody":"","tags":["A-JavaDoc"],"fileTypesAndContributionMap":{"java":{"insertions":41,"deletions":19}}},{"hash":"03f2d08bb426d36611f212c1b8ceca4f40dc858a","isMergeCommit":false,"messageTitle":"Follow coding conventions.","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":17}}},{"hash":"0d01e56e05b9504cc09b212c197e9b9bb9e89763","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-CodingStandard\u0027","messageBody":"","fileTypesAndContributionMap":{}}]}]},"authorFileTypeContributionMap":{"LargeCrowd":{"java":810,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":10}},"authorContributionVariance":{"LargeCrowd":355803.9},"authorDisplayNameMap":{"LargeCrowd":"CS2103T-T11-2 TIMO..SONG"}} +{"authorDailyContributionsMap":{"LargeCrowd":[{"date":"2024-01-24","commitResults":[{"hash":"49c29dfd840f28a7c585fafccf84d4c585513b90","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-0 changes. Program exits after greeting with new name\n","tags":["level-0"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":6}}},{"hash":"c5b339d785b2bd60106ead0793fd41f02ee29212","isMergeCommit":false,"messageTitle":"Update Duke.java","messageBody":"Level-1 changes. Takes an input then repeats it\n","tags":["level-1"],"fileTypesAndContributionMap":{"java":{"insertions":16,"deletions":6}}},{"hash":"70f4b4a57bc03080d7f74ec1fbd22587ae90010d","isMergeCommit":false,"messageTitle":"Level 2: Add, List","messageBody":"","tags":["level-2"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":2}}}]},{"date":"2024-01-25","commitResults":[{"hash":"9e13702b1e147029741876c1f3cb6dfbf2788a18","isMergeCommit":false,"messageTitle":"level 3.1","messageBody":"","tags":["level-3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":1}}},{"hash":"0dc9957d7a630586fc880929a4c3d6d487ffa74f","isMergeCommit":false,"messageTitle":"level-3. Mark as Done","messageBody":"","tags":["level-3.2"],"fileTypesAndContributionMap":{"java":{"insertions":117,"deletions":36}}},{"hash":"dbf8aa393644779dded98e8ea0bd58cf2a64fb0e","isMergeCommit":false,"messageTitle":"changed \"item\" to \"task\"","messageBody":"","tags":["level-3.2.3"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":25}}},{"hash":"b9c353a36b895fee6e33f009a1b831a64c506ded","isMergeCommit":false,"messageTitle":"Starting level 4","messageBody":"","tags":["level-4"],"fileTypesAndContributionMap":{"java":{"insertions":42,"deletions":3}}}]},{"date":"2024-01-26","commitResults":[{"hash":"b23904d215ed8f89a707750fa2a5d39d1d31b326","isMergeCommit":false,"messageTitle":"debug level-3","messageBody":"","tags":["level-3.3"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"11ad844336850d14f62429eaa3d080342d2d7d67","isMergeCommit":false,"messageTitle":"added documentation and other small bug fixes","messageBody":"","tags":["level-3.3.1"],"fileTypesAndContributionMap":{"java":{"insertions":116,"deletions":36}}}]},{"date":"2024-01-27","commitResults":[{"hash":"dea5ab21319f3d168240ea0f706e374acce6c466","isMergeCommit":false,"messageTitle":"Level 4","messageBody":"","tags":["level-4.1"],"fileTypesAndContributionMap":{"java":{"insertions":103,"deletions":18}}}]},{"date":"2024-01-28","commitResults":[{"hash":"86c1154327fd326c76b2480e98d852bfb711b8ad","isMergeCommit":false,"messageTitle":"A-TextUiTesting","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":7,"deletions":0}}},{"hash":"0b62f5899c33e44fc6faf4fffb17be68a33d76c4","isMergeCommit":false,"messageTitle":"Level 5","messageBody":"","tags":["level-5"],"fileTypesAndContributionMap":{"java":{"insertions":10,"deletions":4}}},{"hash":"8a09305dca94dc77f9abdf88d3be49249ee9097b","isMergeCommit":false,"messageTitle":"Level 6: Delete, and did better organisation of task adding","messageBody":"","tags":["level-6"],"fileTypesAndContributionMap":{"java":{"insertions":79,"deletions":41}}},{"hash":"f6ed6d5d20397dd850ea9ec4bea01927dd3c8b62","isMergeCommit":false,"messageTitle":"A-Enums","messageBody":"","tags":["A-Enums"],"fileTypesAndContributionMap":{"java":{"insertions":73,"deletions":18}}}]},{"date":"2024-01-29","commitResults":[{"hash":"3bea4090f6e51587351549c1b5d1d95cf953884d","isMergeCommit":false,"messageTitle":"Edit documentation \u0026 styling","messageBody":"","tags":["A-Enums-1"],"fileTypesAndContributionMap":{"java":{"insertions":75,"deletions":99}}}]},{"date":"2024-01-30","commitResults":[{"hash":"fecfe9263e9deb5a640acb38a0406e2262e27223","isMergeCommit":false,"messageTitle":"Start level 7","messageBody":"","tags":["level-7"],"fileTypesAndContributionMap":{"java":{"insertions":77,"deletions":0}}}]},{"date":"2024-01-31","commitResults":[{"hash":"fcb55b1d324f63e0f98c76824d3afbe5c146794a","isMergeCommit":false,"messageTitle":"Reorganise and restart level 7","messageBody":"","tags":["level-7.1"],"fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":68}}},{"hash":"ad060a44bdc740665f4bc06a9edd1cd4c03bc013","isMergeCommit":false,"messageTitle":"Create tasklist.txt","messageBody":"","tags":["level-7.1.1"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":8,"deletions":5}}},{"hash":"c733256816719c5a1a6abeccee493058242a76fb","isMergeCommit":false,"messageTitle":"Add ability to save list, but doesnt load data.","messageBody":"","tags":["level-7.2"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":107,"deletions":44}}},{"hash":"787789ea53788aeeccdb0dabd671dda6edf346a2","isMergeCommit":false,"messageTitle":"Need to fix tasklist display.","messageBody":"","tags":["level-7.2.1"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":3},"java":{"insertions":60,"deletions":28}}},{"hash":"5ef31e7fa4425364539b0db51c954eae9ad03c86","isMergeCommit":false,"messageTitle":"Work on loading tasks.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":2},"java":{"insertions":7,"deletions":4}}},{"hash":"e65dbf65f68d319fac74a39df2a06ef4bfed3876","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":0}}},{"hash":"0fb93d29d597fe6de3486edfb392e4ea5ec57e48","isMergeCommit":false,"messageTitle":"Test branch-level-7 pushing","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":183,"deletions":55}}},{"hash":"3923d96c97d94067355508eedaa5285d06669024","isMergeCommit":false,"messageTitle":"Complete level 7","messageBody":"","tags":["level-7.3"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":21,"deletions":8}}}]},{"date":"2024-02-01","commitResults":[{"hash":"564f5179943ecab1a1ab0e6d69a4ac9ca0bbd52e","isMergeCommit":false,"messageTitle":"Small changes.","messageBody":"","tags":["level-7.3.1"],"fileTypesAndContributionMap":{"txt":{"insertions":4,"deletions":4},"java":{"insertions":4,"deletions":2}}},{"hash":"2800ecfcd568f2c45cc7dc9015e9692a615e52dc","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4"],"fileTypesAndContributionMap":{}},{"hash":"87ac477211dbb0ac40c22631d1fa9c93e770a509","isMergeCommit":false,"messageTitle":"Small if logic change","messageBody":"","tags":["level-7.4.1"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":5}}},{"hash":"d38f4f89b87e683a27b390220d1aa453ea44a191","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["level-7.4.2"],"fileTypesAndContributionMap":{}},{"hash":"c4bd5843ffa8aa640cb01a5c1520e6d9b8044d07","isMergeCommit":false,"messageTitle":"Better encapsulation and abstraction.","messageBody":"","tags":["level-8"],"fileTypesAndContributionMap":{"java":{"insertions":627,"deletions":566}}},{"hash":"6a2ed1e0bfae8be022a77c575d1a713d3d6a1bd3","isMergeCommit":false,"messageTitle":"Reset level 8","messageBody":"","tags":["level-8.1"],"fileTypesAndContributionMap":{"java":{"insertions":554,"deletions":547}}}]},{"date":"2024-02-02","commitResults":[{"hash":"eba55d2a233c526626621c6e246098eb39e6fd8d","isMergeCommit":false,"messageTitle":"Reset level 8-2","messageBody":"","tags":["level-8.1.1"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":10}}},{"hash":"4beaa4e8e99c63767b1abc246ed6c9ff2e9fc43f","isMergeCommit":false,"messageTitle":"Add date formatting to Deadline","messageBody":"Not yet added to Events. Deadline accepts 4 formats of dates and displays as \"d MMM yyyy\"\n","tags":["level-8.2"],"fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":54,"deletions":19}}}]},{"date":"2024-02-03","commitResults":[{"hash":"b4abb14f0736d46f8496f48c5c28b5bc6e536b2b","isMergeCommit":false,"messageTitle":"Move date parsing logic to Task class","messageBody":"","tags":["level-8.3"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":2},"java":{"insertions":74,"deletions":78}}},{"hash":"a1dfcb1ab211642a1ae8da5467ed4c1d2d5c61fb","isMergeCommit":false,"messageTitle":"Add Ui class. Work on Storage Class","messageBody":"","tags":["level-8.9"],"fileTypesAndContributionMap":{"java":{"insertions":325,"deletions":171}}}]},{"date":"2024-02-04","commitResults":[{"hash":"284848c06e6abb640399907b40aa08109748d180","isMergeCommit":false,"messageTitle":"Work on the new classes.","messageBody":"","tags":["level-8.9.1"],"fileTypesAndContributionMap":{"java":{"insertions":759,"deletions":482}}},{"hash":"3f7e5393eb0f8fc8c2398d849da772a5f8a64927","isMergeCommit":false,"messageTitle":"Complete MoreOOP","messageBody":"","tags":["A-MoreOOPs","A-MoreOOP"],"fileTypesAndContributionMap":{"java":{"insertions":45,"deletions":421}}},{"hash":"ddfbec7607f0833b1f037bc2c14343d635db37c3","isMergeCommit":false,"messageTitle":"Divide classes into packages.","messageBody":"","tags":["A-Packages-1.1"],"fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":4}}},{"hash":"4a22ec75c6103248a502cf97305715b2b1414bb7","isMergeCommit":true,"messageTitle":"Merge pull request #1 from LargeCrowd/A-Packages","messageBody":"Divide classes into packages.","tags":["A-Packages"],"fileTypesAndContributionMap":{}},{"hash":"21a49802136a30836a5f1545ea46156b0026401a","isMergeCommit":true,"messageTitle":"Merge remote-tracking branch \u0027upstream/add-gradle-support\u0027","messageBody":"","tags":["A-Gradle"],"fileTypesAndContributionMap":{}}]},{"date":"2024-02-06","commitResults":[{"hash":"41fad8ac49df61000694c20d7fe5473a8b519834","isMergeCommit":false,"messageTitle":"Debug Storage.","messageBody":"Incomplete\n","tags":["A-JUnit"],"fileTypesAndContributionMap":{"java":{"insertions":23,"deletions":6}}},{"hash":"24d5183bd7e574272299e051e2d808af0a935bb6","isMergeCommit":false,"messageTitle":"Update storage logic.","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":3},"java":{"insertions":6,"deletions":8}}},{"hash":"f3537197a1efbcb637c278454116026b183b75b7","isMergeCommit":false,"messageTitle":"Fix issues based on PR.","messageBody":"Renamed the taskType() methods to getTaskType() to follow the coding standard. Renamed parseInput() in Parser.java to executeUserInput() to show better description. Reformatted the switch/case block to follow standard\n","tags":["PR-1"],"fileTypesAndContributionMap":{"java":{"insertions":47,"deletions":49}}},{"hash":"1e24e8d6ead0094004c7980f76bfe6c475537d68","isMergeCommit":false,"messageTitle":"Add JUnit for deadline and todo classes.","messageBody":"","tags":["A-Jar","A-JUnit-1"],"fileTypesAndContributionMap":{"txt":{"insertions":1,"deletions":0},"java":{"insertions":46,"deletions":17}}}]},{"date":"2024-02-07","commitResults":[{"hash":"15061573183f0b2ba48548b0e807ce774441b4c9","isMergeCommit":false,"messageTitle":"Add javadocs.","messageBody":"","tags":["A-JavaDoc"],"fileTypesAndContributionMap":{"java":{"insertions":41,"deletions":19}}},{"hash":"03f2d08bb426d36611f212c1b8ceca4f40dc858a","isMergeCommit":false,"messageTitle":"Follow coding conventions.","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":17}}},{"hash":"0d01e56e05b9504cc09b212c197e9b9bb9e89763","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-CodingStandard\u0027","messageBody":"","fileTypesAndContributionMap":{}},{"hash":"913d182ed111063b5ad7c7bc046cf7e4a2de6512","isMergeCommit":false,"messageTitle":"Add ability to find by keyword.","messageBody":"Includes minor javadoc edits\n","tags":["level-9"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":50,"deletions":6}}}]}]},"authorFileTypeContributionMap":{"LargeCrowd":{"java":854,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":13}},"authorContributionVariance":{"LargeCrowd":354553.28},"authorDisplayNameMap":{"LargeCrowd":"CS2103T-T11-2 TIMO..SONG"}} diff --git a/archive.zip b/archive.zip index 514c5c6e2f8280d7c44060a7a275b833a216559c..ba838c32b0f82c486249137a29eda9686716eb7f 100644 GIT binary patch delta 46344 zcmY&AWmHsMv~+iOcXxMpNOzYs(t-m5A}P}G(Or@_xQm* zvuAgmb7yAX@z^`K!K6Dl3>|fN1OgZo6cm^Tf(8slM7RfnCOyO|THyMZX$cj$F7uoV z1J?;>aU|f1?pcfrT89mC>1kn9M_(E>r6|5f%J~W>k z!2)~_R~v%>ibsdQ%>t0ft05eL8u4i&5CI;Bs+l9a110Fudw7z64^&x!b(2Y}#OBIcq2 zi+X27F3_^|LPRnU=T8OVnh5aL$_8RIIqh_Mp!lQji>}0LXX)5(VhW!*--U8UQI6>PKW`0Z=MGHu4Cl z>t8u!co2f1h8zys6YYge3hG)Ej6A~zF!L`(J_3`>;S(~I5CDnVLaqRDxKEG?6#oQKlIpj3mpP9~x>fRMNKC?p`W|JqS7 zK_^#VqlkiG-?>A%0K>k5j#>t0Wds>2L<-=8V1h~ta;COH%@6}1tvRT~n84yWtEiNL z#n}mJILOEM0@Vg^Aavm`st?FV9Sbc6q?%Vj69ZEK&lrsX%wUn%Xy~Bt6eH1Iivv_& zyV0N^`Rg&XGa$R59)HjpK%Hrk(Vcu)7RK5vcHU29JQwS&PH) z1P#|p#kd0--1SW({FUFh_z*PhV(+pHNjR2E@6@YX|V&;KyHdDmx0OL&JhG_vh zC%_Xk4-dd0ev9b_#1I$Z(g3L@qu)l&{r22?03#O{g zAT|Yv0~yCg0gEx_5gP>*n1YB?4t7xq6`XNUP4pKy){=lg_YXMJAdXBXjx8AgDQU#n z0$mZ?j$@z>KsFF@bwC_`EL?7|_u9+j9)W!HG;wpx0W}MiG@h%W3O5ssPwr=2E*XGy z{0cV*WcKnAmj(!b#&hVN+Z6|%2k1a-9=u1;3@k;wX%KNk1JB+NAXP5Liw7ZdRd{Kj zRJV0J2@q1Xi}xQpfTMzsUkCc_jt5`qB><7l!Ph1N7Re3xEndJvjgDXxlts)$5Jw0= zO2i2QKfjJNvPq+&j z<(^6?3Kn6-B;gy78Otmo4gNC^sM-$U?!N$>5GDdWG(DO7xx|@?@WGz(TZAZ)3&0C; zBJu$ZJM|)pAX0!TgM$Pc>?svOBtI1ZNX%=Jcu;ZTC=xC(vdZ-&_MmpP9V9QoOeMV| zu><+Mc_cvu`9u+s_JWG5P?8RVg^kZcDhn8w@!Sycp)UNS`XG;PDbj1O^+B~rUxH1Q zK7q6ajO~Bc_k#2e+`jHP$!-B|H{a!!0J?4BufS@T-_w=0BbP|pBxVKOD-9?0=RSi5+Sz$eJ7_xt_<$P zaTerjpch^`ktcw?7ip!1q1m=U~Bv%#q7l1HS7Pq(}fmtR+X01K|8K z{wb1T5Cji?r0`M!5Ji_Mz`g8W46nB+hM53xFFNH2pnV4Ky#PVR96BXo#$)dyTXUQ5u@t(-!4Z0)%K&R1nkdvK0FXWu^?3V%)l$~EFe@yg$Vja zvW^PJ29TzWL%j-mos*RMBbffr=OPr)>ASuf#y+L z(=dQ`JRc$Pp~l%X7$Bl!F-;VBvRiB1~=rX-vitv{$# zuomq+ScWfbX^%mBhy_h0Q(q!dUsIG+hBSuu+yS^q<;shkd#T^$^zi1_0pGt0?&u(n}9_47sK{D zdLuB=@o^bwUIB=LkqqV_X-XV}G}t%4S2J{iq$$k|^`Je9Ck#!XX7`T_{qg`+uPoyk z9Kh8JLy!_e(HMGXOZ5HcaQBn(;17&LHRO5~ebcPu?dcZZJD0 zmzZop>HOPFvS4%chh=^Qlg|&C`QKg+?iGe|%$|T!8P9vg^I=$nSp^I~V;u7lD1#t{ z83k+*R1M7jpp5i(=1nk-f-jhL0Gxk^f}i)y8lcZO$ytiQkjzlC@PZ*h6k<^az4$_k zMF#9hsh%vZpfb<53w6LQnDOjI0_Z?2%OIdN;7Wpw=T`(7kABa^KibTI37t)6F#vS? zcfTY#$3g(AqxXYFRp}WF&0}Ewryvm*D+MP25inz21~(TRD^?1yBXfDPP63*<1hXbO z11L$GtY1JowGLR_!9wm-XJY}0cD2~t!0a|KXDa|=^6!j|=E9~U4Un2wu;qZ=9ZXG( z8n$sTFIL*w*g-OsA+{9_0CAgu9TznAmXzHFJUN<)vrhpj1Lc%rw*ak(S7wg{rQ)fx z(}KqWL2Gsk&}pg8>>I2AazHXW1k8lnOm+mYp*;<&`-t5V z>?QXo9Dn{%VRLu^r38Jcz_AW;*3jf&X8|BVejG!f^74@!THu*7rJv&#%)^8kjtn4V z8P9i-_)t*npl8{i&w_MLSEj64ipa!jt zoT*?=YyIL(1hmX}zSSatp6_v*(gVD-Ft|bi?ipY=UdQLs0Y&hMa|waD{8EXFA8hvd z5U%fFPx4FQI*|uR9T&I`KvHn4b@<7Z1(@1GzzqvZh9~0=0c$5*iu>P*r(BiWQU;(z zj^(}qC|i=bD>(o_br<&o0Dx8ua3_P=Dsjt=5AJf$rzcd9$XtWx4;W-qQyvx_06DUX zryI-$@V4Ce6Hhh{0KV+v0Y6KCa!&C41#VcNTu8jHK=#F$y!&9x5}A0xI)biq^1cS| zH7s88{<}*J^5zW?1gOr-c&)*h>DTevgIjO=87~b8S-s=E17o%z&Q}C-el5>;4HQ7e zD{nqw$jSiWo0GbpdhVn6irpj`wA_C=_}D<*iHeHY89$)5oK1gL_hd(f&p+>tcT~ z`9xmvH2u4hHjKP!!GmLp(S&#E<9QCozJYvZwhO(Cmfs(XROYY829Kp#buUI;akJ#MJwGVANIv@py+c&akpD1V8l z9s=nus=o3vff*wbUdVb3<{Q0&@ZPvm1V7P=$zF? z)l2UL8KSBON&of1n^~LRHk>CKvv= zjLbSre^~EH#3P8|xIy}ED4#>|lURL0#UL*FFFq!@;kk=wGz9kACm`E z87EE#Kc^n3+ObcZQmpf+4iyUrr>m7kB0juOPht|O<1dnB<+q~>^h(Abs>q@})${H; zDx|DB(hR8@Y^bF7X63#9DR1I}<=}t=nc+`ESjaT@r{ZWbY{G!^EovW6*^jryHWrp?t5PP9^wxvI z)s%bHDzXDc_c>0Rh6=Rb=8ypoyuI1t*JD~Kq>cV{D@U|YW&})Gui?=27;Glt=W_t8UkK-qVi1@(ALGmV?+_@X|)6aUS$VcYEAr ze#wj|a2iRDSKoWr9TbO($rUR(Q$TpMYXucg*%V!yqLUh5sUqoHvV2g;`huw~Z90L1CVzq=atHBY+ixe*GwQF)a0F+VO-m9wj1OY&CuK2B5CD4|61 z(a`TQf5_qRNDJRu=@U(h)H7*w-IXM;qg)jo*TwzVTcL-h`{gQbZPPsNhq*=-2ZnDYJ$QbKd`4uCkD8ARt0kfEQE}s0!UFjofr7lAp{kSNVeQW6FZ6))Y*d9TU&dWzfqj8_9oVWomRn_MwMgU*ylE zm8tA2zd9?NVYqc(dSlC6kwty5wOmotc4es=k0U~O+cWey0Pmtj9Uhg`oGGCnEUt30 zqI$wWPHEQgUCZMbn%pkT@<>Mal~;*_i|M78i9)GeGi&gGVDK+QlHg*+*qh#)qaCSh zn|`4k&%K&8rk-(x)gOP{AhEhk8U;#U$K>?q(I)gz6yyox6l55+B_cjp7JbGLxX`|^ z&8dtxh~cmUi$)nt zozOh+;s)hom`%~AoF<4&KE2|-UP*6#N@k8f>LX7hGh4{JB%-Ul+>8uOD~l9f569l- z^XLz)2OYB=p85{X?Z+Kz?%Ydhv@hBep}7K>U)tGUi=Q}Eib+e?ecGRVSjyv638&vUGoK#__n4Y*8z+9RQP71a}W+BWo|i0{@m?!m~7c& zQJ$0xj`X2uY;zN?9rc%A00(aJtjhhOzrXUgi&Q&Q&4a{u-`UF5Qf1ifJ|akH)9pLo z&Jz6YxJSBo@nhHhajmHyS4FJHx%pvCwXG>=fD^)^kChjXqc#0gMJ);;v_OfW^JWaG zA13qHnAtX7K#H~!WRAl5C)2|L3~fhsT5SZD`rkgjx%FDM_Oda#q^jB5CttE!dLGp?*LaS7_0+E7rS_u863{|E|T0@JZ zsbF-;A{fD~BjkO}p4IY&!et}28t1z85{A^=^ZiN7?N3eJTFAD6M~=hQ)%tXRmCYLb z-^|KmvmKXsT`!#KQj$HW*~{o?6X>`s2oU zb_M;{bMb?ki&02=HtR&kc<@^Deh4zUO1+{94%zm9B?a_Pc-mK+=10C;g*#uShxZzrkrqrZG9j@m!3U zgLDH2_}v+H9JCy{IRAuN>TP3%5Huekn(UC&AhR_Ul3RDP}^75Xz;97f# zM>N0pHr_2Mqim(`3F*#p~R@hghZNu zPRH%mq()iPthz;mqcx7kBp+{ikSmEdb-q=~?hx9snO5m6Whaf&B32LA4r@>m5-ABX z=ojwWN19!CvDHWkrc@x5GBnHQQ+^Uaz01qoNf~NihKRnqE)b9i+>CHlLR?jgJs+#^ z4EHf@>zU#upEfNez-H5;S|;F6FW1xzSv92IsEHX=Lhi0J=ptnp<-mJI%VLu(@a}>` z1oz`Qosy1813|8T$_*0a3+kEse7~cCzGd45J&6^DRba<>y!1}V^7_7~HU(eevQ8+L zr5=&O4&+^!jv=>vjDn=801OX^GW$L+4_nA5t4e+dKD3o5tTUZwS9@^ZGR!>aS}E=>-zzN+xD)7D zNQQ8dc1mVH{km>>?QwUsak+xyqd3MrJ4Ji3yX|HhsOP4|4ST&7yfq#(Wg>ssjHZ^!JjWYg(9r<~3}_V?UYW85P7aR-~b7e?jfo>rZI zT&}lAt)7r|)R9r#9CHUGFkoOJxM5)a?>DU(4WWD@85%#$Q6XQMmp`(8JU4joDpF7@ zinVW}yZc?nVT8t@jAxs?4p-pjvH7>_6{4&yLqRtwkEp6nN212aUY?ou&#vQuZvP$K zH!Grh_WRBOWc^KRRz)4o0bg!=0zL!^1(@FvF(>&Ii& zo8Zn&te|Dly%S$Zk>Z=2_tcQ1)xNu7<3Dk;ES(!aONIx%cQ3S@QpbFxM*DX!oG)qH zH#A=Si4Ji{-F6xl=}Nr2Wf@^?=>4(2pVHZz(pkQl|0#t`M`iBIqvH0_Ln?G|HYj;V zV?u-bL-`lxpAgnJB2NOF7ZO^Ie&5LTNdgc0dtCTpnUYa*A*cM@Ul&xx63%Vmx(p!W zL2A3df_koMyB-m@k2*e3FW~GMp?oR9vHp-H>Fvg_Xa8F$JAqlk?ygpZ`np)-Vj_e^aA``^PE&I2 zZ#h4I%|7bcA0S8LW?5!`4xcPAvvp{n7lCH6?%d{d;|y7#_%rkMxF)ifUIqzk=!J^Z zlI_H-M@*cuAKj2_7QsPPG>|V9-6vj0xl*fnsaEKupdWqfA zG5TW&mIV>w&}yG$sv?%}Tgj3)so^YNY&Ktuf-!K2{lU&+pRdu_=u9%_?1RD5T;~Br zd1Y(nmR$8WE@J6CLb>%Y3%|vT_#2PFHv>%?Br0plpOL3%6ZYtgCTN4wuZJ5yCn_0a z{!U?Ff4s71y_>tE)SeAAFEn!|n|RBf*luj$LHCTyCUD~!7p=t>#cRLm>! zsdKvTzO+zIKS}p#m`!7#R^?Q9ERjq(M`!<43OVjLTe%nR_*~_dW|hs~Fm_t%pdO?J zI}(Pit7qt#G=F}W`xEPH*n=2TQeV9HD@ip}k!NJF^qS=uff$EdsS#)< zn4c|~c*~IP3+&ct#EtKSh`dc`z9baRVpkT&e)*W>Kox)b+cX@J2O$u@-!5=pGuhd# z{{`gHSHD)cJ)i!F#v@uVj|kZ=sZN)-tkgb>pHpg%%>jkm-o>ySQ@jOM z^}lH=?R2}VnHgEc7$5U3-R#4uEeTDJ8E3WfxIW1}{Q{O~RPq1D2L8<6(MfkdiJ6QI zERE!lSTz~H8QzR%j59~Fk3KNk!?^ELyi|uYd$;$lntL&3<}ixJEo$J?uQ16>m8@&7 zEC}k6M5?!o)O7k%>hB$7cKMzp2XZKMi*QfPsb3Iz4CA-Hf4$^>e%6tCVJ@l*(~-fj zx>pyyNih&mc2n9G*Jtb*_++@M$b4?+T%*Gip@lRvBlTkdf1+LP#vO;w8z;(_zbOV1 z+0Qqs?XZfUX)uP4GS0E)=R{4r-EQT)T{b9vHchu%U0ZU!MBf*#eR0u{;FNj32hX#i zBSWlLo7YlpDj5aeQt0qaPelh7A8nY1eJ{mc;<=#^;HkYmc22hcV@ojZ_!UhCB?S>b z^hN$h1)S$fXozT4&zp9LIs2v6c54K&6O(PHsGR%rY-6_O$Da&uDz#Dqa1d6te0L}L z8^7=bSLn#Ts!kkPj8_#5zOhUoiouhLP>4NGQ%Azuy=d&L%hkJl^@M@P^DaD3cMP`C z_iRSy%1c2~g^tNu;pEOzQ{m)RYijI?gSS&!OrjwBM-yY9Oxo!QJa)x7F5eQQ`2Jd& zLP92A7+ECjkoyU53WgsQf@0m{m#xu&zXgwJJUxk@)DD5mrU>SDej6cS!dsmLT@r^m zOY&eI9H4V`x=N$snnh^w1zi>L%+47!$}P*W&hAe1Ow0hHb{;+Ix`qnmLzNg zIgDrTT=6H*y@CWnZ<6bmCOkO^4i)^l1Y)n9OdbXreE{$a3H+DbeAA7eoq01h5=g?dblzqS>2Nw)V5A2KfEIr z%uWBhP&u7fdtEWIDDll+-T`hYJ)WUiOyco0RGq~Qo9JiFD{RrdBu1ey$TCgLHfI>A z*LNgICQ^!(h<-M7w@Kc&M}^V!u+H)w@BK}Cre9?wA!^G!(|N5@wIIL1r5?Ce3H^p* zS#2a4f3k$DSMvm$8%n~DlmcCg#V60emKx*I)!kME)T@p5WtFf0kkk+ZwouyGejqzSE`pUsbSu45B^^+Sv zvTtWv-qQ&(M!1cd>moS@m2$GFSs0;gAVJ?SbpMlJN2$=;-!vaY9{2Q|kWQyiP1|P!gkeJ>W^+qr(UP4$qrWM3;1fg@{I~P_Wc^)y(Sg zhi+6!D2r{>4v{e=T0106{JbQkOEq%DNVQ4U2vooxhS!Z4>{zM5vS-L8C9W2Z0 z^+Y1#O)^=Cwg2$j`n25w7)A&&dc>oB~irmR1I#hn+v#-W9z+95LI zDSt}WX)kmz<;(fbjtQYnlIZty^x%p!bB6nQsd!0nIMTYPSQ@086}KcEHOH{yNLEU{ zD3WzHhfw*UNF!8j7uRR1TJ$9j=Y=A?d%I?zEs02;F0WRf=MR+ER{a5eR=-m@--%gI zhh9}MzsdCPx0kdDwZ`lmsUUn%`855}IRDe;8`mMa&U_7?{sdY`U%iaw1a};=Sk{_i ziZN{oVK9!Eo!2FyjG;`!EYfZe@2h<0$2%ffjm50%Z!FW3zTGE572Y9w+dAC_>Il@X z!8}Fdb_o%sa@4LI{;*W8^>EwrgZHLx@8^Q%Q9JJ3Q~B@cVk+)>GN@Bhk9YdMVQEhI zzjv0q<5dbLt&v=ZVQb7|N2C7xPAJT(r(VV9 zlWef&ulGCE+3(9LZ7+#YU63NJ`c+T1zVQAY;s37s(`&EZ5n^lZgMZmY2>CwWc7dQL zirS6)I!!BsLHM{79Ye%^#^maVp$)e&kA<^D6(Xq`CNupa+m_B%cOTC)%^uFgNwZX) zRnm-+vii53$q7Stf(g-DZ5Po9^s(`1ks0qTgKF+)0eErAONodA<4T+(12@a?@J942 ziELxL&6SJUV#qIQ$eUMzcb$SPpTs&X+FF;rF|7O770`(zGNOs4|I0Hs|I}c-V_N1< z_~-gun`F|f@f|^N)Q`$1+d%zugB|vOg?II7Vu`L}7R)KU+G{mwOg`*a6gdmu5L;1~ z4tt)D58KF51s_R{9B1M_TA0O5doVH`=AOOPcP+6JzN~<_ek`bQt)8cjJ5scTXD+n1 zS<)SGK=S)lRYx1k3s<=A&xkE~zFgpHjzjR>&Yvx{-_4-U+$AoF4<%A79A6DPGksL| zlM#&)U8u1TS!79{-G3b&zjIJOycm#<3IF8#NK2f74!wrWrTy?phf()Cx$2Jt#qfym zB+-|NU-{~9Am$pa63Py7)xD%XUNGY0!dz6fuRYBrf1-7jWR!I2g`byRM($BjYcZA2 z6wY(H4xxB`AR;X7rt&Y3`}|;7VJ<=D!e8Kqds6Q#;pojpn~!$4q!H>}kBlr-D(2iY zOz;{x?Mi{C;7!ALQDnCLb^=?B#SC}wQV8DeS~XS&9%RxJ&8Yc<8)=<=%FKVN$lh79 z{bwDWH!$k;8b7S}<%~z-YDV;_ZARE1OZvV~S53&JHNk#0>400|Ud;-PH^`hm#@Qm- z(ABz&FVgruInhHs7zZe+mVYTKV%B^ZO$0?6>HYSxct#5 zKX*^>=P!P|Yj}LvmJa-I z_uR*@EajHl>mD33xc_PvPh?bCMX%nf>~4bjn<;domN-XTt>LIu$>>}7@f0yFekeuV z&HU?8$T#UR%3`8`pUdN|PlWrXzNaUgDGN7i8}}3Z`Gn#VhW4;GWU7XU2dAY_BsVtAICRxV{rL)w!YR$(rY6&FN^z?m$IyMw zX|pMR%V2fayT#$l7k-w(u4BFiyQR=(|0=PU5WXbVQ=+bdyo(w2eaeeNXWrp`wFz|y zY{&Dx-w`7^{EyrrxdcxqR%%A!rdw(ALop7kiMC1troV|CnlPmzg8hu@K_iMLsyW|9 z63?9pZN#n7ca8g8kY64Lx=dewyF!Z|nsSl-`Z;Vf)exat^d2p}c!KiJX`YN)f>;YY z2gI{&N8en&7(2s7;BDU{yUHb;cm#(YEZNaPVcn1|-bh_gl>Tn_`{O{?ZYJ#>{X@wD z1?eQuPURDv7alikNUj&IT==9p1IwRIY%o6;3gkRdab#1ewI_LhOjzxBxZs32oBA2i zk1vC62ybxz_Q23Cg?Qwi#wX?S=1XeNOgn_dU7wMohOJzVJ)F20=KbfmpZh1h!T)KI z-DeJnT8$DdvrdZgbzi=WvhmB1(iy6^4B};>DDB8JqfOnJK~|#{T1?=QvtNqAaUl*~ zEME|f{2nc(GjhuNpv0(?A%GII&Q|PDvOwRxtSpd(QP_LLq#y~J%qo)Wrwrm?$zZOJC;zj>lz@W zsScZoY5f8>C5p{47_7z7Ok*k4dH$Bg;dKJ7J*TxKwh4NT0({`}kFdh7T97~aeI^qs zd@-_TogwxP4o+V~YzCP|F5(KIhKH5~vXGjYv@n`q+NCh`1bveW`F7RqE-Zs-RHQ?Q z@%<9+)dTV2ezgP~S-I8m-b04-_JjE4G3WN}Y!1bpz|rTckH0jOBw?4SIA60TJ9h4y zPeYw97J`Sb$gd*4d>`y^>QFx$!oUb^c|BOyEiTzs5xo-4vhvecAi}ZuBYlw1HN>96 zQNWkQ@!RxoVRLfcR4-R}{cUHV>~c)yZxa&}#;s?O7;Pe!KRr&w+7l92O?6g&c?!K0 zRPoj-j~8Go&X>Z@BZ<`zKHR-)qovt`N9A#7-ftFxFHoLB1$Cv<)uU z;E!kp`|d+8al0h_rsZJ>LU9hZIjKW+cqI+u;J%=QonwW)K_zf5Xo>W}ai@jo>=(#= z(EAh+IirjzzOEBCGoNai`|5tWj94Egd;9*OA;c`o?lXR@;f6}NSFj+0wWDr_bEv6c zFkFuDkVw_B`E~bLkx*uQ{_q#1M?xF#JSlodCeFMOakfHiby z%qp=>7qnFzieda_)hAnqtc(M3jnzUt8z%7__EKfu-T1Gqg{m)Ji|ByXWxml^Rm`N~ zb;;XE```9_8^Y6DJe?*Q{oDlJ5HVt%{TJV&ke7&JGv2}M)NvW=wFddUFo3e&rCeoT zW{6`U`_~yQ$LR>dvQ)}C5E^wJBeHMKoZ6#LyzNh(dW89tQ?7S|b~wTaVK0M~#eRUE zo{fFEg1fK`9zg*amlnqt)Z}0ug?4nv>Fzm_Ry^&Y@ME;@i z4(36#e9wJZdix|6Mr&=xD1lClA>Sixs{W$qL7phW=Sv>LbpZlncF!!ST9pS&K4+P) zk3buuNQLuzU(xq-Nn!ZPM4TDB%DdveV)hL_z9E6W!RPmxT5(u6Qjn+aUke#9w2d&g zPq&wtGSM}hl$7~YR#dZ1hbl7#;mt1D9S<+NWe+~Ry?#WU4G0ytk0RK}JKCW6LqOL{ zXscFkF>=!9Xu_D?hzggA#<5t9pyJb+Y+Qwek=iD!YvO(h`?iCzGhvC&qr=ZUtH5nO zcV%D#MGK$NEhop}z8iv)U1FiZDCrrHR#aLLN>0D(Qa_vY9#N9fh&+?3){jDCUDP42 z)!bs;J>GW_)~ho8iwWf@d>3Uz&L9>UE&iySKu|T*PR`d2UwC6Pt`$WgnJi9>n%c^ z^AR%nw!w66F0pavTYCiGY*2k;X$@308+`tQxj_Fm-T$YGEai0TtKhq-;V6WZZ1a5% zxE&%c&NlGV1IXEHsVwnGS*19SM-IG%%s3N2UFzQ^HC zv}lu-Zl6pEjEvgQ%q;x090R5moa4{jxZXr`W_h(W^jAXyN9fAB`Q1ZKEH%RteHU;^rf~NnB*f(sJnfA)7&2?Oxd3 zMR;!Uw`9iMHX@jyL*ko1>U?cNmwbJm+oqvjlRueo<-}2e8c}c0(6Zmg>_s##Hc}G3 zn3PAHF`w%=CuYWA+@ zMcV!dmgECT!L$cKYM$sS4ewW3q+Uaogb^Xx%bAKWb6fi)oOyu~B}MHGMFF;8ypwlI z2DfRFf@}p5L|I7bLuUKoW_8A$&9Mg4#_j>FZu17?y@DkuY6hdd_4~?$T|DvFi=N$W zNY@@GkWNau!U9-)EOE4xjVh~cv?aH|9M0@zV}Gysh2Vk2a|5}UMe-eaa`G9gJqYrC zy72{kD6n+%Io({UC2&H?0JE9+;R)QUPN?l;AJ6GAneZl z6!LQ768l_#L?u)U*I}06pmQ9lu_wQ2O`d*a1HnY7nIpCcD!SRdlQniu=OP`fsTcq;T3YzPQD%pB0j&v<9XMg~HfJ&&B`VBjdQ zMF9yGe8b5)J8}HGK32^Q-XGg)p)_&D6@PCq+lYCQ&T`XnOuiQR;r&v17k7*K4y9ma zqpNsdp%H}YgW+gz@cT5Xuo5Fn9r|rEO6lUDYP(9A9~N!SJ9>UBTjf5u=qH``TewV1 zJn=E1U)gqLn)vxLF$iZT*b=P}K=wnyJ*NZ1 zv-umG+EcJMbzZoqUK2CpJpRuC+Dc@@%)h`3|8TC>^u2@ zs?VERXd{bEjS~WbVy|Gfa88$}V8tEk#!crth8LnaOfd%FTcrDOB?JSu4;B7Pr4pZ} zZ4;k(A*Fe2Kao%)$b>x?em7oSZE}|K2eQyZ^Mx#NrTTJBiI&x&WbJe{jHH?NoT`b3 z=Q7E3LD2t_;cI=Y6c$^R$?>RJo)1yXUvVbhxW9U-=QEUBn^_!+8C7W1#$49a(X5C< zi#)e8RhkE#o0P8EvGO@??>co~al5Z!xEa=C?Q#|b+>2zh{*G^cAvUAb3IzCD6`NmW)^Xc;+;I?qR3qHw4_IEb*H2P4N1j?k$Tsjm;TSsIOpV; zC7l8dFFu|>$*z3%{jm02GP#=KFCDJ-9}*J<61JPapKeuriTagRHK;U?CR65M7E4a) z6^Y|w;$2+)mdA(*26Kk;H=i21GO>+ngabdF zHJ2IYqG=$-V+UF+_S50^I}9eOp<6uuC(5WlDLg|F;}|bK{obNlaNsFRqT+@jtteN| zB{o0CmAYPJkdm})*~Azu&@l6P=ZU=i{U$<`P}2UDB5lq2nc~ zh$#eX6{d&pw{8$MqQ;gXbHvYvZy-UhWkbX79J~=yLPDxTF1-uz^1Q-qqGOMOe@>VP z+A8f7j%O?WWE{?XOvX66*40AS`%JzjWXbzq4_ByIPsN{1%>TAY+(i^3^jD)0+*}*b zDU=Al>wVaWGmWuW&n&FxZ>)98bGLqX&l&OV-b@bjigt0T9d)%Lt|LysHdGuEZ|xfR zuA!PHa(XzJ{UjL|Lu&#?mh`hL687HvlI!txSjv0^LJnjaH3oi?A54~Ru>j2gA*-dq%y524PoaFhjo4`fillR9wkGDdLJmt&UE2XSM{Amo*n~+s z1HbR^lT2#??0m$4l%>!<%pm&k;6ge7Go9}*>##z|GG7d`$P4BYSP>asi4Dz7SgaFN zaeCu=3K|8XjQnkC7~14k_#fKo)>o{d23yl%iKVz|htM-OH=h&-SP#fbd{XH8=m%BP zjO(4vq9~q(xOk(?9n*NzytiYHd089t`Rc^%NhQgqXDTWqaCM!^$T^tx9zu9M3!NN| z6xj2GRL)rST*5D@+;+yQ`gA7UzSg*AApRPzyNO({{vzd{#$)(JK>F^xGvuck!P|JH zio6@4d>_hJUNGTg$Rq-g^2*-Pzqg0pG4knfN1gO4&g7_a8BSU&X8XeUoGoS> z?$Nz-iGrckhWhTyC0J4mN)ELN#7K~gRGC>^GvQagF| zM&S^?*{EP}-0oWGq2Vk&M+Qn>L0p=VZN&G48-acpsHYiw#wH^U>1m%8NK%tlEtTP8 zC4}Ek-$_;Ni{@pf*`ZP z@P|<){hiE~s6ujhpUaE|d_N&`ov5fW-v*J|y?#s}!6hr9DRTB)olLZ*V-C`B>}v#j{JG^ zA8Y4JFqcH3_x{PJ%BkGheUPyq16aAiAHA0bMRy@CB@ZIeI<+puumxX|O5SvgY-ewB zm9=Vd849CyT6mECjDa?C5RdXF<6b%2GB$I}*jN}E<>pJ~-5-iX9=sg1#o`^E`ld1K zv|q>klgiQVO9HuhI#zJf!wb=_F@p5C>71n_GHy%rI$m)RG^`ZwDU_IG?=M}LN%0XF zwnQtC`XroAVb+D)0Y?^OWO&ZYJAa+CgNxiXChBf}_$V!ubSf1udodL`vKos0n-IQe z7CEHGpEMC>1J8FK@I8qOP~5+MNoS~kV_!{3_lt%Mtf*YS(m6wetLD#R__fg(queV? ziDvZO;gCD%Lume(LBy~4SEQcy(+Oi=+_Ir35FW<2$|4j3%X40PqOYe4Vb9N~nobh> zZEMo*in!dr$`Z?VO;^h73I6)U!}ev8#;m7Yw4&g&Ij#7tmgH9q1swx%{g_C(xk!2$ zcbso#=n(U;^3o4v6dzkv-}#QxtBW7;khdr9!Dy5g2-A%}_v(}taB|V;!n?8<%6`U} zutUU5WMHNznIx}jLu@{5vD7xa|4)O4UhCzM;{*Ho)DLVbB(EtHQY5c0c^uM7o!Ep< zT$MHF7QRI?v@rJ*<-4V#=Y&p~MX`)IqFfC7UGOvh`!SA}kJ_Wu#ob*|k%-8I*bDI^ za~hvae2M#0oJBSo3FZW<>U`F%?bxx%f?FU9WoKn;L_Og>Y7`4h@3nRkn)#8XkJz}3 z34aw8d${r0>i_9)bq^Pf=C`a9Q)VXi)WU|?mNOG)AipfPLcO=gS`S&Mp4gbiO-Wn8 z_RY>XMhgfEJcEB78tCt~@)cI1*QGAIoL=wlPuSAS-yS~}kG)*FM8%dR#aA9xC8*pW z-%#tb-3@X=I$5ovHeNV&X{M{^-o1@Snkef$_>c1G7G7K|gPkT$W^aTf`*X^I^5Ea| zbu_NmPOZTY?R^>Vowq8pRsC zgLSD6SFtjtQPsuP-1HWIC12UKXswxs81nPY9ivYr9OHjE<~3`^f2JY&S}WYI9=YCN zo43kPI=^!+y&RcP+fkUPG}zn>OWihGL_>8y z7$?H&qSXT1?}=PQXS^e^rn%F@`d z-g^aqhGto0UvO|cWKfaL?!5^46Ftmd>sXOeLVoxBg^gpQamr=c&8RI=oQc`kum8$B zovCiN1ZI?p`O1r)8$l0$F+XbTu`HD%gjD;pB}FCm2LpNb`&RjvPIJ(d5^F}`J08vA z(#YR4(S&@fI-%mK=C#|c>62n_@o3qdF`F%rNlR|)DPAyDqofw_Fe&6T=q8tiqzWJR z?5|fwJtbkW*|VRqi+YGrHWnGoV{ajzzjDcjq|e6oCek2VdGjQAYUl{(aiceKLv|-U z{i#-u$HCSY_x)zh6Iu_)?P)OhAQ|+t2wXeR3-8i(v%wKvYysjpLN^Y;rv_Naz zR`Tr1P|*tY4t}!v*T%Xt8|^Q&ggyN z??0p(D0|9io7TU+C2^KQdT6}MUbpK`|M2olcymR@VF(Io)@V_OeNhR!XGBGjNCoqf zZ-Au5iuoVCCwp9JU8c;pyUnc~sW^Xw8|;N$_%>a}sK_I&Jmm|uBDh)M7&IrkS0EBUwW2%%`EDG|5( zyNidvcih0w-{dE6htrv0V2rC^|KHEwl#OBj_YZnq$cGCKMxj>o5rb1tbSr$D*uXFk z(jgx#I82Dj$iD~7U4aAC$O8N^;2ck~AHOR&d-XS*A446O;{hM;Kr_x?4i5Yb&+#jR z^Otxi0{=#{lhFlS!Fi~^R01g=X)3!w1URWg>L#E94h7l065s%br=Dj{|2aE>!e_u08BW*$;A;sd+z#?3!xG*B zB>fxhC$tdm1LxsZY=tjr0mSJ@VH=Q@K#XuLIMwwlS9k}+87&t6_xy#uL17h80lo?0 z-j@K?m59h2&>?;@BDHJ)guzur7o-aC5|IU`{@W8o{yFV)ng~BQX?HLzq6AX$O^Yl8 z6IoEKzash|#2!i1jR}CvaER&xvNFJNOc8$3zu*X%sFx@jh^QDKO34Kv+Lwy5fDuTn z6TJsKmjTQFJS3ibD0&Sdrd^2Yf)i$YY+}SDTcu7l0ek$Bq|HF7v)IyB0DGu_pfn>W&`esoz!88vmP*@!F14+Zo&{4$ zcv)H;Ol035()wWakDN(og7(;D}-LYGN~4 zFHlyDt!yDMwD_-WNoUHogK9qfC(8zghWUTUdh$T3p6?&ezVCaYWQ$PNvagTqTg0faao5vB*aZGG3;iRQoG5GkX)KTXx$5&{ zG>M1xm9Q|b&(}A@Ji~llzW~lH^!}*kW_=f|dt0CAGhmwKy7aGNp6Tt^zkrRsFW%r4 z=0a^cgM(PaTo*J*#`NrzG}wtn=ivhe&KP@(uYnE5#g7)8q=$JyRo%!On?y-wM#fm5Us)S@Vz*$aA2G7UxYDDHOtBO&^1$dY z=2k+h5kUd7?w1iWCZ}N0C>5JcJE;hMSXZtv5yG*o$FEJO#NwpGkf4oCE9RpFHH?N3 zO*oD%P|s=zd1x=-wOKKBgh}kHcHdWon;0w406{|>Z3o{TbKUhe&cr;iLTg-zEdp27 zjr}nna~K={z?9O&7-RQJ)mWc4_C$xUrnbl!ew_dCma#786S;Qj~u$yo2D*=Dn6!6w)~E-H*BS zz`?y~n0Y_1>>b1W_U7i^ax8F?`u56UU3f6O*LnwP6}H5QFq=Nc+=<;d@Qd9P`?$X5 zqOd8v_vO8q=`YOceofOhtivD&7fPb$83dY&V+Q+&nqJP0wQ(mLj)j;M_OZ1b}itH%{{cdX-WZRSmw!DnBZC#s?} z+>91#7{-#zA_q$z-;FJXu_5WSwHU<)sq&mf6hii45}IX z)Si#a@)tICY?~~xul;Lonp^(G2#f74MfFhDj!Tw=dxs53VY@9Drij zn(W%JaT<7Tr-extWU(K?Z2rq_&n1r1aH`vX!7$5u_8wSX_K3At#l|u}(Vl-RO7pP9 z9=p@2#`d;-JT^@S$o45H4GgE~KlV~mC}EMuLw00 z0rw(+>&qJV{lJD;rgh(EOg&HMzH;n8PkQ&Az|ysesDlM&M~<|^G@9va&YC$WV_s;n zap1?i@IJ|*4a3|_b?Cv8YV;!qcyY_IXAZkCTPqkGUt=_h?2axN%_mLA9!&B>f+K!A zD!C!Vkp>H=r*V!XY`h5%9SgCHH(Bq!waN{RnxV8;r(KU=j@_F^`Fk{ z-y=T}(sPT=w$axoem9h^d`Sy8`SJesP}kHeIRoO)GG5+})}@KKg@uuX{j;=kju%{| z?8}uZk1b5PuEaVN_g(opb7^Ho>-o21t{PE4B{@Tfo&O%Z9+vvLOlI)Fy=RxA#Yn$a zKF1c4dZLu03Ad-0i5K`Y#$GH5q`vwabSuo1z`U6>+uT5kjj-GK;92d;or89r9m0|& zF^&6Em=ac$3YRN*eZR)otdyKllAAub!ttl!XW-JGPh3|o?e0|@R8Y&2E4=($tgdhC z7w-y9KL1|^E@!@`?9a`85;dn9QCcu_hh)Q=th}GRUG$R$PlNv89i}>C*P{c428GP8 zO#`UDtyG*|IRON80s%#+fHJO{x(`ELS8wfR81@p`?oUa> z;I+6qv?x~B3Y6rdN_=O{-hEJyy{JG{XKZm~;0gst-k}H5ZvygXxQr-2(C;_?{3S*E z&V%=nybQ7KJ9ENGg_~$(>N*dSy(=gL{1+Y)mkNKVr~dMxi^$2FxTA;H&)Kg3qIX{0 z{kuDVL{$CfJ6g#t6}ts4gfC5!+A|iE60ft_3)Rb14p)Njgwrebl~{hb;BdF}gwY<2 zvC;3tE4WvAsWX|4gzpP}89P~+sa~=j5^L=7#BpTVhq{DZsH_y2$@I9u9?xTkXYrr3 z{{H@l-JJ^db2T0xZV*%CO)80pq*Gm|1SzFPl+)eXG;lp1?TL@W`z8w?d6U$KvpI9a zZUis%J$iFJg$GyCm~5_d<$lJjWB%&F9CMc;qB zEzPHsnSK8hs4nMtOT|y$kYkMABg^Ig!@oSU&TGOuTHuA%j5z+ScLvKD<;AL;us7KT zdwL`4G$d5Nn~l#n*37=G=~#$&BBhE?4BX*MJN(URq4Mkyoy$E5i@X-ko$4&2s*Le* z3(wujrHuCXXt!0%Cg<-_XK{~Vr^7QcB^n6&m$n|@_Yc+{@8rMj?SyC0lAV+m??2%w zt@-$uYW!(YHk!jUiLDmQ(xf3-xd!qA)v2p&H)vdWE(*wSQ}>Oj z`_HHJhg&STvf^q!CY#q*6Yeyo8f;zgU-Bv;M}(LM4P-wV{iJy>e<*Z%cGAA3$T)_> zU7YE99DNUdTu)`2>%@>;q(HtLDU?fh zbf=FLyv{PDQfo$-i4rnde!_d|h$>IA^0D)?*0$UYOMmy?u}VFuBEVoFI9KU)weZ52 zJy(yol5k)*y?M?n)jPNKcKEm$hu%;5^-(e+DsJ+Q9&KyIPu7O*!kY`v1vTv_y>FvP z{!4M{eGEtGcl%a3IYr^X4tmO3)2%F8$97ur-kRJpu;4W~&Su!9&Bv#)iKn5YI9s>H zbKXeRUCDjo_=Of+a}lHCTOP+1#_>;@sd@xKnkMb9-R|Ts(W2Kf9akhYbEZ`zt`^9r zb%ZTMrIY{LbNs&B ziL=Wc56`E6=P>k0dAh=_+UQ*)kSMo_^T*>B&A{>go^vN^c-ttc5AmE)e#_hcK6LZ0 z(bh1ox_0fbfomtnu5Nj4U-CzNOKkHqE4tg~Q!ZdZ_u-bv{q5c3baP`WT?x(-&-t?AR6Zr^ zZW|XcZtFdr&b@udx1IHttrAv8LgN%ONo65!b&hwfO{;F4(>gvbNp-be#_g4EkNAAu z_|oEUk2?l>j|G9JzVnNGNYWdU{ah7)HTRrul1+@`%$1X;#_~r_weQ|nMSQ^-O(WA( zt@J-9P@7S^hTlv| zQGTwn)1A>vdz@L|w)a6Wj}o3MS8vh$q~1htlXxC~BZb0Hb+FC$ZIYwznGUO&kCcv| z)2_x9n#J<|Fxggj7NpZpR7H=xg<9YE+Z3q@(uw&Ra{N@rk+*)FG__r1-afbxed?*` z*{nEudHdZmn%B?I%5rWgFg4<&JIy3PPnwWdOsmwKSh{k}^vj_u{FzFHoC)@)1x_np z3>3JuDbs|`O^7;BA?@<7&sV%M8cKeg-Of*{de1gPqtWgiMMG#m?)hMM9ig4XO4U@- zWPIYmG)0o~yw7q+`*=otNrc|xoLRA=PJWSP2iHBN52X&rW_L4z$t4TCBBceg2#Hu- zTC0ILa{9m8IU^opRqU8y$RWLZ>fV9QHc z!tSGE^xwo&^|Dzt+=C1i9h%yEnYTwSWmb?QPMWjrPT4);<$p=DWpnn+h!YB=?R-7) zU+~NCdQ1M+TXDaam^j9KlI>|kp|;4uv;~6U%=DOaLF@n<-TAW_R9pC&TP!BkruW<| zG1GmU@Kn@v5{&BYJu(Acq!R}1GO-Ja|5^K~{>FsC{Huiw#w?wSf7Pwre(xeIJt-=V zKcf|~vx)q=OsMje+G9x)^^B8!`4M5Q?WzpJ&LWKV4Zf12bq5N>e8-F|^hBOVn{({G zsY==N@m^gW|G6;z+G?gc4NxKE8*rR^ZNKQkP4*Vo6N#SB6+4<6Mm2WwYyGDu;sySv zMA@3WCFomT3J|<Fr3uLs zINpwGo^U$J}}Kjwrdd%4sR)rJcHSLR;WSOF>G^*bwPc?D^6KX4?*sC=80eJBp3= zn!dUd^Dh4-O-nG{+soQ~yEPBqj_s3R;$fNc&8>anlu^LvE_sNewtB_IsJm_DgopBF{6fU z85!||*OcPqN$#q~pI;`hC#~%Gl@Mb5Uf)b4n)R~SjBKxVban0aw=ye>s>|*Cl*73a z^onJ#K-Fmw$-UBhOnx{sD_gnuT9Ulr43ACj$%|qY1{w{4}DXA5QC<-BwCxb0)d+M%yI|E{~RQ_?}O@^1$MH z{GiqXpXIw4(?;aXrfhK!g)(wPtvQ<{hhT90)IEcqk3JVFxjp&f&!$K)%-!uHEPWd+ zc}wj{=01B$JHif_e!@p&Sy5$QqF!ehnL8HLN1u`@X&*9kY(B|wiTtBvVsf`8Q>c)x zm;fEVv6$36wpZyv$q#YwxM|6VoH!ZFO78-%47*|3{N%xfpvV88=#wgFr-x5`GVLr; zuI~ns1`@co@%`qpgRiCKB5I|_7{PDM*zO)H)PCcWwlFlFTY6V|(dj}^)MbmNLG^T+ zuv88CQJzz0ZdVcRyZ7v*^JcQ(dPvgQN+z8&-|FeHHT{%*svh4lN_V%P!4A>y1#Z8H z(5QVAUaIV37{%-zQ9C~oXRb^kl>c<}n|0Y6X-CSCEToYdB8G^YbQOIdhN+^muE zcq&XAxRZ-U;OB0c<>H>n?jBFM9mAJf^OcVX)%95NsfJ8cE^yO#hz*u53=5pnb~vwU zOmZ_QjPnY~?^pA6%nwcK(mWFta6NHbE{)f;eoj!)-=wF4M^AK%9;Zm`qT?!i zTR!%R0-u}4D1StIi`((hSrwm-y`nYbf(IUKM^y79(^?e>x=%mn-U_kW!8uhtuNv>C zEyARfa?c?;T;3%q;MP5J)kmY4ue(K_lXShE0xy|7@O^AWXUyuVd;lMCe5@fOr+Mt? z;zaNgqc4B_^fd{FXbI-@?zZv^)$#pDk8`?MZKa*7_~srTcevH0{8~~M-yQ~!i{wKE zR!_9aqSD)-7`89CU7qX)n32YaJ&& z3P_HBB%QA>&u?-v#Y*O4(2bI^j%A_!O~1Rx*(htk{L}Hcy^!5I6@CXq(^jFtu4fbm z#dxOtTx%11vP}z}#IH|tA#on=o_B`TvKgMafH7_liRCS`e(-O~;fAnkA=~z?3tRSW6(1ci=a|X@W zcvt<^{IVKy)cY)*BwYjgBiT>QcsP`n4F& zWN$M)eM;vdw}zG50Y$JUP?fDn>;(Q@58Ijn{AiDI+qrfJR=8RVEgD)0S z%N+S7V27#$YK%)a;}*6u{=NBl_Cve+^1H&TBg`~ak0YrWxAitEENcGwAzr`|AjZZa zV9rr;QZO#QzPYd7DQTz`xkhrJ5lx%bFPLf;IPGfv-L|oMVP|lPgv`}4k;>x&!3zfp zYY$5-gf?{<$ z$Af1M>$z7toowXD^IQ3z^;YJ4<8F=*4`^O?9|XzRvi#65Dfi9-ay%&wTyxC6nAALN zs9;qo-Q{5ONoG0wY}%=sNDJXNxeOzjgA0eURJLdyy~|W*=gL)=7N|dFBVzJP>er4V z$2jt-f`xPi#Mo#!L|OLo#Sau(Rxdnc*1N)_Y0n`LVJI?ctLnMf5gdp$?nA$BF3*yr72ku zME5ZGKdh{pu~pEOl46l^>~W<^>%H#5MU0FLi_I%%o&QE!Yy+ z&~CHcsoXynr7L=nRf0*&kVX37q`Q|*4fFKyZN z*^x$c*T`vIqY}mRp!?ZKqJ6!En)5CG__?bR44cYdgJ7zz|1vPD*RZnGwP1dMf-&%? zL-c^(aYMn_r_bzc9`S^3YB=>%HKH0EtJtybji@qxom@1#utPOVC$i9->sU4@s^28k zf3pi|exyQ?yNZ zv=8SP-ZM+rG1~G0AMGtK<<{s`{prBG+0u?NPCO`KzZjbfDr%E--J>5ovN{mMp``{Q zT;fxQuE7r)6Uoem@l?*2=dj&H!S4kMBgu2frHADq%l2Y^->GEk+7AX7TMp}SGVOa% z%(+EP@5-Ay>1oaAGMZ)9_x?upX}Qi|uBPxFgt|VN=gf3xW8j{blY33h*TFJjScoM# z)iF>olEk~YF(pVh*Jt85UFh)wv%fvAy;7bXi|Wf+PN^qrco{6Bepbf!-4v*v3JjdGTPuLN>UaH2p%MIqAMmpEWoral8`I2X=i8tdXCc8ppyb z!KPR_jk9s^#>uBW3UXNbdF98J z*mIk^xo7>^z^o6F5hvqhdY4cjoLh4Tivc?K8jT9_=8uKs-4X~p~ByGV$V;3Gp^5t zeZ(!y$G>?n#Z_JjO@Ewjk0<-P*v`wo7|0}A7&Qtq9f~uT17{M8f`c&~527=w>^=t1 zDC>=S=L_?Yj9)Wnbi9hxO;rIU=T8GtTvQbk#|rV#2SdX7AW2Y~yf?JqTG%Zh_F?yF z!EM_tK7R|~qdJ)<8F95GsRhw;tp`^O=3FMlaJ#PfNkt@sf{DVvV8KMfex^`Le_qQ) ztalH!V%^)QAKKq-a7H;FQ)Kp$eN))asd#_5(U~H@6hr31H8u1a`D;TRwOGs|S+sN0uARaZ?Fv}P_6Hl!q$fM+jF~OC+I;!M3aql; z>@47L8laV_>p2)qD)!Dw6rVWqkl*-b0lwe=+2!e{`X=_DhK-I}?-8YFcq=`zt@M4% zw4ngyaG3s&-c z^SlweGX#BCD6eMn5dSHYakrIJ*3_yV9{h$!k&WkwctLbophLVS&XgCM`Yk##iqYDSJQdiL9S5X$_xAA-edSFeV^JVvWkfy<#3^d z+V?IT`QzbR_e}^}eAOGXxv6qfRCUQwjz5SwRkz&v;=c@WCOjKf;&65EQ+c{w-z4vy z6?%4arR|w6*)!hmf!W&w*!eS^5VLTw*FhE2XJI*(Y@|TC2w!kWuYwo*xh<>ivX-$| z*Fp4cUu7hmvcz9kZ@l+K)1nESB#UYoNHA&| zF_X4U>~)OEODpY;Fu4b^dHYL>MCD(euVi&Trt*?s#e0l&E*8G}CBxx5vM(rf#QRnJ z)5aX8gg5~$aJIc5&AHwFIgdrYdTegmqUIR8_)64f936$Oy88tyyCJ#VcgRSh8iU8> z(RN)%W_;_k^uEZ(!LZ0<0;KF_?1cF-=}A>H$AD>DnP5rBa`O}3C@PtzYe&Rb=5l7b z<8%J9_&ti|aJ}S97k{lXBffl25bRYDwNlsQss)YFCMmE&@-bM{f)(;Aq3~u+S=o<_ z1s-N_)8-sOV0XsEJwQUX(XG1!?1IC|HVsZ!#(*k*OG)3B;6_SYX{W_a)-C*9wnDeS(*mN!h-DT;*oNEgdIVyH)U*Y{lW z81esI_}F;o$rj!pr|WCXqeV&YaZjD9k7$d&$2C`o{|YzbZx9k1jqi&;kGJQi z>?4;&=GRM+(7$TWMrUXwq#5<=!IJXCwbI8 z*|3l~kH^5NRU#I=%gMfw^NXa^G{c^fR-Ih;rKq30ncUNvqDE zrSx8WyIkC{a0M(eQhF9#1bzXrWii3QK942Qd%`Iyhg*(c_0?d|dLP<6ZBlvQerdh` zSU=}e{idbxm94nh5fVEE>CorCqG}5{5=q6P_}jc{L`Q*qP*|Hg`O;LqpQfnJb?n@j z5SFSMz0!K)n1opAxMwVOUKYo5mgY3+NRHuasT{7Yc{3AbA~O?)LYfJU+37=yIpCF> zINM8Jun@a=iNrFul|E{#TKFxZCsKyHELMpF7leNZA?cR)&0Q$o<8wzRKVBtLjQJhm zQydx3q}6LuZ}zzj96wMz;iRVF0}(4#`6I2mkb@c__iurV=M_Su(fIs~uf6>iP2IkT zI%5eszkyWMr56`-{bc}t(M;2Ci}_mLah62Zk_hg=2o zs^Y*}lbk2ky=0A-`g7_Q;q##zWKx8$IomshNpQ9{OuClbVZf3#z9ZEf6G z;I7ecXDUqW!>tBRc3B+-Q1HkWR$tx zMRT9@vU3QbS@4krtFt8gWAb&06Mv;9N*8kInJ5B#GpN3rE3)}d*;!ROl9p;fjgKZ|rQXl3J z9XHw9iZIq!AmnXHV5*Y%+bAzo@tl#9;2-$$f>V7z&2XU{LuMAASp9eW^kk6u*dH1P zn&B&Q42mRhF07zy)2GX$cQS9`1XXH$4Tu*m@d!6vkFm*|&(l=K#e`m_Ix|-|hWl?tDEA7j1qThyT(VnMc**TQ&h0*RZSEP5wECK`t+xZm)=N0 zoyUDrgCmjUP=wbrYW$W_>s0XC-Rr~SQfjKvEvcK3vcr+Q@=p@AvviZ@aU9vN zPVb*|{JTZ-kP4ITW75=VUH>nN9R5M?Gsg@w{RU~5d&KcP!=G<2+z zFDy8>P=Ldq;#(q>xx&EdJuxI+^4`52;6w}D zC-$A@w2EZ;{ejN>9pk*h=X5JScTftWKLud5-&eMv*DGD{7qMs()JV^}_w^*%Oz%yJ zV9vKw?f!W|{roE+k%i%aly`K$wruMFTea#qneK^B-I$D(`B^=etdhEs zxn|Fm-!&_jwCM9_dj)~u~tCgy620N9@QWFere50HosSq4wLiWHgTrmQ0Pi&*6fEb ze)SibBa01R7t+O6<}xp;S`qnPJhdK5QgYRbwnvz!Nk89KzDq54vOeVV#ilNeTiMKRKp z7!GF|gMMX0LCJ;t|3B!9h^iCK&|f(PsS~lEuQjO?_o6VX2GJaSx~@JeG>BFxOsNU+ z)|wE$u1PdO@nlUXM_Y?%fx_pth}P)ygBHXqYD4*_v?1KL3QOofeMfbm+?LfRmoAj= zsY^tEABI%v6477HW$8h73q2^VKo7D{=|Of)eW*TFAF3bM$Jh`B1BgGd`g~;o+a(O4 z_#=jp?y(`1$7}@U5se^RvI_rRg^dWX9U;K(j}xF>JB^{)3C2WQ)a*fHXs4_R(FTQ2 zn85Zv6WG3eFXTJ67t%f73+3^dLcHhd^PVYer!#|k9n7GdQZs1Z!YZC%4(YPZp}uKz z*sg8?`OaFvehyebe{8pe?Gcu+y>0c$X9eZ^T0!~;R*;^-nn*zVVQUTf3ap{M->sp& z>Nc?blnrcuwfYpXh4O=Jp}cxqD38?+`hUM2#24E^zBxNcZ(tAMbbAPo*+V+{eULwH zALM_&58?$J;M2Nq?`ELCDf09U7%hQS4fxb3i-ad z!uZs3gYr_`AbxlimT`x0j63vyyF0X#?*NqJbpYzCJplRX4?_C=2O<59gOGmiAfz`q z1nDmxg7{B|V1Ly-Ab+9<9BZ#Wzm;|QqdVg$5zECTY$MM6GOB&2^C3F$Cmo^=@74+0rj2EfcX9lXs2W* zg)n`FA zSuR7o(`CqCbQ$vhT74SiLHS4?l=C4E`bRk*%8$#3_^x~?ck>nK&m&i$+=eR<&sqRs z=K=_q6+k(E3t&806~gwsLfAgF`qaD%<(0be)KPPJ-~>fOH-=px%2oAU{PB#9ORBFBie~sUm34o?>WEaxv83Ukvq#--P(E zo6x@YRhYj7!hR*tj`|Wfo}8tS-?bF-m#@OVS7GBaXa`aT^?xpdg&1% zp6@R4!|x0XYG&I-tXr~>-+eg*UcYbCVDy%O4UuM*PH-iCBex1n7nw;|oqZK&6{ z3hKF31?~S(1?d#4q5nwLP;X~7q!+jY>3!}%IdylSKK8qipLiGYm#xAJtFX~MDCfdG zXxGQpr%Da9FS!QldtC$R#O^~qNAJV_KfMq2b3K6gL#xj_4`4g(L#WsOA+)RbA(XrH z5cS6n>df2{F5ACpS zfcdq!0n*PkKzf765Key#;jzb1uY4o)M_ePcud@-#6>5TVjx-VXq4C|(1o`=zA-`8M zq`%V)>G3V_Y25Yzn!SF8O8m3X#?0*{`2n#64_2fzxqPT+lfMy1J{t} z?L_SB-oGfka0?N9M#R4Ev3Lex_F=^T8Enr(;koZ9%!>p%=z_mfu1`ci)V*kmKeh#opUAqwB z&RtuP5k08k7>d3B2E+0qmCuRj_d`f0z*15$BHx}vz5Ja-A^JELMO?6Vz=1%d@g|SZ ze{#J*8-7Yu5nBKv}fezJu)qp)=ta_j|B z9)-(L_;>~KY_)w6z>Eepia3+N5U)tpUC5{vQ3542?gE657ZA@bq5=wMqp-+dQWF2qGM#RK-Or0*1&~|^qM!&mug5H>^!@?-Qa ztu%=}Y&e|Rc^q!*I{HVKQF;Z8ijA{PCl^TV0e>cI%Q~v}uBePV;&J3C!p^I{77zD96Ei+Y85iO09(W|w zTQ(GvDvg>@lDpOFF8FI-Y(o^d^|PlbVvPY|kJ`E>&#@PbS9`HC^6k3vTHM}5vEdcU z$fYu6@&96R3B_8BC?ml`%3J;$tG#^y`*s4u@*v0iV2ob|SV}wy>|DJiEq>3`APg2Fq3OJ~6xa(ku*9XGmL=~L9`_T}0KYQ<^fk@9?;xgvZ7s~cn5s@mqHB@c?S)&0tiYQdL-~2aTjKm*$3Si8X)^RFAfJ1%0K@a zf4M;^{#bYSUgIu12@iu}YZHkfQA)+*D zkn}JxD5gpc$*)io!DfRf8d|28xdrY6=gq3n2KUp+LsEF`xCk{uaK)E4u zw@#qs*!oK`3Jf;qMS@3(AmIbQWA@}-JvPj2gu@Aj;5Q`vK|z!h{cIK~2CR6EgL@EH zw>=_QLXkop`ylb&UMY}|d2=W>q~+^AdvNjr9wA;H9!QT7Q36xd{7$b*26T!COxpF) zAe@3!j)7<}n_IQ2y0S&=If&)#v5me&GEh?JOMKAS&bvV1Juu~ehp%|K2kGhBBlcf@>_)LuZ!jz$QZMf!h(*t9rf!ygpu`aj#rm~} zYkm(x{IiD_`Fn=QhtVd^_ba1+%8__-W2Eg_#%N)V#%OyXcmjdGtcs3ViK z>M+}4w4!yV{1fy+N6C~Mg60FiIzr2WIY|bsmI;*#)bcoKdW73WnYG-Zu+&)f~tV;ALyxhHfRqvb~)Ka^PWlHXV073xV1 z}p0x8>$k9Y}po{wH{Kgb;;qtMlko?)TJr5QY~O zH-?v)7!vo5xC?W{9_d#!2S5=<3v%50S#fdq8z#f;d`%xPM<=e=yP_PeO5_84gF^hu<*GLuye{ zm~r^qxO3S-d3+L-DC_gG2R(B8I}G0U-$5`paiB2Qe>rEz6hLkTf6sLa5*-6D-b7am z@zc^;i|}?7J6WuSu-wpE%S-~(0Bco&Vfm2D=AvsM5dfMf#fOly({NR)N8y8`$h&E{ z31goD@PnU-+zhN(ol)54H*#zSuB#;gW>i+u#_4+;@$mKYLC9x_V%TuIPQ8XQ9 z4Qx#AwwnKtZ+4NuhGnj73Mm1R)&|CJ{SZF))<&idYr`SLL?4#;9X@7=!{HY<4q;2M zHqOL7GQdMY9tqZTfm5n{Y8ww5aC#F+^AhW#WB$H265F6Hg#2BhUz-biegJnlH(^cN z*XBa}4s9uaFz=H%H^%SWN96Voq8t_n0rsJh-h4P*FWbi2{PrYD#k*EH?cKj4`zhGF zXee&%vL7{=qM%UeJhZx=eHVQ8Q2_*Z(jAHoK^w<|lEQ6Hqub*g9kA3SaBo}^@Y)D@ zb~Oe$&kmp63<@f*xs8iVrXiy9leh~TkKGc3mRrGiFoK!CezwxM=pd3#I&fov(fWr; z{j^fT;lQmg8*)~JhYpf`K?^CFH#1d=ZG0Fi@zh_nj~Y z52!)q_Kf*GNvNNN?qtwqRQX z(cb_b9!9i&!%8mz!1ym8bhF;+f}Q&KKj%mFD5aP*^6odxy$pXq9Wkn+hua${yBB$U zlV{U^C59tt!mEM(*_A*&ZY0QE59-I9PUU3n6%DrS?Xw$)CiV!%uy)F{fQs2$sE7FH z>#gN+<0XK-cpby?A;*_ici<>i@4g;VU$4i5{QUwqM3X2sw-LjxRbiTc0k(@qA0gxQ z;Si(M-8mGS%Yb43*_5J9qo9ehgd17;3-i6)GJwAdp)e1!Txznmk{m}{epw-T%g~*j zDC}d0d|QU@-n0T>rvu2j6`~*_OMq4ep~x_A6se4jDe02iI3<`m?jSF&AJbcf7ZhB$ zvHoF{+T+FSs&;5PcFo*61CLseE9%OhGPdd zrWua*3q3AyE2>t0LDB&bod%23dc%ZYBEb~Evi}Y&KBSyDYy@ICOmJhyX&yjHp=oz) zIh_*0oX!J1UBBS%r$HJiT(AQpGKGr}r5qy)gKg{oFWgxFZ@*~I(*k=1W}s<3f2J_v zMhW@TC;`9db`<78G(=sn?aL^NwDUk#z#n`=$5ZwE*rUmU+qQJf}iAmkSc9@H=db2Dnw@RE^skeU%f``dvO{#}R;Pyl1;aP=z>eJinHt+e zkx@D@HCAq}u1-$zUwD=^!11ur#ws~37A1vKgLiYfBNrnMcTjTU$y`?*qCoGWh&hUe zn_F*I9;{(9lsHft{qs+y4W$zLuXe5n0A<`F@{ZmGJ1S>n0C3t8BE{f>tprX0#*5Mt zklRcI{`HH-Ewm|>6>IuuU*ySpSJe~blp`Q&)*k}X=^-MFF4*a=86!~h&=~P$gp)A` z!1$#w0wR2ruy(Ba6~(HMFf0$UnF-EObtb_3;32Y~3G$u+Fy66&fJD_1)|QDu6ubX5 z0f~M^fafacuuC$#2r*I*5pdR#fwDFp?g$wa*=R!qXu#{^jS)6FV_u|ub-&(*Vy74| z?AkeiAPX=cT?963oXw+DpIJrINI!|;1QBEq&B54P0D7Q5APxY>If_m>f)ND$j< zk~x(6a^E*FCIvA(28AaQ}I z(g7k8oB;mwuiV}Q>9#T1^k4EyV+Z|Xaze`4VW15G7@rdgv>!298y{&7fTfEzL8K#1 zVDX6#&M_3roMnQ@WvtR-MZ?u%UL8Add@z1~qlXBWOc0-}RS6hvQGl)T8Q_60;N)w4 zQutnEg0Noy*8?k4Q?K2`aJadNjfLlva*TGv@_wJwMTjoql?hJI#N!C!?n9Ko@~lDG z%O5P-IGj5D#tB_D2x$SagDxzPuxZPPdogGTjN}HJr1c9an-KDt3uKG`N^Fe2WKwX9 zQVoZT2AhlZA#!yKN)J;8_X|xU76u&dJ|GeKXNW)toe(x|IEl2m!SGleMqyAWg~Iab zJc=B@id1mJS^Eya^iRw7;uQV-B14d1SNN7pn#VdiVxn2LMAX#jH~~WK>HlN||9Zqq0MP$;jP0>dxLXzM5_cdQ6M|+d zO1cy4QoP{jb|!Fybr__q^&W3qGDW^Fn!=hIdm)uq;TACi_G?}Lv&|O6nc)H=-2;3B z5Bj->Bf*^*rZ0P=VI~I$4 z-Ll0XS?mI-ZG8ebpk@YkD_%yS?g9Hf*2ah_;o36M4u?C@zOkBdB$y#l24-tp2QMKP zAzHdTV0vgIGE%wv5>2Y3GCgd9aH3iXwa{&5^S!W^0kDAq=qf)aJ+trTN+_dKSe_F_?p;&3w(~ zVH9gBW{w1innRbOnO0^qz&?~PN8X8J%l)({X$it26UsNB)u;!ipq99FCu~>k&rS74=Fil}f zzdp-(W&zG|0#0mt`7TfEVlb zSs=r<7Vu>m>f19YHvhZ@(s<57c4P%BCv+PptkzeQ3ZAoJT|dKcldl%+WbT9IX1%|E@>n9G zn=E@6k!J27C|hDKwqCGzf)Gh`Fb1)i$vVr^#s>kz1=wL%UewxPP2XE;VAzjOJvVOV9@{nE`}fuLR@bNIV=uq zwrmuhVL*R8^kpKD;&<5HFL3RB9ah#Pe0zD+6gW1+Vxwb|N01R2P;UMAYSwYoP}5@<4ktUe zaXs7i6D5U5*?-UE&Srr*dkZ9i^}FUl2}D5_dfrtQjKm{(6kdB#QjQ|Ck08%wVcuRw zVcJMUXom~-vofn409GwU0(ZdS&PU{gmW2w5d zEO9vfw2d#jFD)W&axO|(^yj7LJ^BEO8MG=C`6nTOKAYGf7DjgetnP!mw_Y?40C`EC zdPDkfv&U$`xf1v_87B8dbu4=%NXwtMZ%j2SEp~`#lO0So813EAGjrdy!Rr(@{DvR5 zw0B{&@C`K@1%vXSuMF(=hzyJUS^|<(0N6=BdxV9@er=Nyfnq7O>=9Oddw!%+;s46I z)|e);C_J<(qCulnE1DEF;znY{?NWJ`wp0x+Vnj)&Lm#`1X#^H2hQzUTRkb;MTihX<)VU@YPdYXrA~1B3ad^_eY7p7-s0jc9zxz z2{Ta#t}T}DIg|5wi1Y9v1@;Zq8G}~TszvwZ1@^*H9uAf8()OOBM-fHc1Dl>HZw1oI zd4KU>_>-6X`V&N_PVD5ltb*cPw=YvxYY%R@T$+F-tRq2rMs=-Q`pwu{d&%9lmlIH6 z3be9DW=||7vW~)h*$3&G{!q2j{$@TAsUSkHceU^L~cHy@V z62+~4WPYQr6?iB=c|n>u!wrHRF=YhkhFjR@fv34@*K(o;V6I zNz6~=5c;MXoAWF+|n+L*Vg4w1L zIA58&gqB~Z`{;1LN-jqsu0bJU>K$@DGQ-(q7i;!d!y7IHF!D0hhRK>xbyodx~nf>fh#CASi93n1JOe?TqAU*o*hj7zY!UG7+( zH489uN03x2KNX+Q-z~uOE`iCCmI1PQwmxXbT3Gxv`Eq}JCUEQAzO^2y3=m7?cK<_T z-Vi$Yb3{o(B*Ae}Ljv}23nAWaW?>DPYEBxi#>Nrwrm@vHL+ExR%rLm-!R?FU{+(G|^u-}p;9tT@KKKEr)A6UTRM42tO!YO=Q_sz@bL%|Yecs|M z7>r@=EX9a#PSx4L8E==yQ%TUEnWC7-8`*ez5LHa^!xtkH!%`E{xhLRf6N}*X5L#%1 z8WU6MhlEx)MdLOMbj?%+0Q3$;bx3xzib+tHcu*vwuNk%5CL zQ#+tW<&d%~J3(7?4#-J$utQ8_-t`2HPp7ElxJD6G>@S7g7S|H!*~Pj)zgQ5wvX_7> zse$ZybKRMS{-AK&F~%MLK(9sg2f^9N1C8i}TJ-WLNBM$qsX?PoV@gleyS1}pUq5E; z8uZ6w&2E~)3Cq9Yl*l=5%Dd3ep|W5g<8PLCfU_r2-e?$DDIU5E{ZBL&YeKI7qhZM^ Lmu6C=(TV6c$g+u( delta 45273 zcmY&gbyQScw5PkfySp2tyCfy05s{RTa!8R*8CnFS8)XngLXqx|5CrKGC8QO3bB}MW zx87f~@1EUzpL6aV_}zi@E3~o1D>MRQJ#-8T6dW8J6k@z)0u4+wV!T#U%oZ$~E zbzDS8j)3u?X%j(0LsDp!3K0A5ELCq8(=nP16g7OR3YQ#lbA=Y94Y31N(GNlB zZu;ooWFd~$GxYE15FwF>{sDx3T7WJGY#>AbsRDh)vW4CXRSn*w#Y}{t+DY#78mke-?@#t#sdm;nYARAz*(Ek-oRaohm|lNuQL zDTXu|jFAe$3W>sa4OIle@&V%sWEPSC38RJ!A~e5a90QK*35K0G#L4BvOaOth3t}FK zKpawg%pyF9XnKGt1kzi5g-Hiw{#0Qu%RpZ(tzpLFLxjr@%wec02oW}{T@WT6CzdV& z#BmeFfR;n8lc}d*w_-l zt2iLjw1_tzkP-C3-o>oAGZP;P57jrG6e!ohwG^X8N;x`r3L1h9dY4u5U0HW zmzoeFkn_c)1rf)GxKY4Zz%N`!P{sLMTz@dx-y1H}pUAuJ|?WT>MFA3=>o#62gZ2R$sUBm4-o+}{woLaF>qbL|V^YcPu-&4MjL z0Wu1UVlOGiZ#2G?4+QY>YAyFE`|=!JUW^G#3@Q z=HRCf?8xCa-FC$Ak_uEz1Wpjq6|{!ns5{E!2&zgV3y`;WBas#uPQ(|YY%os---w9LOu2&%5nkDpvhom7H9`3l9U^#UC|SrMLU)^T2L~d=4=Gb+ zkVH?sxlNnGXHAvH_2 ze6=A#*+mBADTyRDHW|KhK}0V;<1mOmg@REGOlYqXV+bgmf+3>P?PrcOEN3c2%9AdCW; zs-ZOD$h!{;1QCphoEuVMuVA79Y;ZGS+{knT(la7q{tCPa(lTd&$w%H@;egDBO_@7^ zw|E${0GQafvCOZ*?AaDGuYv(W8l!-#!|h1nf{w^--@lAGh92^E@qrn+ks=A?4ZfiuEtZuWw=pZ)oR+SYrBNm@E984&hE^822K%s`L zb6{zjII;c&iK_ar{t|<bn>z?$T%FAq z#H#GgW&?693Sz4O3sIw!jR~v<*AX@+Fr-7j*}}odY2mTIlt9{nBS(Q8@mq=g4+!B( zk3AJkNJ0?17YOq*l%0qQa)^_`{tSeWp3C0O195bF*(-py!><^(C|97Xz zMan_=7`h^zv?NDp$8zXE`taU)kUT}$V}sqqZPz>eZ$eO z2FdiQa2}&U#2a-^K2Xk8L(WUE1uR-~Hh}FcF^97We5LS;6ZuGi6z&@0ECCg|Kf`&z z32_XrIA=kc99UcgpdMmUTp3{T_bYHsaX>P;j$9`o&14U*2f*@qIadX+Q{2EM42EUm z3zrk{F22R30=CW|RPGySG@<(iN<<;K-AN0wk+hwI|+Gh3*}9H0Ewip^S%c;8Se9XIYOK+ zJw6_wv}4Hk2+Xv(Enf-Lgn#$!cpiMlcOXIAD!u}+#e;z)sN)+0GqBXb#}CwS2Kkos zA;B#Qeo~OwB`v=rE5xyp=br@QA*jS}2eL@k;*SMh$@KVHq2v*g4*YhYK-mxY*LWdL za3((twEi-e9|KJ9-vRy%5Pil3{|9gqAs4$A@Rk3A-yUoz*Ej-y{%H{l_(BT^@lai0 z6sfpfP|BD+z$~FdHAvrW zUT7cagOk_wn@}ESVD+ZLD4V;NXG7=DDoi~ zNrd=`21_CdxF7Bvas+0jr~&AsS)-^6ID|WnMOgsn>y_vg=;OS+SSe5qQxiLf76tsV zpO`d^e2DVtL}RXreJ0I>1s0zE3Ca0dz=cOxbopI3&B&zn?w!+nSeiLo z%|Qq>ip+z#(eRz?h|1r;2&8VzXNpz2+MmwVUAGYxeDJndmaTI)Qkp1M3rm<-+;+}a zyt>%2ie_>*a*M{5bPpH$@4$tsV5{ZleP@If>~y(lAFqSo`gJ&k($*%$NMBUS;vRwQ z=L0j7t*mXaCz|tBosR{i>4YT1G99PZh8`u@VZ)!?y-4z(M|}7Hz5nPJlhG|Yv%`5{ zf0{u@1?I#ty3lrAqGeOZr=M>^XQkkR0{nl>F6=Ph4YYMUBK;j2XcbZSyY^umb1kL7 z@iHv2VeX?Vs))^3Tle#&A%S`P_wDx17XdFmASUJ%J~~f&cI`JY9!Q1t{TLEhLqjl+ z!G-S|epuw#XL)Tjx5uI?mMk8Vo_i+7-7il5yboXKuS3C+kJP)!3+=Xh=4TJP_GxAAG~8_Z5{Z6?0pw2LttYz4DR)Q3Q{yg1<)|4#T@rOCQSMxpY()0Jg|^i9UM2`sj>dhG0+(H2WO>Lhf3Fm z*?uT6k5D@d+g<4{Fo+Hbt)q@((rRQ{BT&*6RLNg`KmHu+^=NX)YOjtVOPSlV9;5!N ziujlq79ocBeQk({}R$PYCR@~Gnue2Wt536YwJw* zC)TmG-_S$4w-KiAofl8hI-4;LUl=rI_yP$yVZJ4 zyuZ;tclE<6_#1OXY=0?V)8iZ5PMs2?w4b8#25y6kUEYZJuf-%17`>bqR$ShN#>p@f zd7J(5X};&A24-$8OD~Ox&Nni|WrYTQDsBEG@z)ZJ_vDNlOIVk)CXe+e=+ZMxN{`vf zz7moB_HtbK$n>`DLr+8b4J-bEP{ab!P36;hf{oI#&x*V>8E=1?O>^+QC}TaZ_8*U0 ziu@dvonYM%T4;Ip(SBCzcR;LW%A||~tk~K!an(F=&W)JWbtjXc>b)^jf>;PWQ~YOz z>hWR5V;Ai;vr0aP`%nC5?E7kddQW!_neQ1;zW$4D-_;x`JB=2kU;kgOi%ZNW&Hys~ z&;lN1UL8eEN*>F1)TivUjIt4-O@H4k3J~X1Epck~<>ilg|A-|#g#U$5OLa%CK(>xg|$ zwx>xbwyxu{?_> z2PVlGw8NL#PxKRG*(0{IBL39%v%Sz`v`JS|5L|Y_Yu7nCf5X+b@ja_c$`|{&%^MRu zF9zwH-&IkU(ij|Ks+iqX0;PTq2F11~I`oz#`x?vlsk^3nvFj3f4WBo>NQ_)g`~zD- zIYZrD3rGyC7_3)p%gB24@r%s;|JvED-Rs$zYF#siwV&xkaqcI&G-OBSYvc^~Yz7^n zCCp{oJx4rEA=`hx9Ev(WlkE4X>OdEMvn{gmoNOatDwk8MfY&*eE3f7?w~U`k^cty&1yB zYDgH#r}3Gis3^HDeUk4@Q=;XsdimP3iq4KodZxPvUs)^iW8gZM4lY|50f6Ai0n>ieO#7_J8So!dOWgez>&XQ9YpRrl`lIij3QWAG3=e}?j&|r0sGc~ zuNR?jna}o`d9?qxZq{m<>+gi361S&SS)OGr+jC)@qN=NAtLW?(^u*<|5g1ge(@rPG zdt)qJKHObdj{+X`o5;U=_f2#?gg(l32 zO^)6fPYSFU4zn7lm*-Zzm{LEOJbgaQli;=!(^{U#nQq7Vy1^j<-5Ad5RT>%g7j`s5 zaW1-UT0`LZVw9GFVvGcRLpjzeDKiKogZIV4rpiK^v@WeB>0I{LZ(NQf9UtOg_mqsZ z)q?BhKeekp6fd?SKkNOJ5l66#mO0U5{g8u$zSlp`MXX0HU%#X}daYi_m)wDoG1WQ^ zKi=Z}!!;k#tR+E7AQ?+}vNetA-(&4-W7=&-6Na*(Ap@#$cJ$GH4swP&tMqBAm${S)grI=sixU=gVldubV19}S(n7dcNq4i;A((W+Yi7Zzl1FA))F z@VPw?b7uIZ(rV42VfWKAKDC*^Z{`ofh8hSmh6Ou*lzXhs+I?9Hk=C2Nx(W$2fUS(3 zKT_#%4*dMa?E|@Y_^p0)sR7ehd1DeZ%RDQOOtCM#J}v%twbr7ED1y~TVsc@1bK~@x z?lDGllR+Puh9^k|7pPsSsHrCnXc{}66VeMcrw7_v<>`tm8T1~Q1WS}#$eNd8SkoqP ztcH;3Xnka^boe$WJ!w>HlWt>yA%&r4}<#(AH2OFTx=aSM{+|+#7&3wTfa2YC8>-*dscqNTH5W2m;X`5KE`& znL9SBL;J*S+C((fR!76YBGc@Jl;O`-_p^ApwR-Z}Pz~DdXO~P&PG?52oyNA2?e4O} zLG%`zC=!gf9D-S@vg>cz+pn0l zT(8mB$*(et&DxD9q>ADZ4a;-2ORx;Rdsdp``8we=Q%Urd{urg-pw^m~-ZRz0ImOm45t&++vR!HzH+Rx?tK;KvoA-xU=Z&@P2A8DlPvmX~mMHB`2Qz-jbPU8= zRh7TXV!gZEQuB!ANt*s+iXl<#yeN47{+U_i(nqW1Hbuf8zm4)rmgQlh@5Re6y~Pb4 zdb~sQh{n@ASJ!kbnog9H)ClBx))ac5?-2X<AXBp z%glya+gF-!*d124#?Z5RMiYwtl_yV^Oi~ z^6%(by{oM(eT%-@+QiG8q&0(P^e&9u_<8y^k@t)(waEnDJ{LD$e{sDG27NE=O*{uS zt8cGgx6-HljmA4D)+$g8V}FimKPoKqGHHK({ujKm(#QV8rR(|D2=o2F*v5L;I0ifH ztcUn0C{{u!DF63YSmZ;(-v}`ocvFNRF095#cYQFY(DLGAy-jER#G;>J{nzDUnacP~ zhk_K2hdRT}ZDX)*6ddDnoPt8^lKd>e3GbSFMD8LeSTT7aZY#G_Rv3E*J0)44HkPeO z#)DzR-Z9HVC+y!8*Lz*)#zTz$R<+K&!>bH$xAr|=y5>GvDt~kOQP%iQ(YQ>0Wq5JoOX29_fz^C*onxD;VHTZ< zQk^H1CqsABb)90mdRr^QVk*NXKHU+_qBGW>eShP+_2YLoBED6FqEcVC0{%>VCF_tm zk$523`GfYy2lmqMRpO%D4G9W0Hyrq236r>Yg4x0;`&(JYFptWvJ%^p;n1vO_ea?Oe z^ZI;?_|yJOxm$IWG7cqdbTrl3S%sT5E6ji$p~p4(jos_V)&siK*5Yf2gT*b{)L*NEq5ff>iXRxycU=-S2c^8Y!_};@l@D>|2qWY4yjtDXAi2C2Jgvn zjm039b%3HdQ-j=tQ-^*kz4kvU!EY8FwcJyLI4uY192@zSpp*tvbINy~A+n zNg~4moHq1)*QTv=WMvrjdB#v#7Ux5@z3}O`rB9Sv{nAr??jcG=Xd1sM3M-PLsJ4+D`(QXT6n^q)KaT zdDU97&xbnRrfQn!9b`%H-<-J!UM*hlo>*~Ge@MWWSIpSIT^Moe$Y3vnl}El0=?*!*NHzK5hb+v&b-Us5b)qX!Pon1N6Fr!_3%b9uTacmg^YcR!nf8x+~S+h^#Y`|(r>QI zt_dCdCeu^YuCbnIPCFB>-1fdV`dSm)qp24XU4)5$b=~KQxi*mr$7YCKPiutr%iarc z!i~}oi}z!wGyKT$n*2P(sPRKl`3`9#r9t%_H+LuVNGAULExadn+KXKWO=O-87GoCf z@eS)6M;3HR)E*QgZ;M@SUpLCNJeAJ=^`b%I>Yg?0epb^(zt&aU)baHB^5u^M>CU$m zk6zr*7jGUsnrz~{(nA@JBo-~JgEgq+y|{lk-bRA;HJ)}YnAPSPib{)}E_YNr;m~#z zbK|Rp>44$LfhI#EtE%)d;|*6b=Z6l&*4u;~*!2D85T&HC6ZW1g;MFvgl$jUvvbW0vF&wZ-6o#oLgKNnM4kdv_|EB#cST`29z$&I zdDmvG*(~qV-&z$(KC;5%2-JirTBXf;>fuvz4EtqZ`Q`I4e`8B+*l^ISO!}m_YgWP& zPb6PB%KhhOcwX`S2xh^ZESDb!1daE2x?LRmN?nIb`K3&{Roy2!g)+N1It#r;5G1y^ z+uL`C(WEAxXB=`VPjc)CcHW=+qJHm9BV$9>`LiNFurl>R@M?8vuWov zS`|Csl%A@5=`?P-rH=Zui(?BJ8^zA#ht@}S`>oo^XZe+fpR5AdU<4_Ycy5zJ$`*^2 z1-`>pmJ1&URXM0i)4eLFGuoR+XH01?Fv=4{P+5nj?Si*Sts8zDxP3i^T{1EYn|`p@ zeORQZ%5W)hhk5CVrYNxz8d^MBN3O?No!!hnEkn~;J$q6GO*}b3KQxR>-`r~?xdi3YJV`RewyloIkxGUuotn1dpmnt zEXeuC68BaT_tsn~oGZ-i+uwf9KkmPO@atd9qyJ{hylGs2@azX3JOFkpc_V>V-O2r8 z=#_K~{k_4glzP07tPFILi#^>I0fCl&^F~62UKFXAoG*rpcoYtLC@8^&=$ThOyTgLb zm?S;<4s=sPtn<=oJ$S2P*eLwF*PQZ>EsVz`b*kgX zmb*vd7xsj4P(7Tck^Ki@{gV{CGZ8m;t>^b{(B*!M;F&2Iy)hb~z3bvQ8uomKZ1bvi zop|E=I)Vg0hqR3%d~S=v;XSne)MFnZ5a30J{0F0(dNjQU>1C-x?=k{UWJQB=+J6R zWn%|Uk>lUxaDPN^4trBEv*GmOzb&Tx_eAm~f28bk{+$g)Qa)qoHEJ{nDyCPej109UC+~vhQ(q`6NoKMdF-admU9ihr(iMT6#bEz;fD9JOGLSL zumzrkxZ2j0M%$Wc!kkVfM7l^@@-UCJq!PBn1zFC@Snl3={R>BS??p15`l#()rGf@> zQCd2;N`qwb&!#vxfbvR^ai zUwsHgv+KDTjhmg(MU&IA&_`Fp4Yv`!5@v($ad@%kGz?LgB;+vTKW}=U+K>N`m-~H1 z)vL2mjC^35x(Mh#Y_InFYT|0zZEA|);~A=4I_8xUQxfjuDex54+q0>qd~q%^{g^D% zZ4Hy0(~gk(D;61EmVls{!|nrT>vbbkif0%352@(vJ!^iDv#|t9&IWL1-DZ+J*TT`H zIWrumR}*GXWB>6PCYAUxKgn-MWAgXiKX+}u50e@@a{jTXGncc=)cgP!5^;E`!#9h_ z`mbRkKl;rP_RX0Drb%*2USHtpDvjV`Gvyz3DuS8z;aXoNeFL$9w4F+=f$l%&=f0P% zqK}2;yX-YF+a%##eyjfxE0!3El4&kRK>=U#M>APJY)sfvGMy2NC*bq$}PS( z)MI$Hk(c-p&a_3{9FgV@iGOcVg`F*-;V~;C+$S>I?#+Yp7xr$pGsm08g_fIhNZ^B0@uq22pRHS*^3ou$ts)Uwvyl8py<^5a zF@|EP36XsD69VH~!MQyu*rB%ow!?)JYyLVr`qKBVmhp9~_&0m{y`k-w4_?(j7A85C z*?{dm&@Z7|`D`k+`Dtxowndp^wOns&rmDRvt|{xoe+B0_urF^;6GID(o}L&6V0RDi z*(|)>in(`DwCITL(o$&lBmY;S&xn;N9a(^aGv+nZ>dEgHDng5S2QZdz4tukIeum*C z@Q2A$ehxKN>NfQ0;LCa)^tm>Cx(0O`J#su>#%Ed3%=quSds|Zy9d8BRF^&+Rcdl!6 zW|UHoUw6c@pT@yj7jujp#|u-Zs0}-8l}?>c<65Z@Ol6u(&nXJuia*KzaO8N)#ICi6 z?=G3o{Mt5Wj-{{+i#WBYT)60mQ-mgOo8Z81sLUko^|bqMo00EDKUUU{h)qYT`oCDp z(T?2DNY%i<9hZCe{wL80ztOG0eZPuql=iuBH)1RM!@BS!*kj&hD|#p2d;P@%Ka#T? zU0ezL=H7EuKfL~4BvP5D!ba$-F6Z&334^#1+2DVwGsds$Dz_ZJQfT=TFX%;i_*_yBouAYT z%Fiof&Pu5bJ8Ll56Swb80dH43KBfGT7n5X4UcYCl!OtpVKS$bz-u5O{ z;~=O+J1&co@R86xOY}EQpTf~Gc}H<91P&$ZwCedU*CeC<8*KfLFzQTjLWXi+@^V9j z=yQ4pjIi4NdicqYuCUi}nw>$rp5Ep4thf zX!ZvJ_+O?+uN7eq?{LiX=!LGek6hbMFWO>z4`%dUvZ{x7uzMYHdrA)m?W*;UJvII^ zgZYa!*B#D){vtyt?etk=uKw2ZX@NCz2XA?eN#FF;7GbH!Lm6Zb90(<4qDMa@Ig6U(r^I||(0iBX=T{Gk`1hYEVI{SZhJx)M&`M;9^|fSK zsq#or>K{+U^4N5KA`ziRX&7)6>cP`oX!dqSX&j6+jpJl@2orwU1Y*6OSdgQGl$trl&@V( z?)&=;b(iG1u)>00t^|I3om9>{N6RIak2@K(%W8F(ZA(Zyggs&G{&x*apIPh>d!wL< zAj|cPJjyR^KN!2O_D(lTnKTc}o(0TI5#*<6rf%+inMrs#g@SnFR`$h5M%szz?>1Id z*W@FK3A)s0MMXuTu#MxqJ5C`HonzUHRlN=#=DTHBF=jikfMM;~M{<+{cmx5_f@b%d zj8$rdt1<)QT7AP(B!5L}iarjg?UHOImpQEcQf~Mr?l0Bin~?fuhmac!34AlBHGL{O z^Q3YsL09}QR1f*@Rmsd++^cLu?IfiK#qBWsc8I+LHO&2CjV`c0EtRUQ6cZpC0RpB=;`xJ;>9y3sN(n5tSP zkMpXxZxr1&>wQedeo6J9Ra!7Ff% zTgF;nlz;;_Y&K6osb~3nj5)Q7{h`_Hwfa-Bzb#V_2iALjp5b|t){voa(pSf>)yylp zYcSBIKI*;Fy!Z4S{X*E|V7C;{4*y|)Q5I!AnM0n5Za@8+K=i1?pDnL)2}7jDuIy@D zRou}GIV;`YPev{f1+b_Y;GAwIj=hemSaNk|Gg#0!ynqqeXy_gL^($dM#&mo~8q|}` zKVnGfSMm#2?)~G~RYh*CiHRH5_XxU7 zpy~ZCiYeIf!YMuuA&l_-%X0L+M(%1wo{Q%dM=hJ|=ET_(aB(@={1r3?GYOIwhEJi| zJ*n)qIcrx_S42fbR`m>w%uGea?`11yO4U-*ZVxZVNLbV@Q0_3l{D8TeUjMpmV`gJb zl<}|5G#23-gPAv9=YJEn_)|VSv}@ z@%lgb<>ZLgkGC#{dop-W3z7b1=@ zX2XC^TG*`VE2}%0^A?Wz5=D4qGQ68s+ZzmiU$mo*b~Q0cSgSi9->aHbL&UwIo)OQ@ zj`VOuGf}u&c5j_fn_`@-Dt{4I79_||5T$)+y;}P+w`Pv75f&IY8h%EUm1b)@#bJU^ zP^3u{w_J6v&{MiO^T}8}HHj$07ZSE{J=YjEtZA6jvN{3BCpyyF5hc41r<)7W;pSax z_u736(I|z=bF+P4$DpSR+HU*Oo@W;9&P;@NDAyT;PS@2wV6`hZk2&2#>5CgtaxfR( zm3`B%wc@B20+ZaiOt>8LWO9EsLEe>wcUE*?VLySm^(VXeB<*hFPl{JXN4yidnE{mZ zJ#?R7HZfaM3kT*_@4q$+MLXXYvGIr<88M5q7Lw=wwdBAj@Y(kRNq6sx;XB)fb#nzb z)R7M}f(x+%VaB9J?>%U4sN#ds(Py#e_G%rktng*;Db5MRCh??N%C9dn@emKMx|TY< zMWxqj%^MY!-)(VzE6~#D6Z>>RshT3gnEmV%AIzx7JldSHY$htZQD!##Kf{k)FG>Z? zhWK)o#H@8ikw0tIKYt<;8SA*wI|(P_7RH)P!#{FDiD**@6OBA|>`78F!dW?W%1x>$ z)hKE>PEod@weC7wtD}@buQG=U%{rlR>;f&Ut9S6!N6cc zqAsj_5;gAa!1d^*MD+xEQ+mwUhxiU{i*0gJj7Jk|U3h}F>47{&7~!}LR`u~F?zLwR z`2KVn;XR_+uhO5e;HO)4)^lS}ETAo!@}|fxPWX!A>BJfnDVVL{N_Qe_Wv1*TDyEI& zxi(XZc9MXalvr%=-tq3%Q&+7dJZ0Snu=xZYL)h)M2fJkvsONZfXskFZI3O9=J&JbGj0gj zVh-MmuP?GHU^PxmBTH5y*2e` zt+u6kn;N>#FSbbjV8Atu!$uCR<3Gx>mS{X|S|2L-ob_^Ame~VSuCUl#;gmkc$6vk+ z+?MtxA_z&9(9$ge9copdyneeyf7Cf_3!A-wcl9+@IB5^m3AWQbSL}(r@EI7247dm# zO*Ip1)U2$gjNO<)c}^%{h?#NM&dBMX{ofB{ zUvhlcck^qU9_7;C6&U)VeS_D-ipC(pu=uNvGT7wqGp?k-;=5(y*sFwlN(D-c^`@|Z z#cY$6z!s%|vVIW-2Yy3_52lYTJ|uiH+-uGfU9O=fkMpn zTPjwrHQ33b=}COT0%J>%^{835y>U70zIKB-^GBh2o1m52m1eABnTDbAc~9}+2fA(! zCcPbA2$bc$4P&lGvR)K}$Y$LEK34Tb%&3b!8n!Ak^#5d5sm-k>vOUwca&`kq(J5Kb zX^WLMydqHcTZMWa=~AM&Ae_ag<#8wycdI%G`lAU_k3T3eGIB6uiWuLO-Xqh7{iUst zUVjAtGP&;Z`7*M8I3?t8r~@yu0h2^sAXxUxmZOQPLtYQpYK6XjA3Ym&o!z;b|J??z zdpu2~2wn>F4=5SWlOBt~ac(cfa=BFL@G=tc(A&OB#j%bMvb3OhwT<58AL0Cl2;7{# zm-zY_x84^)hB~ulsTN}t7Alg*7%-B>XKR}1M5u>a1kyckqC)8hb3Ach@06s7ICT`& z(c5Cq++*P6*NBL({;kpXgh5NR;FyC{+BA~;(>VW8cHqmUyY-7?*i$TR#g5Ko$D?-# z4?o3yEpSP|Z@<&A z@T8*ByTP}K5p5f9Aky&UuEm6+_eQZtay)Ji@3*SY?!P_XWXEYx@m0M&A1OfJrymtg z`Uv0LuwE}qE6YBLMJJHS7M}lYG2Zc5ge_hQpX!D}gZw;9LTp4!R?xe}DQmT*_m$?! z@xgRuSyEz}eUDD!)H5}S9#@nY81Y-G&K^;9d&M)F_No^Pm_#%ud>LMAao0;I1ZOsy z1ZM~g+I_X$S0|M1cbEL=JvPt1-eD9ZRlW?P#1NL_y(kv4jdomX|N4399o7u0j!iq( z%(2d(E=2ZAAXw0|zv~0DGj$;<5o5G) z1-kU}$rx(Wt}0TUH;HW5#kJ4cqiw1yKW1~@mB6k%(Cfn_Y{HV*_Up(Z@_nBkZW|$o z&LF4W%|IY>YGh-%j+*-4aR@4mp@fF%7I{Ty-)Pyj#Z4x z{5mS5K6~99;!6saW*Y&?144(?X;cY~$8UTIl zh5kx=&^ZGcp7GkoRQND3a=%!A8R@` zZ@;Emr6zt$Xymf;aVxP4hv9o^)TW1WRI!|E&yi^|*q$6^#&D8*zpAWyJs|h9OxSFS zBMUS9?%UcKivv`Rgeq^;+0e$b3eCU_C!%tfcdLHQ#vVU(oL}in(eIC=;uE&G9{um1 z!KmLgPoiBnY4I|TNboDdHU1<1kDOkNHbD1}tNW8Ls1;M4T@J5cDkf6U-wOyn=cwqudmR1U&T&m~yb}6jJv!{$_Iy2C zXC+LPVP>UYCU+vlR;$hW@hJCx`E^j{iEtk5uy1kMoD+NZ_Q>M>3r>%8ylKldh1~oI zp;zIbi~PP^jjdH%!uHK)VpkaSi8UHAa!UB41M<_qrBba%P)kiB%>C0Z3}n^c{7Ky6 zd;6esv6Fmm$u@@$c3Op6^lTzBYU|AF6TX0pZ6Bs|q1}MONThcTwyR@F++Y;)++9@; z%KEEAOtHw4+pFvAYo)E~7rh;pNVG4;{W#(D()p2s0!i^(4R>w@gWv#3Jy5sJM5%ouVI{HeFA2j>w zT4?rEc+7uzH9*~L5OcZplxRDP*T}_uT4v39s0u&4a{hhgtaRY^G99i+LPk5O!KvQ(wCYqT~K{lF5~*olVKdK6Jd{^V!vEE z&1JU3oI(pfooDBJZiqRhd`F+%j?`*`a=C0$)uBfflaQbaJxoB$Lnvu*yxcMo`ABL1 zH&LPG+~e&=(_5ojW-a93)L<;0%r#_|B34_SyXrQ(=`OHW>;JJ<`?{*;C~np_GiXl- zVpC{UQm2$P!mN2^uD_FhBPdFY@zmTp(y$b0C+zbO$@j;#c!_x?!-G$6<2O0!+3ID# zB8I?RpLkX%{x%_IMuYwPXrEE%Gkl8&f`{)Y_X`t6@^=IgD0v@o3*bd%SxJb>`0f_u z@4#zO)_ZVRw9*Uo_iq+mcaC(3?p7s384p8D3ohiF2d-#(UGMp}GhPkUZd z!GXR$M*0c=IkD2BqWsd0xdPFnk5+}WOEsa6@4U3))>IEu4RY|iy;VIloF`joXdKFn*M}N8ydxFIf|IX!9$?*5pTr&a2DwA@WUQ zOuh+8*?XO@F3WDKa>wm9uOlu|WqhNe0|=UR_bB&J=#*;1?%99S^drWnEpLnWFn%%H zYHW4;peGt;e@oaLvWL0Chv?zUC0?k#_XB~Id&1~POl)$_tL-ll(!-Y(a6~1RwKuyK zxvW0z#PsXp{)d&(7Tu6cs+Kx^t@Brx$JALq=41bzR;SeXaPzVkjZyZ`cYTBZGS>Eb zhhxfg5v{S1uH_4b(YTG^rUWQ5GZ>4OlT%5S_L-+I9wf0Viqu}6D+jp*+(Pg*)S@v>U7 zk!myW3bZ?TF-f}ZL*6;}NvhBM{4FoVCE~>mrOg*U9D(kApWecpM}IK60#{NU8v|`< z>0Tvu38ZZ%zAd!$yjfCx+M_CU))zDuZyyTJ8CyTVW~y6fKdu^;`Nz;A`e|+>zP%Dbt}ueZausc@^6`}gZoSliYXi?3Q|kd0xj&k< z*j}s2%BE+>*S~g%Z-3oF|4Ss{e%`jrj)KyjiTeNkmk6<4E{4R|Bhd>O4Pw*)!^F5E zwhmAbNN6xBKu}@ui0?uG6o4s3lNL_^;DwYY;+_D6avdv9pa+2$0BW9oQoItN96l|G zYXSHfA-=>vv}y{GgeQQ5T(e4K0o61ii5P(Hpzx8<21p3|APE709Z7DKKmxXrfg!PY zA&^5j5_d>}SiO|c1z0748wo{#8uBETyaIx5)RJ17kVd1Oq#nR-{c)Gv0mzW8Jjrzc z;2A2CWFdu&AzxiUfw*muoCECn7RdyF0CXCaGy_9!0$`yzSLst$BpWdrFYO5I2`5X}1E9-FiS#y*`CK85 z#JMA7Hio6OK`4S#(!CEM&XK&#Q&1mYHJN%oh{NnHa~Ej&KbBEpgg9^0W&YI=2>=%d zFr=+f8BL%i_@B%o1WiHUqRE;8&V5|jM_dqROj!0Vew8c_Xh=ef>@}!i+)r6tFeT~dvUdU0WjilZ2uAl07b|`tPX+|F{>uNu&CcN|(1K-h zOsg=b4p|?vSNIELhTIemSRhqoyD5=fQ}~CRlTA@zg`6U6D;54hyp)<05&?K`_@}}@ zEL_Ejf)3~`61g-B$}vc+IQtJwrK9)?tW;G~MHpB#AF~ugK_BnrDGr0F#jjGN2Qoa( ziaTKKB2o9jp!A97ioKjrP~bHqjtolYAXY05C2fFKD>GGU1Z%;}QmGeOA_!^^r9x2u zw*g8+z*uCX(hcCiI+czLAQ>do$p$zaC%bbWm~tL{zXQ;%CzvY#(C{f#Dv`X97O}EQ8VIUH zQ^l7W;*i;^_yS+Ct}3qpmd9~Dh?DB1ec^lM3|_41jbZtR9^!4;zqve0f-Fw zaseFxcVie=^#iEHv`JMf(CqycRa_|6f6EVNTa`;4Nh>TzrXh7a;F)h)y$sZ3Vp07C=(-!0#tbN)JidlAn3WPHjU?blkY7U#OsJ!) zhAmL<_SP^3S`_&jt-#JusYWd~6lTz{1|?J=M9REI7C`2)(P`cVVFt2l!oW^(uBJ%~ zd?8`}TVR=AT586F5sC8Abkc{^w>mX*fiGCUrdJTe`6;iZ1_~g4N6Qebp%`N=9gyz0 zxt2S01R$gXwakE4%2O?Uu=tnWYq^1nstsysi-N$evM5|>GVa6#9}2KBhc(t_(1bM2pUY1GK{e`R*df z291qw3fLnn19d&2$o_4=+~K-MU`f&D=ptXLgJc8r@q;|wG%(c2#ZG}BtkV4ml9_JM zZQ_8e#m?v=-_!I@njAhuWlsjbuZ?^s%VY-*KH_Fcml15E3=DezK--OMdd6T#QEm0C zLB;Ld^wL4dhh=)}p!73!dJSN%Vixp-L0WIt^h|^xCjgyIPom!g3JuWN#}xVioQ%j~ z)&KVfjYV$#b10L4N7$B%{#&RL(92OM;X5k&WN=2h{~_zS1F`(Re~s)-cH%=ul#!Xe zGP3u2tq^5XQFtSx?5w9E5|xszG-PHap=glZ(BxG@$nQSS^-cWz^El_8byvkw(PcptLz!pv8H<)5H;iJjK@4v&>cwab+l8iSPV*SYqL~Ow4#*^*Gk;y7l5q=`PdxRF%h0N%jxFCf4-4Ar zB4aNs+i~AB?q@=qzI7UBqAIZ0yzgY2jFF(&$buJv)T{`m&rVso=qjIhYwOh6lDZO=0s#=1~+#cUDt!sRNncx()IJu(x; z^0n!TSt;hk6&iCceUyvC(!2|!nRGV)j>XXPJaczA^dtIgb%uA%@kdd@n*tVRP{$zX z%gBh9xHB7)udT>b=ef^91S_;tLoI$|xiRsCMJSs0?j~9EU?%ovSde3m8GK?jHb?7N!>uH-QeUUkDg)E;y2`2_(^~q`Y7rau zYfDxcW~g{2Lu+X)aroL;U-m~av~AX%*!T_hTB~D{*_my|QR@+qmssm)xok*;Q9=fF zn@?D$mJZl>V)@=R+C~u@=u3$8ojhtAd{_R3jomiP zQA0^~otVkR8Fu|xDnHR=2fw0mtjBI2)`?s6_AfD-7&d!njAl~Pz8~xVorCsd;;7aK z$L%SwNNkCuYtPMza_#(SuZGESS+zfbt%*LZ@k+6S-3r8vO|P=pI|0 zAf;0{Haht%P9Ly5ixvMDIhYEBlIbJIec_FysBKyZ5Ogc4$( z5JKKM9mjGG6vS8eW+vX}U9_A%fWW zL!|e^k3(JyxpMQ(pI#7F=6-6n*&3FwJ^Wq35Pm~w&2MD&tJh%l-Seb+ zk5_44mma}=E$zF=Z;nTYTNBupzmHj8lotE`w1TKO!uaY)N9@2XQ9*rW`D23ZuFTT< zWm9FF!TPV!SBE%m4|bX@x(I$=J6UyoRAIj2mfepzwO^7|YX{fb8wn=Tmu_lbuGx`U zv-IE4P16=f)r|aKpU?DrxxBkpGFsBs{+i`SNW$0GXcnU@J3;7*ve!;B= z8(1YIzkk1qKgnC)V-_}aBcYAQ+DYEJzJtW1^6)#{VKO?u&o=sdk+tOG*N9<`CV@jp zdtu5qJ3QgzO6B`tqU_LRU?ouU>l0AYC_nZX|7bloQd6J=SA z+WT7Xj3NVAUh?Hc*L_SfS+3Dvxm9Ey-qB0QS2^brVn^fFHqlM`g`QS7S7PbpH5zN@ zbJh=cht<9ic9#@xJ!GgMaq8=q__lggM&y4-HZkkq_%$pIdz2AdpV#FGwB#mW;{Ie{frbZO`7J zTtfR)nNqXQVeSN%k)+GFe%y7p-h2GNsK}jtRN^a#!d+8#HuYbxP;4x>v#d()=-sYH z9k8f>a;TiKogm3IR(W@4;#A|s9IZwF-_=cZFSPoF$37T#B^}6bzcInPEkGvyvizqj z-kFjQeGTXM1_s8y~oOo-&geu3o$kurE2Hr7D{O?P~k)I!NU7vs22B<}v5qmAf+g zqNUtDcu&~%NiyFw?F*cwZmwQ|b}Iu{=3b4=&GDp}x+>DR9hvovzS*orRN{6%I~;YQ z+K({xLN-;qbAY@>qq^Nq?4kKsobSVckSESr*O?}*T-e_xJU6TDQb=fZ3uo~QjGgMS zzwdKM5JXdI_g9m5#w$8*TwzBWrfZdxba+E1Q$$Vsm=|J)Z@GaO6a*irZ{Ai_;F;ZT)#5r>kbt~IfHtWk$&UNNkwaJJT* zF-d;6gP6ZAv!BHjk>c`rtx}3MkMg^#AF{0yhP?w)W9m3MO_W2;Rt(o>A5IblK2wR@ zCd{YsR=(cpx;P?IHRNx-GN&~~yqm{g*)2OcTO`7ItpCa0t0`%BRTAbYA-f-upvx24;pL)xu`))6yk6Hdc&LCtGAZ)w!L9E2hlH%W?Z0;tYgQji3dG`G z?4&ef=RHwd0#;*r{jZr9+Il2nn_0eaOynPk_;jw zq(Rh5ru=-Y(PdHls>$lTQ?%9*EW2zu^tB0H`zhOVt;O4fj(%PwQ%u#8`rJ(_zXv3> zUgc*66)p!HWy$L`fv56GEK(H*Mq>6JRDAMDG*)pC*~YlvTl5dL|ApHjyN2JZG#_sI zPo-NhXgvD2_lk*atF01Za9ovP)K`?wH$+Jy>fz~czwlp|vnBI|pXQLz2K=()eJwjn z==W}o5M;f3nnHH;3UjW!{FPbDPTzgvlOfLp^Q4Y(D!C4Ey2jR|7-gqi*j0QF%;~-9 zaSTe_qC@Xa2vk_Lbe9mrPJwiq+ispbB7f{sO|(X}myl)v8I!vEvu8TlW0ln@y@$hi zTfDib$PQg=owVdu8j}%Vc@ioco!%LkLC|2(CZqnM{fyD@NtOx4B~5$5{pQ};CFi}* zEL}hUM)PJYuHAf=o$QTI8bhM|Qt9sAdl^KLWqOi;zRbM4hfinGh2@mCCS|QGXz<_O zohNi*neViBNX3W7JQX#Al0*gadL`hzJd(+@`8zeYa@{}Npzd)6lgnL{E^jWxu9na* z_wd1R$VIt+`8{L-&pF~Q$@vHsUY+t6e_3C``fIPmwgBn$I74MRHkUx5M1TA-rZ3<- zW35e&KXs#z2%ae}X0va%JYp*wonMckE;4VbJy&>+QiX-&3sn|XM2CflH+<`@Y|ni`9-|~eec^@1 z6DPY8ZIS#+|2f6tr9M`Q!#Zbn_ z@ddTy+J)KN2-LUriQA6iY^%V8{u3WKidRez!S3mPOAR^JQ zWburMAa6j=6B6aiWZ;V|xJJ+SyFU_ZVv5FlwpF{%Ka6L2CeChHEgbbzmb~TZN1?*Z zL_x4(b$91Zcinm2XTmXywO6Yp*b9;--ml~xCj962{-bEDM6x7pv8x2z zScjL*5Bj7rv*%&;sv=ZB%ejIUGe=v;4xazD62US$d0sZ~^)Q*`EkezKJ7U)sQ?e7nD&tvxON>@VJ@cs}(h46GkhmCOUow0(`l|6CF`B4H`klpGq@!0vl>B;e#O>@_ z5vDgQILE^d*)Wt4$~axUEqgCImF9X|0=GPQVw}tEws>qT%4N2CIYPYc^WvR?-v4f| zr9O_9yOJgx+AcwJo|w`7JF!NhFndl_cyuvMjeJ1#$63v3$_8=WmCpSw)FH*^&kUVj zkcx2AYV+)xEV$M_<)@^1h12bEVTwWjwmM?N0madr?A+sWEd(m%ht?yJDVEhgQ?)LP zN7{Q6UTF|3gfdUu@4Ww%rCf$+5R2@~q8K$}Og5e1n0)Zv^pbFWDIaBk92*785<`+? z#`cE_Mh)A=zAb@ia{mGiUpH1^-@ij>Sc%J98$7j0EEaZg;t~3pd9&=gF z^3C&Pir;0*#+gl^V`)qfc(rRLO0!~b zG3k*t9`0Bb^V8r>NFSk&Eu7lNevlJyzaTQP+f4gP@@*RyZd*Nmze?thViToBOqAS$ zJkn3;%p$I*b{lrJP2HeY4&h5kuc3{Netfx=CAE|9o`eP8bx$T|8&kIZ;-%+fhdKOX zRg?_w89T625m@6hWB1}YqZen~T@;a@#-I{e=rbT4)1rT@@bFW?*p)*xR_r%^X&0beA;Qv?=9h=`;?;31Vq8*VE ze{GzeqS~z2jciwK`*)kHwuG##EH@?=i+s@mHb+6~X2SfjX4^aWCU%zZu41RAzO-y* zcyIMg8cEwo2V2C=*M&Y7?5*5sbzjJ%|EprwoA!5P^DDQZb_|Nw?0g+|)y%~)<#A&} z*(H1+yGye-Rjlox0jXpO#iVIS$T7tMUk;av!(3sf8bkxH4D%DEOVYU{D-55NPqmtL z2`(L78JURP)PuR18 z+efBoS78FridB|S^D3K*sVn`j;mVi{m3gTMO>7y(xiQse_Z>-`b6iMXoIm?e`r^y_&w&CLPUc!1 z{~9zatnGG1v!Zn}jk||oN93=`$r1Y%AHj}h9{RZGeR>Q@F6S$asvjlJl(|vGZa z=Wy;R& zNyoPH>bY+=dvbofSmf-HqSCx1LZjmYRuboXL$bj;8jr}3YpqNQMdJ>TiQ&zElM!Bj zxvT%Wbk2Z0vrzUmXIl*Q;ag80eC;jVb(>L@K_HMewvg3|J*mRrTa+G;%Y;G;@z-r$ zv)KJjvt44>JhrRrCI@O6KItTRQ$lh;%DUuohRneSpZ;?-mx!NCw`5FVe8nx?s34ZT znxjee5)7BkKK+(eGma5);vO{;xk>6Sf`~ZP2%X&ctig>2WV$0(wo!oTxv>dLr<@PJ z+Mln=zq?NIG%omY#flEFZX-26BlH#jRfq7=wd>9AL~!2Pp;JGyGlJY(TTp2HW9tE5 z@(TNwEN{+O`+nAK!UxXi@I?Ih{?6mLc}E=yC`D93DRP-)vX{M7{Eq*!N^{iCH3B&q zRtf};zt&?tXS!}(S z`{&(vN#adzZICjBqBAdYpH;8!E1*$v$$vW4yJtVms4G8ho^7R>)(+mxnHtFeme1n{ zNCgTfgbMfHW7eNmcKY@(?lnHbfRO0PM5<)U_F3)r`Nds>Cfik#Bw1gDwa7f7A*C&0 zPLLFSaP)YL3x~vnvrXC=1x^~WUAhcOJ2l^comySr+b6jJEi~@2zfS&hjN?}6J5W?{4e%A2M@!U=O5*#SGA#Rr+jbdRlxF+m)n#;)m6sN zbUsaS#h;CJTj^Y~+_7hq6G;&E5!&2l=#t-c(j6O`xViFgU$KvurrQOxGA7eAwy)~q4CpVVh825s^i$&Y@u~6ot=uUIGoS4y?*$W! z2kf$rnQ84h6tbs5giYpGV9V^GcUNTE`Qqh|4bOfr>$P~sr%W^I#INkvN6@7Hc$51+ zvr6GifhUs;S-xm!v7sP!LTPxo_xt6n*1=1fcIqdu_Dvi~(cw|~l3Tt*?dNjuTJnq) zSLN)1w6+^P6yCKHCvH2*4IVXrMLenx28oBp)N#HtR;1hGQP}>pnV3UdSt6fx3UAy5 zMKyl3)-1YGo7UBvOvQTS6C^AXeljTqCJwEn$=07!QSE{hg{CBmQWCS6$c4U}m*Gmy% zW>FDSaBzc!l~BNySgj@HKZ*k1u-ygIt+btiv6EpJZ+_YTF+jKFrAbput_phs&3jeZ z=D_Tv{Q?>L$P7I$o#S8Oy&l64%ncq^0Jid8=;j9@Y=g`2;Ro%(pHb>WhIBwH?jF zAdyF&w2KH8^yt#fes0%eP9>cxNgJ!go>*b;7c5{e_L&gNW3>l8DA|^13wC{T%jpRX z+a;nXyUk~X!KNpZ!SMCH&e*Vabw(hIh!N>Dw zgDE8H+X#n!9j~z8#4Q8yF1a7Noyu2R2m)!X-t)INniO| zp~vj+VJ1F*&huz?;K^2ziEld$v=?L)rJ{7cIoj@+tRVDC0jvG%?EpR=u}+jIB1zqm_5U{k|4XFv5C$q-K~5K>_f2x6up zdqbPhX3Dr*a`NLMiSY%tT285*KSk>cmG7EL4HQww*K)d+=oQjOddM|Svs?D(gBqbb zGw-<9Y4VU&^Di6(;R`&}Y#}x*G76;BJIvy{BR+I5dfBJOC~$UaeKV!YO1C@mrYrNs zqAHd46+&^=ZJ{hv?&#RPbk?hJNea|rRC>)kbRLDybQFefa*>*P_0yTv$`xW^nb8vW zv?~f1+rAch&ApRtaBgR!qID3Vmhh2d8vCGoY;5wj@tgTjw)$ob_UWJQ;7p>iYNRf& zTS3gx6Qsj^Y~XOwjfi-RNZnVtEb=p~hOXYgg}`=Cq??~OrfcIL%SN5RvggdK-%p+B ziXu&m^2~eY7IU!;-{Uo5V zNnX+lU7OO?dSt25n)^tEaX@WbV6D$+XYlsMmz)z}ncy(+Emdp9hrvXSvOH_*+ycIY z%1Z>s*yzFf)=5?qzlA&HNArW{TBev-OroXI1B2}>x;(}Go zm&TZ86Pxnk}C2*?Uh;VC^II?k-DqA+QCpim;zP{V;mc z^o49h?kvBa;%Htr8ACsvRP9Z&;iTOYUSi-7F*xQ$gDivJSJl$qOlN(t=lmgb;}I9X zn*Cc3C2^LMkGMz$?7s>{dsI=d2roO`rT)fFq3D_TD!A|KXzOg5hJC)mh-fZTDp)27 zPW-f?WOvM3GKZ^-%I2=0o1yv~B--1@5zklL#*)ZFE`HzWUcV9REW4^f36mT70CimQ&EiDNMxvsrZUFcm1c5yd}=056tRB z*T-wJaC@HH!@9fbT4YlTk19JM;gVOlx7OYpx#zRE_Xmz#f4dZARP1r=dnCE&9afgv z+%hfa>fgpI{>5Mma5AIGtCV6=!O^;HVX13UcEai*RxL)a+9b5qUGjc%Jw*D{DG!_Wk6}EHW4S80cg>fhd+`k6PLAfev^-HZ zejg!$k*X={UGGxoU-9oMR*B%=^({z<@tRtM;zag)U6*YSk|hI!*q$8y(xoL?9&PbU zoUyuhsZB&^2bR9-B;?q3(&Q-ATIhnx?%+u5O2au1JdZ*6jyszhx*m!cKa}Y2%2Trp725V*!@EHhG&QH5sGRB z#`m1ec=3mhDZu|_Vri^Ubvx^Ad(EadX9d|BkzHeV#D=-!H7|^+nwNaV3lg{6M26IB z6~F5OhDn3GdRu~xaKJ8mIBU-V?EJZ@f1Ei%{&;J#ZyohE0udb2e=smPwNFFK#l35I zDKqw$3U)}Z6?slBBXH#TpSx~z^4Dy0It1$TqoqRUGukE{f99y~$kep`Xf6QvbWj(lhRhx$p zexb{dS)&_A9zYm-)7xX*wgIUuF|zAsHf&y;u=I69O~-{w$cFFG+`a*@b!ZU1dn zldl9$no$pa+RFpdW)Xe-#aT6r@9wp;#*m9sky8q$_T}2u-gb}E57*m~Fq=WqVpiau zv@5HsGg7NNm)Yd($z)!ulIN|W+hTMVC?eeLBdErMW`Ak9Ra*495-V;#xnv=@*IAMgIbzx5*7(-uc_z@amwOx@rwa+jk%vmZeU+JrG6SVFNF!xj{B8qZE8;G8 zg`LRJdMiN;nRj={k*S*i)$QLr0OcA{<^Y^tzJ)ZceZ9O|&{Czw}^8&4^xvQ|OeuT>` z!71x2*kh`ubmWG_XjslNCybGL+m@D=F8*A@bqrSrYYY)i7aAL!C%P|nM_jZL=c}A$ z2W8)73U5RFaH=g2UxC(Lx|Ro{tlN@?4hW52N&iwW_9lLpZ^E)rOph6N;OA&!LYKo! zTU_}RkFf*A=yge&JfVI15dsC%r@lPqAk5JR*2{@gvdz&;tsHSDyvibWH#3{q8H1Bw zIq9ZZqWAS*?py`Z17TXSU}1L!3wzCBm%S!a54SUTYdtecBKcI!r>ppBPtBXMbWg)7 z1l+4r&WLA-QkH6{6FX)IboMmf8TaE%++C;cIc< zT`o^qZGM4yI-R679LIewK%?u+=TohQe2t$bMZ=P!CHhW3*P^z)bJn3#BF)swjzU0k z>YNtGU2mbGaUb(q>xjt{u~TK>UJk)UkZxx`mD0n`+^CZ~)|hvW@b05N|BO+MoN1nS zAJt%Tk3-jYQ!VKtFQ)5Erfj=C2lQ*3hd(sEmnbxE6d3;&p7G*49g|-s9Z*ea0;y&XIrxnssxW6F<9dOG+ngRY$)+crny@b#pnjJ?wGxypO!aGBl&<#S4uHoU>n>e^0<x5SI{-_Ui=y@5Nce8i;qDY;O$K`4R=}BtSXEday{*Nat zId6--F|Ijh>gr7@5IG?f{VtAT^4013p(Kf<3Pvy?X}}2=tp@#L7d3*&I|sbWxd%lD zczzm$W$Ha|N(trTRBxKqE_*i|n_8cv$?2+M?s{5UKjJ*8IHQvIZu3Ac!k%Dk@uW;- zi;#_CZ1nQnH7RHXrch{1)AiM}turf$a>z%QsnRo`H0;SF|3#2vTDx@D$baybYr^7x zu4&p~x@2zS+m6|-5UAxZ(%UNRs+~Q?R^Ow+uGruOb_-^4X2+VB)TgHWvAapp!sg&i zYUz%nafkY2l9W2H$Jg=nqP2xb+k>B-pkAnSq!_&blJv9xh_58x$^NL$FjTf7kW)G+uT=}j; z*8jnI`?g#{8$le@SQoOvE!39T``kg}*OGTy$mOTstcuaN>h*Y{i0kgrFk%X_`_F7N zIJDab4()mrC8GRZ*HT|BAu+aNJRvhqrX=;ta?j)D#BPtW;>@~-IQWRHm@P7>fr#;8%0qzIona3Q0vetV%q-CeiN$St)hvn)$*KmuW6t)t6 z)^P5RNqTIePEXVDPu)TqofIMY#wS*M>SN&i_}FxJduYSwLU5CFS51T7al@E_sd2yf zmZq1Pgx1Md@jNf{vlX<;k?!yadBI}lm*+a>nvO`Ho-$^1`FS!^aj5lUPgLC$C zWo!ti%;C8Qjv)qXFx{loJqblr^{-{~jg zI+4PcWSUFg7kk|BXv0H?vPl;QWB&ST6P6=4WJ#&%drKoays|SS3K`^FnS+(Vay=Zv zn9|5m#H3LF_B!u95X*xa?DzOvwTQ!{`0>t<#Nl9Yiu;i~I`TBL-lvQGGQy?T^~HYB z+7ZGs!Iw4H=n~o`Zz+6RkriO+3u}oPq9N`6#GGKds^Iv?X{24D2i&feGiA|VJ<9*5 zZ@9&1Zf*C}He zB7jrae!)*ZrD~jGvaw|ks_y$=c>96+)qyyIZ2iQkISrBXxYU_%FFR9QB`vC*z*dc? zlhk-rVnAVupsxPT^X3y;XZ46*6@=x2CCl!2Us(~o_rJ(ic2wMI$n+sZUJ_mWty#u* z`@#9s>eH`E8KZu3yj#6HF>_;Wd4AyYVEo9Ady8pj!yCWqIm}pz#XYUo%Kk=-d#B%a zs*y0K_kd6t)1B@5v7=5;K(}>lK~VRNRh+j&P$aJx|8^8^>(1+SmOtw3x3(`$W+k%7 zec`!{R{7#Vn}xtNhOgv4Nq-H-X!!^hst{?RL- z?_Qn0wB354=GL1TYx^Jb-4i^&?@NqUMXD3{>em97Ufr;jRI86#8?LjJTwa@7dGThM zBVhlC$+s7!X*>V?UinnNT-Q4zsYX~?oOt1x@Ox?EM@^Eg`bu-|*xtSB5x;-G>Zm!m zs_YyQw(z~~;EcM8y85YwCx1>Us7yzhtY|9;UG;ZesMqd!7-L>+I2UhCEI z=ADiuEPR4P@lgJ)Yq_nWzdE4-E{E=sGQrncq8=sTNm;h9Dwq24?zCu1CU=)59&Xs z2lbEWK|XPPh>uvm_UOZQ0Rt%C*8tKzFo5zX4WT?+LkJhI!#~$y&4aN0{6X0Nk%Q1K z2_tAX!3b}K+B;|j?G!P_TcU7;F>LQOhV8pdAYZ5nq-!^U@>onE-fjI_X$sp(&7fWj zGbrbp8MJS19j|2$>9WkBzE9?`UETun#aqCB4p=~c?6QRI!IrSSW&O%x1?78MLHZgi zNKbB!*GKzdVh#Cnt)aait)ad0Hn9D)4Q%gOzjE6``A2M_ynD7#9kw>kiXpl;@KSG)!h-c*Em8xGAGy{8z;&8AouIwy z_;o#a*gk}Z?c&a`UniZRU!OWdeH<>3&eH|TzvBYsQ@KLCjVt88;R@RqTw%MR8yuGc zH$3_qmdJt|)T`qT>9X7*-+Ol$pGt?Iyo5s#|9Tx3_JHsS59t3^4`?TgCzRvv3H9Ca zg#2V)klxA*(qHj{^fO+NUi~nn&o~V66Nh1c_jyD9Xm7~>+#9wF_`voM9|*Us!)!+& zz55YJUvmVnhxT*j2-K^86w)I{A^)fKtFkZjOS&(#XWSRsv(FF8iS>j2cya8)PE@m(oF|Jex+b|O$>(e zM}r~1cnIV_wSMgmf%fu+LVZ4=P)=Paj4zU7kk8~8>51#G=5YvT9fy3A$D!VR zCt!bLPCz>cPCz*VVNg!c`n5R>^0S3Qyhk{M>%t*D`ALYkTE7;b1nuDQ)`gQ`T)i3Iilyk8{fFSy=|1a^ZfMHJ+-jDmbc zQ4mjz0{sE)S_BBE6CgZ6fO7Vo2L1=_XHUcSm#1O7NHm0xMMJnf8rs1X1M(-J4~T*G z-j9KLDb7GT+cRLiKzr#K$iK9XH;je$UyOx%zpTUi;~<>8ejSa2_Uwy?a!<#@{`AE| z`2q=0{;>oo?{Na;XFm)5>3$aCtKc=~9Bj5Y2gMbfgW_h^uj+}gTN#OvZ6XoU?@NMk zOcI0#lAv1AWV|)nJwh_%d!7v4A({f!ho(Tj))d%%=2U35dn(jlkqY&%tzS*kpq#5| zkbX7|(rc!}YeqWM`yn05l{*jZNjMMXygCp0cW1!%@C?}Ay$*9{LfAJG>c5`}`KYrX zy4Vmh0s4zSE2kz8vzGtiwOoVeJa2|9l11KUo3CN1_ti5nc)PbyY(7yj2kPt%7i4738O{hWyUe z(680i&=1r#&>qJcXisGgq$8FX z=tc-XU5B}wAe~PWl=rX+>ZfXk`t6!w`;BJUzSIouFlvGM^=b>GpJ{>g>a7q?ZiVpM zR;YLPW9W}lkD+}XkD*-lHYmrp4R4FacUv3eXK9E0?(LAiydBc7u3wEhpgs8=u>Erf zY**@peCIl$oo_qW^>?l7?}Gm7?SlRieggS}pFsZRCy<}H8}fT}L%0^e3`{h7b{juJ zgRnluYYL#ae?KMxc9sA9U5k`K7^7r%A(c9K^nDwoh;EQ20AFB$u=46=7r=08jbioJkh ze}BfX?C9&A*n2>q0hVS}XdmvVn@_lp3?dyv&xx^M9nkln3O3Wk;e^XcaRUFCkHdZ3 zw+~s9-}fKZ0e;lR_qXWuchcc-ccpMR{!O&;#}MK(JUik{MNfyx#^?i82WcM};&9`~ z$#CF<8~^fV30wJ6;c)EyINX2#(BN<+J^K)@zI}q2L@HflUj=3~X-UOd2UaYZ~WN-Bv_Jv)`6s|}pc1%8TX^FaOJLr(YMWiYB_{dspO z4IIw!6)8?+liIW5C>1xd+6ae-x*yL=OYbX-^9wk9EZD~rAu+}aVUD>eH{3a@h{L&C zk#2E}ZHO!qa9mb!V`ySrvOU5makxxg9B$_(eQ~!D=I8kBh-%EgLsRK!mMIQ~eVmMJ zi)_PMlwJz!#kt^1fsEwfhbriCTL!Rg9&vk)m&T}yQi{gEFoQvP2Eu5Q?p?o8DlTNL zT8{DWJeYnCqSS*<4vAot6aE{!$}a%cg$=`UBPtruIp+bEw8R0ac!8J0d{T1mSnGKZ z0AJWial1F^n)i@Hn(%VG$g`X58_LuMfPm2)#AyJ(7o8%>DBN-hxix^7M&S_@epiYt z58$Oxc+Vh!`znxwgLw3HPvkTTJ9Z)YgLw3nLZlnO)K#zKa3_6yf_#vmi+B+f&Giyk zA15r2To#k(!}=tOhHHuCNzt$Sf$uU%w@jF4((<@q&*0GTa70=IFO2yyBTUjd5KM%V zU;sByMJhj}?qL5X4GDU+KBfnn zGGD}j35-|SI)x%`gLek;`!GMZndpfqgOL|y*lG*-<{{!cE)TQLZnT#Q)qWGN!Q4`I zC)qM1MknNPZhmh5C*6Gfk^WJvn>yBYLku^_+jR-o8HnqhnAR5UEoCrfQ9(_p^=?7R+(R0Ym5MCBDwCcvE)Ev}O zwylP~x~zcATv6DCDZ^;zrXzoMf`o`fk!(p0jYSwO7czVO9}}Jq0~6kMC?IP63Lvj% zKofZ00<7>e47;()_yH{GCq-o9EuIfqQ;dSwG9O(KpICk`y#`18>~>CxB4 z5#A9XmGh_~BIU2Rv9cURu}1?jEIV>#1bX}tiY-r3M4B%sZbx`6pk1`10DChV!wUVK z^-cgwI@*Pt9EB6{7D^@DuZXA(C~i8V}@CUG7hJCj&w_gjj2$=*@qnU!4@4!Qcw8q`QWYs3|=9ZZUEjr4pUkk7&Hx z50`utyNpsbAjdgTq#TxbR+VKuc);TGgKO*JqveV;y~CrgXCpHx z*R8`SydBxWWwSBE)Zc>^!9)cA9#STwa9%oc>pjfLZvjkp@0K#sSEkJWcgl)=0N4jr z7?$ntf)S2lYkQTEr_Yr)ruP#R`(qHpf;sFA!N%Jhpz;V*w3>y1A}*Uks)Uls0IrJx0ztY zTz(wx6rN;DDbsQY(0ZxBvBGF?T?u)z4R44ZP~w5QW3x7eG8M$M5@1x-H>a}U=g*%(N%Waa z6{q9v6YOSYg)m#-1+gmGOYU~_StT4!{oPj6n&~#k(G?Z*oAfj-l`S<6M+1`W=Hl8bZ`3-a@zYI=R=5GKgP>v#D{nAajnk_kecXNElc4*Rr*!p2r8%(1yl zGM@o0OkPO949w02C|n+d!t9%?w^`6a7Jgd|IbWf+F&R~70XFO&hGjznXQBQSfF(Ub zft1d|9PR?ny##q!ha*QYuU`6HB5e-FkI3CzguUZNdExm9!{buqlQD~~JjtloW z;Th~Nw^2OR-duXm28y2{Q2c<={^yT)4VfUWm#P`74i}>LfO6t7$(B;p<~B;jgD)djGz#o|@x?zy~v&^NpP%b#T-y50CruEPv_&LaYHPPf zlxhbOIKMuy^FZM5DGlV=R}FR~<%#3Q-5Fe(vGyeUP;gkhM4Oop`E{olEH6=^k`C$r4}{ zxQ`;S-GVs^XU`%5OY1J|a-CS=1j#pM1-He8HS;Ldj?L5V58x*gWYj{WIkkWvo1qrt z-vGo}_G@iNMv5WrHxz5DfMGWrskRL4ax+DomZ6=gD6DLU++K!7 z@B|9KMUb^+xZ>_z0q~Q26yE-~o{j=YvhCek$dx`VHpKZ9&Bh>iqfKXfu%?aR<5>mR zsbMW-c~om7HFyIo&G$(yT&QQjkz@Wykb@NO-)wddWf2q6Ml^S8|FZ&#xTq;mOMoMR zS0r2J{s&o%mUY9A*bq9n-!@zTn^c^_){_Y}Hzeo}47$QUpqFO?P?#N&YQXbgtk()} ztE`aXaMoa**qk`b3J|w7kP=Q`)rMWi=x4O=WF zoxdwU_E~@|q|`y~)9C!2AKAmsyrdN@*-OsY-dBvonU`*cO9vO??dInha>NtSw1wN( zlc0rm*+d6t?6$|=C-@kay|5i@y5=6ELa?^;#BZ%=0xbSVjxe7RghPrYF=off&`yxV z62Vc#<}(^s7ab(b9oUDSdZDxW2q`e|loxWA)EWI+4$_3e)dk2XsWVnH(vtz0cc zVNDw$d>LR#UC5A!qgV%bU8K)nmmOiEfEjr=1;E}rieWdVcm%+b(j&+v3fSGJDBMzje5P>54kLC_ z0yv-pQKfXoYWAZ5CW{}?Me<+iZmg#d0G5V_;{eVo#M3|64Iw(?g|M-FpPRo+2E=2l z^VV7A&$mGh4$ef-{f^E9hO}N#*{ zz>-P@BdN47=pLa|@u&2V{3yMR$e^bKR0H=B0=Ob65^xyZP^3y5ip0JIcMrg1@xK7; zk{--}*o-)zYV%wZ6n)*+TPIQWk{(jFvaSZBjo-^O$O{gE2EgpuTp$XQ>mzEE`v06G z$UeFJ2Au2SqE)vZGG@_Xv|Pv-J@m>7y)!Q*y@o#SNPs6oJVDNlh3zhMpv#;+SAT+J z+sLuCKxsSx>CKJtVwiCyJKDy-f|c?X2#C#DjU-eb;X0uY2M0TY4m(F0aSr3MAjjd7LB#R@Q^4VH4R!jsLvA5%Zo$58SZ>1T zqc2?DUC9n2w0mpjcCP=29zCPOGWVDAi5B#H%z=CBI`8rV(O`1kj*KR#{FCWTl!&)x zKnBx~A=z?9N;8Dg!!uHm=Ep<_;FDwjZ_j6dL(>08_3B)~nz<|v7s;~q)a?f)GS1`- zPu-HTuQl<5Y&#>e)xU^}0aBrE@XxC8FiKS9Dj59A16%z|VSv%HV@J%`xP{)nI<^W9 zz^lNS_2zN=9btetCmXOMQ9XE0j5e$!Ig|s8uanr;{o{di7%j|K813(2$t&exUwQ@X z?KZES6*ml!j#~yBTksMVFjdOSkaiYl^edXk3JT8+Al$4l*BP+_IC2y@!U}U;0SaH? zK_0Qf6!IN~hyFuhj=#Ho4K{$Ru|%BNoOh!_69G)gY-fn`JmQZu-(-iY5*92Ucz>?& zgTbE$=X0Bjyeq+mxFg{B#?Qm^IJVQo=;hUS*4zP=9QnSjgHIp+5B=Z6TU^zylJB65 z&;g77X8A0c$k=ueTxvOn8>y&yyE89|F>-#pGdnV(yI!cWgWk*)Ba-Z}%dRNgU5dgS zh_UT@y>d6?j@dU5ZzDUlDvInw`q*I(TSHmvUZe2#zc+$RIY4&W&UFxJ`tKmT?Sc9% z55<=3#IPIb?km8O{0uOp3%@^@P zsHp*5z^JlOB!vqa^$5UZB=knecQzvqM2g91!@u<0py?$u*0ho8T>+LfnGcELhCx?} z!Y_o7XWY(kD{!|y#^e-mZZ9xp^F--ZLj-u7;VmFz2DTCluz@dqv~`MPA3&)%5c&)} z4>m)Z?_1Z6fEiK%PHr}LPbt6%F%LF^enWdV!vlf!BCr5pPCY4$C8Be9%&+od9;$ zMPUwPkK20S8ru)(TLD*00#|^=?VmsTT;%jlID>BkR?5;V#yJ0D;mGU+9{o5cvILN1 ztapqN@q5Pq>=IOqPYE6X1^@FeTkDw*ZN|u-PGeX=V5?CH$pBk12@VI|Fx-;MPpul` zEca;ogm@o!3l2x3o7ea4jh$SlNdR>}sP(}j@XuesnlX|`35K;8^nG*U>%L@y1QnTVoXxulf^oFJf?+pO zO%=eB)^{Skf^brj2m$!?b7ZH``l`s*MHrt2DIyruuAAo&HLWQkz+k#DhYC<$Q0hMt zf-(CIz*G|krnt}mZ(pR}6)%LHumVev;1bOby@*8ya-0y_*=3|2Fwl1 z|EIk;)fDIL<8vGdx(3VO-d#Yuzy;*nE~tHnFn}k=5M^OFFMI(^rt=Z(%RifLjB*2t zU1Bvum^sY;?&lB&5r8G%fnmW}$iFvG-9QuRWfP=N#2MULjb6Wd&2fJ5N3RyRulJU8 z%h6Vz4N5AD&2(zT)x+r^stZ9iuz9o^FCsyrV72&rJA8!HhVm8@4!3e`>y*j6jFQ6g zhgYhpdp{6121*wGedoyWDSbM zHmL&Q0KUqHsEfl<4@6-RDHP^F%E7{b4TSyaqj6QBUQhv{wK=F0f{<}>XY6h>y#!!A z6N-pSKtDPHm~1J*0%1+m=VlWa#}4n&gE z60Q=MyxLK-wY{JOQwG)I<}7){5HZ^e+oT5MYIK2lwoQ-TXZe^9;N&x;8DMEp*5KZCQUt=b$u@tXhKjNJGsR z0Zi6kZiRfRvf3!2KBL&;cUDOKM=Q9sL#3+70Brs*3=3`sm%#$@JiwC5=phv{P~sR0 zds?C}``<|*wGSZ4Tabc%U}kJOwTnhuo;^idU@{OKdY6<9s+|lFfSZ#6BLku#yB_1% z0F15$#S=UBi~5o;&6 zZd>QHQL2r{Ke*(88|AlapK{~Dh4;+BYKYy7C7%dypn7Dp}5wrg7 zdtowT5P8;Mx45~Z<+l(4dC<|nj>72E+Rf_aHNe`My7kE${VJ3m_V%=4IFA;Xz90Ud z`<@YzAbD7cUy%n+$1kJs_P=8^iz0J{5C#Pp^y&%#{;(H?Igqh~_8X=F>Z=i#**A1umoTxHf|~K6Vdt7>&}ykqXLinYIB{=e_@T zUZU~{mNGTwl~>k!)QgX#cl_uC!`T(#dwotIE-zlsA=sqeszJUYLA-vY&6(8aLu zi3iN2V>EMF-$C%b_@8#Tb47T!5u;2<)v^6>w|kHdXqMo6@P zL(#i&nBm<5xuN<%k)8y}mJz$L9VLa2IySZ%KGtW%;g-SJZcbbpl8(r%rX#p(C9{4r z4J&^7Y#Vvs>4W8xYHLqlt6>cPY(j_=G|!g7;gKOo)0>x9#{M=ny7X;qxn* z8nBj1f=7WiCu;j_jCNxZhG_%eICnTAJ6{9y{&!2U6U9;vV%UxSHIEL!T9Y^-e&kND zD95zbXBA9p0v`?^-s(pxawmkJ(h1%I#T(tyu5Y+Mi@4+*K5fRV@`SEXkVng!H zVFBz|83ecPqzG&%DXbrv#mD%0f$|u!tv>IRbV9~uoc?(x!@&Okw#ACS@deOI7YI|^c^FDQ;Nffo;vZa~rPHDFPV=?mN-gRgr*qO~`HUVRiJHvJzL zbdV8b439fdisL?53K8aUAW`A}G1Jex11s^`Y)GEj02E~kVxE4^JRv&X9vkE68gRo63kOu&oSJV># diff --git a/reposense-logs/reposense.log.0 b/reposense-logs/reposense.log.0 index 4db0a542..a99b3b46 100644 --- a/reposense-logs/reposense.log.0 +++ b/reposense-logs/reposense.log.0 @@ -1,30 +1,30 @@ -Feb 07, 2024 1:15:41 AM reposense.system.LogsManager addFileHandler +Feb 07, 2024 2:39:07 AM reposense.system.LogsManager addFileHandler INFO: Log temp folder has been successfully created -Feb 07, 2024 1:15:42 AM reposense.parser.CsvParser validateHeader +Feb 07, 2024 2:39:07 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, repo-config.csv, and recognized columns: Ignore Standalone Config, Repository's Location, Branch, Shallow Cloning, File formats, Ignore Glob List, Ignore Authors List, Find Previous Authors, Ignore Commits List -Feb 07, 2024 1:15:43 AM reposense.parser.CsvParser validateHeader +Feb 07, 2024 2:39:08 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, author-config.csv, and recognized columns: Author's Emails, Repository's Location, Author's GitHub ID, Branch, Author's Display Name, Ignore Glob List, Author's Git Author Name -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:08 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias amanzainal found. The alias will belong to the last author - amanzainal -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:08 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias shuyuan found. The alias will belong to the last author - legionlegion -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias alphajae11 found. The alias will belong to the last author - alphajae11 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias jayne1010 found. The alias will belong to the last author - Jayne1010 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias miffi found. The alias will belong to the last author - miffi -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias amanzainal found. The alias will belong to the last author - amanzainal -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias shuyuan found. The alias will belong to the last author - legionlegion -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias alphajae11 found. The alias will belong to the last author - alphajae11 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias jayne1010 found. The alias will belong to the last author - Jayne1010 -Feb 07, 2024 1:15:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 07, 2024 2:39:09 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias miffi found. The alias will belong to the last author - miffi -Feb 07, 2024 1:15:43 AM reposense.git.GitConfig getGlobalGitLfsConfig +Feb 07, 2024 2:39:09 AM reposense.git.GitConfig getGlobalGitLfsConfig WARNING: Could not get global git lfs config java.lang.RuntimeException: reposense.system.CommandRunnerProcessException: Error returned from command git config --global --list on path . : fatal: unable to read config file '/home/runner/.gitconfig': No such file or directory @@ -40,907 +40,667 @@ fatal: unable to read config file '/home/runner/.gitconfig': No such file or dir at reposense.system.CommandRunner.runCommand(CommandRunner.java:21) ... 3 more -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/eliotlee68/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/fy17ohhh/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chuahjiajie/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Austintjh19/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chuahjiajie/ip.git... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/fy17ohhh/ip.git... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/eliotlee68/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chuahjiajie/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/fy17ohhh/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Austintjh19/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/eliotlee68/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/fy17ohhh/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/chuahjiajie/ip.git completed! -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/fy17ohhh/ip.git completed! +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/linnn-7/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [1/430] Analyzing https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/linnn-7/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chuahjiajie/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Austintjh19/ip.git completed! -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dedsecrattle/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [2/430] Analyzing https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [1/430] Analyzing https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Austintjh19/ip.git completed! +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dedsecrattle/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/fy17ohhh/ip.git completed! -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Austintjh19/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [2/430] Analyzing https://github.com/fy17ohhh/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gavingoh99/ip.git... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [3/430] Analyzing https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:43 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [3/430] Analyzing https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/gavingoh99/ip.git to complete... -Feb 07, 2024 1:15:43 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chuahjiajie/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/fy17ohhh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/eliotlee68/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Austintjh19/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/linnn-7/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dedsecrattle/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chuahjiajie/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/eliotlee68/ip.git completed! +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/whitesnowx/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [4/430] Analyzing https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gavin331/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gavingoh99/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/whitesnowx/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gavin331/ip.git... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SherisseTJW/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tahnya/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chuahjiajie/ip.git (master) completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gavin331/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [5/430] Analyzing https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/whitesnowx/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [4/430] Analyzing https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tahnya/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SherisseTJW/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dedsecrattle/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/eliotlee68/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gavin331/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yongkotaro/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yongkotaro/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gavin331/ip.git to complete... +Feb 07, 2024 2:39:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/linnn-7/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chuahjiajie/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/whitesnowx/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/E0735389/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tahnya/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chuahjiajie/ip.git (master) completed! +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [5/430] Analyzing https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SherisseTJW/ip.git completed! -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/E0735389/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tahnya/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yongkotaro/ip.git... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/E0735389/ip.git... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/beefsausagee/ip.git... -Feb 07, 2024 1:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/fy17ohhh/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dedsecrattle/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gavin331/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/beefsausagee/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/E0735389/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yongkotaro/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/c-wenlong/ip.git... -Feb 07, 2024 1:15:44 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/c-wenlong/ip.git to complete... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/fy17ohhh/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/fy17ohhh/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/fy17ohhh/ip.git (master) completed! -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [6/430] Analyzing https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/linnn-7/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dedsecrattle/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dedsecrattle/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yongkotaro/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [7/430] Analyzing https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChuaZenKhoon/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChuaZenKhoon/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gavingoh99/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Austintjh19/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [6/430] Analyzing https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/beefsausagee/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/E0735389/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/c-wenlong/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Austintjh19/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [8/430] Analyzing https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChuaZenKhoon/ip.git... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ziyi22/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gauravuj/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ziyi22/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/c-wenlong/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChuaZenKhoon/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gauravuj/ip.git to complete... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/marclamp/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/marclamp/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gauravuj/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ziyi22/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gavin331/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/eliotlee68/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/eliotlee68/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [9/430] Analyzing https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChuaZenKhoon/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/eliotlee68/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ziyi22/ip.git completed! +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LifHoshi/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LifHoshi/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/whitesnowx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gavingoh99/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/marclamp/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gauravuj/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/linnn-7/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gavingoh99/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/linnn-7/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [10/430] Analyzing https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ziyi22/ip.git completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [11/430] Analyzing https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChuaZenKhoon/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/erv-teo/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/PyromancerBoom/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/marclamp/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/erv-teo/ip.git to complete... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/javierng2knus/ip.git... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/PyromancerBoom/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SherisseTJW/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/erv-teo/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/javierng2knus/ip.git to complete... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tahnya/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gavin331/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gavin331/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [12/430] Analyzing https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/whitesnowx/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/whitesnowx/ip.git (master) completed! -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [13/430] Analyzing https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yongkotaro/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/beefsausagee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dedsecrattle/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dedsecrattle/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [7/430] Analyzing https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/linnn-7/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Austintjh19/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/linnn-7/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LifHoshi/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gavingoh99/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [8/430] Analyzing https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Austintjh19/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Lalelulilulela/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [9/430] Analyzing https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Lalelulilulela/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tahnya/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tahnya/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [14/430] Analyzing https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/beefsausagee/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/beefsausagee/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [15/430] Analyzing https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/E0735389/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/c-wenlong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/erv-teo/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PyromancerBoom/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/whitesnowx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/martinng01/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/javierng2knus/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tahnya/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/martinng01/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PyromancerBoom/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dwangwk/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/javierng2knus/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/bryanyee33/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dwangwk/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/bryanyee33/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SherisseTJW/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SherisseTJW/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [16/430] Analyzing https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChuaZenKhoon/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yongkotaro/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yongkotaro/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [17/430] Analyzing https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gauravuj/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tahnya/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tahnya/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [10/430] Analyzing https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/martinng01/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Lalelulilulela/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SherisseTJW/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cliftonchee/ip.git... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/peterXGD/ip.git... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cliftonchee/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/E0735389/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/E0735389/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [18/430] Analyzing https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ziyi22/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChuaZenKhoon/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/martinng01/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dwangwk/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChuaZenKhoon/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [19/430] Analyzing https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/c-wenlong/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/peterXGD/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/c-wenlong/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [20/430] Analyzing https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/peterXGD/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bryanyee33/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/whitesnowx/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/whitesnowx/ip.git (master) completed! +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [11/430] Analyzing https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/alex-setyawan/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alex-setyawan/ip.git to complete... +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bryanyee33/ip.git completed! +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jawad280/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jawad280/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/marclamp/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LifHoshi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alex-setyawan/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ziyi22/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ziyi22/ip.git (master) completed! -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [21/430] Analyzing https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gavin331/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gavingoh99/ip.git (master)... +Feb 07, 2024 2:39:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gavingoh99/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [12/430] Analyzing https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/cliftonchee/ip.git completed! -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Howlong11/ip.git... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/erv-teo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Howlong11/ip.git to complete... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gauravuj/ip.git (master)... -Feb 07, 2024 1:15:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gauravuj/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [22/430] Analyzing https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/PyromancerBoom/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/erv-teo/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/erv-teo/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [23/430] Analyzing https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/javierng2knus/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/E0735389/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/eliotlee68/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/peterXGD/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PyromancerBoom/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PyromancerBoom/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [24/430] Analyzing https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Howlong11/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/eliotlee68/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alex-setyawan/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [13/430] Analyzing https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/bennyLCK/ip.git... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bennyLCK/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Jawad280/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LifHoshi/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LifHoshi/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [25/430] Analyzing https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/garywongkai/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Lalelulilulela/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/garywongkai/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alex-setyawan/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sebin0817/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/martinng01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Howlong11/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sebin0817/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/marclamp/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AL-ZT/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/marclamp/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [26/430] Analyzing https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AL-ZT/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dwangwk/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/javierng2knus/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/javierng2knus/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [27/430] Analyzing https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bryanyee33/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/garywongkai/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bennyLCK/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/beefsausagee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SherisseTJW/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gavin331/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SherisseTJW/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gavin331/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [14/430] Analyzing https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [15/430] Analyzing https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yongkotaro/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/c-wenlong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Howlong11/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/beefsausagee/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sebin0817/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/garywongkai/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/beefsausagee/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [16/430] Analyzing https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AL-ZT/ip.git... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/bennyLCK/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/iynixil/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/iynixil/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/garywongkai/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AL-ZT/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ys112/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sebin0817/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ys112/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/iynixil/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/acekhoon/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/acekhoon/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ys112/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ziyi22/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/E0735389/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/E0735389/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [17/430] Analyzing https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gauravuj/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ziyi22/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ziyi22/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [18/430] Analyzing https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yongkotaro/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yongkotaro/ip.git (master) completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ys112/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/iynixil/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChuaZenKhoon/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AL-ZT/ip.git completed! -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dwangwk/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Lalelulilulela/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dwangwk/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Lalelulilulela/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [28/430] Analyzing https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/martinng01/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/martinng01/ip.git (master) completed! -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [29/430] Analyzing https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [19/430] Analyzing https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/acekhoon/ip.git completed! +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/larainezo/ip.git... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [30/430] Analyzing https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/larainezo/ip.git to complete... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/peterXGD/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jawad280/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cliftonchee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bryanyee33/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bryanyee33/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [31/430] Analyzing https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alex-setyawan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/iynixil/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yyccbb/ip.git... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/peterXGD/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yyccbb/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/peterXGD/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [32/430] Analyzing https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/acekhoon/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AidenLYT/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yyccbb/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/larainezo/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/minghowC/ip.git... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AidenLYT/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Howlong11/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/marclamp/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/minghowC/ip.git to complete... +Feb 07, 2024 2:39:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/c-wenlong/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/c-wenlong/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/larainezo/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ys112/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/minghowC/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [20/430] Analyzing https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jaspertzx/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/minghowC/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jaspertzx/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cliftonchee/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cliftonchee/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [33/430] Analyzing https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alex-setyawan/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alex-setyawan/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [34/430] Analyzing https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bennyLCK/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/garywongkai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jawad280/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jawad280/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [35/430] Analyzing https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Howlong11/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Howlong11/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [36/430] Analyzing https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sebin0817/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AL-ZT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yyccbb/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/limrik/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/limrik/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/minghowC/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LifHoshi/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/limrik/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cyqjoseph/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cyqjoseph/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jaspertzx/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gauravuj/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gauravuj/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChuaZenKhoon/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [21/430] Analyzing https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChuaZenKhoon/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AidenLYT/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [22/430] Analyzing https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jeong-jaeho/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/erv-teo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jeong-jaeho/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AidenLYT/ip.git completed! -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wilsonwid/ip.git... -Feb 07, 2024 1:15:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wilsonwid/ip.git to complete... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/garywongkai/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/garywongkai/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [37/430] Analyzing https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/iynixil/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sebin0817/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sebin0817/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [38/430] Analyzing https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AL-ZT/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AL-ZT/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bennyLCK/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [39/430] Analyzing https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bennyLCK/ip.git (master) completed! -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [40/430] Analyzing https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/acekhoon/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/larainezo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ys112/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/javierng2knus/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jaspertzx/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/limrik/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wilsonwid/ip.git... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/iamtr/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/marclamp/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/marclamp/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [23/430] Analyzing https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/iamtr/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cyqjoseph/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wilsonwid/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wilsonwid/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/PyromancerBoom/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jeong-jaeho/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yleeyilin/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/erv-teo/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/erv-teo/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cyqjoseph/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [24/430] Analyzing https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yleeyilin/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/RunjiaChen/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/martinng01/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/RunjiaChen/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yleeyilin/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jeong-jaeho/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wilsonwid/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nichee/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nichee/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/larainezo/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/larainezo/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [41/430] Analyzing https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/acekhoon/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/acekhoon/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [42/430] Analyzing https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yyccbb/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iynixil/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/minghowC/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iynixil/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [43/430] Analyzing https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jaspertzx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ys112/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ys112/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [44/430] Analyzing https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/iamtr/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AidenLYT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LifHoshi/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LifHoshi/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/leeweiming3/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [25/430] Analyzing https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/leeweiming3/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nichee/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Lalelulilulela/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PyromancerBoom/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PyromancerBoom/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [26/430] Analyzing https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dwangwk/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RunjiaChen/ip.git completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yleeyilin/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/javierng2knus/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/javierng2knus/ip.git (master) completed! +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/leepoeaik/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/danielleloh/ip.git... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/danielleloh/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [27/430] Analyzing https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/leepoeaik/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RunjiaChen/ip.git completed! -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/danielleloh/ip.git to complete... +Feb 07, 2024 2:39:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bryanyee33/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nichee/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wallacexuhanxiao/ip.git... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wallacexuhanxiao/ip.git to complete... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/minghowC/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/minghowC/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [45/430] Analyzing https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/limrik/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yyccbb/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yyccbb/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [46/430] Analyzing https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jaspertzx/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jaspertzx/ip.git (master) completed! -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [47/430] Analyzing https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cyqjoseph/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wilsonwid/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/leeweiming3/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wallacexuhanxiao/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LimZiJia/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wallacexuhanxiao/ip.git to complete... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LimZiJia/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/thewongdylan/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/martinng01/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/martinng01/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leepoeaik/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [28/430] Analyzing https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/danielleloh/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/thewongdylan/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/thewongdylan/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Ryan-Reno/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leepoeaik/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jerremyng/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cliftonchee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ryan-Reno/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jerremyng/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AidenLYT/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AidenLYT/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [48/430] Analyzing https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Ryan-Reno/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Ryan-Reno/ip.git' 'repos/Ryan-Reno_ip/ip_bare' on path . : Cloning into bare repository 'repos/Ryan-Reno_ip/ip_bare'... @@ -956,1315 +716,943 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/marcus-ny/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jeong-jaeho/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/marcus-ny/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/limrik/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/limrik/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [49/430] Analyzing https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/iamtr/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jeong-jaeho/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jeong-jaeho/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [50/430] Analyzing https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/thewongdylan/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dwangwk/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jerremyng/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wallacexuhanxiao/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dwangwk/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LimZiJia/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [29/430] Analyzing https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/marcus-ny/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jerremyng/ip.git to complete... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wapisai/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nichee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ty-stan0417/ip.git... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wilsonwid/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wilsonwid/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/marcus-ny/ip.git to complete... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bryanyee33/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bryanyee33/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [30/430] Analyzing https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wapisai/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [51/430] Analyzing https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/peterXGD/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alex-setyawan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/thewongdylan/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Lalelulilulela/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Lalelulilulela/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ty-stan0417/ip.git... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [31/430] Analyzing https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ty-stan0417/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jawad280/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jerremyng/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yleeyilin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/marcus-ny/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kjw142857/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kjw142857/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/marcus-ny/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ljy0422/ip.git... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iamtr/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alex-setyawan/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alex-setyawan/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [32/430] Analyzing https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ljy0422/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iamtr/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [52/430] Analyzing https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RunjiaChen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cyqjoseph/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cyqjoseph/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [53/430] Analyzing https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leeweiming3/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nichee/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ty-stan0417/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nichee/ip.git (master) completed! -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wapisai/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/lokidoki102/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [54/430] Analyzing https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/lokidoki102/ip.git to complete... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wapisai/ip.git completed! -Feb 07, 2024 1:15:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wallacexuhanxiao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/garywongkai/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ty-stan0417/ip.git completed! +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tanguoyang/ip.git... -Feb 07, 2024 1:15:50 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tanguoyang/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cliftonchee/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cliftonchee/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [33/430] Analyzing https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Howlong11/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/peterXGD/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/peterXGD/ip.git (master) completed! +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [34/430] Analyzing https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sebin0817/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kjw142857/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ljy0422/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/myang2020/ip.git... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/myang2020/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ljy0422/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leeweiming3/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leeweiming3/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [55/430] Analyzing https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jaejayrome/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jaejayrome/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yleeyilin/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yleeyilin/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/danielleloh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [56/430] Analyzing https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leepoeaik/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RunjiaChen/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RunjiaChen/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [57/430] Analyzing https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/lokidoki102/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanguoyang/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LimZiJia/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cocoanautz/ip.git... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cocoanautz/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanguoyang/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kaitinghh/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kaitinghh/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leepoeaik/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leepoeaik/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [58/430] Analyzing https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/danielleloh/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/danielleloh/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [59/430] Analyzing https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/garywongkai/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/garywongkai/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jawad280/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [35/430] Analyzing https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jawad280/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [36/430] Analyzing https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Howlong11/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Howlong11/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bennyLCK/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/iynixil/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [37/430] Analyzing https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/myang2020/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ys112/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/1rbg/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/thewongdylan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jerremyng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/1rbg/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jaejayrome/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cocoanautz/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/benson1029/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/benson1029/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/thewongdylan/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/thewongdylan/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [60/430] Analyzing https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wallacexuhanxiao/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wallacexuhanxiao/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/marcus-ny/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [61/430] Analyzing https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LimZiJia/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LimZiJia/ip.git (master) completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [62/430] Analyzing https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sebin0817/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sebin0817/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [38/430] Analyzing https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kaitinghh/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cocoanautz/ip.git completed! -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wapisai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ty-stan0417/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CaptainKeqing/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/benson1029/ip.git to complete... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuechen2001/ip.git... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AL-ZT/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CaptainKeqing/ip.git to complete... -Feb 07, 2024 1:15:51 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuechen2001/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/1rbg/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wang-xinrong/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wang-xinrong/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CaptainKeqing/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/benson1029/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuechen2001/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jiahui0309/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jiahui0309/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jerremyng/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jerremyng/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [63/430] Analyzing https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/marcus-ny/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/marcus-ny/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [64/430] Analyzing https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kjw142857/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ljy0422/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ty-stan0417/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ty-stan0417/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [65/430] Analyzing https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wapisai/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wapisai/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [66/430] Analyzing https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lokidoki102/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanguoyang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuechen2001/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TheodoreKooo/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CaptainKeqing/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TheodoreKooo/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kokerinks/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TheodoreKooo/ip.git to complete... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kokerinks/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanguoyang/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanguoyang/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [67/430] Analyzing https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kjw142857/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kjw142857/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [68/430] Analyzing https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/myang2020/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jaejayrome/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ljy0422/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ljy0422/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [69/430] Analyzing https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cocoanautz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jiahui0309/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AL-ZT/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AL-ZT/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [39/430] Analyzing https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ys112/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ys112/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [40/430] Analyzing https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/acekhoon/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bennyLCK/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/larainezo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iynixil/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bennyLCK/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iynixil/ip.git (master) completed! +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wang-xinrong/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [41/430] Analyzing https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [42/430] Analyzing https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Ella-e/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ella-e/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yyccbb/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TheodoreKooo/ip.git completed! +Feb 07, 2024 2:39:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/minghowC/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jiahui0309/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ForAeons/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ForAeons/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/myang2020/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/myang2020/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [70/430] Analyzing https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kaitinghh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kokerinks/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/solomonng2001/ip.git... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/solomonng2001/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TheodoreKooo/ip.git completed! -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Xuyan0518/ip.git... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lokidoki102/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ForAeons/ip.git to complete... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Xuyan0518/ip.git to complete... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lokidoki102/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [71/430] Analyzing https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cocoanautz/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cocoanautz/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [72/430] Analyzing https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/1rbg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/benson1029/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jaejayrome/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jaejayrome/ip.git (master) completed! -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [73/430] Analyzing https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yuechen2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/minghowC/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/minghowC/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [43/430] Analyzing https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/larainezo/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Ella-e/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/larainezo/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [44/430] Analyzing https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/justinlengch/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ForAeons/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/justinlengch/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/solomonng2001/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jjchee77/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Xuyan0518/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jjchee77/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kaitinghh/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kaitinghh/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [74/430] Analyzing https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CaptainKeqing/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/solomonng2001/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jaspertzx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AidenLYT/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ronnnnnnnnn/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ronnnnnnnnn/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Xuyan0518/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ForAeons/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/acekhoon/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/acekhoon/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [45/430] Analyzing https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dayn-1/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dayn-1/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yuechen2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yuechen2001/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [75/430] Analyzing https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/benson1029/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/benson1029/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/1rbg/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [76/430] Analyzing https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/1rbg/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [77/430] Analyzing https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jiahui0309/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wang-xinrong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kokerinks/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/limrik/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yyccbb/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yyccbb/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [46/430] Analyzing https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jeong-jaeho/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/justinlengch/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NeoHW/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jjchee77/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tituschewxj/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NeoHW/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tituschewxj/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ronnnnnnnnn/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NeoHW/ip.git to complete... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dayn-1/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/choowengyan/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/choowengyan/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/CaptainKeqing/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dayn-1/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/CaptainKeqing/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [78/430] Analyzing https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/guanquann/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/guanquann/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/TheodoreKooo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jiahui0309/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jiahui0309/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [79/430] Analyzing https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wang-xinrong/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wang-xinrong/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [80/430] Analyzing https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ella-e/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jeong-jaeho/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jeong-jaeho/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [47/430] Analyzing https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jaspertzx/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jaspertzx/ip.git (master) completed! +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cyqjoseph/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [48/430] Analyzing https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wilsonwid/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/NeoHW/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tituschewxj/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/guanquann/ip.git... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Hibeom0929/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/guanquann/ip.git to complete... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Hibeom0929/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kokerinks/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kokerinks/ip.git (master) completed! -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ForAeons/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [81/430] Analyzing https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tituschewxj/ip.git completed! -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/choowengyan/ip.git completed! +Feb 07, 2024 2:39:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JukeBoxK/ip.git... -Feb 07, 2024 1:15:53 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JukeBoxK/ip.git to complete... -Feb 07, 2024 1:15:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/solomonng2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/choowengyan/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lynnetteeee/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lynnetteeee/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TheodoreKooo/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/TheodoreKooo/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [82/430] Analyzing https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Xuyan0518/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AidenLYT/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AidenLYT/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [49/430] Analyzing https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/iamtr/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/limrik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/limrik/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [50/430] Analyzing https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RunjiaChen/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Hibeom0929/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/guanquann/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lynnetteeee/ip.git... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tamagochuuu/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tamagochuuu/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ella-e/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ella-e/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [83/430] Analyzing https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lynnetteeee/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JukeBoxK/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tamagochuuu/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/owenong1/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/justinlengch/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Hibeom0929/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Xuyan0518/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/willowisp01/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Xuyan0518/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [84/430] Analyzing https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/owenong1/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/willowisp01/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jjchee77/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iamtr/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iamtr/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [51/430] Analyzing https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/lynnetteeee/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/solomonng2001/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/solomonng2001/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [85/430] Analyzing https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tamagochuuu/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/willowisp01/ip.git... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/HongRay/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/willowisp01/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yleeyilin/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/owenong1/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/HongRay/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ronnnnnnnnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tamagochuuu/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Wyrkx/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Wyrkx/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/justinlengch/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/justinlengch/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [86/430] Analyzing https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dayn-1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/owenong1/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ronnnnnnnnn/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wilsonwid/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Benson15912/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wilsonwid/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Benson15912/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [52/430] Analyzing https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nichee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cyqjoseph/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cyqjoseph/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [53/430] Analyzing https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HongRay/ip.git completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leeweiming3/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/willowisp01/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kailinteoo/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kailinteoo/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HongRay/ip.git completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Alteqa/ip.git... -Feb 07, 2024 1:15:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Alteqa/ip.git to complete... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ronnnnnnnnn/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ronnnnnnnnn/ip.git (master) completed! -Feb 07, 2024 1:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ForAeons/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [87/430] Analyzing https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ForAeons/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [88/430] Analyzing https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tituschewxj/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NeoHW/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Wyrkx/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kailinteoo/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Alteqa/ip.git to complete... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/MaYuehan/ip.git... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RunjiaChen/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RunjiaChen/ip.git (master) completed! +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [54/430] Analyzing https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/MaYuehan/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jjchee77/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jjchee77/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [89/430] Analyzing https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dayn-1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dayn-1/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/choowengyan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [90/430] Analyzing https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/guanquann/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leepoeaik/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Benson15912/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zhenghuil/ip.git... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/choowengyan/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zhenghuil/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/choowengyan/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [91/430] Analyzing https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JukeBoxK/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kailinteoo/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sarjinius/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sarjinius/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Alteqa/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yleeyilin/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yleeyilin/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [55/430] Analyzing https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sarjinius/ip.git... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/appleraincoat/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/appleraincoat/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sarjinius/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/MaYuehan/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/appleraincoat/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/danielleloh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/reetmitra/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/reetmitra/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/guanquann/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/guanquann/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [92/430] Analyzing https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leeweiming3/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leeweiming3/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [56/430] Analyzing https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leepoeaik/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leepoeaik/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [57/430] Analyzing https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zhenghuil/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nichee/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/taeewonnn/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Hibeom0929/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nichee/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [58/430] Analyzing https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LimZiJia/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wallacexuhanxiao/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/taeewonnn/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NeoHW/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NeoHW/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JukeBoxK/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [93/430] Analyzing https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JukeBoxK/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [94/430] Analyzing https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lynnetteeee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tituschewxj/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tituschewxj/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [95/430] Analyzing https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/thewongdylan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sarjinius/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tamagochuuu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/appleraincoat/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jamessinmaojun/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/reetmitra/ip.git completed! +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/H4mes/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/owenong1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/H4mes/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jamessinmaojun/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/reetmitra/ip.git completed! -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/H4mes/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ChocoRagdoll/ip.git... -Feb 07, 2024 1:15:55 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ChocoRagdoll/ip.git to complete... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Hibeom0929/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Hibeom0929/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [96/430] Analyzing https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lynnetteeee/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lynnetteeee/ip.git (master) completed! -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/willowisp01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [97/430] Analyzing https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HongRay/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/taeewonnn/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tamagochuuu/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/danielleloh/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ondretann/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tamagochuuu/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [98/430] Analyzing https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/danielleloh/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [59/430] Analyzing https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ondretann/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Wyrkx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/owenong1/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/owenong1/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [99/430] Analyzing https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Benson15912/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Wyrkx/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Wyrkx/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [100/430] Analyzing https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jerremyng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/H4mes/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ashleygoh1/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HongRay/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kailinteoo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HongRay/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jamessinmaojun/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [101/430] Analyzing https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ashleygoh1/ip.git... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/justincred/ip.git... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/justincred/ip.git to complete... +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/thewongdylan/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ashleygoh1/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/thewongdylan/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [60/430] Analyzing https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ChocoRagdoll/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/justincred/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/willowisp01/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/willowisp01/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LimZiJia/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LimZiJia/ip.git (master) completed! +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JerryWang0000/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [102/430] Analyzing https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/justincred/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Alteqa/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MaYuehan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [61/430] Analyzing https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/marcus-ny/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JerryWang0000/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wapisai/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ondretann/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/julia-cp/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/julia-cp/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kailinteoo/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kailinteoo/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [103/430] Analyzing https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhenghuil/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/justincred/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JerryWang0000/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ashleygoh1/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Tanzhiheng26/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Alteqa/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/BryanL2303/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Alteqa/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [104/430] Analyzing https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Tanzhiheng26/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/BryanL2303/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/appleraincoat/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ashleygoh1/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JerryWang0000/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sethteo/ip.git... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sethteo/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Benson15912/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Benson15912/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [105/430] Analyzing https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/marcus-ny/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/marcus-ny/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [62/430] Analyzing https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/julia-cp/ip.git completed! -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sarjinius/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Joelwang22/ip.git... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhenghuil/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhenghuil/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wapisai/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wapisai/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [63/430] Analyzing https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ty-stan0417/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Joelwang22/ip.git to complete... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [106/430] Analyzing https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/reetmitra/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sarjinius/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sarjinius/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [107/430] Analyzing https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MaYuehan/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MaYuehan/ip.git (master) completed! -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/taeewonnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [108/430] Analyzing https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/H4mes/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/appleraincoat/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/appleraincoat/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [109/430] Analyzing https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jamessinmaojun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wallacexuhanxiao/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kjw142857/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wallacexuhanxiao/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [64/430] Analyzing https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ljy0422/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/BryanL2303/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Tanzhiheng26/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jerremyng/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ibnu2651/ip.git... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/reetmitra/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/reetmitra/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ibnu2651/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [110/430] Analyzing https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/H4mes/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/H4mes/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/BryanL2303/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [111/430] Analyzing https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jerremyng/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SimKianSeng/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [65/430] Analyzing https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ibnu2651/ip.git to complete... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SimKianSeng/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChocoRagdoll/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lokidoki102/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sethteo/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ondretann/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/guohuang88/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/guohuang88/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/taeewonnn/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/taeewonnn/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Joelwang22/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [112/430] Analyzing https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/rizkidelta/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/rizkidelta/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/justincred/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/justincred/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/justincred/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [113/430] Analyzing https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JerryWang0000/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ondretann/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ondretann/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [114/430] Analyzing https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ashleygoh1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ibnu2651/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChocoRagdoll/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChocoRagdoll/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Murugan-Maniish/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [115/430] Analyzing https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ty-stan0417/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ty-stan0417/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [66/430] Analyzing https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanguoyang/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kjw142857/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SimKianSeng/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kjw142857/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Murugan-Maniish/ip.git... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [67/430] Analyzing https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Murugan-Maniish/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ibnu2651/ip.git completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/myang2020/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AjayArvind2207/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/julia-cp/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AjayArvind2207/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ljy0422/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/guohuang88/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ljy0422/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [68/430] Analyzing https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Teee728/ip.git... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jamessinmaojun/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jamessinmaojun/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [116/430] Analyzing https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Teee728/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jaejayrome/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/rizkidelta/ip.git completed! -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanguoyang/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanguoyang/ip.git (master) completed! +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [69/430] Analyzing https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dillontkh/ip.git... -Feb 07, 2024 1:15:57 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dillontkh/ip.git to complete... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JerryWang0000/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JerryWang0000/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [117/430] Analyzing https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Tanzhiheng26/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BryanL2303/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/julia-cp/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/julia-cp/ip.git (master) completed! -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [118/430] Analyzing https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sethteo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Tanzhiheng26/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Tanzhiheng26/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [119/430] Analyzing https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AjayArvind2207/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cocoanautz/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Murugan-Maniish/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/shaunlxw/ip.git... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ashleygoh1/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/shaunlxw/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AjayArvind2207/ip.git completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Morninggloryyy/ip.git... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Morninggloryyy/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dillontkh/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Teee728/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Morninggloryyy/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ashleygoh1/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jmsandiegoo/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [120/430] Analyzing https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Joelwang22/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jmsandiegoo/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Morninggloryyy/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ryanlimdx/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jmsandiegoo/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/myang2020/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/myang2020/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ryanlimdx/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ibnu2651/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BryanL2303/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BryanL2303/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [121/430] Analyzing https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [70/430] Analyzing https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Morninggloryyy/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Morninggloryyy/ip.git' 'repos/Morninggloryyy_ip/ip_bare' on path . : Cloning into bare repository 'repos/Morninggloryyy_ip/ip_bare'... @@ -2280,457 +1668,295 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chiralcentre/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SimKianSeng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kaitinghh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chiralcentre/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sethteo/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sethteo/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [122/430] Analyzing https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/guohuang88/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Joelwang22/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Joelwang22/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [123/430] Analyzing https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rizkidelta/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lokidoki102/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lokidoki102/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [71/430] Analyzing https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/shaunlxw/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jmsandiegoo/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/KhoonSun47/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ThatGirlJam/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ThatGirlJam/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/1rbg/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/KhoonSun47/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ibnu2651/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ibnu2651/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [124/430] Analyzing https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AjayArvind2207/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SimKianSeng/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cocoanautz/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cocoanautz/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [72/430] Analyzing https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jaejayrome/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jaejayrome/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [73/430] Analyzing https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CaptainKeqing/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yuechen2001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jmsandiegoo/ip.git completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ryanlimdx/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SimKianSeng/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [125/430] Analyzing https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ThatGirlJam/ip.git... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/0liverkong/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/0liverkong/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Murugan-Maniish/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rizkidelta/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rizkidelta/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ThatGirlJam/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/chiralcentre/ip.git completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [126/430] Analyzing https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xuelinglow/ip.git... -Feb 07, 2024 1:15:58 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xuelinglow/ip.git to complete... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dillontkh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/guohuang88/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/guohuang88/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AjayArvind2207/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AjayArvind2207/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [127/430] Analyzing https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [128/430] Analyzing https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Teee728/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shaunlxw/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Murugan-Maniish/ip.git (master)... -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Murugan-Maniish/ip.git (master) completed! -Feb 07, 2024 1:15:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [129/430] Analyzing https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jmsandiegoo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/KhoonSun47/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ThatGirlJam/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yashpola/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yashpola/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/breezetall/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kaitinghh/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kaitinghh/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [74/430] Analyzing https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/benson1029/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/0liverkong/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/breezetall/ip.git... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ThatGirlJam/ip.git completed! +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/breezetall/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JiaXinEu/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JiaXinEu/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/xuelinglow/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yisiox/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JiaXinEu/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yisiox/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Teee728/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Teee728/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [130/430] Analyzing https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ryanlimdx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shaunlxw/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shaunlxw/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [131/430] Analyzing https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chiralcentre/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dillontkh/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dillontkh/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [132/430] Analyzing https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KhoonSun47/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ryanlimdx/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ryanlimdx/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jmsandiegoo/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jmsandiegoo/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [133/430] Analyzing https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [134/430] Analyzing https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yuechen2001/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yashpola/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yuechen2001/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [75/430] Analyzing https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/maiyasaliha/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/1rbg/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/1rbg/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wang-xinrong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [76/430] Analyzing https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/maiyasaliha/ip.git to complete... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/TheodoreKooo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/CaptainKeqing/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/CaptainKeqing/ip.git (master) completed! +Feb 07, 2024 2:39:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [77/430] Analyzing https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/breezetall/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yisiox/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/0liverkong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ThatGirlJam/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jiahui0309/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/triciiaaa/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/maiyasaliha/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/triciiaaa/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JiaXinEu/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yisiox/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jolonauh/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/triciiaaa/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/maiyasaliha/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jolonauh/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/alvinnzz/ip.git... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alvinnzz/ip.git to complete... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chiralcentre/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chiralcentre/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [135/430] Analyzing https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xuelinglow/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KhoonSun47/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KhoonSun47/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [136/430] Analyzing https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ThatGirlJam/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ThatGirlJam/ip.git (master) completed! -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [137/430] Analyzing https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yashpola/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/breezetall/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/maiyasaliha/ip.git completed! -Feb 07, 2024 1:15:59 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wolffe88/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alvinnzz/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wolffe88/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/benson1029/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/benson1029/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [78/430] Analyzing https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kokerinks/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TheodoreKooo/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/TheodoreKooo/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [79/430] Analyzing https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ella-e/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/triciiaaa/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/0liverkong/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jolonauh/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/menatahari/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/0liverkong/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/menatahari/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [138/430] Analyzing https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wolffe88/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jolonauh/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alvinnzz/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/modembcc/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alvinnzz/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wolffe88/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tsulim/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/modembcc/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yisiox/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tsulim/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xuelinglow/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xuelinglow/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [139/430] Analyzing https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/breezetall/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/breezetall/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JiaXinEu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [140/430] Analyzing https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yashpola/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yashpola/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/maiyasaliha/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [141/430] Analyzing https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/triciiaaa/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tsulim/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wolffe88/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/modembcc/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tanyunchao/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wang-xinrong/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanyunchao/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wang-xinrong/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [80/430] Analyzing https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/solomonng2001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jiahui0309/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jiahui0309/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [81/430] Analyzing https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Xuyan0518/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanyunchao/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yashma-sonara/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Hwww23/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/menatahari/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanyunchao/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Hwww23/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rickkoh/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/modembcc/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yashma-sonara/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yisiox/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rickkoh/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yisiox/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [142/430] Analyzing https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/triciiaaa/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/triciiaaa/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [143/430] Analyzing https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jolonauh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alvinnzz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/maiyasaliha/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/maiyasaliha/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [144/430] Analyzing https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/modembcc/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JiaXinEu/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JiaXinEu/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [145/430] Analyzing https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Hwww23/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanyunchao/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tsulim/ip.git completed! +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kokerinks/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Hwww23/ip.git... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kokerinks/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [82/430] Analyzing https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rickkoh/ip.git... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ValenciaLim/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tsulim/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jolonauh/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jolonauh/ip.git (master) completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rickkoh/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Hwww23/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ValenciaLim/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zer0Legion/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [146/430] Analyzing https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yashma-sonara/ip.git completed! -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zer0Legion/ip.git to complete... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/maze508/ip.git... -Feb 07, 2024 1:16:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wolffe88/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/maze508/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rickkoh/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/eunrcn/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/eunrcn/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ella-e/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ella-e/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [83/430] Analyzing https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/justinlengch/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ForAeons/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "ValenciaLim/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/ValenciaLim/ip.git' 'repos/ValenciaLim_ip/ip_bare' on path . : Cloning into bare repository 'repos/ValenciaLim_ip/ip_bare'... @@ -2746,107 +1972,71 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ziyang27/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ziyang27/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alvinnzz/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alvinnzz/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [147/430] Analyzing https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/modembcc/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/modembcc/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [148/430] Analyzing https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/menatahari/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Hwww23/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wolffe88/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wolffe88/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [149/430] Analyzing https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanyunchao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/maze508/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nusliuyifan/ip.git... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Hwww23/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zer0Legion/ip.git... +Feb 07, 2024 2:39:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zer0Legion/ip.git to complete... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/solomonng2001/ip.git (master)... +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/solomonng2001/ip.git (master) completed! +Feb 07, 2024 2:39:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [84/430] Analyzing https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yashma-sonara/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Xuyan0518/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Xuyan0518/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rickkoh/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/maze508/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Hwww23/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jjchee77/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [85/430] Analyzing https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/eunrcn/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ziyang27/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/maze508/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ziyang27/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/eunrcn/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dayn-1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/justinlengch/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/justinlengch/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [86/430] Analyzing https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Zer0Legion/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Hwww23/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [150/430] Analyzing https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tituschewxj/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nusliuyifan/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nusliuyifan/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/miffi/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/miffi/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tsulim/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tsulim/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yashma-sonara/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [151/430] Analyzing https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/menatahari/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/menatahari/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [152/430] Analyzing https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ziyang27/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/eunrcn/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rickkoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kwuunnn/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KSSWSept20/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KSSWSept20/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kwuunnn/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/maze508/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "nusliuyifan/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/nusliuyifan/ip.git' 'repos/nusliuyifan_ip/ip_bare' on path . : Cloning into bare repository 'repos/nusliuyifan_ip/ip_bare'... @@ -2862,4937 +2052,5747 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/miffi/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/maze508/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/eunrcn/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kwuunnn/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KSSWSept20/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/miffi/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kwuunnn/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KSSWSept20/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ziyang27/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zengzihui/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zengzihui/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanyunchao/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanyunchao/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [153/430] Analyzing https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Zer0Legion/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yashma-sonara/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dayn-1/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dayn-1/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [87/430] Analyzing https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/miffi/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yashma-sonara/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [154/430] Analyzing https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sdevih/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sdevih/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ziyang27/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kwuunnn/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/KSSWSept20/ip.git completed! -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/maze508/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sdevih/ip.git... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NeoHW/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/DingBao-sys/ip.git... -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/maze508/ip.git (master) completed! -Feb 07, 2024 1:16:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [155/430] Analyzing https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DingBao-sys/ip.git to complete... -Feb 07, 2024 1:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/eunrcn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rickkoh/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rickkoh/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [156/430] Analyzing https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kwuunnn/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jerome-j/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jerome-j/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sdevih/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DingBao-sys/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zengzihui/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Kaya3842/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jerome-j/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/miffi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kaya3842/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zer0Legion/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zer0Legion/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [157/430] Analyzing https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sdevih/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jjchee77/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jjchee77/ip.git (master) completed! +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [88/430] Analyzing https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/choowengyan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DingBao-sys/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/legionlegion/ip.git... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/eunrcn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/eunrcn/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KSSWSept20/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [158/430] Analyzing https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/legionlegion/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kwuunnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/miffi/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/miffi/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [159/430] Analyzing https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DingBao-sys/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sdevih/ip.git completed! +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chiaryan/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zengzihui/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chiaryan/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Jerome-j/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kaya3842/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chiaryan/ip.git to complete... +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ChrisHo1341/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChrisHo1341/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kaya3842/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hjuntan/ip.git... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hjuntan/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChrisHo1341/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ziyang27/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ziyang27/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [160/430] Analyzing https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sdevih/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zengzihui/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zengzihui/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [161/430] Analyzing https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KSSWSept20/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KSSWSept20/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [162/430] Analyzing https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/DingBao-sys/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jerome-j/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tituschewxj/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/choowengyan/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/choowengyan/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [89/430] Analyzing https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tituschewxj/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [90/430] Analyzing https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ForAeons/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ForAeons/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [91/430] Analyzing https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/guanquann/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Hibeom0929/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JukeBoxK/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/legionlegion/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kwuunnn/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kwuunnn/ip.git (master) completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AwJoey/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [163/430] Analyzing https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chiaryan/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AwJoey/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hjuntan/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ChrisHo1341/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Kaya3842/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ZhiWei1010/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ReflectiveObsidian/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ReflectiveObsidian/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chiaryan/ip.git completed! -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ZhiWei1010/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ReflectiveObsidian/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hjuntan/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NusMinato/ip.git... -Feb 07, 2024 1:16:02 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NusMinato/ip.git to complete... -Feb 07, 2024 1:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sdevih/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sdevih/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [164/430] Analyzing https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/legionlegion/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/DingBao-sys/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/DingBao-sys/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [165/430] Analyzing https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kaya3842/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kaya3842/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hjuntan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [166/430] Analyzing https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChrisHo1341/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/legionlegion/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Hibeom0929/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Hibeom0929/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [92/430] Analyzing https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NeoHW/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NeoHW/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [93/430] Analyzing https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tamagochuuu/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lynnetteeee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AwJoey/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ZhiWei1010/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NusMinato/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/legionlegion/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [167/430] Analyzing https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jerome-j/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jerome-j/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ReflectiveObsidian/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/soons1/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AwJoey/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [168/430] Analyzing https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/soons1/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ReflectiveObsidian/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/evedaktyl/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xuwen-ho/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/evedaktyl/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chiaryan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chewbum/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xuwen-ho/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NusMinato/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chewbum/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chewbum/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZhiWei1010/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChrisHo1341/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChrisHo1341/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [169/430] Analyzing https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ReflectiveObsidian/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZhiWei1010/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZhiWei1010/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [170/430] Analyzing https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hjuntan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hjuntan/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [171/430] Analyzing https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NusMinato/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chiaryan/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chiaryan/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AwJoey/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xuwen-ho/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/evedaktyl/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chewbum/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/soons1/ip.git completed! -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanjieling0/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [172/430] Analyzing https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sun-ruiheng/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhikaiong2001/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bgopi23/ip.git... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhikaiong2001/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bgopi23/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sun-ruiheng/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanjieling0/ip.git to complete... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ReflectiveObsidian/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ReflectiveObsidian/ip.git (master) completed! -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [173/430] Analyzing https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chewbum/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/soons1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JukeBoxK/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/guanquann/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/guanquann/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [94/430] Analyzing https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JukeBoxK/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [95/430] Analyzing https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lynnetteeee/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lynnetteeee/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/owenong1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [96/430] Analyzing https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ronnnnnnnnn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tamagochuuu/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tamagochuuu/ip.git (master) completed! +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HongRay/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [97/430] Analyzing https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/willowisp01/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/evedaktyl/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanjieling0/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/soons1/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanjieling0/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sun-ruiheng/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chewbum/ip.git completed! +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhikaiong2001/ip.git... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sun-ruiheng/ip.git to complete... +Feb 07, 2024 2:39:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhikaiong2001/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xuwen-ho/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bgopi23/ip.git... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/owenong1/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/owenong1/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bgopi23/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [98/430] Analyzing https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HongRay/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HongRay/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [99/430] Analyzing https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanjieling0/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Wyrkx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dhlee03/ip.git... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Benson15912/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dhlee03/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sun-ruiheng/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhikaiong2001/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ReganChoy/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LWS49/ip.git... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ronnnnnnnnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ReganChoy/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ronnnnnnnnn/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [100/430] Analyzing https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LWS49/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/willowisp01/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Alteqa/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/willowisp01/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [101/430] Analyzing https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kailinteoo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Wyrkx/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Wyrkx/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [102/430] Analyzing https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bgopi23/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChillinRage/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MaYuehan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChillinRage/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dhlee03/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ReganChoy/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Shauryan123/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Colex2000/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LWS49/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Shauryan123/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HusseinSafwan02/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HusseinSafwan02/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Colex2000/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Alteqa/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Alteqa/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [103/430] Analyzing https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhenghuil/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kailinteoo/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChillinRage/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kailinteoo/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [104/430] Analyzing https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZHANGTIANYAO1/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZHANGTIANYAO1/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sarjinius/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Shauryan123/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Windofbitter/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HusseinSafwan02/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Windofbitter/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Colex2000/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/quelinxiao/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ararchch/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ararchch/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/quelinxiao/ip.git to complete... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhenghuil/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhenghuil/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [105/430] Analyzing https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sarjinius/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sarjinius/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [106/430] Analyzing https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/appleraincoat/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Benson15912/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Benson15912/ip.git (master) completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [107/430] Analyzing https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/reetmitra/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZHANGTIANYAO1/ip.git completed! +Feb 07, 2024 2:39:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/taeewonnn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KiatLun/ip.git... +Feb 07, 2024 2:39:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KiatLun/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ararchch/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/quelinxiao/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Windofbitter/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Bandov/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/peienlim/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Bandov/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zoebelle-pang/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/peienlim/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zoebelle-pang/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MaYuehan/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MaYuehan/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [108/430] Analyzing https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/H4mes/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/reetmitra/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/reetmitra/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [109/430] Analyzing https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/appleraincoat/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/appleraincoat/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [110/430] Analyzing https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jamessinmaojun/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChocoRagdoll/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/taeewonnn/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/H4mes/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/taeewonnn/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/H4mes/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [111/430] Analyzing https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [112/430] Analyzing https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/peienlim/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ondretann/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tayziyi/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ashleygoh1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tayziyi/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zoebelle-pang/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/R-Laksh/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/R-Laksh/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Bandov/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Cedricaca/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KiatLun/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Cedricaca/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/matthewken19/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/matthewken19/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tayziyi/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/R-Laksh/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/taufiq/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gingerbreaf/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/taufiq/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/matthewken19/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gingerbreaf/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cedricaca/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zack-Tay/ip.git... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zack-Tay/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/darryl-chan/ip.git... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ondretann/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ondretann/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/darryl-chan/ip.git to complete... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [113/430] Analyzing https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChocoRagdoll/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChocoRagdoll/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [114/430] Analyzing https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/justincred/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JerryWang0000/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jamessinmaojun/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jamessinmaojun/ip.git (master) completed! +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [115/430] Analyzing https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/julia-cp/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/taufiq/ip.git completed! +Feb 07, 2024 2:39:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gingerbreaf/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JustWeiHao/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JustWeiHao/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/brennalaurentan/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Zack-Tay/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/brennalaurentan/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/0-yibai/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/darryl-chan/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/0-yibai/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JerryWang0000/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JerryWang0000/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [116/430] Analyzing https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Apzure/ip.git... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Apzure/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/justincred/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/justincred/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [117/430] Analyzing https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ashleygoh1/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ashleygoh1/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Tanzhiheng26/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [118/430] Analyzing https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BryanL2303/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sethteo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/julia-cp/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/julia-cp/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [119/430] Analyzing https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Joelwang22/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JustWeiHao/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jxunze/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/brennalaurentan/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/0-yibai/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jxunze/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Apzure/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alphajae11/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yespiggy/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alphajae11/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/raysonchia/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/raysonchia/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yespiggy/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Tanzhiheng26/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Tanzhiheng26/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [120/430] Analyzing https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yespiggy/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jxunze/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bachletuankhai/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/joelgoh1/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/raysonchia/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alphajae11/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bachletuankhai/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/joelgoh1/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YuZizhen/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SherwynNg/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SimKianSeng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YuZizhen/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Joelwang22/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Joelwang22/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SherwynNg/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [121/430] Analyzing https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ibnu2651/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sethteo/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sethteo/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [122/430] Analyzing https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BryanL2303/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/guohuang88/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BryanL2303/ip.git (master) completed! +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [123/430] Analyzing https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bachletuankhai/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kab-dot/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rizkidelta/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joelgoh1/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kab-dot/ip.git to complete... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YuZizhen/ip.git completed! +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/belligerentbeagle/ip.git... +Feb 07, 2024 2:39:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ongzhili/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/belligerentbeagle/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ongzhili/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SherwynNg/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Dethada/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Dethada/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SimKianSeng/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SimKianSeng/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [124/430] Analyzing https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ongzhili/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Murugan-Maniish/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yuhinarita/ip.git... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rizkidelta/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kab-dot/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rizkidelta/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/belligerentbeagle/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [125/430] Analyzing https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vnnamng/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yuhinarita/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DominicFuMJ/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vnnamng/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ibnu2651/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ibnu2651/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AjayArvind2207/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [126/430] Analyzing https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Dethada/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DominicFuMJ/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Anant1902/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Anant1902/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Teee728/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/guohuang88/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AjayArvind2207/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/guohuang88/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AjayArvind2207/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [127/430] Analyzing https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [128/430] Analyzing https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shaunlxw/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuhinarita/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dillontkh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/redcolorbicycle/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vnnamng/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/redcolorbicycle/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yorklim/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yorklim/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DominicFuMJ/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Wongqingyee/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Wongqingyee/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Anant1902/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YowSiaoKang/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YowSiaoKang/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Murugan-Maniish/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Murugan-Maniish/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [129/430] Analyzing https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jmsandiegoo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Teee728/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Teee728/ip.git (master) completed! +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [130/430] Analyzing https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ryanlimdx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/redcolorbicycle/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LargeCrowd/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yorklim/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LargeCrowd/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Wongqingyee/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/irwynliong/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jannaleong/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YowSiaoKang/ip.git completed! +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jannaleong/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kaiyi27/ip.git... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/irwynliong/ip.git to complete... +Feb 07, 2024 2:39:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kaiyi27/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shaunlxw/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shaunlxw/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [131/430] Analyzing https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ryanlimdx/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ryanlimdx/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [132/430] Analyzing https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chiralcentre/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LargeCrowd/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KhoonSun47/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/irwynliong/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aureliony/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/azumieflare/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jannaleong/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/azumieflare/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aureliony/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/qinboan/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kaiyi27/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tengcharmaine/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/qinboan/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tengcharmaine/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dillontkh/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dillontkh/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [133/430] Analyzing https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/0liverkong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jmsandiegoo/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jmsandiegoo/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [134/430] Analyzing https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ThatGirlJam/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aureliony/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/qinboan/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/moguries/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Joshy837/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/azumieflare/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/moguries/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Joshy837/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tengcharmaine/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chengjunyuan/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chengjunyuan/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChrysanthemumT/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChrysanthemumT/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KhoonSun47/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KhoonSun47/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [135/430] Analyzing https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chiralcentre/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chiralcentre/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [136/430] Analyzing https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xuelinglow/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yashpola/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ThatGirlJam/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ThatGirlJam/ip.git (master) completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [137/430] Analyzing https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Joshy837/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/moguries/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chengjunyuan/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/breezetall/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/camille-readbean/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChrysanthemumT/ip.git completed! +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dabzpengu/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cleowenxuan/ip.git... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/camille-readbean/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cleowenxuan/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dabzpengu/ip.git to complete... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ziiqii/ip.git... +Feb 07, 2024 2:39:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ziiqii/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/0liverkong/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/0liverkong/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [138/430] Analyzing https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JiaXinEu/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/camille-readbean/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dabzpengu/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rertyy/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rertyy/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xiaorui-ui/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cleowenxuan/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xiaorui-ui/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TarinPairor/ip.git... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TarinPairor/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ziiqii/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/amanzainal/ip.git... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xuelinglow/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/breezetall/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xuelinglow/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/breezetall/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [139/430] Analyzing https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [140/430] Analyzing https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/amanzainal/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yashpola/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yashpola/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yisiox/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [141/430] Analyzing https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/maiyasaliha/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/triciiaaa/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xiaorui-ui/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TarinPairor/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/minwaiphyo/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Javiery3889/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/minwaiphyo/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Javiery3889/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/amanzainal/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jimseah-0116/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jimseah-0116/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/triciiaaa/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/triciiaaa/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [142/430] Analyzing https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rertyy/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jolonauh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/VatsalVitosh/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/VatsalVitosh/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/minwaiphyo/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/maiyasaliha/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JiaXinEu/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/maiyasaliha/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JiaXinEu/ip.git (master) completed! +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [143/430] Analyzing https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [144/430] Analyzing https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/narwhalsilent/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/narwhalsilent/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wolffe88/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Javiery3889/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChuaZiLong/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alvinnzz/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChuaZiLong/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jimseah-0116/ip.git completed! +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Lin-Shuang-Shuang/ip.git... +Feb 07, 2024 2:39:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Lin-Shuang-Shuang/ip.git to complete... +Feb 07, 2024 2:39:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/VatsalVitosh/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yisiox/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/whelan-low/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yisiox/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [145/430] Analyzing https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/whelan-low/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanyunchao/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/narwhalsilent/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ThitipatC/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ThitipatC/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChuaZiLong/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Lin-Shuang-Shuang/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YuvBindal/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jolonauh/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jolonauh/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [146/430] Analyzing https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YuvBindal/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/doyelee0313/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/doyelee0313/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tsulim/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/whelan-low/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/taniatsq/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wolffe88/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/taniatsq/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wolffe88/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [147/430] Analyzing https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alvinnzz/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alvinnzz/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [148/430] Analyzing https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/modembcc/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ThitipatC/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/menatahari/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Rikko1204/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanyunchao/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanyunchao/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [149/430] Analyzing https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YuvBindal/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Rikko1204/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/doyelee0313/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Yskie/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yashma-sonara/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Yskie/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Fidget-Spinner/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Fidget-Spinner/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/taniatsq/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/FangRuoqing/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/FangRuoqing/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Rikko1204/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhuuyicheng/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhuuyicheng/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Yskie/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/smolegz/ip.git... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/menatahari/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Fidget-Spinner/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/menatahari/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/smolegz/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [150/430] Analyzing https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jinhanfromNUS/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jinhanfromNUS/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Hwww23/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/FangRuoqing/ip.git completed! +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/0nesheep/ip.git... +Feb 07, 2024 2:39:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/0nesheep/ip.git to complete... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yashma-sonara/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yashma-sonara/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [151/430] Analyzing https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tsulim/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tsulim/ip.git (master) completed! +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [152/430] Analyzing https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rickkoh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Zer0Legion/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhuuyicheng/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/modembcc/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/modembcc/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/smolegz/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jinhanfromNUS/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AdityaB4/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [153/430] Analyzing https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HM33-Stu/ip.git... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Hwww23/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Hwww23/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [154/430] Analyzing https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HM33-Stu/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AdityaB4/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yap-zong-xin/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yap-zong-xin/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/maze508/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/eunrcn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/0nesheep/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jocelyn-soh/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jocelyn-soh/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HM33-Stu/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/felixchanyy/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AdityaB4/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/felixchanyy/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yap-zong-xin/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/donwong2308/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/minreiseah/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/donwong2308/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/minreiseah/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jocelyn-soh/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Pluiexo/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Pluiexo/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/eunrcn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/eunrcn/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [155/430] Analyzing https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rickkoh/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rickkoh/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [156/430] Analyzing https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ziyang27/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/miffi/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/maze508/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/maze508/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zer0Legion/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [157/430] Analyzing https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/felixchanyy/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zer0Legion/ip.git (master) completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [158/430] Analyzing https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Emberlynn-Loo/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/minreiseah/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/donwong2308/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Emberlynn-Loo/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DhiraPT/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/howen02/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KSSWSept20/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/howen02/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DhiraPT/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Pluiexo/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kwuunnn/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shunjieee/ip.git... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shunjieee/ip.git to complete... +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Emberlynn-Loo/ip.git completed! +Feb 07, 2024 2:39:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nigel27022001/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nigel27022001/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/howen02/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DhiraPT/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shayaansultan/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mahadhir247/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mahadhir247/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shayaansultan/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shunjieee/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GiselleTan/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GiselleTan/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/miffi/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/miffi/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [159/430] Analyzing https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KSSWSept20/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KSSWSept20/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [160/430] Analyzing https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zengzihui/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/DingBao-sys/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nigel27022001/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lihaoquan/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lihaoquan/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ziyang27/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ziyang27/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mahadhir247/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [161/430] Analyzing https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shayaansultan/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PallonCX/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yadunut/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GiselleTan/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PallonCX/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yadunut/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yiwern5/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kwuunnn/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sdevih/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kwuunnn/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yiwern5/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [162/430] Analyzing https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jerome-j/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zengzihui/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zengzihui/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [163/430] Analyzing https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Kaya3842/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lihaoquan/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/saiutkarsh33/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/saiutkarsh33/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PallonCX/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yadunut/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Dexter-Wong/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Dexter-Wong/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/h4ow3i/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/h4ow3i/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sdevih/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sdevih/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [164/430] Analyzing https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/saiutkarsh33/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/legionlegion/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Derekljh/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Dexter-Wong/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Derekljh/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jayne1010/ip.git... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/h4ow3i/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jayne1010/ip.git to complete... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/officialchengyud/ip.git... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kaya3842/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kaya3842/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [165/430] Analyzing https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/DingBao-sys/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/DingBao-sys/ip.git (master) completed! +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yiwern5/ip.git completed! +Feb 07, 2024 2:39:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [166/430] Analyzing https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/officialchengyud/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chenyixin0/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chenyixin0/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChrisHo1341/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chiaryan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChrisHo1341/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChrisHo1341/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [167/430] Analyzing https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hjuntan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/legionlegion/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/legionlegion/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [168/430] Analyzing https://github.com/AwJoey/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/officialchengyud/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jerome-j/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jerome-j/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shavonneg/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [169/430] Analyzing https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Derekljh/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shavonneg/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chenyixin0/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/caitlyntang/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/caitlyntang/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AwJoey/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AwJoey/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/getsquared/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/getsquared/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jayne1010/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZhiWei1010/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ashleyy2444/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ashleyy2444/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chiaryan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chiaryan/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [170/430] Analyzing https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ReflectiveObsidian/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shavonneg/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhekaiii/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/caitlyntang/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/getsquared/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhekaiii/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/johnyoozhengxian/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/meenulekha/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/meenulekha/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/johnyoozhengxian/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ashleyy2444/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Li-Zizhen/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Li-Zizhen/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AwJoey/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AwJoey/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [174/430] Analyzing https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [171/430] Analyzing https://github.com/NusMinato/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NusMinato/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NusMinato/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZhiWei1010/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZhiWei1010/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [172/430] Analyzing https://github.com/evedaktyl/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hjuntan/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hjuntan/ip.git (master) completed! +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/evedaktyl/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [173/430] Analyzing https://github.com/soons1/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/soons1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/soons1/ip.git (master)... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhekaiii/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SimHanKiong/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SimHanKiong/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/johnyoozhengxian/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/meenulekha/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JuliaPoo/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JuliaPoo/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Li-Zizhen/ip.git completed! +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vannykin/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vannykin/ip.git to complete... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/teojunda/ip.git... +Feb 07, 2024 2:39:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/teojunda/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ReflectiveObsidian/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ReflectiveObsidian/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [174/430] Analyzing https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chewbum/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/evedaktyl/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SimHanKiong/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/soons1/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ko-Khan/ip.git... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NusMinato/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NusMinato/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [175/430] Analyzing https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/evedaktyl/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/evedaktyl/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [176/430] Analyzing https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ko-Khan/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/teojunda/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vannykin/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xuwen-ho/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chewbum/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chewbum/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jyztintan/ip.git... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/soons1/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jyztintan/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/soons1/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sun-ruiheng/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanjieling0/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bgopi23/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhikaiong2001/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [176/430] Analyzing https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dhlee03/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [177/430] Analyzing https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ReganChoy/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dhlee03/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LWS49/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChillinRage/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LWS49/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ReganChoy/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanjieling0/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [177/430] Analyzing https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JuliaPoo/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jasperng-nus/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/delishad21/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/delishad21/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jasperng-nus/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhikaiong2001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ko-Khan/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/IamZhenHong/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/IamZhenHong/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xuwen-ho/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jyztintan/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jasperng-nus/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xuwen-ho/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xuwen-ho/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [178/430] Analyzing https://github.com/sun-ruiheng/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shamesjen/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ma-Yirui/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shamesjen/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/delishad21/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ma-Yirui/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/timothysashimi/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sun-ruiheng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChillinRage/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/timothysashimi/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chewbum/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chewbum/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [179/430] Analyzing https://github.com/bgopi23/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bgopi23/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/evedaktyl/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/evedaktyl/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [178/430] Analyzing https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xuwen-ho/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhikaiong2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xuwen-ho/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [179/430] Analyzing https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanjieling0/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanjieling0/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanjieling0/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [180/430] Analyzing https://github.com/ReganChoy/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/IamZhenHong/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Xilef121/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Xilef121/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ReganChoy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ReganChoy/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shamesjen/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SamuelZero1/ip.git... +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SamuelZero1/ip.git to complete... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ma-Yirui/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhikaiong2001/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhikaiong2001/ip.git (master) completed! +Feb 07, 2024 2:39:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sun-ruiheng/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sun-ruiheng/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bgopi23/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bgopi23/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dhlee03/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Shauryan123/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [180/430] Analyzing https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LWS49/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Shauryan123/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ReganChoy/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChillinRage/ip.git completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [181/430] Analyzing https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Colex2000/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [181/430] Analyzing https://github.com/dhlee03/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [182/430] Analyzing https://github.com/LWS49/ip.git (master)... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/swtan346/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/timothysashimi/ip.git completed! +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LWS49/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dhlee03/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Colex2000/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HusseinSafwan02/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZHANGTIANYAO1/ip.git... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZHANGTIANYAO1/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LWS49/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HusseinSafwan02/ip.git to complete... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhikaiong2001/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhikaiong2001/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [182/430] Analyzing https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ReganChoy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanjieling0/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/faaheem13/ip.git... +Feb 07, 2024 2:39:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/swtan346/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/faaheem13/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Xilef121/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bgopi23/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChenXy128/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChenXy128/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LWS49/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanjieling0/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bgopi23/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bgopi23/ip.git (master) completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [183/430] Analyzing https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dhlee03/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dhlee03/ip.git (master) completed! -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChillinRage/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [184/430] Analyzing https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LWS49/ip.git (master)... -Feb 07, 2024 1:16:04 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LWS49/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [185/430] Analyzing https://github.com/Colex2000/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Shauryan123/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SamuelZero1/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChillinRage/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChillinRage/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Colex2000/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Colex2000/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Arixeyeion/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Arixeyeion/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/faaheem13/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/swtan346/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Darylgolden/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tankh99/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Darylgolden/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tankh99/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ReganChoy/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ReganChoy/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChillinRage/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChillinRage/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HusseinSafwan02/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [184/430] Analyzing https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Windofbitter/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Windofbitter/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [186/430] Analyzing https://github.com/HusseinSafwan02/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HusseinSafwan02/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Colex2000/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZHANGTIANYAO1/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [185/430] Analyzing https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/quelinxiao/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Shauryan123/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ararchch/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [186/430] Analyzing https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [187/430] Analyzing https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KiatLun/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/quelinxiao/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZHANGTIANYAO1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ararchch/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KiatLun/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Shauryan123/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Colex2000/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChenXy128/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Tsenrae/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Tsenrae/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Darylgolden/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/starsia/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/starsia/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Arixeyeion/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Colex2000/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChillinRage/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HusseinSafwan02/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HusseinSafwan02/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [187/430] Analyzing https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hjungwoo01/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hjungwoo01/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Colex2000/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Colex2000/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Windofbitter/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Bandov/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [188/430] Analyzing https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Bandov/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/quelinxiao/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChillinRage/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChillinRage/ip.git (master) completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [188/430] Analyzing https://github.com/ararchch/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [189/430] Analyzing https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/peienlim/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Windofbitter/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/peienlim/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Shauryan123/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZHANGTIANYAO1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/quelinxiao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Shauryan123/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KiatLun/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ararchch/ip.git completed! -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zoebelle-pang/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [190/430] Analyzing https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zoebelle-pang/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tayziyi/ip.git... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KiatLun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tayziyi/ip.git to complete... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZHANGTIANYAO1/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [191/430] Analyzing https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Tsenrae/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ararchch/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YuSoonZ/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tankh99/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YuSoonZ/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Darkarche3/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Darkarche3/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Shauryan123/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Shauryan123/ip.git (master) completed! +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/quelinxiao/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [190/430] Analyzing https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/starsia/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Vision-2000/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Vision-2000/ip.git to complete... +Feb 07, 2024 2:39:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/quelinxiao/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/quelinxiao/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KiatLun/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KiatLun/ip.git (master) completed! -Feb 07, 2024 1:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Windofbitter/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [191/430] Analyzing https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hjungwoo01/ip.git completed! +Feb 07, 2024 2:39:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/peienlim/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chiageng/ip.git... +Feb 07, 2024 2:39:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chiageng/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Darkarche3/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YuSoonZ/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/logical-1985516/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/logical-1985516/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ananya21/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ananya21/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Vision-2000/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/purivirakarin/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/purivirakarin/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/peienlim/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ararchch/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/R-Laksh/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [192/430] Analyzing https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ararchch/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/R-Laksh/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Bandov/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chiageng/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [192/430] Analyzing https://github.com/zoebelle-pang/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/joenus/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/joenus/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zoebelle-pang/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zoebelle-pang/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/peienlim/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ananya21/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/logical-1985516/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/peienlim/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jessicawyz/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [193/430] Analyzing https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Cedricaca/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/peienlim/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Cedricaca/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/casaarlai/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jessicawyz/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/casaarlai/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Bandov/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zoebelle-pang/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/matthewken19/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [194/430] Analyzing https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tayziyi/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/matthewken19/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/taufiq/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/taufiq/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zoebelle-pang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Windofbitter/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Windofbitter/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [195/430] Analyzing https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZHANGTIANYAO1/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zoebelle-pang/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zoebelle-pang/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZHANGTIANYAO1/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [194/430] Analyzing https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [195/430] Analyzing https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KiatLun/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/R-Laksh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/purivirakarin/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ryo-Seah/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ryo-Seah/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joenus/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jeremiahlzz/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jeremiahlzz/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jessicawyz/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/macareonie/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/macareonie/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/casaarlai/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chin-herng/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chin-herng/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KiatLun/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KiatLun/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [196/430] Analyzing https://github.com/tayziyi/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tayziyi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/peienlim/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/peienlim/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ryo-Seah/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gowthaman-01/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jeremiahlzz/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gowthaman-01/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Joseph31416/ip.git... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Joseph31416/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tayziyi/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tayziyi/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Windofbitter/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Windofbitter/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Bandov/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Bandov/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/R-Laksh/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [196/430] Analyzing https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gingerbreaf/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gingerbreaf/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/R-Laksh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cedricaca/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [197/430] Analyzing https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zack-Tay/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zack-Tay/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [197/430] Analyzing https://github.com/matthewken19/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [198/430] Analyzing https://github.com/Cedricaca/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tayziyi/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/R-Laksh/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/R-Laksh/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [199/430] Analyzing https://github.com/taufiq/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/matthewken19/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/matthewken19/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Cedricaca/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/matthewken19/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/taufiq/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [198/430] Analyzing https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/darryl-chan/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [199/430] Analyzing https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JustWeiHao/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/darryl-chan/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JustWeiHao/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tayziyi/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tayziyi/ip.git (master) completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/macareonie/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chin-herng/ip.git completed! +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [200/430] Analyzing https://github.com/gingerbreaf/ip.git (master)... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/taufiq/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/matthewken19/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/R-Laksh/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/R-Laksh/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/radeon2525/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ejnan/ip.git... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/radeon2525/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ejnan/ip.git to complete... +Feb 07, 2024 2:39:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gingerbreaf/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gingerbreaf/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gowthaman-01/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jskimdev/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jskimdev/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Joseph31416/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Chiarena/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Chiarena/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/radeon2525/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Cedricaca/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ejnan/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Cedricaca/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gingerbreaf/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [200/430] Analyzing https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/brennalaurentan/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/brennalaurentan/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gingerbreaf/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [201/430] Analyzing https://github.com/Zack-Tay/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chonghaoen/ip.git... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/taufiq/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/taufiq/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/CJerrong/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/CJerrong/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chonghaoen/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/matthewken19/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/matthewken19/ip.git (master) completed! -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Zack-Tay/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [201/430] Analyzing https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/0-yibai/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/0-yibai/ip.git to complete... -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Zack-Tay/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/darryl-chan/ip.git completed! -Feb 07, 2024 1:16:06 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [202/430] Analyzing https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Apzure/ip.git... -Feb 07, 2024 1:16:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Apzure/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/darryl-chan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JustWeiHao/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/taufiq/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/taufiq/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/taufiq/ip.git (master) completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jskimdev/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [203/430] Analyzing https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jxunze/ip.git... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jxunze/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Chiarena/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/qinxutan/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/billyhoce/ip.git... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gingerbreaf/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/billyhoce/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gingerbreaf/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/qinxutan/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JustWeiHao/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zack-Tay/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zack-Tay/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/brennalaurentan/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [204/430] Analyzing https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alphajae11/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alphajae11/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/brennalaurentan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/0-yibai/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CJerrong/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chonghaoen/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/4llysa/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/4llysa/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TopKec/ip.git... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zack-Tay/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TopKec/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zack-Tay/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zack-Tay/ip.git (master) completed! +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [205/430] Analyzing https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yespiggy/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yespiggy/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/0-yibai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/billyhoce/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tahsinhasem/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tahsinhasem/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/qinxutan/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MarcusGitty/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MarcusGitty/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/4llysa/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TopKec/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shawnnlimm/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/huekoh/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/huekoh/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shawnnlimm/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JustWeiHao/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/brennalaurentan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/brennalaurentan/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JustWeiHao/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jxunze/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tahsinhasem/ip.git completed! +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [206/430] Analyzing https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JonChong98/ip.git... +Feb 07, 2024 2:39:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JonChong98/ip.git to complete... +Feb 07, 2024 2:39:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Apzure/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JustWeiHao/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/raysonchia/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [206/430] Analyzing https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/raysonchia/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jxunze/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/MarcusGitty/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JustWeiHao/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/STELLA-LYE/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JustWeiHao/ip.git (master) completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [207/430] Analyzing https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/huekoh/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shawnnlimm/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/STELLA-LYE/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nyankoclaws/ip.git... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/darryl-chan/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/darryl-chan/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [208/430] Analyzing https://github.com/yespiggy/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/meowwtama/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nyankoclaws/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jxunze/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/meowwtama/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yespiggy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yespiggy/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JonChong98/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/0-yibai/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KohGuanZeh/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/0-yibai/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alphajae11/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [207/430] Analyzing https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bachletuankhai/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bachletuankhai/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Apzure/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [208/430] Analyzing https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/joelgoh1/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [209/430] Analyzing https://github.com/alphajae11/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KohGuanZeh/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/alphajae11/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/joelgoh1/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yespiggy/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Apzure/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [209/430] Analyzing https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YuZizhen/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YuZizhen/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yespiggy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jxunze/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/raysonchia/ip.git completed! -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jxunze/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SherwynNg/ip.git... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Apzure/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Apzure/ip.git (master) completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/STELLA-LYE/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [210/430] Analyzing https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SherwynNg/ip.git to complete... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nuyer/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nyankoclaws/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nuyer/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SeaHogs/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/meowwtama/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SeaHogs/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/raysonchia/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/S-Aishvarya/ip.git... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/S-Aishvarya/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yespiggy/ip.git (master)... -Feb 07, 2024 1:16:07 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yespiggy/ip.git (master) completed! -Feb 07, 2024 1:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bachletuankhai/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kab-dot/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KohGuanZeh/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [211/430] Analyzing https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kab-dot/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Apzure/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Apzure/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tejas-1405/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tejas-1405/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bachletuankhai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jxunze/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jxunze/ip.git (master) completed! +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [212/430] Analyzing https://github.com/joelgoh1/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alphajae11/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nuyer/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/alphajae11/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/youdonnnn/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/alphajae11/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joelgoh1/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [212/430] Analyzing https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/belligerentbeagle/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/belligerentbeagle/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YuZizhen/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [213/430] Analyzing https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ongzhili/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/joelgoh1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ongzhili/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [213/430] Analyzing https://github.com/YuZizhen/ip.git (master)... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/youdonnnn/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SeaHogs/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tcjazwei/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YuZizhen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/S-Aishvarya/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tcjazwei/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tejas-1405/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jieqiboh/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jieqiboh/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wongkj12/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wongkj12/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "tcjazwei/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/tcjazwei/ip.git' 'repos/tcjazwei_ip/ip_bare' on path . : +Cloning into bare repository 'repos/tcjazwei_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GERARDJM018/ip.git... +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GERARDJM018/ip.git to complete... +Feb 07, 2024 2:39:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/youdonnnn/ip.git completed! +Feb 07, 2024 2:39:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/blaukc/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/blaukc/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/raysonchia/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/raysonchia/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [214/430] Analyzing https://github.com/SherwynNg/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jieqiboh/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wongkj12/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YuZizhen/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/YuZizhen/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SherwynNg/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SherwynNg/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [215/430] Analyzing https://github.com/ongzhili/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tohlh/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hiivan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hiivan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ongzhili/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ongzhili/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tohlh/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GERARDJM018/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/darkvoid32/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/darkvoid32/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/blaukc/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yapxuanxuan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yapxuanxuan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bachletuankhai/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/joelgoh1/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bachletuankhai/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/joelgoh1/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bachletuankhai/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [216/430] Analyzing https://github.com/kab-dot/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/bachletuankhai/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kab-dot/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/belligerentbeagle/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Dethada/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [214/430] Analyzing https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Dethada/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [215/430] Analyzing https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yuhinarita/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yuhinarita/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [217/430] Analyzing https://github.com/belligerentbeagle/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tohlh/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kab-dot/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/belligerentbeagle/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ongzhili/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [216/430] Analyzing https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vnnamng/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SherwynNg/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [217/430] Analyzing https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DominicFuMJ/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vnnamng/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DominicFuMJ/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SherwynNg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ongzhili/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kab-dot/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kab-dot/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/belligerentbeagle/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/belligerentbeagle/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanjiajiajun/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanjiajiajun/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/darkvoid32/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Greg-Tan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hiivan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kervyntan/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Greg-Tan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kervyntan/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yapxuanxuan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SherwynNg/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SherwynNg/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AndrewOng2066/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [218/430] Analyzing https://github.com/Dethada/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ongzhili/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AndrewOng2066/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ongzhili/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuhinarita/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Dethada/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Dethada/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ongzhili/ip.git (master) completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [218/430] Analyzing https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Anant1902/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Anant1902/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [219/430] Analyzing https://github.com/yuhinarita/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yuhinarita/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Dethada/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [219/430] Analyzing https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/redcolorbicycle/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/redcolorbicycle/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vnnamng/ip.git completed! -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kab-dot/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kab-dot/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kab-dot/ip.git (master) completed! +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [220/430] Analyzing https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yorklim/ip.git... -Feb 07, 2024 1:16:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yorklim/ip.git to complete... -Feb 07, 2024 1:16:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Dethada/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanjiajiajun/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Greg-Tan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/g-tejas/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RyanNgWH/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kervyntan/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RyanNgWH/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vnnamng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DominicFuMJ/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/g-tejas/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yeoshuheng/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yeoshuheng/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/belligerentbeagle/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AndrewOng2066/ip.git completed! +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jonpwk/ip.git... +Feb 07, 2024 2:39:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jonpwk/ip.git to complete... +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/belligerentbeagle/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/belligerentbeagle/ip.git (master) completed! +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [221/430] Analyzing https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Wongqingyee/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Wongqingyee/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yuhinarita/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yuhinarita/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [222/430] Analyzing https://github.com/Anant1902/ip.git (master)... +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DominicFuMJ/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Anant1902/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Anant1902/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/g-tejas/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xinen26/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RyanNgWH/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xinen26/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gerteck/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gerteck/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yeoshuheng/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jonpwk/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/drustanyjt/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/angsongyee/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/angsongyee/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/drustanyjt/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/DominicFuMJ/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/DominicFuMJ/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vnnamng/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vnnamng/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Anant1902/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [222/430] Analyzing https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YowSiaoKang/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YowSiaoKang/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [223/430] Analyzing https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Anant1902/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/redcolorbicycle/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Dethada/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Dethada/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yorklim/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LargeCrowd/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/redcolorbicycle/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [223/430] Analyzing https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LargeCrowd/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [224/430] Analyzing https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/irwynliong/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Wongqingyee/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/irwynliong/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/vnnamng/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [224/430] Analyzing https://github.com/yorklim/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Anant1902/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vnnamng/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vnnamng/ip.git (master) completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [225/430] Analyzing https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jannaleong/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yorklim/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jannaleong/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/redcolorbicycle/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Wongqingyee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gerteck/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xinen26/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Anant1902/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Anant1902/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/redcolorbicycle/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/redcolorbicycle/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YowSiaoKang/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alfaloo/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [226/430] Analyzing https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kaiyi27/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kaiyi27/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Wongqingyee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Wongqingyee/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ivan24004/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ivan24004/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alfaloo/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/angsongyee/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YowSiaoKang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Wongqingyee/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Wongqingyee/ip.git (master) completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LargeCrowd/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/irwynliong/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/drustanyjt/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cheahTJ/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bertrandong/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bertrandong/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cheahTJ/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/redcolorbicycle/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/redcolorbicycle/ip.git (master) completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [227/430] Analyzing https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aureliony/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alfaloo/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ivan24004/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/headcube1/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/headcube1/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LargeCrowd/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LargeCrowd/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/pjanthony2001/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/pjanthony2001/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cheahTJ/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bertrandong/ip.git completed! +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ruijietay/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sindhurajain/ip.git... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sindhurajain/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ruijietay/ip.git to complete... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YowSiaoKang/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/YowSiaoKang/ip.git (master)... +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YowSiaoKang/ip.git (master) completed! +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [228/430] Analyzing https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/azumieflare/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aureliony/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jannaleong/ip.git completed! -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/azumieflare/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/qinboan/ip.git... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/irwynliong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LargeCrowd/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/qinboan/ip.git to complete... -Feb 07, 2024 1:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yorklim/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yorklim/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [229/430] Analyzing https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jannaleong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Wongqingyee/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/headcube1/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ragnapop/ip.git... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Wongqingyee/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Wongqingyee/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [229/430] Analyzing https://github.com/jannaleong/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ragnapop/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LargeCrowd/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LargeCrowd/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kaiyi27/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [230/430] Analyzing https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tengcharmaine/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tengcharmaine/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sindhurajain/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/pjanthony2001/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jannaleong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jannaleong/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nobodyishappy/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ruijietay/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Pughal77/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kaiyi27/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nobodyishappy/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/YowSiaoKang/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YowSiaoKang/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/qinboan/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [231/430] Analyzing https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/moguries/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/moguries/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aureliony/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Joshy837/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/azumieflare/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chengjunyuan/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/qinboan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Joshy837/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PateShin/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PateShin/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Pughal77/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yorklim/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yorklim/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yorklim/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [231/430] Analyzing https://github.com/aureliony/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/aureliony/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/aureliony/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ragnapop/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jayllo-c/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jayllo-c/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Pughal77/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nobodyishappy/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gosongying/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PateShin/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/biinnnggggg/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gosongying/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/biinnnggggg/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ShanylOng/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ShanylOng/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chengjunyuan/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/irwynliong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/irwynliong/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [232/430] Analyzing https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/aureliony/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/qinboan/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/qinboan/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kaiyi27/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [232/430] Analyzing https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/qinboan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kaiyi27/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kaiyi27/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [233/430] Analyzing https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tengcharmaine/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChrysanthemumT/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChrysanthemumT/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/azumieflare/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jayllo-c/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jannaleong/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jannaleong/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KinTatHo/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [234/430] Analyzing https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KinTatHo/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/azumieflare/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/azumieflare/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/biinnnggggg/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gosongying/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ShanylOng/ip.git completed! +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Rishit02/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rahhulleee/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chaaaaun/ip.git... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Rishit02/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tengcharmaine/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kaiyi27/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kaiyi27/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/moguries/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/camille-readbean/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chaaaaun/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rahhulleee/ip.git to complete... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/qinboan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/qinboan/ip.git (master) completed! +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [235/430] Analyzing https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/camille-readbean/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Joshy837/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chengjunyuan/ip.git completed! -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dabzpengu/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/aureliony/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/moguries/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cleowenxuan/ip.git... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cleowenxuan/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dabzpengu/ip.git to complete... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/aureliony/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/aureliony/ip.git (master) completed! -Feb 07, 2024 1:16:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [236/430] Analyzing https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [236/430] Analyzing https://github.com/chengjunyuan/ip.git (master)... +Feb 07, 2024 2:39:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chengjunyuan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chengjunyuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KinTatHo/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Joshy837/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Rishit02/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JerryO3/ip.git... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/azumieflare/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/azumieflare/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [237/430] Analyzing https://github.com/Joshy837/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JerryO3/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tzaph/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tzaph/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chaaaaun/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Joshy837/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Joshy837/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rahhulleee/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RingoftheKing/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ashleyclx/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RingoftheKing/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ashleyclx/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [237/430] Analyzing https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChrysanthemumT/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ziiqii/ip.git... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chengjunyuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tengcharmaine/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tengcharmaine/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ziiqii/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chengjunyuan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/moguries/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/moguries/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [238/430] Analyzing https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChrysanthemumT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cleowenxuan/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/camille-readbean/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rertyy/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [239/430] Analyzing https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/moguries/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chengjunyuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xiaorui-ui/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chengjunyuan/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dabzpengu/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [240/430] Analyzing https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xiaorui-ui/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TarinPairor/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rertyy/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TarinPairor/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cleowenxuan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [239/430] Analyzing https://github.com/camille-readbean/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/moguries/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChrysanthemumT/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChrysanthemumT/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/moguries/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [240/430] Analyzing https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/camille-readbean/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dabzpengu/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tzaph/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JerryO3/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RingoftheKing/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/laney0808/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NatLeong/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ashleyclx/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NatLeong/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jajared/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/laney0808/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kailashgautham/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kailashgautham/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jajared/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dabzpengu/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dabzpengu/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [241/430] Analyzing https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cleowenxuan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joshy837/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joshy837/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [241/430] Analyzing https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cleowenxuan/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cleowenxuan/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dabzpengu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ziiqii/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [242/430] Analyzing https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/amanzainal/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/amanzainal/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChrysanthemumT/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChrysanthemumT/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ziiqii/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/laney0808/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/J-wang-CSMA/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jajared/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/J-wang-CSMA/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kinjalagarwal1810/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NatLeong/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kinjalagarwal1810/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kailashgautham/ip.git completed! +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NewtonKoh/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/UdhayaShan1/ip.git... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/UdhayaShan1/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NewtonKoh/ip.git to complete... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChrysanthemumT/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dabzpengu/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dabzpengu/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xiaorui-ui/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TarinPairor/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/minwaiphyo/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [243/430] Analyzing https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [244/430] Analyzing https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Javiery3889/ip.git... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cleowenxuan/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cleowenxuan/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [243/430] Analyzing https://github.com/xiaorui-ui/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChrysanthemumT/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/camille-readbean/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChrysanthemumT/ip.git (master) completed! +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/camille-readbean/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/minwaiphyo/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Javiery3889/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [244/430] Analyzing https://github.com/TarinPairor/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [245/430] Analyzing https://github.com/amanzainal/ip.git (master)... +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xiaorui-ui/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TarinPairor/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rertyy/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jimseah-0116/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [245/430] Analyzing https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jimseah-0116/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rertyy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/amanzainal/ip.git completed! -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/amanzainal/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/amanzainal/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/J-wang-CSMA/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanqinyong/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/UdhayaShan1/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kinjalagarwal1810/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NewtonKoh/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanqinyong/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/theman-oj10/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/c-j-lh/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/c-j-lh/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/theman-oj10/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jovantanyk/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jovantanyk/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/VatsalVitosh/ip.git... -Feb 07, 2024 1:16:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/VatsalVitosh/ip.git to complete... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ziiqii/ip.git (master)... -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ziiqii/ip.git (master) completed! -Feb 07, 2024 1:16:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [246/430] Analyzing https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xiaorui-ui/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xiaorui-ui/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TarinPairor/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/amanzainal/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TarinPairor/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/minwaiphyo/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/narwhalsilent/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ziiqii/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ziiqii/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [246/430] Analyzing https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xiaorui-ui/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [247/430] Analyzing https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/narwhalsilent/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Javiery3889/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [248/430] Analyzing https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChuaZiLong/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChuaZiLong/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xiaorui-ui/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/minwaiphyo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xiaorui-ui/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [248/430] Analyzing https://github.com/Javiery3889/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rertyy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanqinyong/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kappaccinoh/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Javiery3889/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jimseah-0116/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/minwaiphyo/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/minwaiphyo/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Lin-Shuang-Shuang/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [249/430] Analyzing https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Lin-Shuang-Shuang/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jimseah-0116/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/VatsalVitosh/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/whelan-low/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/whelan-low/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jovantanyk/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/theman-oj10/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kappaccinoh/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/c-j-lh/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/amanzainal/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/amanzainal/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/itstrueitstrueitsrealitsreal/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [249/430] Analyzing https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/agreatdayy/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/agreatdayy/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SampsonYe1999/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SampsonYe1999/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/minwaiphyo/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jimseah-0116/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/minwaiphyo/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/minwaiphyo/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [250/430] Analyzing https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/VatsalVitosh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/narwhalsilent/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ThitipatC/ip.git... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jimseah-0116/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ThitipatC/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jimseah-0116/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kappaccinoh/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/The-Dudeski/ip.git... +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SampsonYe1999/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/agreatdayy/ip.git completed! +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/The-Dudeski/ip.git to complete... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/VatsalVitosh/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/VatsalVitosh/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/VatsalVitosh/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [251/430] Analyzing https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/narwhalsilent/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rertyy/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rertyy/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChuaZiLong/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YuvBindal/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jimseah-0116/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jimseah-0116/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [252/430] Analyzing https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YuvBindal/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/VatsalVitosh/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/VatsalVitosh/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "The-Dudeski/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/The-Dudeski/ip.git' 'repos/The-Dudeski_ip/ip_bare' on path . : +Cloning into bare repository 'repos/The-Dudeski_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChuaZiLong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Javiery3889/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Javiery3889/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Lin-Shuang-Shuang/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/doyelee0313/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [253/430] Analyzing https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/doyelee0313/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Lin-Shuang-Shuang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/whelan-low/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/taniatsq/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [254/430] Analyzing https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/taniatsq/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Lin-Shuang-Shuang/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Lin-Shuang-Shuang/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/narwhalsilent/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/narwhalsilent/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChuaZiLong/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/whelan-low/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/narwhalsilent/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChuaZiLong/ip.git (master) completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ThitipatC/ip.git completed! -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Rikko1204/ip.git... -Feb 07, 2024 1:16:12 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [254/430] Analyzing https://github.com/whelan-low/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [255/430] Analyzing https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Rikko1204/ip.git to complete... -Feb 07, 2024 1:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rertyy/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rertyy/ip.git (master) completed! +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [256/430] Analyzing https://github.com/YuvBindal/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/whelan-low/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/whelan-low/ip.git (master)... +Feb 07, 2024 2:39:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ThitipatC/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/YuvBindal/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/YuvBindal/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Lin-Shuang-Shuang/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YuvBindal/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Yskie/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [256/430] Analyzing https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/whelan-low/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/whelan-low/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Yskie/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/YuvBindal/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/doyelee0313/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Lin-Shuang-Shuang/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Lin-Shuang-Shuang/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [257/430] Analyzing https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Fidget-Spinner/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Fidget-Spinner/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [258/430] Analyzing https://github.com/taniatsq/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YuvBindal/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ThitipatC/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/doyelee0313/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/taniatsq/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/FangRuoqing/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [258/430] Analyzing https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/FangRuoqing/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ThitipatC/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ThitipatC/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/taniatsq/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YuvBindal/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/YuvBindal/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/doyelee0313/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/doyelee0313/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Rikko1204/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ThitipatC/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ThitipatC/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [259/430] Analyzing https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhuuyicheng/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Yskie/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhuuyicheng/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [260/430] Analyzing https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/smolegz/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/smolegz/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Rikko1204/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Yskie/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/doyelee0313/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/doyelee0313/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/doyelee0313/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/taniatsq/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [261/430] Analyzing https://github.com/Fidget-Spinner/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/taniatsq/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/taniatsq/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Fidget-Spinner/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [261/430] Analyzing https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jinhanfromNUS/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jinhanfromNUS/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Fidget-Spinner/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/FangRuoqing/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/0nesheep/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [262/430] Analyzing https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/0nesheep/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Yskie/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/FangRuoqing/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Yskie/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Yskie/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Rikko1204/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Rikko1204/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhuuyicheng/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [263/430] Analyzing https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AdityaB4/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AdityaB4/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Rikko1204/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zhuuyicheng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/FangRuoqing/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/FangRuoqing/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/smolegz/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Rikko1204/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Rikko1204/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [264/430] Analyzing https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HM33-Stu/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HM33-Stu/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/FangRuoqing/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/smolegz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jinhanfromNUS/ip.git completed! -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yap-zong-xin/ip.git... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/FangRuoqing/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/FangRuoqing/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [265/430] Analyzing https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yap-zong-xin/ip.git to complete... -Feb 07, 2024 1:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Fidget-Spinner/ip.git (master)... -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Fidget-Spinner/ip.git (master) completed! -Feb 07, 2024 1:16:13 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jinhanfromNUS/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/0nesheep/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Fidget-Spinner/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Fidget-Spinner/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Fidget-Spinner/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [266/430] Analyzing https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jocelyn-soh/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jocelyn-soh/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/0nesheep/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AdityaB4/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/felixchanyy/ip.git... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhuuyicheng/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/felixchanyy/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhuuyicheng/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [267/430] Analyzing https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AdityaB4/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jinhanfromNUS/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhuuyicheng/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jinhanfromNUS/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jinhanfromNUS/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/smolegz/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HM33-Stu/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhuuyicheng/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/smolegz/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [268/430] Analyzing https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/donwong2308/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/donwong2308/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jinhanfromNUS/ip.git (master) completed! +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [267/430] Analyzing https://github.com/HM33-Stu/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [268/430] Analyzing https://github.com/yap-zong-xin/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [269/430] Analyzing https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HM33-Stu/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yap-zong-xin/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yap-zong-xin/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yap-zong-xin/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AdityaB4/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [269/430] Analyzing https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/minreiseah/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/minreiseah/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HM33-Stu/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HM33-Stu/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yap-zong-xin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/0nesheep/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/0nesheep/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AdityaB4/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AdityaB4/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jocelyn-soh/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [270/430] Analyzing https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Pluiexo/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Pluiexo/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jocelyn-soh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/0nesheep/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yap-zong-xin/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yap-zong-xin/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/felixchanyy/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AdityaB4/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AdityaB4/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/0nesheep/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/0nesheep/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [272/430] Analyzing https://github.com/donwong2308/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [273/430] Analyzing https://github.com/minreiseah/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [271/430] Analyzing https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Emberlynn-Loo/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Emberlynn-Loo/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/donwong2308/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/donwong2308/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jocelyn-soh/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/minreiseah/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/minreiseah/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/felixchanyy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jocelyn-soh/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jocelyn-soh/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/donwong2308/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [272/430] Analyzing https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DhiraPT/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DhiraPT/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/donwong2308/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/felixchanyy/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/minreiseah/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/felixchanyy/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [273/430] Analyzing https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/howen02/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/howen02/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [274/430] Analyzing https://github.com/Pluiexo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Pluiexo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Pluiexo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/minreiseah/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/minreiseah/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/donwong2308/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/donwong2308/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/minreiseah/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/minreiseah/ip.git (master) completed! -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Emberlynn-Loo/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [274/430] Analyzing https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shunjieee/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shunjieee/ip.git to complete... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Pluiexo/ip.git completed! -Feb 07, 2024 1:16:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [275/430] Analyzing https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nigel27022001/ip.git... -Feb 07, 2024 1:16:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nigel27022001/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [275/430] Analyzing https://github.com/Emberlynn-Loo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [276/430] Analyzing https://github.com/DhiraPT/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Emberlynn-Loo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Pluiexo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DhiraPT/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [276/430] Analyzing https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shayaansultan/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shayaansultan/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/felixchanyy/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DhiraPT/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Emberlynn-Loo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Emberlynn-Loo/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/howen02/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mahadhir247/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/felixchanyy/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/felixchanyy/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [277/430] Analyzing https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mahadhir247/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/howen02/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Pluiexo/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Pluiexo/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/DhiraPT/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/DhiraPT/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nigel27022001/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [278/430] Analyzing https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GiselleTan/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GiselleTan/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shunjieee/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lihaoquan/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [279/430] Analyzing https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lihaoquan/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nigel27022001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shayaansultan/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [280/430] Analyzing https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PallonCX/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Emberlynn-Loo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [278/430] Analyzing https://github.com/shunjieee/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Emberlynn-Loo/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Emberlynn-Loo/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [279/430] Analyzing https://github.com/nigel27022001/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shunjieee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PallonCX/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shayaansultan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nigel27022001/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nigel27022001/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shunjieee/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shunjieee/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mahadhir247/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [281/430] Analyzing https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yadunut/ip.git... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/howen02/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/howen02/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yadunut/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [280/430] Analyzing https://github.com/mahadhir247/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mahadhir247/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shayaansultan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shayaansultan/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DhiraPT/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/DhiraPT/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/DhiraPT/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [281/430] Analyzing https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shayaansultan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nigel27022001/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nigel27022001/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lihaoquan/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [282/430] Analyzing https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yiwern5/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yiwern5/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GiselleTan/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/saiutkarsh33/ip.git... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [283/430] Analyzing https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/saiutkarsh33/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lihaoquan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [282/430] Analyzing https://github.com/GiselleTan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GiselleTan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mahadhir247/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mahadhir247/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PallonCX/ip.git completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [284/430] Analyzing https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Dexter-Wong/ip.git... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/howen02/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/howen02/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/howen02/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [283/430] Analyzing https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Dexter-Wong/ip.git to complete... -Feb 07, 2024 1:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mahadhir247/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/GiselleTan/ip.git (master)... -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/GiselleTan/ip.git (master) completed! -Feb 07, 2024 1:16:15 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lihaoquan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [284/430] Analyzing https://github.com/PallonCX/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mahadhir247/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mahadhir247/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [285/430] Analyzing https://github.com/yadunut/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PallonCX/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yadunut/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [285/430] Analyzing https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/h4ow3i/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/h4ow3i/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lihaoquan/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lihaoquan/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yadunut/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/saiutkarsh33/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shayaansultan/ip.git (master)... +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shayaansultan/ip.git (master) completed! +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [286/430] Analyzing https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Derekljh/ip.git... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Derekljh/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/saiutkarsh33/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PallonCX/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PallonCX/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Dexter-Wong/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jayne1010/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [287/430] Analyzing https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jayne1010/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yadunut/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lihaoquan/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lihaoquan/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yadunut/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [287/430] Analyzing https://github.com/Dexter-Wong/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Dexter-Wong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/saiutkarsh33/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PallonCX/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/saiutkarsh33/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/h4ow3i/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [288/430] Analyzing https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/officialchengyud/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/officialchengyud/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/h4ow3i/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yiwern5/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yadunut/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PallonCX/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PallonCX/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [289/430] Analyzing https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chenyixin0/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chenyixin0/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yadunut/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yadunut/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [290/430] Analyzing https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yiwern5/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yiwern5/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/officialchengyud/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Dexter-Wong/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Dexter-Wong/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yiwern5/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Derekljh/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [290/430] Analyzing https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shavonneg/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shavonneg/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [291/430] Analyzing https://github.com/Derekljh/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Derekljh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/officialchengyud/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/officialchengyud/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [292/430] Analyzing https://github.com/chenyixin0/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/h4ow3i/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/h4ow3i/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Derekljh/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Derekljh/ip.git (master) completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/officialchengyud/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [291/430] Analyzing https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/caitlyntang/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/caitlyntang/ip.git to complete... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/officialchengyud/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chenyixin0/ip.git completed! -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/getsquared/ip.git... -Feb 07, 2024 1:16:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [292/430] Analyzing https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/getsquared/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jayne1010/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [293/430] Analyzing https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ashleyy2444/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ashleyy2444/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chenyixin0/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Derekljh/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jayne1010/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shavonneg/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhekaiii/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhekaiii/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yiwern5/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yiwern5/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Derekljh/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Derekljh/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [294/430] Analyzing https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shavonneg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/officialchengyud/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/officialchengyud/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chenyixin0/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chenyixin0/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jayne1010/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jayne1010/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [295/430] Analyzing https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/getsquared/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shavonneg/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shavonneg/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/caitlyntang/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [295/430] Analyzing https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/johnyoozhengxian/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/johnyoozhengxian/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ashleyy2444/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [296/430] Analyzing https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/meenulekha/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/meenulekha/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jayne1010/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [296/430] Analyzing https://github.com/caitlyntang/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yiwern5/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jayne1010/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jayne1010/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yiwern5/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [297/430] Analyzing https://github.com/ashleyy2444/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yiwern5/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/caitlyntang/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [298/430] Analyzing https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ashleyy2444/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhekaiii/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/caitlyntang/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/caitlyntang/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhekaiii/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [297/430] Analyzing https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Li-Zizhen/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Li-Zizhen/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ashleyy2444/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ashleyy2444/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhekaiii/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/johnyoozhengxian/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [298/430] Analyzing https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SimHanKiong/ip.git... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SimHanKiong/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/meenulekha/ip.git completed! -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/getsquared/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/getsquared/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [299/430] Analyzing https://github.com/johnyoozhengxian/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [300/430] Analyzing https://github.com/meenulekha/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/johnyoozhengxian/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [299/430] Analyzing https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JuliaPoo/ip.git... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhekaiii/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhekaiii/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JuliaPoo/ip.git to complete... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ashleyy2444/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/meenulekha/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ashleyy2444/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ashleyy2444/ip.git (master) completed! +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [301/430] Analyzing https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Li-Zizhen/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/meenulekha/ip.git (master)... +Feb 07, 2024 2:39:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/johnyoozhengxian/ip.git (master)... -Feb 07, 2024 1:16:17 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/johnyoozhengxian/ip.git (master) completed! -Feb 07, 2024 1:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Li-Zizhen/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [300/430] Analyzing https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vannykin/ip.git... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [302/430] Analyzing https://github.com/SimHanKiong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/meenulekha/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vannykin/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/meenulekha/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Li-Zizhen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/getsquared/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [301/430] Analyzing https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/teojunda/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/teojunda/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/getsquared/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Li-Zizhen/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Li-Zizhen/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SimHanKiong/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ko-Khan/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [302/430] Analyzing https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ko-Khan/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [303/430] Analyzing https://github.com/teojunda/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SimHanKiong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/getsquared/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/getsquared/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JuliaPoo/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [303/430] Analyzing https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jyztintan/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jyztintan/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JuliaPoo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vannykin/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jasperng-nus/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhekaiii/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/teojunda/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/teojunda/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhekaiii/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [304/430] Analyzing https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jasperng-nus/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vannykin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/teojunda/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/delishad21/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [305/430] Analyzing https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/delishad21/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/teojunda/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Li-Zizhen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Li-Zizhen/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [305/430] Analyzing https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JuliaPoo/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/vannykin/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/vannykin/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SimHanKiong/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SimHanKiong/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ko-Khan/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [306/430] Analyzing https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/IamZhenHong/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/IamZhenHong/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ko-Khan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JuliaPoo/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JuliaPoo/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jyztintan/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [307/430] Analyzing https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shamesjen/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shamesjen/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jyztintan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jasperng-nus/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SimHanKiong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/teojunda/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/teojunda/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [308/430] Analyzing https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ma-Yirui/ip.git... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SimHanKiong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [307/430] Analyzing https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SimHanKiong/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [308/430] Analyzing https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jasperng-nus/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jyztintan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ko-Khan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JuliaPoo/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ko-Khan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JuliaPoo/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ko-Khan/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ma-Yirui/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jasperng-nus/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jasperng-nus/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jasperng-nus/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/delishad21/ip.git completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [309/430] Analyzing https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/timothysashimi/ip.git... -Feb 07, 2024 1:16:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/timothysashimi/ip.git to complete... -Feb 07, 2024 1:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jyztintan/ip.git (master)... -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jyztintan/ip.git (master) completed! -Feb 07, 2024 1:16:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/delishad21/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/IamZhenHong/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [310/430] Analyzing https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Xilef121/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Xilef121/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/IamZhenHong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shamesjen/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/delishad21/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/delishad21/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jasperng-nus/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jasperng-nus/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [311/430] Analyzing https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SamuelZero1/ip.git... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SamuelZero1/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/IamZhenHong/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/IamZhenHong/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ma-Yirui/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shamesjen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/IamZhenHong/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/IamZhenHong/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [312/430] Analyzing https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/swtan346/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/swtan346/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ma-Yirui/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/delishad21/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/delishad21/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/timothysashimi/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jyztintan/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jyztintan/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [313/430] Analyzing https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/faaheem13/ip.git... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ma-Yirui/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ma-Yirui/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/faaheem13/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/timothysashimi/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shamesjen/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shamesjen/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Xilef121/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ma-Yirui/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ma-Yirui/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ma-Yirui/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [314/430] Analyzing https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChenXy128/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChenXy128/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Xilef121/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/delishad21/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shamesjen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/delishad21/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/delishad21/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shamesjen/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [315/430] Analyzing https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shamesjen/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [316/430] Analyzing https://github.com/faaheem13/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SamuelZero1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/faaheem13/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/faaheem13/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Xilef121/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Xilef121/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Xilef121/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [317/430] Analyzing https://github.com/swtan346/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/timothysashimi/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/timothysashimi/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/swtan346/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [315/430] Analyzing https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Arixeyeion/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Arixeyeion/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SamuelZero1/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/swtan346/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Xilef121/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Xilef121/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/faaheem13/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [316/430] Analyzing https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Darylgolden/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Darylgolden/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/faaheem13/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChenXy128/ip.git completed! -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/swtan346/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/swtan346/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tankh99/ip.git... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [317/430] Analyzing https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tankh99/ip.git to complete... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SamuelZero1/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/timothysashimi/ip.git (master) completed! +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChenXy128/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [318/430] Analyzing https://github.com/ChenXy128/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [319/430] Analyzing https://github.com/Darylgolden/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/faaheem13/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/faaheem13/ip.git (master) completed! -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [320/430] Analyzing https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChenXy128/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChenXy128/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Darylgolden/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Darylgolden/ip.git (master)... +Feb 07, 2024 2:39:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Arixeyeion/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChenXy128/ip.git (master)... -Feb 07, 2024 1:16:19 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/swtan346/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChenXy128/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Arixeyeion/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [318/430] Analyzing https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Tsenrae/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Tsenrae/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Arixeyeion/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Darylgolden/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [319/430] Analyzing https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/starsia/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/starsia/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Darylgolden/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Arixeyeion/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Arixeyeion/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tankh99/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [320/430] Analyzing https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hjungwoo01/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hjungwoo01/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [321/430] Analyzing https://github.com/Tsenrae/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/swtan346/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/swtan346/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [322/430] Analyzing https://github.com/tankh99/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Tsenrae/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Tsenrae/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tankh99/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Darylgolden/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Darylgolden/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Tsenrae/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [321/430] Analyzing https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YuSoonZ/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YuSoonZ/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Tsenrae/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/starsia/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [322/430] Analyzing https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Darkarche3/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Darkarche3/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SamuelZero1/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Vision-2000/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [323/430] Analyzing https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [323/430] Analyzing https://github.com/starsia/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Arixeyeion/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Arixeyeion/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/starsia/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Vision-2000/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SamuelZero1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [324/430] Analyzing https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hjungwoo01/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Tsenrae/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tankh99/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Tsenrae/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tankh99/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [325/430] Analyzing https://github.com/YuSoonZ/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/starsia/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/starsia/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SamuelZero1/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SamuelZero1/ip.git (master) completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hjungwoo01/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [324/430] Analyzing https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chiageng/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chiageng/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hjungwoo01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YuSoonZ/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [325/430] Analyzing https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/logical-1985516/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/logical-1985516/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [326/430] Analyzing https://github.com/Darkarche3/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YuSoonZ/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Darkarche3/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ananya21/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [326/430] Analyzing https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Vision-2000/ip.git completed! -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ananya21/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [327/430] Analyzing https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/purivirakarin/ip.git... -Feb 07, 2024 1:16:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/purivirakarin/ip.git to complete... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Darkarche3/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Vision-2000/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hjungwoo01/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hjungwoo01/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tankh99/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tankh99/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tankh99/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [327/430] Analyzing https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Darkarche3/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Darkarche3/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chiageng/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Vision-2000/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [328/430] Analyzing https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/joenus/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/joenus/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chiageng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/YuSoonZ/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YuSoonZ/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Vision-2000/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Vision-2000/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/logical-1985516/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jessicawyz/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hjungwoo01/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hjungwoo01/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [329/430] Analyzing https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jessicawyz/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/logical-1985516/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ananya21/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YuSoonZ/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/YuSoonZ/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YuSoonZ/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [330/430] Analyzing https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/casaarlai/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/purivirakarin/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/casaarlai/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [331/430] Analyzing https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ryo-Seah/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ryo-Seah/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ananya21/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Vision-2000/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Vision-2000/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [331/430] Analyzing https://github.com/purivirakarin/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/purivirakarin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ananya21/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ananya21/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [332/430] Analyzing https://github.com/joenus/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chiageng/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chiageng/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/logical-1985516/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/logical-1985516/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joenus/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [332/430] Analyzing https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jeremiahlzz/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jeremiahlzz/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/purivirakarin/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/purivirakarin/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [333/430] Analyzing https://github.com/jessicawyz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/joenus/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jessicawyz/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [333/430] Analyzing https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/macareonie/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/macareonie/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jessicawyz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ryo-Seah/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [334/430] Analyzing https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chin-herng/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/casaarlai/ip.git completed! -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chin-herng/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [335/430] Analyzing https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gowthaman-01/ip.git... -Feb 07, 2024 1:16:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gowthaman-01/ip.git to complete... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ryo-Seah/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/logical-1985516/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/logical-1985516/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [334/430] Analyzing https://github.com/casaarlai/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/casaarlai/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/joenus/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/joenus/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jessicawyz/ip.git (master)... -Feb 07, 2024 1:16:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jessicawyz/ip.git (master) completed! -Feb 07, 2024 1:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/purivirakarin/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/purivirakarin/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/purivirakarin/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [335/430] Analyzing https://github.com/Ryo-Seah/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jeremiahlzz/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ryo-Seah/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ryo-Seah/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/casaarlai/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/casaarlai/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [336/430] Analyzing https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Joseph31416/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Joseph31416/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jessicawyz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jeremiahlzz/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jeremiahlzz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jessicawyz/ip.git (master)... +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jessicawyz/ip.git (master) completed! +Feb 07, 2024 2:39:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [337/430] Analyzing https://github.com/chin-herng/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chin-herng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chin-herng/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/joenus/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/joenus/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/joenus/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [338/430] Analyzing https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/macareonie/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jeremiahlzz/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ryo-Seah/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ryo-Seah/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/macareonie/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [337/430] Analyzing https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/radeon2525/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/radeon2525/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/macareonie/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jeremiahlzz/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jeremiahlzz/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chin-herng/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ejnan/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [338/430] Analyzing https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ejnan/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gowthaman-01/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [339/430] Analyzing https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jskimdev/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chin-herng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jskimdev/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gowthaman-01/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/macareonie/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/macareonie/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jeremiahlzz/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jeremiahlzz/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jeremiahlzz/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [340/430] Analyzing https://github.com/Joseph31416/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chin-herng/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chin-herng/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Joseph31416/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [340/430] Analyzing https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Chiarena/ip.git... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [341/430] Analyzing https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Joseph31416/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Joseph31416/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ejnan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Chiarena/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ejnan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ejnan/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [342/430] Analyzing https://github.com/radeon2525/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gowthaman-01/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gowthaman-01/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Joseph31416/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/radeon2525/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [341/430] Analyzing https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chonghaoen/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chonghaoen/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [343/430] Analyzing https://github.com/jskimdev/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/radeon2525/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jskimdev/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [342/430] Analyzing https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/CJerrong/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/CJerrong/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/macareonie/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/macareonie/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jskimdev/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ejnan/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [343/430] Analyzing https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/qinxutan/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/qinxutan/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ejnan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/radeon2525/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/radeon2525/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [344/430] Analyzing https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Chiarena/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joseph31416/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joseph31416/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [345/430] Analyzing https://github.com/CJerrong/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jskimdev/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CJerrong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CJerrong/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Chiarena/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Chiarena/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [346/430] Analyzing https://github.com/chonghaoen/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jskimdev/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jskimdev/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ejnan/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ejnan/ip.git (master) completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Chiarena/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [344/430] Analyzing https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/billyhoce/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/billyhoce/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Chiarena/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chonghaoen/ip.git completed! -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/4llysa/ip.git... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [345/430] Analyzing https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/4llysa/ip.git to complete... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/radeon2525/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [347/430] Analyzing https://github.com/billyhoce/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chonghaoen/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Chiarena/ip.git (master)... -Feb 07, 2024 1:16:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Chiarena/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CJerrong/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [346/430] Analyzing https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TopKec/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TopKec/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CJerrong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/qinxutan/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [347/430] Analyzing https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tahsinhasem/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tahsinhasem/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/radeon2525/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/radeon2525/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/billyhoce/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/billyhoce/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [348/430] Analyzing https://github.com/qinxutan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/qinxutan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chonghaoen/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CJerrong/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chonghaoen/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chonghaoen/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/billyhoce/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [348/430] Analyzing https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MarcusGitty/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MarcusGitty/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/billyhoce/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [349/430] Analyzing https://github.com/TopKec/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CJerrong/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CJerrong/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/4llysa/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [349/430] Analyzing https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shawnnlimm/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shawnnlimm/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/4llysa/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/qinxutan/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/qinxutan/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TopKec/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [350/430] Analyzing https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/huekoh/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/huekoh/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [350/430] Analyzing https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TopKec/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tahsinhasem/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [351/430] Analyzing https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JonChong98/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JonChong98/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tahsinhasem/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/4llysa/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/4llysa/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/billyhoce/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/4llysa/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/billyhoce/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [351/430] Analyzing https://github.com/tahsinhasem/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/qinxutan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tahsinhasem/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tahsinhasem/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/qinxutan/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/qinxutan/ip.git (master) completed! +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [352/430] Analyzing https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MarcusGitty/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tahsinhasem/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tahsinhasem/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/MarcusGitty/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [352/430] Analyzing https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/STELLA-LYE/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/STELLA-LYE/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [353/430] Analyzing https://github.com/shawnnlimm/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TopKec/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TopKec/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MarcusGitty/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shawnnlimm/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [353/430] Analyzing https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nyankoclaws/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nyankoclaws/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shawnnlimm/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MarcusGitty/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MarcusGitty/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shawnnlimm/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shawnnlimm/ip.git (master) completed! -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/huekoh/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/4llysa/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [354/430] Analyzing https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/meowwtama/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/meowwtama/ip.git to complete... -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/4llysa/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [355/430] Analyzing https://github.com/JonChong98/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/huekoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JonChong98/ip.git completed! -Feb 07, 2024 1:16:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [355/430] Analyzing https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KohGuanZeh/ip.git... -Feb 07, 2024 1:16:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KohGuanZeh/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JonChong98/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/huekoh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/huekoh/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JonChong98/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JonChong98/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/STELLA-LYE/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MarcusGitty/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MarcusGitty/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [356/430] Analyzing https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nuyer/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nuyer/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/STELLA-LYE/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nyankoclaws/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JonChong98/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JonChong98/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/huekoh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JonChong98/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [357/430] Analyzing https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SeaHogs/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SeaHogs/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/huekoh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/huekoh/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shawnnlimm/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [358/430] Analyzing https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nyankoclaws/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shawnnlimm/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shawnnlimm/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/meowwtama/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [359/430] Analyzing https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KohGuanZeh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nyankoclaws/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nyankoclaws/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KohGuanZeh/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [358/430] Analyzing https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/S-Aishvarya/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/S-Aishvarya/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/meowwtama/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [359/430] Analyzing https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tejas-1405/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tejas-1405/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KohGuanZeh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/STELLA-LYE/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/meowwtama/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/STELLA-LYE/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nuyer/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [360/430] Analyzing https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/youdonnnn/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/youdonnnn/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/meowwtama/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/meowwtama/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nuyer/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SeaHogs/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [361/430] Analyzing https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tcjazwei/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tcjazwei/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/STELLA-LYE/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SeaHogs/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/meowwtama/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/meowwtama/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "tcjazwei/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/tcjazwei/ip.git' 'repos/tcjazwei_ip/ip_bare' on path . : -Cloning into bare repository 'repos/tcjazwei_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jieqiboh/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jieqiboh/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nuyer/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nuyer/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KohGuanZeh/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SeaHogs/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tejas-1405/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SeaHogs/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KohGuanZeh/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/S-Aishvarya/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wongkj12/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [362/430] Analyzing https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [363/430] Analyzing https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GERARDJM018/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wongkj12/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GERARDJM018/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/STELLA-LYE/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/STELLA-LYE/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [362/430] Analyzing https://github.com/S-Aishvarya/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/S-Aishvarya/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tejas-1405/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/S-Aishvarya/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/S-Aishvarya/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/S-Aishvarya/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tejas-1405/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/youdonnnn/ip.git completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tejas-1405/ip.git (master) completed! -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [363/430] Analyzing https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tejas-1405/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nuyer/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SeaHogs/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nuyer/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nuyer/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [364/430] Analyzing https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/blaukc/ip.git... -Feb 07, 2024 1:16:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/blaukc/ip.git to complete... -Feb 07, 2024 1:16:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SeaHogs/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SeaHogs/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KohGuanZeh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [365/430] Analyzing https://github.com/jieqiboh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KohGuanZeh/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [366/430] Analyzing https://github.com/wongkj12/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/youdonnnn/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/youdonnnn/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/youdonnnn/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jieqiboh/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [365/430] Analyzing https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tohlh/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tohlh/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GERARDJM018/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wongkj12/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jieqiboh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [366/430] Analyzing https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hiivan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [367/430] Analyzing https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/darkvoid32/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/darkvoid32/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hiivan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wongkj12/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tejas-1405/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tejas-1405/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [367/430] Analyzing https://github.com/GERARDJM018/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/youdonnnn/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/youdonnnn/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GERARDJM018/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/blaukc/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yapxuanxuan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/youdonnnn/ip.git (master) completed! +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [368/430] Analyzing https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yapxuanxuan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/blaukc/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wongkj12/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wongkj12/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [369/430] Analyzing https://github.com/tohlh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jieqiboh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tohlh/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tohlh/ip.git (master)... +Feb 07, 2024 2:39:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jieqiboh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jieqiboh/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tohlh/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/GERARDJM018/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/darkvoid32/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/GERARDJM018/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [369/430] Analyzing https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanjiajiajun/ip.git... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [370/430] Analyzing https://github.com/darkvoid32/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/darkvoid32/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/darkvoid32/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [370/430] Analyzing https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Greg-Tan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanjiajiajun/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Greg-Tan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hiivan/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/GERARDJM018/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/blaukc/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/blaukc/ip.git (master) completed! -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tohlh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/darkvoid32/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/GERARDJM018/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [371/430] Analyzing https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kervyntan/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yapxuanxuan/ip.git completed! -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AndrewOng2066/ip.git... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/GERARDJM018/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [372/430] Analyzing https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kervyntan/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AndrewOng2066/ip.git to complete... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yapxuanxuan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hiivan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yapxuanxuan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yapxuanxuan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/darkvoid32/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/darkvoid32/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanjiajiajun/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [373/430] Analyzing https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/g-tejas/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/g-tejas/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tanjiajiajun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Greg-Tan/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yapxuanxuan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tohlh/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kervyntan/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AndrewOng2066/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yapxuanxuan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yapxuanxuan/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tohlh/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [374/430] Analyzing https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RyanNgWH/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yeoshuheng/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [375/430] Analyzing https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RyanNgWH/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jonpwk/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yeoshuheng/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jonpwk/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kervyntan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [374/430] Analyzing https://github.com/Greg-Tan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [375/430] Analyzing https://github.com/kervyntan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Greg-Tan/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kervyntan/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kervyntan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Greg-Tan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hiivan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hiivan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Greg-Tan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Greg-Tan/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [376/430] Analyzing https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/AndrewOng2066/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Greg-Tan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Greg-Tan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hiivan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hiivan/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [377/430] Analyzing https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/g-tejas/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tanjiajiajun/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tanjiajiajun/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kervyntan/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [378/430] Analyzing https://github.com/RyanNgWH/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kervyntan/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kervyntan/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/g-tejas/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xinen26/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [377/430] Analyzing https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xinen26/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/g-tejas/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jonpwk/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RyanNgWH/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gerteck/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [378/430] Analyzing https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/drustanyjt/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [379/430] Analyzing https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yeoshuheng/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gerteck/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/drustanyjt/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/angsongyee/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jonpwk/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/angsongyee/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/RyanNgWH/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [379/430] Analyzing https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yeoshuheng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/g-tejas/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/g-tejas/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [380/430] Analyzing https://github.com/jonpwk/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jonpwk/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jonpwk/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AndrewOng2066/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AndrewOng2066/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [380/430] Analyzing https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [381/430] Analyzing https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gerteck/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jonpwk/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yeoshuheng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jonpwk/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xinen26/ip.git completed! -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alfaloo/ip.git... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [381/430] Analyzing https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/g-tejas/ip.git (master)... -Feb 07, 2024 1:16:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alfaloo/ip.git to complete... -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/g-tejas/ip.git (master) completed! -Feb 07, 2024 1:16:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [382/430] Analyzing https://github.com/xinen26/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xinen26/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/drustanyjt/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gerteck/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/angsongyee/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [382/430] Analyzing https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ivan24004/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cheahTJ/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bertrandong/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bertrandong/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cheahTJ/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ivan24004/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/drustanyjt/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yeoshuheng/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RyanNgWH/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RyanNgWH/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yeoshuheng/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [383/430] Analyzing https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/angsongyee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yeoshuheng/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yeoshuheng/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [384/430] Analyzing https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gerteck/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alfaloo/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/headcube1/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/headcube1/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xinen26/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xinen26/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RyanNgWH/ip.git (master)... +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RyanNgWH/ip.git (master) completed! +Feb 07, 2024 2:39:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [384/430] Analyzing https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/drustanyjt/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gerteck/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gerteck/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [385/430] Analyzing https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/alfaloo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bertrandong/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/pjanthony2001/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cheahTJ/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/pjanthony2001/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ruijietay/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ruijietay/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ivan24004/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sindhurajain/ip.git... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sindhurajain/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/drustanyjt/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/drustanyjt/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [386/430] Analyzing https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bertrandong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xinen26/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/angsongyee/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/angsongyee/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xinen26/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [386/430] Analyzing https://github.com/ivan24004/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xinen26/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [387/430] Analyzing https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cheahTJ/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gerteck/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gerteck/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [388/430] Analyzing https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ivan24004/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/headcube1/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ragnapop/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ragnapop/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cheahTJ/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cheahTJ/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/drustanyjt/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/drustanyjt/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [388/430] Analyzing https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bertrandong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ruijietay/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alfaloo/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alfaloo/ip.git (master) completed! -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nobodyishappy/ip.git... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nobodyishappy/ip.git to complete... -Feb 07, 2024 1:16:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [389/430] Analyzing https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sindhurajain/ip.git completed! -Feb 07, 2024 1:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/pjanthony2001/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Pughal77/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/headcube1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PateShin/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Pughal77/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bertrandong/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PateShin/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bertrandong/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [390/430] Analyzing https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cheahTJ/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cheahTJ/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [391/430] Analyzing https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ruijietay/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sindhurajain/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alfaloo/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [389/430] Analyzing https://github.com/headcube1/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alfaloo/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [390/430] Analyzing https://github.com/sindhurajain/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/headcube1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/headcube1/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ivan24004/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ivan24004/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sindhurajain/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sindhurajain/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [391/430] Analyzing https://github.com/ruijietay/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ruijietay/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ruijietay/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bertrandong/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bertrandong/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [392/430] Analyzing https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ragnapop/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jayllo-c/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jayllo-c/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/pjanthony2001/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/headcube1/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/headcube1/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [393/430] Analyzing https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nobodyishappy/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ragnapop/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gosongying/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PateShin/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gosongying/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/biinnnggggg/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Pughal77/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/biinnnggggg/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ShanylOng/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ShanylOng/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sindhurajain/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sindhurajain/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [394/430] Analyzing https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nobodyishappy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jayllo-c/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sindhurajain/ip.git (master) completed! +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [394/430] Analyzing https://github.com/Pughal77/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Pughal77/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Pughal77/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KinTatHo/ip.git... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ruijietay/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ragnapop/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KinTatHo/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ragnapop/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [395/430] Analyzing https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ruijietay/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [395/430] Analyzing https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ruijietay/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [396/430] Analyzing https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [396/430] Analyzing https://github.com/PateShin/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nobodyishappy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PateShin/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Pughal77/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gosongying/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Rishit02/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Rishit02/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ShanylOng/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/biinnnggggg/ip.git completed! -Feb 07, 2024 1:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/pjanthony2001/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rahhulleee/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/pjanthony2001/ip.git (master) completed! -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chaaaaun/ip.git... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [397/430] Analyzing https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rahhulleee/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chaaaaun/ip.git to complete... -Feb 07, 2024 1:16:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jayllo-c/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Pughal77/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Pughal77/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [397/430] Analyzing https://github.com/jayllo-c/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/pjanthony2001/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jayllo-c/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jayllo-c/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/pjanthony2001/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/pjanthony2001/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos INFO: [398/430] Analyzing https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nobodyishappy/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nobodyishappy/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [399/430] Analyzing https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gosongying/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ShanylOng/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KinTatHo/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JerryO3/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JerryO3/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ShanylOng/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ShanylOng/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/PateShin/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [400/430] Analyzing https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PateShin/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [401/430] Analyzing https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jayllo-c/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jayllo-c/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nobodyishappy/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PateShin/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nobodyishappy/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [399/430] Analyzing https://github.com/biinnnggggg/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [400/430] Analyzing https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [401/430] Analyzing https://github.com/KinTatHo/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ShanylOng/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/biinnnggggg/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/KinTatHo/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Rishit02/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rahhulleee/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [402/430] Analyzing https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tzaph/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RingoftheKing/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tzaph/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RingoftheKing/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chaaaaun/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ashleyclx/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rahhulleee/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ashleyclx/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ShanylOng/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ShanylOng/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [402/430] Analyzing https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Rishit02/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gosongying/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gosongying/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [403/430] Analyzing https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [403/430] Analyzing https://github.com/chaaaaun/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JerryO3/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Rishit02/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chaaaaun/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chaaaaun/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Rishit02/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Rishit02/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [404/430] Analyzing https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/KinTatHo/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/laney0808/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/laney0808/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/KinTatHo/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [404/430] Analyzing https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [405/430] Analyzing https://github.com/JerryO3/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rahhulleee/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JerryO3/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JerryO3/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chaaaaun/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/biinnnggggg/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/biinnnggggg/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [405/430] Analyzing https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rahhulleee/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rahhulleee/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tzaph/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ashleyclx/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NatLeong/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos INFO: [406/430] Analyzing https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JerryO3/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jajared/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NatLeong/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tzaph/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jajared/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RingoftheKing/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kailashgautham/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kailashgautham/ip.git to complete... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Rishit02/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Rishit02/ip.git (master) completed! -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [407/430] Analyzing https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ashleyclx/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/laney0808/ip.git completed! -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/J-wang-CSMA/ip.git... -Feb 07, 2024 1:16:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/J-wang-CSMA/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chaaaaun/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chaaaaun/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [408/430] Analyzing https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [407/430] Analyzing https://github.com/RingoftheKing/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/RingoftheKing/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tzaph/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rahhulleee/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rahhulleee/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [408/430] Analyzing https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JerryO3/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ashleyclx/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JerryO3/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tzaph/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JerryO3/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos INFO: [409/430] Analyzing https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tzaph/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/laney0808/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NatLeong/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ashleyclx/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jajared/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kinjalagarwal1810/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [410/430] Analyzing https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ashleyclx/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [411/430] Analyzing https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NewtonKoh/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kinjalagarwal1810/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NewtonKoh/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NatLeong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tzaph/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tzaph/ip.git (master) completed! +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [410/430] Analyzing https://github.com/Jajared/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jajared/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kailashgautham/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/UdhayaShan1/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/UdhayaShan1/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/laney0808/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/laney0808/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/laney0808/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [412/430] Analyzing https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/RingoftheKing/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/RingoftheKing/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [411/430] Analyzing https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [412/430] Analyzing https://github.com/kailashgautham/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kailashgautham/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NatLeong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NatLeong/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/J-wang-CSMA/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NatLeong/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ashleyclx/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ashleyclx/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [413/430] Analyzing https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanqinyong/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanqinyong/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/J-wang-CSMA/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NatLeong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NatLeong/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [414/430] Analyzing https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jajared/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jajared/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NewtonKoh/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kinjalagarwal1810/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [415/430] Analyzing https://github.com/UdhayaShan1/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/UdhayaShan1/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/UdhayaShan1/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/theman-oj10/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [414/430] Analyzing https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/theman-oj10/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kinjalagarwal1810/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kailashgautham/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kailashgautham/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [415/430] Analyzing https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/c-j-lh/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [416/430] Analyzing https://github.com/NewtonKoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NewtonKoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/c-j-lh/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/UdhayaShan1/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [416/430] Analyzing https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kinjalagarwal1810/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jovantanyk/ip.git... -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jovantanyk/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/UdhayaShan1/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NewtonKoh/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NewtonKoh/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/J-wang-CSMA/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/J-wang-CSMA/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanqinyong/ip.git completed! -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kinjalagarwal1810/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kinjalagarwal1810/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [417/430] Analyzing https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kappaccinoh/ip.git... -Feb 07, 2024 1:16:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kappaccinoh/ip.git to complete... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [418/430] Analyzing https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NewtonKoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tanqinyong/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kinjalagarwal1810/ip.git (master)... -Feb 07, 2024 1:16:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kinjalagarwal1810/ip.git (master) completed! -Feb 07, 2024 1:16:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jovantanyk/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NewtonKoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NewtonKoh/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/theman-oj10/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [419/430] Analyzing https://github.com/theman-oj10/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/UdhayaShan1/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [418/430] Analyzing https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/itstrueitstrueitsrealitsreal/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/UdhayaShan1/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/theman-oj10/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanqinyong/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/c-j-lh/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanqinyong/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/agreatdayy/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [419/430] Analyzing https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/agreatdayy/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jovantanyk/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SampsonYe1999/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [420/430] Analyzing https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/UdhayaShan1/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [420/430] Analyzing https://github.com/c-j-lh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/c-j-lh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SampsonYe1999/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jovantanyk/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jovantanyk/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/c-j-lh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jovantanyk/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/c-j-lh/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/theman-oj10/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/theman-oj10/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kappaccinoh/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [421/430] Analyzing https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/The-Dudeski/ip.git... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/The-Dudeski/ip.git to complete... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [422/430] Analyzing https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanqinyong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kappaccinoh/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jovantanyk/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jovantanyk/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itstrueitstrueitsrealitsreal/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "The-Dudeski/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/The-Dudeski/ip.git' 'repos/The-Dudeski_ip/ip_bare' on path . : -Cloning into bare repository 'repos/The-Dudeski_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [422/430] Analyzing https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/itstrueitstrueitsrealitsreal/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kappaccinoh/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/agreatdayy/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kappaccinoh/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [423/430] Analyzing https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/agreatdayy/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SampsonYe1999/ip.git completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [424/430] Analyzing https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanqinyong/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanqinyong/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [423/430] Analyzing https://github.com/SampsonYe1999/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/theman-oj10/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SampsonYe1999/ip.git (master) does not contain a standalone config file. -Feb 07, 2024 1:16:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/agreatdayy/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/agreatdayy/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/theman-oj10/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/theman-oj10/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [424/430] Analyzing https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/agreatdayy/ip.git (master) does not contain a standalone config file. +Feb 07, 2024 2:39:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SampsonYe1999/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SampsonYe1999/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kappaccinoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kappaccinoh/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kappaccinoh/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/agreatdayy/ip.git (master)... +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/agreatdayy/ip.git (master) completed! +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 07, 2024 2:39:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/itstrueitstrueitsrealitsreal/ip.git (master)... -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/itstrueitstrueitsrealitsreal/ip.git (master) completed! -Feb 07, 2024 1:16:31 AM reposense.report.ReportGenerator generateReposReport +Feb 07, 2024 2:39:54 AM reposense.report.ReportGenerator generateReposReport INFO: The report is generated at /home/runner/work/ip-dashboard/ip-dashboard/reposense-report -Feb 07, 2024 1:16:32 AM reposense.RepoSense main -INFO: Elapsed processing time: 50.88 second(s) +Feb 07, 2024 2:39:56 AM reposense.RepoSense main +INFO: Elapsed processing time: 48.10 second(s) diff --git a/summary.json b/summary.json index 3e87934a..1bbe53c7 100644 --- a/summary.json +++ b/summary.json @@ -1 +1 @@ -{"repoSenseVersion":"29903e3124","reportGeneratedTime":"Wed Feb 7 09:15:43 2024 UTC+08:00","reportGenerationTime":" 49.79 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/darryl-chan/ip.git","repoName":"ip","organization":"darryl-chan","domainName":"github"},"branch":"master","displayName":"darryl-chan/ip[master]","outputFolderName":"darryl-chan_ip_master"},{"location":{"location":"https://github.com/gowthaman-01/ip.git","repoName":"ip","organization":"gowthaman-01","domainName":"github"},"branch":"master","displayName":"gowthaman-01/ip[master]","outputFolderName":"gowthaman-01_ip_master"},{"location":{"location":"https://github.com/ChrisHo1341/ip.git","repoName":"ip","organization":"ChrisHo1341","domainName":"github"},"branch":"master","displayName":"ChrisHo1341/ip[master]","outputFolderName":"ChrisHo1341_ip_master"},{"location":{"location":"https://github.com/sebin0817/ip.git","repoName":"ip","organization":"sebin0817","domainName":"github"},"branch":"master","displayName":"sebin0817/ip[master]","outputFolderName":"sebin0817_ip_master"},{"location":{"location":"https://github.com/tanjiajiajun/ip.git","repoName":"ip","organization":"tanjiajiajun","domainName":"github"},"branch":"master","displayName":"tanjiajiajun/ip[master]","outputFolderName":"tanjiajiajun_ip_master"},{"location":{"location":"https://github.com/Arixeyeion/ip.git","repoName":"ip","organization":"Arixeyeion","domainName":"github"},"branch":"master","displayName":"Arixeyeion/ip[master]","outputFolderName":"Arixeyeion_ip_master"},{"location":{"location":"https://github.com/jeremiahlzz/ip.git","repoName":"ip","organization":"jeremiahlzz","domainName":"github"},"branch":"master","displayName":"jeremiahlzz/ip[master]","outputFolderName":"jeremiahlzz_ip_master"},{"location":{"location":"https://github.com/joenus/ip.git","repoName":"ip","organization":"joenus","domainName":"github"},"branch":"master","displayName":"joenus/ip[master]","outputFolderName":"joenus_ip_master"},{"location":{"location":"https://github.com/xinen26/ip.git","repoName":"ip","organization":"xinen26","domainName":"github"},"branch":"master","displayName":"xinen26/ip[master]","outputFolderName":"xinen26_ip_master"},{"location":{"location":"https://github.com/matthewken19/ip.git","repoName":"ip","organization":"matthewken19","domainName":"github"},"branch":"master","displayName":"matthewken19/ip[master]","outputFolderName":"matthewken19_ip_master"},{"location":{"location":"https://github.com/YuZizhen/ip.git","repoName":"ip","organization":"YuZizhen","domainName":"github"},"branch":"master","displayName":"YuZizhen/ip[master]","outputFolderName":"YuZizhen_ip_master"},{"location":{"location":"https://github.com/marclamp/ip.git","repoName":"ip","organization":"marclamp","domainName":"github"},"branch":"master","displayName":"marclamp/ip[master]","outputFolderName":"marclamp_ip_master"},{"location":{"location":"https://github.com/JerryWang0000/ip.git","repoName":"ip","organization":"JerryWang0000","domainName":"github"},"branch":"master","displayName":"JerryWang0000/ip[master]","outputFolderName":"JerryWang0000_ip_master"},{"location":{"location":"https://github.com/fy17ohhh/ip.git","repoName":"ip","organization":"fy17ohhh","domainName":"github"},"branch":"master","displayName":"fy17ohhh/ip[master]","outputFolderName":"fy17ohhh_ip_master"},{"location":{"location":"https://github.com/lihaoquan/ip.git","repoName":"ip","organization":"lihaoquan","domainName":"github"},"branch":"master","displayName":"lihaoquan/ip[master]","outputFolderName":"lihaoquan_ip_master"},{"location":{"location":"https://github.com/guohuang88/ip.git","repoName":"ip","organization":"guohuang88","domainName":"github"},"branch":"master","displayName":"guohuang88/ip[master]","outputFolderName":"guohuang88_ip_master"},{"location":{"location":"https://github.com/redcolorbicycle/ip.git","repoName":"ip","organization":"redcolorbicycle","domainName":"github"},"branch":"master","displayName":"redcolorbicycle/ip[master]","outputFolderName":"redcolorbicycle_ip_master"},{"location":{"location":"https://github.com/Jerome-j/ip.git","repoName":"ip","organization":"Jerome-j","domainName":"github"},"branch":"master","displayName":"Jerome-j/ip[master]","outputFolderName":"Jerome-j_ip_master"},{"location":{"location":"https://github.com/sethteo/ip.git","repoName":"ip","organization":"sethteo","domainName":"github"},"branch":"master","displayName":"sethteo/ip[master]","outputFolderName":"sethteo_ip_master"},{"location":{"location":"https://github.com/TopKec/ip.git","repoName":"ip","organization":"TopKec","domainName":"github"},"branch":"master","displayName":"TopKec/ip[master]","outputFolderName":"TopKec_ip_master"},{"location":{"location":"https://github.com/joelgoh1/ip.git","repoName":"ip","organization":"joelgoh1","domainName":"github"},"branch":"master","displayName":"joelgoh1/ip[master]","outputFolderName":"joelgoh1_ip_master"},{"location":{"location":"https://github.com/chewbum/ip.git","repoName":"ip","organization":"chewbum","domainName":"github"},"branch":"master","displayName":"chewbum/ip[master]","outputFolderName":"chewbum_ip_master"},{"location":{"location":"https://github.com/timothysashimi/ip.git","repoName":"ip","organization":"timothysashimi","domainName":"github"},"branch":"master","displayName":"timothysashimi/ip[master]","outputFolderName":"timothysashimi_ip_master"},{"location":{"location":"https://github.com/beefsausagee/ip.git","repoName":"ip","organization":"beefsausagee","domainName":"github"},"branch":"master","displayName":"beefsausagee/ip[master]","outputFolderName":"beefsausagee_ip_master"},{"location":{"location":"https://github.com/jaejayrome/ip.git","repoName":"ip","organization":"jaejayrome","domainName":"github"},"branch":"master","displayName":"jaejayrome/ip[master]","outputFolderName":"jaejayrome_ip_master"},{"location":{"location":"https://github.com/KhoonSun47/ip.git","repoName":"ip","organization":"KhoonSun47","domainName":"github"},"branch":"master","displayName":"KhoonSun47/ip[master]","outputFolderName":"KhoonSun47_ip_master"},{"location":{"location":"https://github.com/Dethada/ip.git","repoName":"ip","organization":"Dethada","domainName":"github"},"branch":"master","displayName":"Dethada/ip[master]","outputFolderName":"Dethada_ip_master"},{"location":{"location":"https://github.com/AL-ZT/ip.git","repoName":"ip","organization":"AL-ZT","domainName":"github"},"branch":"master","displayName":"AL-ZT/ip[master]","outputFolderName":"AL-ZT_ip_master"},{"location":{"location":"https://github.com/Javiery3889/ip.git","repoName":"ip","organization":"Javiery3889","domainName":"github"},"branch":"master","displayName":"Javiery3889/ip[master]","outputFolderName":"Javiery3889_ip_master"},{"location":{"location":"https://github.com/garywongkai/ip.git","repoName":"ip","organization":"garywongkai","domainName":"github"},"branch":"master","displayName":"garywongkai/ip[master]","outputFolderName":"garywongkai_ip_master"},{"location":{"location":"https://github.com/ys112/ip.git","repoName":"ip","organization":"ys112","domainName":"github"},"branch":"master","displayName":"ys112/ip[master]","outputFolderName":"ys112_ip_master"},{"location":{"location":"https://github.com/jmsandiegoo/ip.git","repoName":"ip","organization":"jmsandiegoo","domainName":"github"},"branch":"master","displayName":"jmsandiegoo/ip[master]","outputFolderName":"jmsandiegoo_ip_master"},{"location":{"location":"https://github.com/KohGuanZeh/ip.git","repoName":"ip","organization":"KohGuanZeh","domainName":"github"},"branch":"master","displayName":"KohGuanZeh/ip[master]","outputFolderName":"KohGuanZeh_ip_master"},{"location":{"location":"https://github.com/felixchanyy/ip.git","repoName":"ip","organization":"felixchanyy","domainName":"github"},"branch":"master","displayName":"felixchanyy/ip[master]","outputFolderName":"felixchanyy_ip_master"},{"location":{"location":"https://github.com/tanqinyong/ip.git","repoName":"ip","organization":"tanqinyong","domainName":"github"},"branch":"master","displayName":"tanqinyong/ip[master]","outputFolderName":"tanqinyong_ip_master"},{"location":{"location":"https://github.com/Hwww23/ip.git","repoName":"ip","organization":"Hwww23","domainName":"github"},"branch":"master","displayName":"Hwww23/ip[master]","outputFolderName":"Hwww23_ip_master"},{"location":{"location":"https://github.com/zengzihui/ip.git","repoName":"ip","organization":"zengzihui","domainName":"github"},"branch":"master","displayName":"zengzihui/ip[master]","outputFolderName":"zengzihui_ip_master"},{"location":{"location":"https://github.com/Pluiexo/ip.git","repoName":"ip","organization":"Pluiexo","domainName":"github"},"branch":"master","displayName":"Pluiexo/ip[master]","outputFolderName":"Pluiexo_ip_master"},{"location":{"location":"https://github.com/yap-zong-xin/ip.git","repoName":"ip","organization":"yap-zong-xin","domainName":"github"},"branch":"master","displayName":"yap-zong-xin/ip[master]","outputFolderName":"yap-zong-xin_ip_master"},{"location":{"location":"https://github.com/JonChong98/ip.git","repoName":"ip","organization":"JonChong98","domainName":"github"},"branch":"master","displayName":"JonChong98/ip[master]","outputFolderName":"JonChong98_ip_master"},{"location":{"location":"https://github.com/lokidoki102/ip.git","repoName":"ip","organization":"lokidoki102","domainName":"github"},"branch":"master","displayName":"lokidoki102/ip[master]","outputFolderName":"lokidoki102_ip_master"},{"location":{"location":"https://github.com/choowengyan/ip.git","repoName":"ip","organization":"choowengyan","domainName":"github"},"branch":"master","displayName":"choowengyan/ip[master]","outputFolderName":"choowengyan_ip_master"},{"location":{"location":"https://github.com/SherisseTJW/ip.git","repoName":"ip","organization":"SherisseTJW","domainName":"github"},"branch":"master","displayName":"SherisseTJW/ip[master]","outputFolderName":"SherisseTJW_ip_master"},{"location":{"location":"https://github.com/iynixil/ip.git","repoName":"ip","organization":"iynixil","domainName":"github"},"branch":"master","displayName":"iynixil/ip[master]","outputFolderName":"iynixil_ip_master"},{"location":{"location":"https://github.com/whitesnowx/ip.git","repoName":"ip","organization":"whitesnowx","domainName":"github"},"branch":"master","displayName":"whitesnowx/ip[master]","outputFolderName":"whitesnowx_ip_master"},{"location":{"location":"https://github.com/AwJoey/ip.git","repoName":"ip","organization":"AwJoey","domainName":"github"},"branch":"master","displayName":"AwJoey/ip[master]","outputFolderName":"AwJoey_ip_master"},{"location":{"location":"https://github.com/rickkoh/ip.git","repoName":"ip","organization":"rickkoh","domainName":"github"},"branch":"master","displayName":"rickkoh/ip[master]","outputFolderName":"rickkoh_ip_master"},{"location":{"location":"https://github.com/caitlyntang/ip.git","repoName":"ip","organization":"caitlyntang","domainName":"github"},"branch":"master","displayName":"caitlyntang/ip[master]","outputFolderName":"caitlyntang_ip_master"},{"location":{"location":"https://github.com/tsulim/ip.git","repoName":"ip","organization":"tsulim","domainName":"github"},"branch":"master","displayName":"tsulim/ip[master]","outputFolderName":"tsulim_ip_master"},{"location":{"location":"https://github.com/Darylgolden/ip.git","repoName":"ip","organization":"Darylgolden","domainName":"github"},"branch":"master","displayName":"Darylgolden/ip[master]","outputFolderName":"Darylgolden_ip_master"},{"location":{"location":"https://github.com/biinnnggggg/ip.git","repoName":"ip","organization":"biinnnggggg","domainName":"github"},"branch":"master","displayName":"biinnnggggg/ip[master]","outputFolderName":"biinnnggggg_ip_master"},{"location":{"location":"https://github.com/Ma-Yirui/ip.git","repoName":"ip","organization":"Ma-Yirui","domainName":"github"},"branch":"master","displayName":"Ma-Yirui/ip[master]","outputFolderName":"Ma-Yirui_ip_master"},{"location":{"location":"https://github.com/itstrueitstrueitsrealitsreal/ip.git","repoName":"ip","organization":"itstrueitstrueitsrealitsreal","domainName":"github"},"branch":"master","displayName":"itstrueitstrueitsrealitsreal/ip[master]","outputFolderName":"itstrueitstrueitsrealitsreal_ip_master"},{"location":{"location":"https://github.com/vnnamng/ip.git","repoName":"ip","organization":"vnnamng","domainName":"github"},"branch":"master","displayName":"vnnamng/ip[master]","outputFolderName":"vnnamng_ip_master"},{"location":{"location":"https://github.com/minwaiphyo/ip.git","repoName":"ip","organization":"minwaiphyo","domainName":"github"},"branch":"master","displayName":"minwaiphyo/ip[master]","outputFolderName":"minwaiphyo_ip_master"},{"location":{"location":"https://github.com/amanzainal/ip.git","repoName":"ip","organization":"amanzainal","domainName":"github"},"branch":"master","displayName":"amanzainal/ip[master]","outputFolderName":"amanzainal_ip_master"},{"location":{"location":"https://github.com/raysonchia/ip.git","repoName":"ip","organization":"raysonchia","domainName":"github"},"branch":"master","displayName":"raysonchia/ip[master]","outputFolderName":"raysonchia_ip_master"},{"location":{"location":"https://github.com/zoebelle-pang/ip.git","repoName":"ip","organization":"zoebelle-pang","domainName":"github"},"branch":"master","displayName":"zoebelle-pang/ip[master]","outputFolderName":"zoebelle-pang_ip_master"},{"location":{"location":"https://github.com/DominicFuMJ/ip.git","repoName":"ip","organization":"DominicFuMJ","domainName":"github"},"branch":"master","displayName":"DominicFuMJ/ip[master]","outputFolderName":"DominicFuMJ_ip_master"},{"location":{"location":"https://github.com/NeoHW/ip.git","repoName":"ip","organization":"NeoHW","domainName":"github"},"branch":"master","displayName":"NeoHW/ip[master]","outputFolderName":"NeoHW_ip_master"},{"location":{"location":"https://github.com/ZhiWei1010/ip.git","repoName":"ip","organization":"ZhiWei1010","domainName":"github"},"branch":"master","displayName":"ZhiWei1010/ip[master]","outputFolderName":"ZhiWei1010_ip_master"},{"location":{"location":"https://github.com/tankh99/ip.git","repoName":"ip","organization":"tankh99","domainName":"github"},"branch":"master","displayName":"tankh99/ip[master]","outputFolderName":"tankh99_ip_master"},{"location":{"location":"https://github.com/YuvBindal/ip.git","repoName":"ip","organization":"YuvBindal","domainName":"github"},"branch":"master","displayName":"YuvBindal/ip[master]","outputFolderName":"YuvBindal_ip_master"},{"location":{"location":"https://github.com/chiralcentre/ip.git","repoName":"ip","organization":"chiralcentre","domainName":"github"},"branch":"master","displayName":"chiralcentre/ip[master]","outputFolderName":"chiralcentre_ip_master"},{"location":{"location":"https://github.com/cocoanautz/ip.git","repoName":"ip","organization":"cocoanautz","domainName":"github"},"branch":"master","displayName":"cocoanautz/ip[master]","outputFolderName":"cocoanautz_ip_master"},{"location":{"location":"https://github.com/peterXGD/ip.git","repoName":"ip","organization":"peterXGD","domainName":"github"},"branch":"master","displayName":"peterXGD/ip[master]","outputFolderName":"peterXGD_ip_master"},{"location":{"location":"https://github.com/martinng01/ip.git","repoName":"ip","organization":"martinng01","domainName":"github"},"branch":"master","displayName":"martinng01/ip[master]","outputFolderName":"martinng01_ip_master"},{"location":{"location":"https://github.com/pjanthony2001/ip.git","repoName":"ip","organization":"pjanthony2001","domainName":"github"},"branch":"master","displayName":"pjanthony2001/ip[master]","outputFolderName":"pjanthony2001_ip_master"},{"location":{"location":"https://github.com/yuechen2001/ip.git","repoName":"ip","organization":"yuechen2001","domainName":"github"},"branch":"master","displayName":"yuechen2001/ip[master]","outputFolderName":"yuechen2001_ip_master"},{"location":{"location":"https://github.com/SampsonYe1999/ip.git","repoName":"ip","organization":"SampsonYe1999","domainName":"github"},"branch":"master","displayName":"SampsonYe1999/ip[master]","outputFolderName":"SampsonYe1999_ip_master"},{"location":{"location":"https://github.com/ejnan/ip.git","repoName":"ip","organization":"ejnan","domainName":"github"},"branch":"master","displayName":"ejnan/ip[master]","outputFolderName":"ejnan_ip_master"},{"location":{"location":"https://github.com/c-j-lh/ip.git","repoName":"ip","organization":"c-j-lh","domainName":"github"},"branch":"master","displayName":"c-j-lh/ip[master]","outputFolderName":"c-j-lh_ip_master"},{"location":{"location":"https://github.com/xiaorui-ui/ip.git","repoName":"ip","organization":"xiaorui-ui","domainName":"github"},"branch":"master","displayName":"xiaorui-ui/ip[master]","outputFolderName":"xiaorui-ui_ip_master"},{"location":{"location":"https://github.com/qinboan/ip.git","repoName":"ip","organization":"qinboan","domainName":"github"},"branch":"master","displayName":"qinboan/ip[master]","outputFolderName":"qinboan_ip_master"},{"location":{"location":"https://github.com/qinxutan/ip.git","repoName":"ip","organization":"qinxutan","domainName":"github"},"branch":"master","displayName":"qinxutan/ip[master]","outputFolderName":"qinxutan_ip_master"},{"location":{"location":"https://github.com/S-Aishvarya/ip.git","repoName":"ip","organization":"S-Aishvarya","domainName":"github"},"branch":"master","displayName":"S-Aishvarya/ip[master]","outputFolderName":"S-Aishvarya_ip_master"},{"location":{"location":"https://github.com/zhekaiii/ip.git","repoName":"ip","organization":"zhekaiii","domainName":"github"},"branch":"master","displayName":"zhekaiii/ip[master]","outputFolderName":"zhekaiii_ip_master"},{"location":{"location":"https://github.com/taeewonnn/ip.git","repoName":"ip","organization":"taeewonnn","domainName":"github"},"branch":"master","displayName":"taeewonnn/ip[master]","outputFolderName":"taeewonnn_ip_master"},{"location":{"location":"https://github.com/hjungwoo01/ip.git","repoName":"ip","organization":"hjungwoo01","domainName":"github"},"branch":"master","displayName":"hjungwoo01/ip[master]","outputFolderName":"hjungwoo01_ip_master"},{"location":{"location":"https://github.com/ForAeons/ip.git","repoName":"ip","organization":"ForAeons","domainName":"github"},"branch":"master","displayName":"ForAeons/ip[master]","outputFolderName":"ForAeons_ip_master"},{"location":{"location":"https://github.com/minghowC/ip.git","repoName":"ip","organization":"minghowC","domainName":"github"},"branch":"master","displayName":"minghowC/ip[master]","outputFolderName":"minghowC_ip_master"},{"location":{"location":"https://github.com/E0735389/ip.git","repoName":"ip","organization":"E0735389","domainName":"github"},"branch":"master","displayName":"E0735389/ip[master]","outputFolderName":"E0735389_ip_master"},{"location":{"location":"https://github.com/Ty-stan0417/ip.git","repoName":"ip","organization":"Ty-stan0417","domainName":"github"},"branch":"master","displayName":"Ty-stan0417/ip[master]","outputFolderName":"Ty-stan0417_ip_master"},{"location":{"location":"https://github.com/dabzpengu/ip.git","repoName":"ip","organization":"dabzpengu","domainName":"github"},"branch":"master","displayName":"dabzpengu/ip[master]","outputFolderName":"dabzpengu_ip_master"},{"location":{"location":"https://github.com/rizkidelta/ip.git","repoName":"ip","organization":"rizkidelta","domainName":"github"},"branch":"master","displayName":"rizkidelta/ip[master]","outputFolderName":"rizkidelta_ip_master"},{"location":{"location":"https://github.com/wilsonwid/ip.git","repoName":"ip","organization":"wilsonwid","domainName":"github"},"branch":"master","displayName":"wilsonwid/ip[master]","outputFolderName":"wilsonwid_ip_master"},{"location":{"location":"https://github.com/chiageng/ip.git","repoName":"ip","organization":"chiageng","domainName":"github"},"branch":"master","displayName":"chiageng/ip[master]","outputFolderName":"chiageng_ip_master"},{"location":{"location":"https://github.com/julia-cp/ip.git","repoName":"ip","organization":"julia-cp","domainName":"github"},"branch":"master","displayName":"julia-cp/ip[master]","outputFolderName":"julia-cp_ip_master"},{"location":{"location":"https://github.com/ZHANGTIANYAO1/ip.git","repoName":"ip","organization":"ZHANGTIANYAO1","domainName":"github"},"branch":"master","displayName":"ZHANGTIANYAO1/ip[master]","outputFolderName":"ZHANGTIANYAO1_ip_master"},{"location":{"location":"https://github.com/tahsinhasem/ip.git","repoName":"ip","organization":"tahsinhasem","domainName":"github"},"branch":"master","displayName":"tahsinhasem/ip[master]","outputFolderName":"tahsinhasem_ip_master"},{"location":{"location":"https://github.com/LifHoshi/ip.git","repoName":"ip","organization":"LifHoshi","domainName":"github"},"branch":"master","displayName":"LifHoshi/ip[master]","outputFolderName":"LifHoshi_ip_master"},{"location":{"location":"https://github.com/ananya21/ip.git","repoName":"ip","organization":"ananya21","domainName":"github"},"branch":"master","displayName":"ananya21/ip[master]","outputFolderName":"ananya21_ip_master"},{"location":{"location":"https://github.com/acekhoon/ip.git","repoName":"ip","organization":"acekhoon","domainName":"github"},"branch":"master","displayName":"acekhoon/ip[master]","outputFolderName":"acekhoon_ip_master"},{"location":{"location":"https://github.com/willowisp01/ip.git","repoName":"ip","organization":"willowisp01","domainName":"github"},"branch":"master","displayName":"willowisp01/ip[master]","outputFolderName":"willowisp01_ip_master"},{"location":{"location":"https://github.com/Jajared/ip.git","repoName":"ip","organization":"Jajared","domainName":"github"},"branch":"master","displayName":"Jajared/ip[master]","outputFolderName":"Jajared_ip_master"},{"location":{"location":"https://github.com/JerryO3/ip.git","repoName":"ip","organization":"JerryO3","domainName":"github"},"branch":"master","displayName":"JerryO3/ip[master]","outputFolderName":"JerryO3_ip_master"},{"location":{"location":"https://github.com/cyqjoseph/ip.git","repoName":"ip","organization":"cyqjoseph","domainName":"github"},"branch":"master","displayName":"cyqjoseph/ip[master]","outputFolderName":"cyqjoseph_ip_master"},{"location":{"location":"https://github.com/jieqiboh/ip.git","repoName":"ip","organization":"jieqiboh","domainName":"github"},"branch":"master","displayName":"jieqiboh/ip[master]","outputFolderName":"jieqiboh_ip_master"},{"location":{"location":"https://github.com/theman-oj10/ip.git","repoName":"ip","organization":"theman-oj10","domainName":"github"},"branch":"master","displayName":"theman-oj10/ip[master]","outputFolderName":"theman-oj10_ip_master"},{"location":{"location":"https://github.com/owenong1/ip.git","repoName":"ip","organization":"owenong1","domainName":"github"},"branch":"master","displayName":"owenong1/ip[master]","outputFolderName":"owenong1_ip_master"},{"location":{"location":"https://github.com/aureliony/ip.git","repoName":"ip","organization":"aureliony","domainName":"github"},"branch":"master","displayName":"aureliony/ip[master]","outputFolderName":"aureliony_ip_master"},{"location":{"location":"https://github.com/yisiox/ip.git","repoName":"ip","organization":"yisiox","domainName":"github"},"branch":"master","displayName":"yisiox/ip[master]","outputFolderName":"yisiox_ip_master"},{"location":{"location":"https://github.com/Darkarche3/ip.git","repoName":"ip","organization":"Darkarche3","domainName":"github"},"branch":"master","displayName":"Darkarche3/ip[master]","outputFolderName":"Darkarche3_ip_master"},{"location":{"location":"https://github.com/Jolonauh/ip.git","repoName":"ip","organization":"Jolonauh","domainName":"github"},"branch":"master","displayName":"Jolonauh/ip[master]","outputFolderName":"Jolonauh_ip_master"},{"location":{"location":"https://github.com/kervyntan/ip.git","repoName":"ip","organization":"kervyntan","domainName":"github"},"branch":"master","displayName":"kervyntan/ip[master]","outputFolderName":"kervyntan_ip_master"},{"location":{"location":"https://github.com/yashpola/ip.git","repoName":"ip","organization":"yashpola","domainName":"github"},"branch":"master","displayName":"yashpola/ip[master]","outputFolderName":"yashpola_ip_master"},{"location":{"location":"https://github.com/wongkj12/ip.git","repoName":"ip","organization":"wongkj12","domainName":"github"},"branch":"master","displayName":"wongkj12/ip[master]","outputFolderName":"wongkj12_ip_master"},{"location":{"location":"https://github.com/tituschewxj/ip.git","repoName":"ip","organization":"tituschewxj","domainName":"github"},"branch":"master","displayName":"tituschewxj/ip[master]","outputFolderName":"tituschewxj_ip_master"},{"location":{"location":"https://github.com/Zer0Legion/ip.git","repoName":"ip","organization":"Zer0Legion","domainName":"github"},"branch":"master","displayName":"Zer0Legion/ip[master]","outputFolderName":"Zer0Legion_ip_master"},{"location":{"location":"https://github.com/g-tejas/ip.git","repoName":"ip","organization":"g-tejas","domainName":"github"},"branch":"master","displayName":"g-tejas/ip[master]","outputFolderName":"g-tejas_ip_master"},{"location":{"location":"https://github.com/legionlegion/ip.git","repoName":"ip","organization":"legionlegion","domainName":"github"},"branch":"master","displayName":"legionlegion/ip[master]","outputFolderName":"legionlegion_ip_master"},{"location":{"location":"https://github.com/tanguoyang/ip.git","repoName":"ip","organization":"tanguoyang","domainName":"github"},"branch":"master","displayName":"tanguoyang/ip[master]","outputFolderName":"tanguoyang_ip_master"},{"location":{"location":"https://github.com/jovantanyk/ip.git","repoName":"ip","organization":"jovantanyk","domainName":"github"},"branch":"master","displayName":"jovantanyk/ip[master]","outputFolderName":"jovantanyk_ip_master"},{"location":{"location":"https://github.com/Xilef121/ip.git","repoName":"ip","organization":"Xilef121","domainName":"github"},"branch":"master","displayName":"Xilef121/ip[master]","outputFolderName":"Xilef121_ip_master"},{"location":{"location":"https://github.com/ziiqii/ip.git","repoName":"ip","organization":"ziiqii","domainName":"github"},"branch":"master","displayName":"ziiqii/ip[master]","outputFolderName":"ziiqii_ip_master"},{"location":{"location":"https://github.com/Bandov/ip.git","repoName":"ip","organization":"Bandov","domainName":"github"},"branch":"master","displayName":"Bandov/ip[master]","outputFolderName":"Bandov_ip_master"},{"location":{"location":"https://github.com/appleraincoat/ip.git","repoName":"ip","organization":"appleraincoat","domainName":"github"},"branch":"master","displayName":"appleraincoat/ip[master]","outputFolderName":"appleraincoat_ip_master"},{"location":{"location":"https://github.com/belligerentbeagle/ip.git","repoName":"ip","organization":"belligerentbeagle","domainName":"github"},"branch":"master","displayName":"belligerentbeagle/ip[master]","outputFolderName":"belligerentbeagle_ip_master"},{"location":{"location":"https://github.com/limrik/ip.git","repoName":"ip","organization":"limrik","domainName":"github"},"branch":"master","displayName":"limrik/ip[master]","outputFolderName":"limrik_ip_master"},{"location":{"location":"https://github.com/Tsenrae/ip.git","repoName":"ip","organization":"Tsenrae","domainName":"github"},"branch":"master","displayName":"Tsenrae/ip[master]","outputFolderName":"Tsenrae_ip_master"},{"location":{"location":"https://github.com/nichee/ip.git","repoName":"ip","organization":"nichee","domainName":"github"},"branch":"master","displayName":"nichee/ip[master]","outputFolderName":"nichee_ip_master"},{"location":{"location":"https://github.com/justincred/ip.git","repoName":"ip","organization":"justincred","domainName":"github"},"branch":"master","displayName":"justincred/ip[master]","outputFolderName":"justincred_ip_master"},{"location":{"location":"https://github.com/Tanzhiheng26/ip.git","repoName":"ip","organization":"Tanzhiheng26","domainName":"github"},"branch":"master","displayName":"Tanzhiheng26/ip[master]","outputFolderName":"Tanzhiheng26_ip_master"},{"location":{"location":"https://github.com/cliftonchee/ip.git","repoName":"ip","organization":"cliftonchee","domainName":"github"},"branch":"master","displayName":"cliftonchee/ip[master]","outputFolderName":"cliftonchee_ip_master"},{"location":{"location":"https://github.com/SimHanKiong/ip.git","repoName":"ip","organization":"SimHanKiong","domainName":"github"},"branch":"master","displayName":"SimHanKiong/ip[master]","outputFolderName":"SimHanKiong_ip_master"},{"location":{"location":"https://github.com/ChrysanthemumT/ip.git","repoName":"ip","organization":"ChrysanthemumT","domainName":"github"},"branch":"master","displayName":"ChrysanthemumT/ip[master]","outputFolderName":"ChrysanthemumT_ip_master"},{"location":{"location":"https://github.com/jyztintan/ip.git","repoName":"ip","organization":"jyztintan","domainName":"github"},"branch":"master","displayName":"jyztintan/ip[master]","outputFolderName":"jyztintan_ip_master"},{"location":{"location":"https://github.com/ondretann/ip.git","repoName":"ip","organization":"ondretann","domainName":"github"},"branch":"master","displayName":"ondretann/ip[master]","outputFolderName":"ondretann_ip_master"},{"location":{"location":"https://github.com/bryanyee33/ip.git","repoName":"ip","organization":"bryanyee33","domainName":"github"},"branch":"master","displayName":"bryanyee33/ip[master]","outputFolderName":"bryanyee33_ip_master"},{"location":{"location":"https://github.com/chonghaoen/ip.git","repoName":"ip","organization":"chonghaoen","domainName":"github"},"branch":"master","displayName":"chonghaoen/ip[master]","outputFolderName":"chonghaoen_ip_master"},{"location":{"location":"https://github.com/ronnnnnnnnn/ip.git","repoName":"ip","organization":"ronnnnnnnnn","domainName":"github"},"branch":"master","displayName":"ronnnnnnnnn/ip[master]","outputFolderName":"ronnnnnnnnn_ip_master"},{"location":{"location":"https://github.com/ChuaZenKhoon/ip.git","repoName":"ip","organization":"ChuaZenKhoon","domainName":"github"},"branch":"master","displayName":"ChuaZenKhoon/ip[master]","outputFolderName":"ChuaZenKhoon_ip_master"},{"location":{"location":"https://github.com/gerteck/ip.git","repoName":"ip","organization":"gerteck","domainName":"github"},"branch":"master","displayName":"gerteck/ip[master]","outputFolderName":"gerteck_ip_master"},{"location":{"location":"https://github.com/ReganChoy/ip.git","repoName":"ip","organization":"ReganChoy","domainName":"github"},"branch":"master","displayName":"ReganChoy/ip[master]","outputFolderName":"ReganChoy_ip_master"},{"location":{"location":"https://github.com/zhuuyicheng/ip.git","repoName":"ip","organization":"zhuuyicheng","domainName":"github"},"branch":"master","displayName":"zhuuyicheng/ip[master]","outputFolderName":"zhuuyicheng_ip_master"},{"location":{"location":"https://github.com/chaaaaun/ip.git","repoName":"ip","organization":"chaaaaun","domainName":"github"},"branch":"master","displayName":"chaaaaun/ip[master]","outputFolderName":"chaaaaun_ip_master"},{"location":{"location":"https://github.com/ChuaZiLong/ip.git","repoName":"ip","organization":"ChuaZiLong","domainName":"github"},"branch":"master","displayName":"ChuaZiLong/ip[master]","outputFolderName":"ChuaZiLong_ip_master"},{"location":{"location":"https://github.com/Benson15912/ip.git","repoName":"ip","organization":"Benson15912","domainName":"github"},"branch":"master","displayName":"Benson15912/ip[master]","outputFolderName":"Benson15912_ip_master"},{"location":{"location":"https://github.com/c-wenlong/ip.git","repoName":"ip","organization":"c-wenlong","domainName":"github"},"branch":"master","displayName":"c-wenlong/ip[master]","outputFolderName":"c-wenlong_ip_master"},{"location":{"location":"https://github.com/gavin331/ip.git","repoName":"ip","organization":"gavin331","domainName":"github"},"branch":"master","displayName":"gavin331/ip[master]","outputFolderName":"gavin331_ip_master"},{"location":{"location":"https://github.com/CJerrong/ip.git","repoName":"ip","organization":"CJerrong","domainName":"github"},"branch":"master","displayName":"CJerrong/ip[master]","outputFolderName":"CJerrong_ip_master"},{"location":{"location":"https://github.com/ibnu2651/ip.git","repoName":"ip","organization":"ibnu2651","domainName":"github"},"branch":"master","displayName":"ibnu2651/ip[master]","outputFolderName":"ibnu2651_ip_master"},{"location":{"location":"https://github.com/1rbg/ip.git","repoName":"ip","organization":"1rbg","domainName":"github"},"branch":"master","displayName":"1rbg/ip[master]","outputFolderName":"1rbg_ip_master"},{"location":{"location":"https://github.com/alvinnzz/ip.git","repoName":"ip","organization":"alvinnzz","domainName":"github"},"branch":"master","displayName":"alvinnzz/ip[master]","outputFolderName":"alvinnzz_ip_master"},{"location":{"location":"https://github.com/whelan-low/ip.git","repoName":"ip","organization":"whelan-low","domainName":"github"},"branch":"master","displayName":"whelan-low/ip[master]","outputFolderName":"whelan-low_ip_master"},{"location":{"location":"https://github.com/ShanylOng/ip.git","repoName":"ip","organization":"ShanylOng","domainName":"github"},"branch":"master","displayName":"ShanylOng/ip[master]","outputFolderName":"ShanylOng_ip_master"},{"location":{"location":"https://github.com/ReflectiveObsidian/ip.git","repoName":"ip","organization":"ReflectiveObsidian","domainName":"github"},"branch":"master","displayName":"ReflectiveObsidian/ip[master]","outputFolderName":"ReflectiveObsidian_ip_master"},{"location":{"location":"https://github.com/kwuunnn/ip.git","repoName":"ip","organization":"kwuunnn","domainName":"github"},"branch":"master","displayName":"kwuunnn/ip[master]","outputFolderName":"kwuunnn_ip_master"},{"location":{"location":"https://github.com/billyhoce/ip.git","repoName":"ip","organization":"billyhoce","domainName":"github"},"branch":"master","displayName":"billyhoce/ip[master]","outputFolderName":"billyhoce_ip_master"},{"location":{"location":"https://github.com/Ryo-Seah/ip.git","repoName":"ip","organization":"Ryo-Seah","domainName":"github"},"branch":"master","displayName":"Ryo-Seah/ip[master]","outputFolderName":"Ryo-Seah_ip_master"},{"location":{"location":"https://github.com/meowwtama/ip.git","repoName":"ip","organization":"meowwtama","domainName":"github"},"branch":"master","displayName":"meowwtama/ip[master]","outputFolderName":"meowwtama_ip_master"},{"location":{"location":"https://github.com/gingerbreaf/ip.git","repoName":"ip","organization":"gingerbreaf","domainName":"github"},"branch":"master","displayName":"gingerbreaf/ip[master]","outputFolderName":"gingerbreaf_ip_master"},{"location":{"location":"https://github.com/yeoshuheng/ip.git","repoName":"ip","organization":"yeoshuheng","domainName":"github"},"branch":"master","displayName":"yeoshuheng/ip[master]","outputFolderName":"yeoshuheng_ip_master"},{"location":{"location":"https://github.com/shaunlxw/ip.git","repoName":"ip","organization":"shaunlxw","domainName":"github"},"branch":"master","displayName":"shaunlxw/ip[master]","outputFolderName":"shaunlxw_ip_master"},{"location":{"location":"https://github.com/DingBao-sys/ip.git","repoName":"ip","organization":"DingBao-sys","domainName":"github"},"branch":"master","displayName":"DingBao-sys/ip[master]","outputFolderName":"DingBao-sys_ip_master"},{"location":{"location":"https://github.com/ashleyclx/ip.git","repoName":"ip","organization":"ashleyclx","domainName":"github"},"branch":"master","displayName":"ashleyclx/ip[master]","outputFolderName":"ashleyclx_ip_master"},{"location":{"location":"https://github.com/TheodoreKooo/ip.git","repoName":"ip","organization":"TheodoreKooo","domainName":"github"},"branch":"master","displayName":"TheodoreKooo/ip[master]","outputFolderName":"TheodoreKooo_ip_master"},{"location":{"location":"https://github.com/casaarlai/ip.git","repoName":"ip","organization":"casaarlai","domainName":"github"},"branch":"master","displayName":"casaarlai/ip[master]","outputFolderName":"casaarlai_ip_master"},{"location":{"location":"https://github.com/sun-ruiheng/ip.git","repoName":"ip","organization":"sun-ruiheng","domainName":"github"},"branch":"master","displayName":"sun-ruiheng/ip[master]","outputFolderName":"sun-ruiheng_ip_master"},{"location":{"location":"https://github.com/Fidget-Spinner/ip.git","repoName":"ip","organization":"Fidget-Spinner","domainName":"github"},"branch":"master","displayName":"Fidget-Spinner/ip[master]","outputFolderName":"Fidget-Spinner_ip_master"},{"location":{"location":"https://github.com/Cedricaca/ip.git","repoName":"ip","organization":"Cedricaca","domainName":"github"},"branch":"master","displayName":"Cedricaca/ip[master]","outputFolderName":"Cedricaca_ip_master"},{"location":{"location":"https://github.com/YowSiaoKang/ip.git","repoName":"ip","organization":"YowSiaoKang","domainName":"github"},"branch":"master","displayName":"YowSiaoKang/ip[master]","outputFolderName":"YowSiaoKang_ip_master"},{"location":{"location":"https://github.com/J-wang-CSMA/ip.git","repoName":"ip","organization":"J-wang-CSMA","domainName":"github"},"branch":"master","displayName":"J-wang-CSMA/ip[master]","outputFolderName":"J-wang-CSMA_ip_master"},{"location":{"location":"https://github.com/Ragnapop/ip.git","repoName":"ip","organization":"Ragnapop","domainName":"github"},"branch":"master","displayName":"Ragnapop/ip[master]","outputFolderName":"Ragnapop_ip_master"},{"location":{"location":"https://github.com/UdhayaShan1/ip.git","repoName":"ip","organization":"UdhayaShan1","domainName":"github"},"branch":"master","displayName":"UdhayaShan1/ip[master]","outputFolderName":"UdhayaShan1_ip_master"},{"location":{"location":"https://github.com/tayziyi/ip.git","repoName":"ip","organization":"tayziyi","domainName":"github"},"branch":"master","displayName":"tayziyi/ip[master]","outputFolderName":"tayziyi_ip_master"},{"location":{"location":"https://github.com/blaukc/ip.git","repoName":"ip","organization":"blaukc","domainName":"github"},"branch":"master","displayName":"blaukc/ip[master]","outputFolderName":"blaukc_ip_master"},{"location":{"location":"https://github.com/kokerinks/ip.git","repoName":"ip","organization":"kokerinks","domainName":"github"},"branch":"master","displayName":"kokerinks/ip[master]","outputFolderName":"kokerinks_ip_master"},{"location":{"location":"https://github.com/mahadhir247/ip.git","repoName":"ip","organization":"mahadhir247","domainName":"github"},"branch":"master","displayName":"mahadhir247/ip[master]","outputFolderName":"mahadhir247_ip_master"},{"location":{"location":"https://github.com/delishad21/ip.git","repoName":"ip","organization":"delishad21","domainName":"github"},"branch":"master","displayName":"delishad21/ip[master]","outputFolderName":"delishad21_ip_master"},{"location":{"location":"https://github.com/gavingoh99/ip.git","repoName":"ip","organization":"gavingoh99","domainName":"github"},"branch":"master","displayName":"gavingoh99/ip[master]","outputFolderName":"gavingoh99_ip_master"},{"location":{"location":"https://github.com/kjw142857/ip.git","repoName":"ip","organization":"kjw142857","domainName":"github"},"branch":"master","displayName":"kjw142857/ip[master]","outputFolderName":"kjw142857_ip_master"},{"location":{"location":"https://github.com/dayn-1/ip.git","repoName":"ip","organization":"dayn-1","domainName":"github"},"branch":"master","displayName":"dayn-1/ip[master]","outputFolderName":"dayn-1_ip_master"},{"location":{"location":"https://github.com/macareonie/ip.git","repoName":"ip","organization":"macareonie","domainName":"github"},"branch":"master","displayName":"macareonie/ip[master]","outputFolderName":"macareonie_ip_master"},{"location":{"location":"https://github.com/Rikko1204/ip.git","repoName":"ip","organization":"Rikko1204","domainName":"github"},"branch":"master","displayName":"Rikko1204/ip[master]","outputFolderName":"Rikko1204_ip_master"},{"location":{"location":"https://github.com/teojunda/ip.git","repoName":"ip","organization":"teojunda","domainName":"github"},"branch":"master","displayName":"teojunda/ip[master]","outputFolderName":"teojunda_ip_master"},{"location":{"location":"https://github.com/thewongdylan/ip.git","repoName":"ip","organization":"thewongdylan","domainName":"github"},"branch":"master","displayName":"thewongdylan/ip[master]","outputFolderName":"thewongdylan_ip_master"},{"location":{"location":"https://github.com/bertrandong/ip.git","repoName":"ip","organization":"bertrandong","domainName":"github"},"branch":"master","displayName":"bertrandong/ip[master]","outputFolderName":"bertrandong_ip_master"},{"location":{"location":"https://github.com/rertyy/ip.git","repoName":"ip","organization":"rertyy","domainName":"github"},"branch":"master","displayName":"rertyy/ip[master]","outputFolderName":"rertyy_ip_master"},{"location":{"location":"https://github.com/soons1/ip.git","repoName":"ip","organization":"soons1","domainName":"github"},"branch":"master","displayName":"soons1/ip[master]","outputFolderName":"soons1_ip_master"},{"location":{"location":"https://github.com/solomonng2001/ip.git","repoName":"ip","organization":"solomonng2001","domainName":"github"},"branch":"master","displayName":"solomonng2001/ip[master]","outputFolderName":"solomonng2001_ip_master"},{"location":{"location":"https://github.com/guanquann/ip.git","repoName":"ip","organization":"guanquann","domainName":"github"},"branch":"master","displayName":"guanquann/ip[master]","outputFolderName":"guanquann_ip_master"},{"location":{"location":"https://github.com/YuSoonZ/ip.git","repoName":"ip","organization":"YuSoonZ","domainName":"github"},"branch":"master","displayName":"YuSoonZ/ip[master]","outputFolderName":"YuSoonZ_ip_master"},{"location":{"location":"https://github.com/JuliaPoo/ip.git","repoName":"ip","organization":"JuliaPoo","domainName":"github"},"branch":"master","displayName":"JuliaPoo/ip[master]","outputFolderName":"JuliaPoo_ip_master"},{"location":{"location":"https://github.com/dillontkh/ip.git","repoName":"ip","organization":"dillontkh","domainName":"github"},"branch":"master","displayName":"dillontkh/ip[master]","outputFolderName":"dillontkh_ip_master"},{"location":{"location":"https://github.com/camille-readbean/ip.git","repoName":"ip","organization":"camille-readbean","domainName":"github"},"branch":"master","displayName":"camille-readbean/ip[master]","outputFolderName":"camille-readbean_ip_master"},{"location":{"location":"https://github.com/ruijietay/ip.git","repoName":"ip","organization":"ruijietay","domainName":"github"},"branch":"master","displayName":"ruijietay/ip[master]","outputFolderName":"ruijietay_ip_master"},{"location":{"location":"https://github.com/HM33-Stu/ip.git","repoName":"ip","organization":"HM33-Stu","domainName":"github"},"branch":"master","displayName":"HM33-Stu/ip[master]","outputFolderName":"HM33-Stu_ip_master"},{"location":{"location":"https://github.com/nobodyishappy/ip.git","repoName":"ip","organization":"nobodyishappy","domainName":"github"},"branch":"master","displayName":"nobodyishappy/ip[master]","outputFolderName":"nobodyishappy_ip_master"},{"location":{"location":"https://github.com/yadunut/ip.git","repoName":"ip","organization":"yadunut","domainName":"github"},"branch":"master","displayName":"yadunut/ip[master]","outputFolderName":"yadunut_ip_master"},{"location":{"location":"https://github.com/breezetall/ip.git","repoName":"ip","organization":"breezetall","domainName":"github"},"branch":"master","displayName":"breezetall/ip[master]","outputFolderName":"breezetall_ip_master"},{"location":{"location":"https://github.com/jjchee77/ip.git","repoName":"ip","organization":"jjchee77","domainName":"github"},"branch":"master","displayName":"jjchee77/ip[master]","outputFolderName":"jjchee77_ip_master"},{"location":{"location":"https://github.com/BryanL2303/ip.git","repoName":"ip","organization":"BryanL2303","domainName":"github"},"branch":"master","displayName":"BryanL2303/ip[master]","outputFolderName":"BryanL2303_ip_master"},{"location":{"location":"https://github.com/RyanNgWH/ip.git","repoName":"ip","organization":"RyanNgWH","domainName":"github"},"branch":"master","displayName":"RyanNgWH/ip[master]","outputFolderName":"RyanNgWH_ip_master"},{"location":{"location":"https://github.com/Jaspertzx/ip.git","repoName":"ip","organization":"Jaspertzx","domainName":"github"},"branch":"master","displayName":"Jaspertzx/ip[master]","outputFolderName":"Jaspertzx_ip_master"},{"location":{"location":"https://github.com/smolegz/ip.git","repoName":"ip","organization":"smolegz","domainName":"github"},"branch":"master","displayName":"smolegz/ip[master]","outputFolderName":"smolegz_ip_master"},{"location":{"location":"https://github.com/azumieflare/ip.git","repoName":"ip","organization":"azumieflare","domainName":"github"},"branch":"master","displayName":"azumieflare/ip[master]","outputFolderName":"azumieflare_ip_master"},{"location":{"location":"https://github.com/javierng2knus/ip.git","repoName":"ip","organization":"javierng2knus","domainName":"github"},"branch":"master","displayName":"javierng2knus/ip[master]","outputFolderName":"javierng2knus_ip_master"},{"location":{"location":"https://github.com/SimKianSeng/ip.git","repoName":"ip","organization":"SimKianSeng","domainName":"github"},"branch":"master","displayName":"SimKianSeng/ip[master]","outputFolderName":"SimKianSeng_ip_master"},{"location":{"location":"https://github.com/jasperng-nus/ip.git","repoName":"ip","organization":"jasperng-nus","domainName":"github"},"branch":"master","displayName":"jasperng-nus/ip[master]","outputFolderName":"jasperng-nus_ip_master"},{"location":{"location":"https://github.com/HongRay/ip.git","repoName":"ip","organization":"HongRay","domainName":"github"},"branch":"master","displayName":"HongRay/ip[master]","outputFolderName":"HongRay_ip_master"},{"location":{"location":"https://github.com/kailashgautham/ip.git","repoName":"ip","organization":"kailashgautham","domainName":"github"},"branch":"master","displayName":"kailashgautham/ip[master]","outputFolderName":"kailashgautham_ip_master"},{"location":{"location":"https://github.com/zhenghuil/ip.git","repoName":"ip","organization":"zhenghuil","domainName":"github"},"branch":"master","displayName":"zhenghuil/ip[master]","outputFolderName":"zhenghuil_ip_master"},{"location":{"location":"https://github.com/donwong2308/ip.git","repoName":"ip","organization":"donwong2308","domainName":"github"},"branch":"master","displayName":"donwong2308/ip[master]","outputFolderName":"donwong2308_ip_master"},{"location":{"location":"https://github.com/jayllo-c/ip.git","repoName":"ip","organization":"jayllo-c","domainName":"github"},"branch":"master","displayName":"jayllo-c/ip[master]","outputFolderName":"jayllo-c_ip_master"},{"location":{"location":"https://github.com/cheahTJ/ip.git","repoName":"ip","organization":"cheahTJ","domainName":"github"},"branch":"master","displayName":"cheahTJ/ip[master]","outputFolderName":"cheahTJ_ip_master"},{"location":{"location":"https://github.com/triciiaaa/ip.git","repoName":"ip","organization":"triciiaaa","domainName":"github"},"branch":"master","displayName":"triciiaaa/ip[master]","outputFolderName":"triciiaaa_ip_master"},{"location":{"location":"https://github.com/larainezo/ip.git","repoName":"ip","organization":"larainezo","domainName":"github"},"branch":"master","displayName":"larainezo/ip[master]","outputFolderName":"larainezo_ip_master"},{"location":{"location":"https://github.com/kailinteoo/ip.git","repoName":"ip","organization":"kailinteoo","domainName":"github"},"branch":"master","displayName":"kailinteoo/ip[master]","outputFolderName":"kailinteoo_ip_master"},{"location":{"location":"https://github.com/brennalaurentan/ip.git","repoName":"ip","organization":"brennalaurentan","domainName":"github"},"branch":"master","displayName":"brennalaurentan/ip[master]","outputFolderName":"brennalaurentan_ip_master"},{"location":{"location":"https://github.com/GiselleTan/ip.git","repoName":"ip","organization":"GiselleTan","domainName":"github"},"branch":"master","displayName":"GiselleTan/ip[master]","outputFolderName":"GiselleTan_ip_master"},{"location":{"location":"https://github.com/taufiq/ip.git","repoName":"ip","organization":"taufiq","domainName":"github"},"branch":"master","displayName":"taufiq/ip[master]","outputFolderName":"taufiq_ip_master"},{"location":{"location":"https://github.com/xuelinglow/ip.git","repoName":"ip","organization":"xuelinglow","domainName":"github"},"branch":"master","displayName":"xuelinglow/ip[master]","outputFolderName":"xuelinglow_ip_master"},{"location":{"location":"https://github.com/shunjieee/ip.git","repoName":"ip","organization":"shunjieee","domainName":"github"},"branch":"master","displayName":"shunjieee/ip[master]","outputFolderName":"shunjieee_ip_master"},{"location":{"location":"https://github.com/SherwynNg/ip.git","repoName":"ip","organization":"SherwynNg","domainName":"github"},"branch":"master","displayName":"SherwynNg/ip[master]","outputFolderName":"SherwynNg_ip_master"},{"location":{"location":"https://github.com/AndrewOng2066/ip.git","repoName":"ip","organization":"AndrewOng2066","domainName":"github"},"branch":"master","displayName":"AndrewOng2066/ip[master]","outputFolderName":"AndrewOng2066_ip_master"},{"location":{"location":"https://github.com/MarcusGitty/ip.git","repoName":"ip","organization":"MarcusGitty","domainName":"github"},"branch":"master","displayName":"MarcusGitty/ip[master]","outputFolderName":"MarcusGitty_ip_master"},{"location":{"location":"https://github.com/Anant1902/ip.git","repoName":"ip","organization":"Anant1902","domainName":"github"},"branch":"master","displayName":"Anant1902/ip[master]","outputFolderName":"Anant1902_ip_master"},{"location":{"location":"https://github.com/headcube1/ip.git","repoName":"ip","organization":"headcube1","domainName":"github"},"branch":"master","displayName":"headcube1/ip[master]","outputFolderName":"headcube1_ip_master"},{"location":{"location":"https://github.com/jimseah-0116/ip.git","repoName":"ip","organization":"jimseah-0116","domainName":"github"},"branch":"master","displayName":"jimseah-0116/ip[master]","outputFolderName":"jimseah-0116_ip_master"},{"location":{"location":"https://github.com/chuahjiajie/ip.git","repoName":"ip","organization":"chuahjiajie","domainName":"github"},"branch":"master","displayName":"chuahjiajie/ip[master]","outputFolderName":"chuahjiajie_ip_master"},{"location":{"location":"https://github.com/ararchch/ip.git","repoName":"ip","organization":"ararchch","domainName":"github"},"branch":"master","displayName":"ararchch/ip[master]","outputFolderName":"ararchch_ip_master"},{"location":{"location":"https://github.com/chiaryan/ip.git","repoName":"ip","organization":"chiaryan","domainName":"github"},"branch":"master","displayName":"chiaryan/ip[master]","outputFolderName":"chiaryan_ip_master"},{"location":{"location":"https://github.com/chengjunyuan/ip.git","repoName":"ip","organization":"chengjunyuan","domainName":"github"},"branch":"master","displayName":"chengjunyuan/ip[master]","outputFolderName":"chengjunyuan_ip_master"},{"location":{"location":"https://github.com/LimZiJia/ip.git","repoName":"ip","organization":"LimZiJia","domainName":"github"},"branch":"master","displayName":"LimZiJia/ip[master]","outputFolderName":"LimZiJia_ip_master"},{"location":{"location":"https://github.com/darkvoid32/ip.git","repoName":"ip","organization":"darkvoid32","domainName":"github"},"branch":"master","displayName":"darkvoid32/ip[master]","outputFolderName":"darkvoid32_ip_master"},{"location":{"location":"https://github.com/maze508/ip.git","repoName":"ip","organization":"maze508","domainName":"github"},"branch":"master","displayName":"maze508/ip[master]","outputFolderName":"maze508_ip_master"},{"location":{"location":"https://github.com/RingoftheKing/ip.git","repoName":"ip","organization":"RingoftheKing","domainName":"github"},"branch":"master","displayName":"RingoftheKing/ip[master]","outputFolderName":"RingoftheKing_ip_master"},{"location":{"location":"https://github.com/Rishit02/ip.git","repoName":"ip","organization":"Rishit02","domainName":"github"},"branch":"master","displayName":"Rishit02/ip[master]","outputFolderName":"Rishit02_ip_master"},{"location":{"location":"https://github.com/drustanyjt/ip.git","repoName":"ip","organization":"drustanyjt","domainName":"github"},"branch":"master","displayName":"drustanyjt/ip[master]","outputFolderName":"drustanyjt_ip_master"},{"location":{"location":"https://github.com/Dexter-Wong/ip.git","repoName":"ip","organization":"Dexter-Wong","domainName":"github"},"branch":"master","displayName":"Dexter-Wong/ip[master]","outputFolderName":"Dexter-Wong_ip_master"},{"location":{"location":"https://github.com/jxunze/ip.git","repoName":"ip","organization":"jxunze","domainName":"github"},"branch":"master","displayName":"jxunze/ip[master]","outputFolderName":"jxunze_ip_master"},{"location":{"location":"https://github.com/Vision-2000/ip.git","repoName":"ip","organization":"Vision-2000","domainName":"github"},"branch":"master","displayName":"Vision-2000/ip[master]","outputFolderName":"Vision-2000_ip_master"},{"location":{"location":"https://github.com/Derekljh/ip.git","repoName":"ip","organization":"Derekljh","domainName":"github"},"branch":"master","displayName":"Derekljh/ip[master]","outputFolderName":"Derekljh_ip_master"},{"location":{"location":"https://github.com/alphajae11/ip.git","repoName":"ip","organization":"alphajae11","domainName":"github"},"branch":"master","displayName":"alphajae11/ip[master]","outputFolderName":"alphajae11_ip_master"},{"location":{"location":"https://github.com/Kappaccinoh/ip.git","repoName":"ip","organization":"Kappaccinoh","domainName":"github"},"branch":"master","displayName":"Kappaccinoh/ip[master]","outputFolderName":"Kappaccinoh_ip_master"},{"location":{"location":"https://github.com/minreiseah/ip.git","repoName":"ip","organization":"minreiseah","domainName":"github"},"branch":"master","displayName":"minreiseah/ip[master]","outputFolderName":"minreiseah_ip_master"},{"location":{"location":"https://github.com/yuhinarita/ip.git","repoName":"ip","organization":"yuhinarita","domainName":"github"},"branch":"master","displayName":"yuhinarita/ip[master]","outputFolderName":"yuhinarita_ip_master"},{"location":{"location":"https://github.com/quelinxiao/ip.git","repoName":"ip","organization":"quelinxiao","domainName":"github"},"branch":"master","displayName":"quelinxiao/ip[master]","outputFolderName":"quelinxiao_ip_master"},{"location":{"location":"https://github.com/kab-dot/ip.git","repoName":"ip","organization":"kab-dot","domainName":"github"},"branch":"master","displayName":"kab-dot/ip[master]","outputFolderName":"kab-dot_ip_master"},{"location":{"location":"https://github.com/alfaloo/ip.git","repoName":"ip","organization":"alfaloo","domainName":"github"},"branch":"master","displayName":"alfaloo/ip[master]","outputFolderName":"alfaloo_ip_master"},{"location":{"location":"https://github.com/doyelee0313/ip.git","repoName":"ip","organization":"doyelee0313","domainName":"github"},"branch":"master","displayName":"doyelee0313/ip[master]","outputFolderName":"doyelee0313_ip_master"},{"location":{"location":"https://github.com/sdevih/ip.git","repoName":"ip","organization":"sdevih","domainName":"github"},"branch":"master","displayName":"sdevih/ip[master]","outputFolderName":"sdevih_ip_master"},{"location":{"location":"https://github.com/Emberlynn-Loo/ip.git","repoName":"ip","organization":"Emberlynn-Loo","domainName":"github"},"branch":"master","displayName":"Emberlynn-Loo/ip[master]","outputFolderName":"Emberlynn-Loo_ip_master"},{"location":{"location":"https://github.com/tejas-1405/ip.git","repoName":"ip","organization":"tejas-1405","domainName":"github"},"branch":"master","displayName":"tejas-1405/ip[master]","outputFolderName":"tejas-1405_ip_master"},{"location":{"location":"https://github.com/H4mes/ip.git","repoName":"ip","organization":"H4mes","domainName":"github"},"branch":"master","displayName":"H4mes/ip[master]","outputFolderName":"H4mes_ip_master"},{"location":{"location":"https://github.com/ChocoRagdoll/ip.git","repoName":"ip","organization":"ChocoRagdoll","domainName":"github"},"branch":"master","displayName":"ChocoRagdoll/ip[master]","outputFolderName":"ChocoRagdoll_ip_master"},{"location":{"location":"https://github.com/dwangwk/ip.git","repoName":"ip","organization":"dwangwk","domainName":"github"},"branch":"master","displayName":"dwangwk/ip[master]","outputFolderName":"dwangwk_ip_master"},{"location":{"location":"https://github.com/leeweiming3/ip.git","repoName":"ip","organization":"leeweiming3","domainName":"github"},"branch":"master","displayName":"leeweiming3/ip[master]","outputFolderName":"leeweiming3_ip_master"},{"location":{"location":"https://github.com/Wyrkx/ip.git","repoName":"ip","organization":"Wyrkx","domainName":"github"},"branch":"master","displayName":"Wyrkx/ip[master]","outputFolderName":"Wyrkx_ip_master"},{"location":{"location":"https://github.com/jeong-jaeho/ip.git","repoName":"ip","organization":"jeong-jaeho","domainName":"github"},"branch":"master","displayName":"jeong-jaeho/ip[master]","outputFolderName":"jeong-jaeho_ip_master"},{"location":{"location":"https://github.com/tohlh/ip.git","repoName":"ip","organization":"tohlh","domainName":"github"},"branch":"master","displayName":"tohlh/ip[master]","outputFolderName":"tohlh_ip_master"},{"location":{"location":"https://github.com/tzaph/ip.git","repoName":"ip","organization":"tzaph","domainName":"github"},"branch":"master","displayName":"tzaph/ip[master]","outputFolderName":"tzaph_ip_master"},{"location":{"location":"https://github.com/PateShin/ip.git","repoName":"ip","organization":"PateShin","domainName":"github"},"branch":"master","displayName":"PateShin/ip[master]","outputFolderName":"PateShin_ip_master"},{"location":{"location":"https://github.com/PallonCX/ip.git","repoName":"ip","organization":"PallonCX","domainName":"github"},"branch":"master","displayName":"PallonCX/ip[master]","outputFolderName":"PallonCX_ip_master"},{"location":{"location":"https://github.com/benson1029/ip.git","repoName":"ip","organization":"benson1029","domainName":"github"},"branch":"master","displayName":"benson1029/ip[master]","outputFolderName":"benson1029_ip_master"},{"location":{"location":"https://github.com/Kaya3842/ip.git","repoName":"ip","organization":"Kaya3842","domainName":"github"},"branch":"master","displayName":"Kaya3842/ip[master]","outputFolderName":"Kaya3842_ip_master"},{"location":{"location":"https://github.com/JustWeiHao/ip.git","repoName":"ip","organization":"JustWeiHao","domainName":"github"},"branch":"master","displayName":"JustWeiHao/ip[master]","outputFolderName":"JustWeiHao_ip_master"},{"location":{"location":"https://github.com/chin-herng/ip.git","repoName":"ip","organization":"chin-herng","domainName":"github"},"branch":"master","displayName":"chin-herng/ip[master]","outputFolderName":"chin-herng_ip_master"},{"location":{"location":"https://github.com/swtan346/ip.git","repoName":"ip","organization":"swtan346","domainName":"github"},"branch":"master","displayName":"swtan346/ip[master]","outputFolderName":"swtan346_ip_master"},{"location":{"location":"https://github.com/gosongying/ip.git","repoName":"ip","organization":"gosongying","domainName":"github"},"branch":"master","displayName":"gosongying/ip[master]","outputFolderName":"gosongying_ip_master"},{"location":{"location":"https://github.com/IamZhenHong/ip.git","repoName":"ip","organization":"IamZhenHong","domainName":"github"},"branch":"master","displayName":"IamZhenHong/ip[master]","outputFolderName":"IamZhenHong_ip_master"},{"location":{"location":"https://github.com/ivan24004/ip.git","repoName":"ip","organization":"ivan24004","domainName":"github"},"branch":"master","displayName":"ivan24004/ip[master]","outputFolderName":"ivan24004_ip_master"},{"location":{"location":"https://github.com/sarjinius/ip.git","repoName":"ip","organization":"sarjinius","domainName":"github"},"branch":"master","displayName":"sarjinius/ip[master]","outputFolderName":"sarjinius_ip_master"},{"location":{"location":"https://github.com/shavonneg/ip.git","repoName":"ip","organization":"shavonneg","domainName":"github"},"branch":"master","displayName":"shavonneg/ip[master]","outputFolderName":"shavonneg_ip_master"},{"location":{"location":"https://github.com/STELLA-LYE/ip.git","repoName":"ip","organization":"STELLA-LYE","domainName":"github"},"branch":"master","displayName":"STELLA-LYE/ip[master]","outputFolderName":"STELLA-LYE_ip_master"},{"location":{"location":"https://github.com/Lalelulilulela/ip.git","repoName":"ip","organization":"Lalelulilulela","domainName":"github"},"branch":"master","displayName":"Lalelulilulela/ip[master]","outputFolderName":"Lalelulilulela_ip_master"},{"location":{"location":"https://github.com/eunrcn/ip.git","repoName":"ip","organization":"eunrcn","domainName":"github"},"branch":"master","displayName":"eunrcn/ip[master]","outputFolderName":"eunrcn_ip_master"},{"location":{"location":"https://github.com/jocelyn-soh/ip.git","repoName":"ip","organization":"jocelyn-soh","domainName":"github"},"branch":"master","displayName":"jocelyn-soh/ip[master]","outputFolderName":"jocelyn-soh_ip_master"},{"location":{"location":"https://github.com/lynnetteeee/ip.git","repoName":"ip","organization":"lynnetteeee","domainName":"github"},"branch":"master","displayName":"lynnetteeee/ip[master]","outputFolderName":"lynnetteeee_ip_master"},{"location":{"location":"https://github.com/chenyixin0/ip.git","repoName":"ip","organization":"chenyixin0","domainName":"github"},"branch":"master","displayName":"chenyixin0/ip[master]","outputFolderName":"chenyixin0_ip_master"},{"location":{"location":"https://github.com/tanjieling0/ip.git","repoName":"ip","organization":"tanjieling0","domainName":"github"},"branch":"master","displayName":"tanjieling0/ip[master]","outputFolderName":"tanjieling0_ip_master"},{"location":{"location":"https://github.com/alex-setyawan/ip.git","repoName":"ip","organization":"alex-setyawan","domainName":"github"},"branch":"master","displayName":"alex-setyawan/ip[master]","outputFolderName":"alex-setyawan_ip_master"},{"location":{"location":"https://github.com/peienlim/ip.git","repoName":"ip","organization":"peienlim","domainName":"github"},"branch":"master","displayName":"peienlim/ip[master]","outputFolderName":"peienlim_ip_master"},{"location":{"location":"https://github.com/danielleloh/ip.git","repoName":"ip","organization":"danielleloh","domainName":"github"},"branch":"master","displayName":"danielleloh/ip[master]","outputFolderName":"danielleloh_ip_master"},{"location":{"location":"https://github.com/jannaleong/ip.git","repoName":"ip","organization":"jannaleong","domainName":"github"},"branch":"master","displayName":"jannaleong/ip[master]","outputFolderName":"jannaleong_ip_master"},{"location":{"location":"https://github.com/huekoh/ip.git","repoName":"ip","organization":"huekoh","domainName":"github"},"branch":"master","displayName":"huekoh/ip[master]","outputFolderName":"huekoh_ip_master"},{"location":{"location":"https://github.com/wapisai/ip.git","repoName":"ip","organization":"wapisai","domainName":"github"},"branch":"master","displayName":"wapisai/ip[master]","outputFolderName":"wapisai_ip_master"},{"location":{"location":"https://github.com/NatLeong/ip.git","repoName":"ip","organization":"NatLeong","domainName":"github"},"branch":"master","displayName":"NatLeong/ip[master]","outputFolderName":"NatLeong_ip_master"},{"location":{"location":"https://github.com/Pughal77/ip.git","repoName":"ip","organization":"Pughal77","domainName":"github"},"branch":"master","displayName":"Pughal77/ip[master]","outputFolderName":"Pughal77_ip_master"},{"location":{"location":"https://github.com/tahnya/ip.git","repoName":"ip","organization":"tahnya","domainName":"github"},"branch":"master","displayName":"tahnya/ip[master]","outputFolderName":"tahnya_ip_master"},{"location":{"location":"https://github.com/rahhulleee/ip.git","repoName":"ip","organization":"rahhulleee","domainName":"github"},"branch":"master","displayName":"rahhulleee/ip[master]","outputFolderName":"rahhulleee_ip_master"},{"location":{"location":"https://github.com/tamagochuuu/ip.git","repoName":"ip","organization":"tamagochuuu","domainName":"github"},"branch":"master","displayName":"tamagochuuu/ip[master]","outputFolderName":"tamagochuuu_ip_master"},{"location":{"location":"https://github.com/Chiarena/ip.git","repoName":"ip","organization":"Chiarena","domainName":"github"},"branch":"master","displayName":"Chiarena/ip[master]","outputFolderName":"Chiarena_ip_master"},{"location":{"location":"https://github.com/agreatdayy/ip.git","repoName":"ip","organization":"agreatdayy","domainName":"github"},"branch":"master","displayName":"agreatdayy/ip[master]","outputFolderName":"agreatdayy_ip_master"},{"location":{"location":"https://github.com/CaptainKeqing/ip.git","repoName":"ip","organization":"CaptainKeqing","domainName":"github"},"branch":"master","displayName":"CaptainKeqing/ip[master]","outputFolderName":"CaptainKeqing_ip_master"},{"location":{"location":"https://github.com/evedaktyl/ip.git","repoName":"ip","organization":"evedaktyl","domainName":"github"},"branch":"master","displayName":"evedaktyl/ip[master]","outputFolderName":"evedaktyl_ip_master"},{"location":{"location":"https://github.com/zhikaiong2001/ip.git","repoName":"ip","organization":"zhikaiong2001","domainName":"github"},"branch":"master","displayName":"zhikaiong2001/ip[master]","outputFolderName":"zhikaiong2001_ip_master"},{"location":{"location":"https://github.com/johnyoozhengxian/ip.git","repoName":"ip","organization":"johnyoozhengxian","domainName":"github"},"branch":"master","displayName":"johnyoozhengxian/ip[master]","outputFolderName":"johnyoozhengxian_ip_master"},{"location":{"location":"https://github.com/KinTatHo/ip.git","repoName":"ip","organization":"KinTatHo","domainName":"github"},"branch":"master","displayName":"KinTatHo/ip[master]","outputFolderName":"KinTatHo_ip_master"},{"location":{"location":"https://github.com/Joseph31416/ip.git","repoName":"ip","organization":"Joseph31416","domainName":"github"},"branch":"master","displayName":"Joseph31416/ip[master]","outputFolderName":"Joseph31416_ip_master"},{"location":{"location":"https://github.com/Murugan-Maniish/ip.git","repoName":"ip","organization":"Murugan-Maniish","domainName":"github"},"branch":"master","displayName":"Murugan-Maniish/ip[master]","outputFolderName":"Murugan-Maniish_ip_master"},{"location":{"location":"https://github.com/Joshy837/ip.git","repoName":"ip","organization":"Joshy837","domainName":"github"},"branch":"master","displayName":"Joshy837/ip[master]","outputFolderName":"Joshy837_ip_master"},{"location":{"location":"https://github.com/ChenXy128/ip.git","repoName":"ip","organization":"ChenXy128","domainName":"github"},"branch":"master","displayName":"ChenXy128/ip[master]","outputFolderName":"ChenXy128_ip_master"},{"location":{"location":"https://github.com/jamessinmaojun/ip.git","repoName":"ip","organization":"jamessinmaojun","domainName":"github"},"branch":"master","displayName":"jamessinmaojun/ip[master]","outputFolderName":"jamessinmaojun_ip_master"},{"location":{"location":"https://github.com/Joelwang22/ip.git","repoName":"ip","organization":"Joelwang22","domainName":"github"},"branch":"master","displayName":"Joelwang22/ip[master]","outputFolderName":"Joelwang22_ip_master"},{"location":{"location":"https://github.com/shawnnlimm/ip.git","repoName":"ip","organization":"shawnnlimm","domainName":"github"},"branch":"master","displayName":"shawnnlimm/ip[master]","outputFolderName":"shawnnlimm_ip_master"},{"location":{"location":"https://github.com/erv-teo/ip.git","repoName":"ip","organization":"erv-teo","domainName":"github"},"branch":"master","displayName":"erv-teo/ip[master]","outputFolderName":"erv-teo_ip_master"},{"location":{"location":"https://github.com/h4ow3i/ip.git","repoName":"ip","organization":"h4ow3i","domainName":"github"},"branch":"master","displayName":"h4ow3i/ip[master]","outputFolderName":"h4ow3i_ip_master"},{"location":{"location":"https://github.com/ziyang27/ip.git","repoName":"ip","organization":"ziyang27","domainName":"github"},"branch":"master","displayName":"ziyang27/ip[master]","outputFolderName":"ziyang27_ip_master"},{"location":{"location":"https://github.com/FangRuoqing/ip.git","repoName":"ip","organization":"FangRuoqing","domainName":"github"},"branch":"master","displayName":"FangRuoqing/ip[master]","outputFolderName":"FangRuoqing_ip_master"},{"location":{"location":"https://github.com/0nesheep/ip.git","repoName":"ip","organization":"0nesheep","domainName":"github"},"branch":"master","displayName":"0nesheep/ip[master]","outputFolderName":"0nesheep_ip_master"},{"location":{"location":"https://github.com/0-yibai/ip.git","repoName":"ip","organization":"0-yibai","domainName":"github"},"branch":"master","displayName":"0-yibai/ip[master]","outputFolderName":"0-yibai_ip_master"},{"location":{"location":"https://github.com/jerremyng/ip.git","repoName":"ip","organization":"jerremyng","domainName":"github"},"branch":"master","displayName":"jerremyng/ip[master]","outputFolderName":"jerremyng_ip_master"},{"location":{"location":"https://github.com/irwynliong/ip.git","repoName":"ip","organization":"irwynliong","domainName":"github"},"branch":"master","displayName":"irwynliong/ip[master]","outputFolderName":"irwynliong_ip_master"},{"location":{"location":"https://github.com/yorklim/ip.git","repoName":"ip","organization":"yorklim","domainName":"github"},"branch":"master","displayName":"yorklim/ip[master]","outputFolderName":"yorklim_ip_master"},{"location":{"location":"https://github.com/vannykin/ip.git","repoName":"ip","organization":"vannykin","domainName":"github"},"branch":"master","displayName":"vannykin/ip[master]","outputFolderName":"vannykin_ip_master"},{"location":{"location":"https://github.com/laney0808/ip.git","repoName":"ip","organization":"laney0808","domainName":"github"},"branch":"master","displayName":"laney0808/ip[master]","outputFolderName":"laney0808_ip_master"},{"location":{"location":"https://github.com/yapxuanxuan/ip.git","repoName":"ip","organization":"yapxuanxuan","domainName":"github"},"branch":"master","displayName":"yapxuanxuan/ip[master]","outputFolderName":"yapxuanxuan_ip_master"},{"location":{"location":"https://github.com/Greg-Tan/ip.git","repoName":"ip","organization":"Greg-Tan","domainName":"github"},"branch":"master","displayName":"Greg-Tan/ip[master]","outputFolderName":"Greg-Tan_ip_master"},{"location":{"location":"https://github.com/taniatsq/ip.git","repoName":"ip","organization":"taniatsq","domainName":"github"},"branch":"master","displayName":"taniatsq/ip[master]","outputFolderName":"taniatsq_ip_master"},{"location":{"location":"https://github.com/yongkotaro/ip.git","repoName":"ip","organization":"yongkotaro","domainName":"github"},"branch":"master","displayName":"yongkotaro/ip[master]","outputFolderName":"yongkotaro_ip_master"},{"location":{"location":"https://github.com/tanyunchao/ip.git","repoName":"ip","organization":"tanyunchao","domainName":"github"},"branch":"master","displayName":"tanyunchao/ip[master]","outputFolderName":"tanyunchao_ip_master"},{"location":{"location":"https://github.com/KiatLun/ip.git","repoName":"ip","organization":"KiatLun","domainName":"github"},"branch":"master","displayName":"KiatLun/ip[master]","outputFolderName":"KiatLun_ip_master"},{"location":{"location":"https://github.com/Xuyan0518/ip.git","repoName":"ip","organization":"Xuyan0518","domainName":"github"},"branch":"master","displayName":"Xuyan0518/ip[master]","outputFolderName":"Xuyan0518_ip_master"},{"location":{"location":"https://github.com/cleowenxuan/ip.git","repoName":"ip","organization":"cleowenxuan","domainName":"github"},"branch":"master","displayName":"cleowenxuan/ip[master]","outputFolderName":"cleowenxuan_ip_master"},{"location":{"location":"https://github.com/logical-1985516/ip.git","repoName":"ip","organization":"logical-1985516","domainName":"github"},"branch":"master","displayName":"logical-1985516/ip[master]","outputFolderName":"logical-1985516_ip_master"},{"location":{"location":"https://github.com/jessicawyz/ip.git","repoName":"ip","organization":"jessicawyz","domainName":"github"},"branch":"master","displayName":"jessicawyz/ip[master]","outputFolderName":"jessicawyz_ip_master"},{"location":{"location":"https://github.com/ashleyy2444/ip.git","repoName":"ip","organization":"ashleyy2444","domainName":"github"},"branch":"master","displayName":"ashleyy2444/ip[master]","outputFolderName":"ashleyy2444_ip_master"},{"location":{"location":"https://github.com/tengcharmaine/ip.git","repoName":"ip","organization":"tengcharmaine","domainName":"github"},"branch":"master","displayName":"tengcharmaine/ip[master]","outputFolderName":"tengcharmaine_ip_master"},{"location":{"location":"https://github.com/Jawad280/ip.git","repoName":"ip","organization":"Jawad280","domainName":"github"},"branch":"master","displayName":"Jawad280/ip[master]","outputFolderName":"Jawad280_ip_master"},{"location":{"location":"https://github.com/ThatGirlJam/ip.git","repoName":"ip","organization":"ThatGirlJam","domainName":"github"},"branch":"master","displayName":"ThatGirlJam/ip[master]","outputFolderName":"ThatGirlJam_ip_master"},{"location":{"location":"https://github.com/saiutkarsh33/ip.git","repoName":"ip","organization":"saiutkarsh33","domainName":"github"},"branch":"master","displayName":"saiutkarsh33/ip[master]","outputFolderName":"saiutkarsh33_ip_master"},{"location":{"location":"https://github.com/meenulekha/ip.git","repoName":"ip","organization":"meenulekha","domainName":"github"},"branch":"master","displayName":"meenulekha/ip[master]","outputFolderName":"meenulekha_ip_master"},{"location":{"location":"https://github.com/LargeCrowd/ip.git","repoName":"ip","organization":"LargeCrowd","domainName":"github"},"branch":"master","displayName":"LargeCrowd/ip[master]","outputFolderName":"LargeCrowd_ip_master"},{"location":{"location":"https://github.com/linnn-7/ip.git","repoName":"ip","organization":"linnn-7","domainName":"github"},"branch":"master","displayName":"linnn-7/ip[master]","outputFolderName":"linnn-7_ip_master"},{"location":{"location":"https://github.com/maiyasaliha/ip.git","repoName":"ip","organization":"maiyasaliha","domainName":"github"},"branch":"master","displayName":"maiyasaliha/ip[master]","outputFolderName":"maiyasaliha_ip_master"},{"location":{"location":"https://github.com/jonpwk/ip.git","repoName":"ip","organization":"jonpwk","domainName":"github"},"branch":"master","displayName":"jonpwk/ip[master]","outputFolderName":"jonpwk_ip_master"},{"location":{"location":"https://github.com/ChillinRage/ip.git","repoName":"ip","organization":"ChillinRage","domainName":"github"},"branch":"master","displayName":"ChillinRage/ip[master]","outputFolderName":"ChillinRage_ip_master"},{"location":{"location":"https://github.com/moguries/ip.git","repoName":"ip","organization":"moguries","domainName":"github"},"branch":"master","displayName":"moguries/ip[master]","outputFolderName":"moguries_ip_master"},{"location":{"location":"https://github.com/Alteqa/ip.git","repoName":"ip","organization":"Alteqa","domainName":"github"},"branch":"master","displayName":"Alteqa/ip[master]","outputFolderName":"Alteqa_ip_master"},{"location":{"location":"https://github.com/Zack-Tay/ip.git","repoName":"ip","organization":"Zack-Tay","domainName":"github"},"branch":"master","displayName":"Zack-Tay/ip[master]","outputFolderName":"Zack-Tay_ip_master"},{"location":{"location":"https://github.com/marcus-ny/ip.git","repoName":"ip","organization":"marcus-ny","domainName":"github"},"branch":"master","displayName":"marcus-ny/ip[master]","outputFolderName":"marcus-ny_ip_master"},{"location":{"location":"https://github.com/bennyLCK/ip.git","repoName":"ip","organization":"bennyLCK","domainName":"github"},"branch":"master","displayName":"bennyLCK/ip[master]","outputFolderName":"bennyLCK_ip_master"},{"location":{"location":"https://github.com/kinjalagarwal1810/ip.git","repoName":"ip","organization":"kinjalagarwal1810","domainName":"github"},"branch":"master","displayName":"kinjalagarwal1810/ip[master]","outputFolderName":"kinjalagarwal1810_ip_master"},{"location":{"location":"https://github.com/R-Laksh/ip.git","repoName":"ip","organization":"R-Laksh","domainName":"github"},"branch":"master","displayName":"R-Laksh/ip[master]","outputFolderName":"R-Laksh_ip_master"},{"location":{"location":"https://github.com/Colex2000/ip.git","repoName":"ip","organization":"Colex2000","domainName":"github"},"branch":"master","displayName":"Colex2000/ip[master]","outputFolderName":"Colex2000_ip_master"},{"location":{"location":"https://github.com/DhiraPT/ip.git","repoName":"ip","organization":"DhiraPT","domainName":"github"},"branch":"master","displayName":"DhiraPT/ip[master]","outputFolderName":"DhiraPT_ip_master"},{"location":{"location":"https://github.com/yyccbb/ip.git","repoName":"ip","organization":"yyccbb","domainName":"github"},"branch":"master","displayName":"yyccbb/ip[master]","outputFolderName":"yyccbb_ip_master"},{"location":{"location":"https://github.com/nigel27022001/ip.git","repoName":"ip","organization":"nigel27022001","domainName":"github"},"branch":"master","displayName":"nigel27022001/ip[master]","outputFolderName":"nigel27022001_ip_master"},{"location":{"location":"https://github.com/shamesjen/ip.git","repoName":"ip","organization":"shamesjen","domainName":"github"},"branch":"master","displayName":"shamesjen/ip[master]","outputFolderName":"shamesjen_ip_master"},{"location":{"location":"https://github.com/sindhurajain/ip.git","repoName":"ip","organization":"sindhurajain","domainName":"github"},"branch":"master","displayName":"sindhurajain/ip[master]","outputFolderName":"sindhurajain_ip_master"},{"location":{"location":"https://github.com/ryanlimdx/ip.git","repoName":"ip","organization":"ryanlimdx","domainName":"github"},"branch":"master","displayName":"ryanlimdx/ip[master]","outputFolderName":"ryanlimdx_ip_master"},{"location":{"location":"https://github.com/hiivan/ip.git","repoName":"ip","organization":"hiivan","domainName":"github"},"branch":"master","displayName":"hiivan/ip[master]","outputFolderName":"hiivan_ip_master"},{"location":{"location":"https://github.com/Apzure/ip.git","repoName":"ip","organization":"Apzure","domainName":"github"},"branch":"master","displayName":"Apzure/ip[master]","outputFolderName":"Apzure_ip_master"},{"location":{"location":"https://github.com/bgopi23/ip.git","repoName":"ip","organization":"bgopi23","domainName":"github"},"branch":"master","displayName":"bgopi23/ip[master]","outputFolderName":"bgopi23_ip_master"},{"location":{"location":"https://github.com/LWS49/ip.git","repoName":"ip","organization":"LWS49","domainName":"github"},"branch":"master","displayName":"LWS49/ip[master]","outputFolderName":"LWS49_ip_master"},{"location":{"location":"https://github.com/wang-xinrong/ip.git","repoName":"ip","organization":"wang-xinrong","domainName":"github"},"branch":"master","displayName":"wang-xinrong/ip[master]","outputFolderName":"wang-xinrong_ip_master"},{"location":{"location":"https://github.com/HusseinSafwan02/ip.git","repoName":"ip","organization":"HusseinSafwan02","domainName":"github"},"branch":"master","displayName":"HusseinSafwan02/ip[master]","outputFolderName":"HusseinSafwan02_ip_master"},{"location":{"location":"https://github.com/Ko-Khan/ip.git","repoName":"ip","organization":"Ko-Khan","domainName":"github"},"branch":"master","displayName":"Ko-Khan/ip[master]","outputFolderName":"Ko-Khan_ip_master"},{"location":{"location":"https://github.com/yleeyilin/ip.git","repoName":"ip","organization":"yleeyilin","domainName":"github"},"branch":"master","displayName":"yleeyilin/ip[master]","outputFolderName":"yleeyilin_ip_master"},{"location":{"location":"https://github.com/jiahui0309/ip.git","repoName":"ip","organization":"jiahui0309","domainName":"github"},"branch":"master","displayName":"jiahui0309/ip[master]","outputFolderName":"jiahui0309_ip_master"},{"location":{"location":"https://github.com/Jayne1010/ip.git","repoName":"ip","organization":"Jayne1010","domainName":"github"},"branch":"master","displayName":"Jayne1010/ip[master]","outputFolderName":"Jayne1010_ip_master"},{"location":{"location":"https://github.com/getsquared/ip.git","repoName":"ip","organization":"getsquared","domainName":"github"},"branch":"master","displayName":"getsquared/ip[master]","outputFolderName":"getsquared_ip_master"},{"location":{"location":"https://github.com/kaitinghh/ip.git","repoName":"ip","organization":"kaitinghh","domainName":"github"},"branch":"master","displayName":"kaitinghh/ip[master]","outputFolderName":"kaitinghh_ip_master"},{"location":{"location":"https://github.com/4llysa/ip.git","repoName":"ip","organization":"4llysa","domainName":"github"},"branch":"master","displayName":"4llysa/ip[master]","outputFolderName":"4llysa_ip_master"},{"location":{"location":"https://github.com/Lin-Shuang-Shuang/ip.git","repoName":"ip","organization":"Lin-Shuang-Shuang","domainName":"github"},"branch":"master","displayName":"Lin-Shuang-Shuang/ip[master]","outputFolderName":"Lin-Shuang-Shuang_ip_master"},{"location":{"location":"https://github.com/youdonnnn/ip.git","repoName":"ip","organization":"youdonnnn","domainName":"github"},"branch":"master","displayName":"youdonnnn/ip[master]","outputFolderName":"youdonnnn_ip_master"},{"location":{"location":"https://github.com/xuwen-ho/ip.git","repoName":"ip","organization":"xuwen-ho","domainName":"github"},"branch":"master","displayName":"xuwen-ho/ip[master]","outputFolderName":"xuwen-ho_ip_master"},{"location":{"location":"https://github.com/ongzhili/ip.git","repoName":"ip","organization":"ongzhili","domainName":"github"},"branch":"master","displayName":"ongzhili/ip[master]","outputFolderName":"ongzhili_ip_master"},{"location":{"location":"https://github.com/miffi/ip.git","repoName":"ip","organization":"miffi","domainName":"github"},"branch":"master","displayName":"miffi/ip[master]","outputFolderName":"miffi_ip_master"},{"location":{"location":"https://github.com/wallacexuhanxiao/ip.git","repoName":"ip","organization":"wallacexuhanxiao","domainName":"github"},"branch":"master","displayName":"wallacexuhanxiao/ip[master]","outputFolderName":"wallacexuhanxiao_ip_master"},{"location":{"location":"https://github.com/Teee728/ip.git","repoName":"ip","organization":"Teee728","domainName":"github"},"branch":"master","displayName":"Teee728/ip[master]","outputFolderName":"Teee728_ip_master"},{"location":{"location":"https://github.com/wolffe88/ip.git","repoName":"ip","organization":"wolffe88","domainName":"github"},"branch":"master","displayName":"wolffe88/ip[master]","outputFolderName":"wolffe88_ip_master"},{"location":{"location":"https://github.com/jskimdev/ip.git","repoName":"ip","organization":"jskimdev","domainName":"github"},"branch":"master","displayName":"jskimdev/ip[master]","outputFolderName":"jskimdev_ip_master"},{"location":{"location":"https://github.com/reetmitra/ip.git","repoName":"ip","organization":"reetmitra","domainName":"github"},"branch":"master","displayName":"reetmitra/ip[master]","outputFolderName":"reetmitra_ip_master"},{"location":{"location":"https://github.com/iamtr/ip.git","repoName":"ip","organization":"iamtr","domainName":"github"},"branch":"master","displayName":"iamtr/ip[master]","outputFolderName":"iamtr_ip_master"},{"location":{"location":"https://github.com/officialchengyud/ip.git","repoName":"ip","organization":"officialchengyud","domainName":"github"},"branch":"master","displayName":"officialchengyud/ip[master]","outputFolderName":"officialchengyud_ip_master"},{"location":{"location":"https://github.com/GERARDJM018/ip.git","repoName":"ip","organization":"GERARDJM018","domainName":"github"},"branch":"master","displayName":"GERARDJM018/ip[master]","outputFolderName":"GERARDJM018_ip_master"},{"location":{"location":"https://github.com/howen02/ip.git","repoName":"ip","organization":"howen02","domainName":"github"},"branch":"master","displayName":"howen02/ip[master]","outputFolderName":"howen02_ip_master"},{"location":{"location":"https://github.com/NusMinato/ip.git","repoName":"ip","organization":"NusMinato","domainName":"github"},"branch":"master","displayName":"NusMinato/ip[master]","outputFolderName":"NusMinato_ip_master"},{"location":{"location":"https://github.com/hjuntan/ip.git","repoName":"ip","organization":"hjuntan","domainName":"github"},"branch":"master","displayName":"hjuntan/ip[master]","outputFolderName":"hjuntan_ip_master"},{"location":{"location":"https://github.com/gauravuj/ip.git","repoName":"ip","organization":"gauravuj","domainName":"github"},"branch":"master","displayName":"gauravuj/ip[master]","outputFolderName":"gauravuj_ip_master"},{"location":{"location":"https://github.com/yespiggy/ip.git","repoName":"ip","organization":"yespiggy","domainName":"github"},"branch":"master","displayName":"yespiggy/ip[master]","outputFolderName":"yespiggy_ip_master"},{"location":{"location":"https://github.com/Windofbitter/ip.git","repoName":"ip","organization":"Windofbitter","domainName":"github"},"branch":"master","displayName":"Windofbitter/ip[master]","outputFolderName":"Windofbitter_ip_master"},{"location":{"location":"https://github.com/NewtonKoh/ip.git","repoName":"ip","organization":"NewtonKoh","domainName":"github"},"branch":"master","displayName":"NewtonKoh/ip[master]","outputFolderName":"NewtonKoh_ip_master"},{"location":{"location":"https://github.com/narwhalsilent/ip.git","repoName":"ip","organization":"narwhalsilent","domainName":"github"},"branch":"master","displayName":"narwhalsilent/ip[master]","outputFolderName":"narwhalsilent_ip_master"},{"location":{"location":"https://github.com/starsia/ip.git","repoName":"ip","organization":"starsia","domainName":"github"},"branch":"master","displayName":"starsia/ip[master]","outputFolderName":"starsia_ip_master"},{"location":{"location":"https://github.com/AidenLYT/ip.git","repoName":"ip","organization":"AidenLYT","domainName":"github"},"branch":"master","displayName":"AidenLYT/ip[master]","outputFolderName":"AidenLYT_ip_master"},{"location":{"location":"https://github.com/nyankoclaws/ip.git","repoName":"ip","organization":"nyankoclaws","domainName":"github"},"branch":"master","displayName":"nyankoclaws/ip[master]","outputFolderName":"nyankoclaws_ip_master"},{"location":{"location":"https://github.com/angsongyee/ip.git","repoName":"ip","organization":"angsongyee","domainName":"github"},"branch":"master","displayName":"angsongyee/ip[master]","outputFolderName":"angsongyee_ip_master"},{"location":{"location":"https://github.com/eliotlee68/ip.git","repoName":"ip","organization":"eliotlee68","domainName":"github"},"branch":"master","displayName":"eliotlee68/ip[master]","outputFolderName":"eliotlee68_ip_master"},{"location":{"location":"https://github.com/Yskie/ip.git","repoName":"ip","organization":"Yskie","domainName":"github"},"branch":"master","displayName":"Yskie/ip[master]","outputFolderName":"Yskie_ip_master"},{"location":{"location":"https://github.com/faaheem13/ip.git","repoName":"ip","organization":"faaheem13","domainName":"github"},"branch":"master","displayName":"faaheem13/ip[master]","outputFolderName":"faaheem13_ip_master"},{"location":{"location":"https://github.com/Shauryan123/ip.git","repoName":"ip","organization":"Shauryan123","domainName":"github"},"branch":"master","displayName":"Shauryan123/ip[master]","outputFolderName":"Shauryan123_ip_master"},{"location":{"location":"https://github.com/MaYuehan/ip.git","repoName":"ip","organization":"MaYuehan","domainName":"github"},"branch":"master","displayName":"MaYuehan/ip[master]","outputFolderName":"MaYuehan_ip_master"},{"location":{"location":"https://github.com/kaiyi27/ip.git","repoName":"ip","organization":"kaiyi27","domainName":"github"},"branch":"master","displayName":"kaiyi27/ip[master]","outputFolderName":"kaiyi27_ip_master"},{"location":{"location":"https://github.com/radeon2525/ip.git","repoName":"ip","organization":"radeon2525","domainName":"github"},"branch":"master","displayName":"radeon2525/ip[master]","outputFolderName":"radeon2525_ip_master"},{"location":{"location":"https://github.com/dedsecrattle/ip.git","repoName":"ip","organization":"dedsecrattle","domainName":"github"},"branch":"master","displayName":"dedsecrattle/ip[master]","outputFolderName":"dedsecrattle_ip_master"},{"location":{"location":"https://github.com/AdityaB4/ip.git","repoName":"ip","organization":"AdityaB4","domainName":"github"},"branch":"master","displayName":"AdityaB4/ip[master]","outputFolderName":"AdityaB4_ip_master"},{"location":{"location":"https://github.com/PyromancerBoom/ip.git","repoName":"ip","organization":"PyromancerBoom","domainName":"github"},"branch":"master","displayName":"PyromancerBoom/ip[master]","outputFolderName":"PyromancerBoom_ip_master"},{"location":{"location":"https://github.com/JiaXinEu/ip.git","repoName":"ip","organization":"JiaXinEu","domainName":"github"},"branch":"master","displayName":"JiaXinEu/ip[master]","outputFolderName":"JiaXinEu_ip_master"},{"location":{"location":"https://github.com/Ella-e/ip.git","repoName":"ip","organization":"Ella-e","domainName":"github"},"branch":"master","displayName":"Ella-e/ip[master]","outputFolderName":"Ella-e_ip_master"},{"location":{"location":"https://github.com/yiwern5/ip.git","repoName":"ip","organization":"yiwern5","domainName":"github"},"branch":"master","displayName":"yiwern5/ip[master]","outputFolderName":"yiwern5_ip_master"},{"location":{"location":"https://github.com/SamuelZero1/ip.git","repoName":"ip","organization":"SamuelZero1","domainName":"github"},"branch":"master","displayName":"SamuelZero1/ip[master]","outputFolderName":"SamuelZero1_ip_master"},{"location":{"location":"https://github.com/nuyer/ip.git","repoName":"ip","organization":"nuyer","domainName":"github"},"branch":"master","displayName":"nuyer/ip[master]","outputFolderName":"nuyer_ip_master"},{"location":{"location":"https://github.com/SeaHogs/ip.git","repoName":"ip","organization":"SeaHogs","domainName":"github"},"branch":"master","displayName":"SeaHogs/ip[master]","outputFolderName":"SeaHogs_ip_master"},{"location":{"location":"https://github.com/TarinPairor/ip.git","repoName":"ip","organization":"TarinPairor","domainName":"github"},"branch":"master","displayName":"TarinPairor/ip[master]","outputFolderName":"TarinPairor_ip_master"},{"location":{"location":"https://github.com/KSSWSept20/ip.git","repoName":"ip","organization":"KSSWSept20","domainName":"github"},"branch":"master","displayName":"KSSWSept20/ip[master]","outputFolderName":"KSSWSept20_ip_master"},{"location":{"location":"https://github.com/myang2020/ip.git","repoName":"ip","organization":"myang2020","domainName":"github"},"branch":"master","displayName":"myang2020/ip[master]","outputFolderName":"myang2020_ip_master"},{"location":{"location":"https://github.com/leepoeaik/ip.git","repoName":"ip","organization":"leepoeaik","domainName":"github"},"branch":"master","displayName":"leepoeaik/ip[master]","outputFolderName":"leepoeaik_ip_master"},{"location":{"location":"https://github.com/justinlengch/ip.git","repoName":"ip","organization":"justinlengch","domainName":"github"},"branch":"master","displayName":"justinlengch/ip[master]","outputFolderName":"justinlengch_ip_master"},{"location":{"location":"https://github.com/Li-Zizhen/ip.git","repoName":"ip","organization":"Li-Zizhen","domainName":"github"},"branch":"master","displayName":"Li-Zizhen/ip[master]","outputFolderName":"Li-Zizhen_ip_master"},{"location":{"location":"https://github.com/ashleygoh1/ip.git","repoName":"ip","organization":"ashleygoh1","domainName":"github"},"branch":"master","displayName":"ashleygoh1/ip[master]","outputFolderName":"ashleygoh1_ip_master"},{"location":{"location":"https://github.com/Wongqingyee/ip.git","repoName":"ip","organization":"Wongqingyee","domainName":"github"},"branch":"master","displayName":"Wongqingyee/ip[master]","outputFolderName":"Wongqingyee_ip_master"},{"location":{"location":"https://github.com/AjayArvind2207/ip.git","repoName":"ip","organization":"AjayArvind2207","domainName":"github"},"branch":"master","displayName":"AjayArvind2207/ip[master]","outputFolderName":"AjayArvind2207_ip_master"},{"location":{"location":"https://github.com/Austintjh19/ip.git","repoName":"ip","organization":"Austintjh19","domainName":"github"},"branch":"master","displayName":"Austintjh19/ip[master]","outputFolderName":"Austintjh19_ip_master"},{"location":{"location":"https://github.com/jinhanfromNUS/ip.git","repoName":"ip","organization":"jinhanfromNUS","domainName":"github"},"branch":"master","displayName":"jinhanfromNUS/ip[master]","outputFolderName":"jinhanfromNUS_ip_master"},{"location":{"location":"https://github.com/ziyi22/ip.git","repoName":"ip","organization":"ziyi22","domainName":"github"},"branch":"master","displayName":"ziyi22/ip[master]","outputFolderName":"ziyi22_ip_master"},{"location":{"location":"https://github.com/menatahari/ip.git","repoName":"ip","organization":"menatahari","domainName":"github"},"branch":"master","displayName":"menatahari/ip[master]","outputFolderName":"menatahari_ip_master"},{"location":{"location":"https://github.com/ThitipatC/ip.git","repoName":"ip","organization":"ThitipatC","domainName":"github"},"branch":"master","displayName":"ThitipatC/ip[master]","outputFolderName":"ThitipatC_ip_master"},{"location":{"location":"https://github.com/purivirakarin/ip.git","repoName":"ip","organization":"purivirakarin","domainName":"github"},"branch":"master","displayName":"purivirakarin/ip[master]","outputFolderName":"purivirakarin_ip_master"},{"location":{"location":"https://github.com/modembcc/ip.git","repoName":"ip","organization":"modembcc","domainName":"github"},"branch":"master","displayName":"modembcc/ip[master]","outputFolderName":"modembcc_ip_master"},{"location":{"location":"https://github.com/yashma-sonara/ip.git","repoName":"ip","organization":"yashma-sonara","domainName":"github"},"branch":"master","displayName":"yashma-sonara/ip[master]","outputFolderName":"yashma-sonara_ip_master"},{"location":{"location":"https://github.com/0liverkong/ip.git","repoName":"ip","organization":"0liverkong","domainName":"github"},"branch":"master","displayName":"0liverkong/ip[master]","outputFolderName":"0liverkong_ip_master"},{"location":{"location":"https://github.com/dhlee03/ip.git","repoName":"ip","organization":"dhlee03","domainName":"github"},"branch":"master","displayName":"dhlee03/ip[master]","outputFolderName":"dhlee03_ip_master"},{"location":{"location":"https://github.com/shayaansultan/ip.git","repoName":"ip","organization":"shayaansultan","domainName":"github"},"branch":"master","displayName":"shayaansultan/ip[master]","outputFolderName":"shayaansultan_ip_master"},{"location":{"location":"https://github.com/ljy0422/ip.git","repoName":"ip","organization":"ljy0422","domainName":"github"},"branch":"master","displayName":"ljy0422/ip[master]","outputFolderName":"ljy0422_ip_master"},{"location":{"location":"https://github.com/JukeBoxK/ip.git","repoName":"ip","organization":"JukeBoxK","domainName":"github"},"branch":"master","displayName":"JukeBoxK/ip[master]","outputFolderName":"JukeBoxK_ip_master"},{"location":{"location":"https://github.com/Howlong11/ip.git","repoName":"ip","organization":"Howlong11","domainName":"github"},"branch":"master","displayName":"Howlong11/ip[master]","outputFolderName":"Howlong11_ip_master"},{"location":{"location":"https://github.com/Hibeom0929/ip.git","repoName":"ip","organization":"Hibeom0929","domainName":"github"},"branch":"master","displayName":"Hibeom0929/ip[master]","outputFolderName":"Hibeom0929_ip_master"},{"location":{"location":"https://github.com/VatsalVitosh/ip.git","repoName":"ip","organization":"VatsalVitosh","domainName":"github"},"branch":"master","displayName":"VatsalVitosh/ip[master]","outputFolderName":"VatsalVitosh_ip_master"},{"location":{"location":"https://github.com/bachletuankhai/ip.git","repoName":"ip","organization":"bachletuankhai","domainName":"github"},"branch":"master","displayName":"bachletuankhai/ip[master]","outputFolderName":"bachletuankhai_ip_master"},{"location":{"location":"https://github.com/RunjiaChen/ip.git","repoName":"ip","organization":"RunjiaChen","domainName":"github"},"branch":"master","displayName":"RunjiaChen/ip[master]","outputFolderName":"RunjiaChen_ip_master"}],"errorSet":[{"repoName":"Ryan-Reno/ip[master]","errorMessage":"Failed to clone from https://github.com/Ryan-Reno/ip.git"},{"repoName":"tcjazwei/ip[master]","errorMessage":"Failed to clone from https://github.com/tcjazwei/ip.git"},{"repoName":"Morninggloryyy/ip[master]","errorMessage":"Failed to clone from https://github.com/Morninggloryyy/ip.git"},{"repoName":"ValenciaLim/ip[master]","errorMessage":"Failed to clone from https://github.com/ValenciaLim/ip.git"},{"repoName":"nusliuyifan/ip[master]","errorMessage":"Failed to clone from https://github.com/nusliuyifan/ip.git"},{"repoName":"The-Dudeski/ip[master]","errorMessage":"Failed to clone from https://github.com/The-Dudeski/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-07","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}} +{"repoSenseVersion":"29903e3124","reportGeneratedTime":"Wed Feb 7 10:39:09 2024 UTC+08:00","reportGenerationTime":" 47.04 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/darryl-chan/ip.git","repoName":"ip","organization":"darryl-chan","domainName":"github"},"branch":"master","displayName":"darryl-chan/ip[master]","outputFolderName":"darryl-chan_ip_master"},{"location":{"location":"https://github.com/gowthaman-01/ip.git","repoName":"ip","organization":"gowthaman-01","domainName":"github"},"branch":"master","displayName":"gowthaman-01/ip[master]","outputFolderName":"gowthaman-01_ip_master"},{"location":{"location":"https://github.com/ChrisHo1341/ip.git","repoName":"ip","organization":"ChrisHo1341","domainName":"github"},"branch":"master","displayName":"ChrisHo1341/ip[master]","outputFolderName":"ChrisHo1341_ip_master"},{"location":{"location":"https://github.com/sebin0817/ip.git","repoName":"ip","organization":"sebin0817","domainName":"github"},"branch":"master","displayName":"sebin0817/ip[master]","outputFolderName":"sebin0817_ip_master"},{"location":{"location":"https://github.com/tanjiajiajun/ip.git","repoName":"ip","organization":"tanjiajiajun","domainName":"github"},"branch":"master","displayName":"tanjiajiajun/ip[master]","outputFolderName":"tanjiajiajun_ip_master"},{"location":{"location":"https://github.com/Arixeyeion/ip.git","repoName":"ip","organization":"Arixeyeion","domainName":"github"},"branch":"master","displayName":"Arixeyeion/ip[master]","outputFolderName":"Arixeyeion_ip_master"},{"location":{"location":"https://github.com/jeremiahlzz/ip.git","repoName":"ip","organization":"jeremiahlzz","domainName":"github"},"branch":"master","displayName":"jeremiahlzz/ip[master]","outputFolderName":"jeremiahlzz_ip_master"},{"location":{"location":"https://github.com/joenus/ip.git","repoName":"ip","organization":"joenus","domainName":"github"},"branch":"master","displayName":"joenus/ip[master]","outputFolderName":"joenus_ip_master"},{"location":{"location":"https://github.com/xinen26/ip.git","repoName":"ip","organization":"xinen26","domainName":"github"},"branch":"master","displayName":"xinen26/ip[master]","outputFolderName":"xinen26_ip_master"},{"location":{"location":"https://github.com/matthewken19/ip.git","repoName":"ip","organization":"matthewken19","domainName":"github"},"branch":"master","displayName":"matthewken19/ip[master]","outputFolderName":"matthewken19_ip_master"},{"location":{"location":"https://github.com/YuZizhen/ip.git","repoName":"ip","organization":"YuZizhen","domainName":"github"},"branch":"master","displayName":"YuZizhen/ip[master]","outputFolderName":"YuZizhen_ip_master"},{"location":{"location":"https://github.com/marclamp/ip.git","repoName":"ip","organization":"marclamp","domainName":"github"},"branch":"master","displayName":"marclamp/ip[master]","outputFolderName":"marclamp_ip_master"},{"location":{"location":"https://github.com/JerryWang0000/ip.git","repoName":"ip","organization":"JerryWang0000","domainName":"github"},"branch":"master","displayName":"JerryWang0000/ip[master]","outputFolderName":"JerryWang0000_ip_master"},{"location":{"location":"https://github.com/fy17ohhh/ip.git","repoName":"ip","organization":"fy17ohhh","domainName":"github"},"branch":"master","displayName":"fy17ohhh/ip[master]","outputFolderName":"fy17ohhh_ip_master"},{"location":{"location":"https://github.com/lihaoquan/ip.git","repoName":"ip","organization":"lihaoquan","domainName":"github"},"branch":"master","displayName":"lihaoquan/ip[master]","outputFolderName":"lihaoquan_ip_master"},{"location":{"location":"https://github.com/guohuang88/ip.git","repoName":"ip","organization":"guohuang88","domainName":"github"},"branch":"master","displayName":"guohuang88/ip[master]","outputFolderName":"guohuang88_ip_master"},{"location":{"location":"https://github.com/redcolorbicycle/ip.git","repoName":"ip","organization":"redcolorbicycle","domainName":"github"},"branch":"master","displayName":"redcolorbicycle/ip[master]","outputFolderName":"redcolorbicycle_ip_master"},{"location":{"location":"https://github.com/Jerome-j/ip.git","repoName":"ip","organization":"Jerome-j","domainName":"github"},"branch":"master","displayName":"Jerome-j/ip[master]","outputFolderName":"Jerome-j_ip_master"},{"location":{"location":"https://github.com/sethteo/ip.git","repoName":"ip","organization":"sethteo","domainName":"github"},"branch":"master","displayName":"sethteo/ip[master]","outputFolderName":"sethteo_ip_master"},{"location":{"location":"https://github.com/TopKec/ip.git","repoName":"ip","organization":"TopKec","domainName":"github"},"branch":"master","displayName":"TopKec/ip[master]","outputFolderName":"TopKec_ip_master"},{"location":{"location":"https://github.com/joelgoh1/ip.git","repoName":"ip","organization":"joelgoh1","domainName":"github"},"branch":"master","displayName":"joelgoh1/ip[master]","outputFolderName":"joelgoh1_ip_master"},{"location":{"location":"https://github.com/chewbum/ip.git","repoName":"ip","organization":"chewbum","domainName":"github"},"branch":"master","displayName":"chewbum/ip[master]","outputFolderName":"chewbum_ip_master"},{"location":{"location":"https://github.com/timothysashimi/ip.git","repoName":"ip","organization":"timothysashimi","domainName":"github"},"branch":"master","displayName":"timothysashimi/ip[master]","outputFolderName":"timothysashimi_ip_master"},{"location":{"location":"https://github.com/beefsausagee/ip.git","repoName":"ip","organization":"beefsausagee","domainName":"github"},"branch":"master","displayName":"beefsausagee/ip[master]","outputFolderName":"beefsausagee_ip_master"},{"location":{"location":"https://github.com/jaejayrome/ip.git","repoName":"ip","organization":"jaejayrome","domainName":"github"},"branch":"master","displayName":"jaejayrome/ip[master]","outputFolderName":"jaejayrome_ip_master"},{"location":{"location":"https://github.com/KhoonSun47/ip.git","repoName":"ip","organization":"KhoonSun47","domainName":"github"},"branch":"master","displayName":"KhoonSun47/ip[master]","outputFolderName":"KhoonSun47_ip_master"},{"location":{"location":"https://github.com/Dethada/ip.git","repoName":"ip","organization":"Dethada","domainName":"github"},"branch":"master","displayName":"Dethada/ip[master]","outputFolderName":"Dethada_ip_master"},{"location":{"location":"https://github.com/AL-ZT/ip.git","repoName":"ip","organization":"AL-ZT","domainName":"github"},"branch":"master","displayName":"AL-ZT/ip[master]","outputFolderName":"AL-ZT_ip_master"},{"location":{"location":"https://github.com/Javiery3889/ip.git","repoName":"ip","organization":"Javiery3889","domainName":"github"},"branch":"master","displayName":"Javiery3889/ip[master]","outputFolderName":"Javiery3889_ip_master"},{"location":{"location":"https://github.com/garywongkai/ip.git","repoName":"ip","organization":"garywongkai","domainName":"github"},"branch":"master","displayName":"garywongkai/ip[master]","outputFolderName":"garywongkai_ip_master"},{"location":{"location":"https://github.com/ys112/ip.git","repoName":"ip","organization":"ys112","domainName":"github"},"branch":"master","displayName":"ys112/ip[master]","outputFolderName":"ys112_ip_master"},{"location":{"location":"https://github.com/jmsandiegoo/ip.git","repoName":"ip","organization":"jmsandiegoo","domainName":"github"},"branch":"master","displayName":"jmsandiegoo/ip[master]","outputFolderName":"jmsandiegoo_ip_master"},{"location":{"location":"https://github.com/KohGuanZeh/ip.git","repoName":"ip","organization":"KohGuanZeh","domainName":"github"},"branch":"master","displayName":"KohGuanZeh/ip[master]","outputFolderName":"KohGuanZeh_ip_master"},{"location":{"location":"https://github.com/felixchanyy/ip.git","repoName":"ip","organization":"felixchanyy","domainName":"github"},"branch":"master","displayName":"felixchanyy/ip[master]","outputFolderName":"felixchanyy_ip_master"},{"location":{"location":"https://github.com/tanqinyong/ip.git","repoName":"ip","organization":"tanqinyong","domainName":"github"},"branch":"master","displayName":"tanqinyong/ip[master]","outputFolderName":"tanqinyong_ip_master"},{"location":{"location":"https://github.com/Hwww23/ip.git","repoName":"ip","organization":"Hwww23","domainName":"github"},"branch":"master","displayName":"Hwww23/ip[master]","outputFolderName":"Hwww23_ip_master"},{"location":{"location":"https://github.com/zengzihui/ip.git","repoName":"ip","organization":"zengzihui","domainName":"github"},"branch":"master","displayName":"zengzihui/ip[master]","outputFolderName":"zengzihui_ip_master"},{"location":{"location":"https://github.com/Pluiexo/ip.git","repoName":"ip","organization":"Pluiexo","domainName":"github"},"branch":"master","displayName":"Pluiexo/ip[master]","outputFolderName":"Pluiexo_ip_master"},{"location":{"location":"https://github.com/yap-zong-xin/ip.git","repoName":"ip","organization":"yap-zong-xin","domainName":"github"},"branch":"master","displayName":"yap-zong-xin/ip[master]","outputFolderName":"yap-zong-xin_ip_master"},{"location":{"location":"https://github.com/JonChong98/ip.git","repoName":"ip","organization":"JonChong98","domainName":"github"},"branch":"master","displayName":"JonChong98/ip[master]","outputFolderName":"JonChong98_ip_master"},{"location":{"location":"https://github.com/lokidoki102/ip.git","repoName":"ip","organization":"lokidoki102","domainName":"github"},"branch":"master","displayName":"lokidoki102/ip[master]","outputFolderName":"lokidoki102_ip_master"},{"location":{"location":"https://github.com/choowengyan/ip.git","repoName":"ip","organization":"choowengyan","domainName":"github"},"branch":"master","displayName":"choowengyan/ip[master]","outputFolderName":"choowengyan_ip_master"},{"location":{"location":"https://github.com/SherisseTJW/ip.git","repoName":"ip","organization":"SherisseTJW","domainName":"github"},"branch":"master","displayName":"SherisseTJW/ip[master]","outputFolderName":"SherisseTJW_ip_master"},{"location":{"location":"https://github.com/iynixil/ip.git","repoName":"ip","organization":"iynixil","domainName":"github"},"branch":"master","displayName":"iynixil/ip[master]","outputFolderName":"iynixil_ip_master"},{"location":{"location":"https://github.com/whitesnowx/ip.git","repoName":"ip","organization":"whitesnowx","domainName":"github"},"branch":"master","displayName":"whitesnowx/ip[master]","outputFolderName":"whitesnowx_ip_master"},{"location":{"location":"https://github.com/AwJoey/ip.git","repoName":"ip","organization":"AwJoey","domainName":"github"},"branch":"master","displayName":"AwJoey/ip[master]","outputFolderName":"AwJoey_ip_master"},{"location":{"location":"https://github.com/rickkoh/ip.git","repoName":"ip","organization":"rickkoh","domainName":"github"},"branch":"master","displayName":"rickkoh/ip[master]","outputFolderName":"rickkoh_ip_master"},{"location":{"location":"https://github.com/caitlyntang/ip.git","repoName":"ip","organization":"caitlyntang","domainName":"github"},"branch":"master","displayName":"caitlyntang/ip[master]","outputFolderName":"caitlyntang_ip_master"},{"location":{"location":"https://github.com/tsulim/ip.git","repoName":"ip","organization":"tsulim","domainName":"github"},"branch":"master","displayName":"tsulim/ip[master]","outputFolderName":"tsulim_ip_master"},{"location":{"location":"https://github.com/Darylgolden/ip.git","repoName":"ip","organization":"Darylgolden","domainName":"github"},"branch":"master","displayName":"Darylgolden/ip[master]","outputFolderName":"Darylgolden_ip_master"},{"location":{"location":"https://github.com/biinnnggggg/ip.git","repoName":"ip","organization":"biinnnggggg","domainName":"github"},"branch":"master","displayName":"biinnnggggg/ip[master]","outputFolderName":"biinnnggggg_ip_master"},{"location":{"location":"https://github.com/Ma-Yirui/ip.git","repoName":"ip","organization":"Ma-Yirui","domainName":"github"},"branch":"master","displayName":"Ma-Yirui/ip[master]","outputFolderName":"Ma-Yirui_ip_master"},{"location":{"location":"https://github.com/itstrueitstrueitsrealitsreal/ip.git","repoName":"ip","organization":"itstrueitstrueitsrealitsreal","domainName":"github"},"branch":"master","displayName":"itstrueitstrueitsrealitsreal/ip[master]","outputFolderName":"itstrueitstrueitsrealitsreal_ip_master"},{"location":{"location":"https://github.com/vnnamng/ip.git","repoName":"ip","organization":"vnnamng","domainName":"github"},"branch":"master","displayName":"vnnamng/ip[master]","outputFolderName":"vnnamng_ip_master"},{"location":{"location":"https://github.com/minwaiphyo/ip.git","repoName":"ip","organization":"minwaiphyo","domainName":"github"},"branch":"master","displayName":"minwaiphyo/ip[master]","outputFolderName":"minwaiphyo_ip_master"},{"location":{"location":"https://github.com/amanzainal/ip.git","repoName":"ip","organization":"amanzainal","domainName":"github"},"branch":"master","displayName":"amanzainal/ip[master]","outputFolderName":"amanzainal_ip_master"},{"location":{"location":"https://github.com/raysonchia/ip.git","repoName":"ip","organization":"raysonchia","domainName":"github"},"branch":"master","displayName":"raysonchia/ip[master]","outputFolderName":"raysonchia_ip_master"},{"location":{"location":"https://github.com/zoebelle-pang/ip.git","repoName":"ip","organization":"zoebelle-pang","domainName":"github"},"branch":"master","displayName":"zoebelle-pang/ip[master]","outputFolderName":"zoebelle-pang_ip_master"},{"location":{"location":"https://github.com/DominicFuMJ/ip.git","repoName":"ip","organization":"DominicFuMJ","domainName":"github"},"branch":"master","displayName":"DominicFuMJ/ip[master]","outputFolderName":"DominicFuMJ_ip_master"},{"location":{"location":"https://github.com/NeoHW/ip.git","repoName":"ip","organization":"NeoHW","domainName":"github"},"branch":"master","displayName":"NeoHW/ip[master]","outputFolderName":"NeoHW_ip_master"},{"location":{"location":"https://github.com/ZhiWei1010/ip.git","repoName":"ip","organization":"ZhiWei1010","domainName":"github"},"branch":"master","displayName":"ZhiWei1010/ip[master]","outputFolderName":"ZhiWei1010_ip_master"},{"location":{"location":"https://github.com/tankh99/ip.git","repoName":"ip","organization":"tankh99","domainName":"github"},"branch":"master","displayName":"tankh99/ip[master]","outputFolderName":"tankh99_ip_master"},{"location":{"location":"https://github.com/YuvBindal/ip.git","repoName":"ip","organization":"YuvBindal","domainName":"github"},"branch":"master","displayName":"YuvBindal/ip[master]","outputFolderName":"YuvBindal_ip_master"},{"location":{"location":"https://github.com/chiralcentre/ip.git","repoName":"ip","organization":"chiralcentre","domainName":"github"},"branch":"master","displayName":"chiralcentre/ip[master]","outputFolderName":"chiralcentre_ip_master"},{"location":{"location":"https://github.com/cocoanautz/ip.git","repoName":"ip","organization":"cocoanautz","domainName":"github"},"branch":"master","displayName":"cocoanautz/ip[master]","outputFolderName":"cocoanautz_ip_master"},{"location":{"location":"https://github.com/peterXGD/ip.git","repoName":"ip","organization":"peterXGD","domainName":"github"},"branch":"master","displayName":"peterXGD/ip[master]","outputFolderName":"peterXGD_ip_master"},{"location":{"location":"https://github.com/martinng01/ip.git","repoName":"ip","organization":"martinng01","domainName":"github"},"branch":"master","displayName":"martinng01/ip[master]","outputFolderName":"martinng01_ip_master"},{"location":{"location":"https://github.com/pjanthony2001/ip.git","repoName":"ip","organization":"pjanthony2001","domainName":"github"},"branch":"master","displayName":"pjanthony2001/ip[master]","outputFolderName":"pjanthony2001_ip_master"},{"location":{"location":"https://github.com/yuechen2001/ip.git","repoName":"ip","organization":"yuechen2001","domainName":"github"},"branch":"master","displayName":"yuechen2001/ip[master]","outputFolderName":"yuechen2001_ip_master"},{"location":{"location":"https://github.com/SampsonYe1999/ip.git","repoName":"ip","organization":"SampsonYe1999","domainName":"github"},"branch":"master","displayName":"SampsonYe1999/ip[master]","outputFolderName":"SampsonYe1999_ip_master"},{"location":{"location":"https://github.com/ejnan/ip.git","repoName":"ip","organization":"ejnan","domainName":"github"},"branch":"master","displayName":"ejnan/ip[master]","outputFolderName":"ejnan_ip_master"},{"location":{"location":"https://github.com/c-j-lh/ip.git","repoName":"ip","organization":"c-j-lh","domainName":"github"},"branch":"master","displayName":"c-j-lh/ip[master]","outputFolderName":"c-j-lh_ip_master"},{"location":{"location":"https://github.com/xiaorui-ui/ip.git","repoName":"ip","organization":"xiaorui-ui","domainName":"github"},"branch":"master","displayName":"xiaorui-ui/ip[master]","outputFolderName":"xiaorui-ui_ip_master"},{"location":{"location":"https://github.com/qinboan/ip.git","repoName":"ip","organization":"qinboan","domainName":"github"},"branch":"master","displayName":"qinboan/ip[master]","outputFolderName":"qinboan_ip_master"},{"location":{"location":"https://github.com/qinxutan/ip.git","repoName":"ip","organization":"qinxutan","domainName":"github"},"branch":"master","displayName":"qinxutan/ip[master]","outputFolderName":"qinxutan_ip_master"},{"location":{"location":"https://github.com/S-Aishvarya/ip.git","repoName":"ip","organization":"S-Aishvarya","domainName":"github"},"branch":"master","displayName":"S-Aishvarya/ip[master]","outputFolderName":"S-Aishvarya_ip_master"},{"location":{"location":"https://github.com/zhekaiii/ip.git","repoName":"ip","organization":"zhekaiii","domainName":"github"},"branch":"master","displayName":"zhekaiii/ip[master]","outputFolderName":"zhekaiii_ip_master"},{"location":{"location":"https://github.com/taeewonnn/ip.git","repoName":"ip","organization":"taeewonnn","domainName":"github"},"branch":"master","displayName":"taeewonnn/ip[master]","outputFolderName":"taeewonnn_ip_master"},{"location":{"location":"https://github.com/hjungwoo01/ip.git","repoName":"ip","organization":"hjungwoo01","domainName":"github"},"branch":"master","displayName":"hjungwoo01/ip[master]","outputFolderName":"hjungwoo01_ip_master"},{"location":{"location":"https://github.com/ForAeons/ip.git","repoName":"ip","organization":"ForAeons","domainName":"github"},"branch":"master","displayName":"ForAeons/ip[master]","outputFolderName":"ForAeons_ip_master"},{"location":{"location":"https://github.com/minghowC/ip.git","repoName":"ip","organization":"minghowC","domainName":"github"},"branch":"master","displayName":"minghowC/ip[master]","outputFolderName":"minghowC_ip_master"},{"location":{"location":"https://github.com/E0735389/ip.git","repoName":"ip","organization":"E0735389","domainName":"github"},"branch":"master","displayName":"E0735389/ip[master]","outputFolderName":"E0735389_ip_master"},{"location":{"location":"https://github.com/Ty-stan0417/ip.git","repoName":"ip","organization":"Ty-stan0417","domainName":"github"},"branch":"master","displayName":"Ty-stan0417/ip[master]","outputFolderName":"Ty-stan0417_ip_master"},{"location":{"location":"https://github.com/dabzpengu/ip.git","repoName":"ip","organization":"dabzpengu","domainName":"github"},"branch":"master","displayName":"dabzpengu/ip[master]","outputFolderName":"dabzpengu_ip_master"},{"location":{"location":"https://github.com/rizkidelta/ip.git","repoName":"ip","organization":"rizkidelta","domainName":"github"},"branch":"master","displayName":"rizkidelta/ip[master]","outputFolderName":"rizkidelta_ip_master"},{"location":{"location":"https://github.com/wilsonwid/ip.git","repoName":"ip","organization":"wilsonwid","domainName":"github"},"branch":"master","displayName":"wilsonwid/ip[master]","outputFolderName":"wilsonwid_ip_master"},{"location":{"location":"https://github.com/chiageng/ip.git","repoName":"ip","organization":"chiageng","domainName":"github"},"branch":"master","displayName":"chiageng/ip[master]","outputFolderName":"chiageng_ip_master"},{"location":{"location":"https://github.com/julia-cp/ip.git","repoName":"ip","organization":"julia-cp","domainName":"github"},"branch":"master","displayName":"julia-cp/ip[master]","outputFolderName":"julia-cp_ip_master"},{"location":{"location":"https://github.com/ZHANGTIANYAO1/ip.git","repoName":"ip","organization":"ZHANGTIANYAO1","domainName":"github"},"branch":"master","displayName":"ZHANGTIANYAO1/ip[master]","outputFolderName":"ZHANGTIANYAO1_ip_master"},{"location":{"location":"https://github.com/tahsinhasem/ip.git","repoName":"ip","organization":"tahsinhasem","domainName":"github"},"branch":"master","displayName":"tahsinhasem/ip[master]","outputFolderName":"tahsinhasem_ip_master"},{"location":{"location":"https://github.com/LifHoshi/ip.git","repoName":"ip","organization":"LifHoshi","domainName":"github"},"branch":"master","displayName":"LifHoshi/ip[master]","outputFolderName":"LifHoshi_ip_master"},{"location":{"location":"https://github.com/ananya21/ip.git","repoName":"ip","organization":"ananya21","domainName":"github"},"branch":"master","displayName":"ananya21/ip[master]","outputFolderName":"ananya21_ip_master"},{"location":{"location":"https://github.com/acekhoon/ip.git","repoName":"ip","organization":"acekhoon","domainName":"github"},"branch":"master","displayName":"acekhoon/ip[master]","outputFolderName":"acekhoon_ip_master"},{"location":{"location":"https://github.com/willowisp01/ip.git","repoName":"ip","organization":"willowisp01","domainName":"github"},"branch":"master","displayName":"willowisp01/ip[master]","outputFolderName":"willowisp01_ip_master"},{"location":{"location":"https://github.com/Jajared/ip.git","repoName":"ip","organization":"Jajared","domainName":"github"},"branch":"master","displayName":"Jajared/ip[master]","outputFolderName":"Jajared_ip_master"},{"location":{"location":"https://github.com/JerryO3/ip.git","repoName":"ip","organization":"JerryO3","domainName":"github"},"branch":"master","displayName":"JerryO3/ip[master]","outputFolderName":"JerryO3_ip_master"},{"location":{"location":"https://github.com/cyqjoseph/ip.git","repoName":"ip","organization":"cyqjoseph","domainName":"github"},"branch":"master","displayName":"cyqjoseph/ip[master]","outputFolderName":"cyqjoseph_ip_master"},{"location":{"location":"https://github.com/jieqiboh/ip.git","repoName":"ip","organization":"jieqiboh","domainName":"github"},"branch":"master","displayName":"jieqiboh/ip[master]","outputFolderName":"jieqiboh_ip_master"},{"location":{"location":"https://github.com/theman-oj10/ip.git","repoName":"ip","organization":"theman-oj10","domainName":"github"},"branch":"master","displayName":"theman-oj10/ip[master]","outputFolderName":"theman-oj10_ip_master"},{"location":{"location":"https://github.com/owenong1/ip.git","repoName":"ip","organization":"owenong1","domainName":"github"},"branch":"master","displayName":"owenong1/ip[master]","outputFolderName":"owenong1_ip_master"},{"location":{"location":"https://github.com/aureliony/ip.git","repoName":"ip","organization":"aureliony","domainName":"github"},"branch":"master","displayName":"aureliony/ip[master]","outputFolderName":"aureliony_ip_master"},{"location":{"location":"https://github.com/yisiox/ip.git","repoName":"ip","organization":"yisiox","domainName":"github"},"branch":"master","displayName":"yisiox/ip[master]","outputFolderName":"yisiox_ip_master"},{"location":{"location":"https://github.com/Darkarche3/ip.git","repoName":"ip","organization":"Darkarche3","domainName":"github"},"branch":"master","displayName":"Darkarche3/ip[master]","outputFolderName":"Darkarche3_ip_master"},{"location":{"location":"https://github.com/Jolonauh/ip.git","repoName":"ip","organization":"Jolonauh","domainName":"github"},"branch":"master","displayName":"Jolonauh/ip[master]","outputFolderName":"Jolonauh_ip_master"},{"location":{"location":"https://github.com/kervyntan/ip.git","repoName":"ip","organization":"kervyntan","domainName":"github"},"branch":"master","displayName":"kervyntan/ip[master]","outputFolderName":"kervyntan_ip_master"},{"location":{"location":"https://github.com/yashpola/ip.git","repoName":"ip","organization":"yashpola","domainName":"github"},"branch":"master","displayName":"yashpola/ip[master]","outputFolderName":"yashpola_ip_master"},{"location":{"location":"https://github.com/wongkj12/ip.git","repoName":"ip","organization":"wongkj12","domainName":"github"},"branch":"master","displayName":"wongkj12/ip[master]","outputFolderName":"wongkj12_ip_master"},{"location":{"location":"https://github.com/tituschewxj/ip.git","repoName":"ip","organization":"tituschewxj","domainName":"github"},"branch":"master","displayName":"tituschewxj/ip[master]","outputFolderName":"tituschewxj_ip_master"},{"location":{"location":"https://github.com/Zer0Legion/ip.git","repoName":"ip","organization":"Zer0Legion","domainName":"github"},"branch":"master","displayName":"Zer0Legion/ip[master]","outputFolderName":"Zer0Legion_ip_master"},{"location":{"location":"https://github.com/g-tejas/ip.git","repoName":"ip","organization":"g-tejas","domainName":"github"},"branch":"master","displayName":"g-tejas/ip[master]","outputFolderName":"g-tejas_ip_master"},{"location":{"location":"https://github.com/legionlegion/ip.git","repoName":"ip","organization":"legionlegion","domainName":"github"},"branch":"master","displayName":"legionlegion/ip[master]","outputFolderName":"legionlegion_ip_master"},{"location":{"location":"https://github.com/tanguoyang/ip.git","repoName":"ip","organization":"tanguoyang","domainName":"github"},"branch":"master","displayName":"tanguoyang/ip[master]","outputFolderName":"tanguoyang_ip_master"},{"location":{"location":"https://github.com/jovantanyk/ip.git","repoName":"ip","organization":"jovantanyk","domainName":"github"},"branch":"master","displayName":"jovantanyk/ip[master]","outputFolderName":"jovantanyk_ip_master"},{"location":{"location":"https://github.com/Xilef121/ip.git","repoName":"ip","organization":"Xilef121","domainName":"github"},"branch":"master","displayName":"Xilef121/ip[master]","outputFolderName":"Xilef121_ip_master"},{"location":{"location":"https://github.com/ziiqii/ip.git","repoName":"ip","organization":"ziiqii","domainName":"github"},"branch":"master","displayName":"ziiqii/ip[master]","outputFolderName":"ziiqii_ip_master"},{"location":{"location":"https://github.com/Bandov/ip.git","repoName":"ip","organization":"Bandov","domainName":"github"},"branch":"master","displayName":"Bandov/ip[master]","outputFolderName":"Bandov_ip_master"},{"location":{"location":"https://github.com/appleraincoat/ip.git","repoName":"ip","organization":"appleraincoat","domainName":"github"},"branch":"master","displayName":"appleraincoat/ip[master]","outputFolderName":"appleraincoat_ip_master"},{"location":{"location":"https://github.com/belligerentbeagle/ip.git","repoName":"ip","organization":"belligerentbeagle","domainName":"github"},"branch":"master","displayName":"belligerentbeagle/ip[master]","outputFolderName":"belligerentbeagle_ip_master"},{"location":{"location":"https://github.com/limrik/ip.git","repoName":"ip","organization":"limrik","domainName":"github"},"branch":"master","displayName":"limrik/ip[master]","outputFolderName":"limrik_ip_master"},{"location":{"location":"https://github.com/Tsenrae/ip.git","repoName":"ip","organization":"Tsenrae","domainName":"github"},"branch":"master","displayName":"Tsenrae/ip[master]","outputFolderName":"Tsenrae_ip_master"},{"location":{"location":"https://github.com/nichee/ip.git","repoName":"ip","organization":"nichee","domainName":"github"},"branch":"master","displayName":"nichee/ip[master]","outputFolderName":"nichee_ip_master"},{"location":{"location":"https://github.com/justincred/ip.git","repoName":"ip","organization":"justincred","domainName":"github"},"branch":"master","displayName":"justincred/ip[master]","outputFolderName":"justincred_ip_master"},{"location":{"location":"https://github.com/Tanzhiheng26/ip.git","repoName":"ip","organization":"Tanzhiheng26","domainName":"github"},"branch":"master","displayName":"Tanzhiheng26/ip[master]","outputFolderName":"Tanzhiheng26_ip_master"},{"location":{"location":"https://github.com/cliftonchee/ip.git","repoName":"ip","organization":"cliftonchee","domainName":"github"},"branch":"master","displayName":"cliftonchee/ip[master]","outputFolderName":"cliftonchee_ip_master"},{"location":{"location":"https://github.com/SimHanKiong/ip.git","repoName":"ip","organization":"SimHanKiong","domainName":"github"},"branch":"master","displayName":"SimHanKiong/ip[master]","outputFolderName":"SimHanKiong_ip_master"},{"location":{"location":"https://github.com/ChrysanthemumT/ip.git","repoName":"ip","organization":"ChrysanthemumT","domainName":"github"},"branch":"master","displayName":"ChrysanthemumT/ip[master]","outputFolderName":"ChrysanthemumT_ip_master"},{"location":{"location":"https://github.com/jyztintan/ip.git","repoName":"ip","organization":"jyztintan","domainName":"github"},"branch":"master","displayName":"jyztintan/ip[master]","outputFolderName":"jyztintan_ip_master"},{"location":{"location":"https://github.com/ondretann/ip.git","repoName":"ip","organization":"ondretann","domainName":"github"},"branch":"master","displayName":"ondretann/ip[master]","outputFolderName":"ondretann_ip_master"},{"location":{"location":"https://github.com/bryanyee33/ip.git","repoName":"ip","organization":"bryanyee33","domainName":"github"},"branch":"master","displayName":"bryanyee33/ip[master]","outputFolderName":"bryanyee33_ip_master"},{"location":{"location":"https://github.com/chonghaoen/ip.git","repoName":"ip","organization":"chonghaoen","domainName":"github"},"branch":"master","displayName":"chonghaoen/ip[master]","outputFolderName":"chonghaoen_ip_master"},{"location":{"location":"https://github.com/ronnnnnnnnn/ip.git","repoName":"ip","organization":"ronnnnnnnnn","domainName":"github"},"branch":"master","displayName":"ronnnnnnnnn/ip[master]","outputFolderName":"ronnnnnnnnn_ip_master"},{"location":{"location":"https://github.com/ChuaZenKhoon/ip.git","repoName":"ip","organization":"ChuaZenKhoon","domainName":"github"},"branch":"master","displayName":"ChuaZenKhoon/ip[master]","outputFolderName":"ChuaZenKhoon_ip_master"},{"location":{"location":"https://github.com/gerteck/ip.git","repoName":"ip","organization":"gerteck","domainName":"github"},"branch":"master","displayName":"gerteck/ip[master]","outputFolderName":"gerteck_ip_master"},{"location":{"location":"https://github.com/ReganChoy/ip.git","repoName":"ip","organization":"ReganChoy","domainName":"github"},"branch":"master","displayName":"ReganChoy/ip[master]","outputFolderName":"ReganChoy_ip_master"},{"location":{"location":"https://github.com/zhuuyicheng/ip.git","repoName":"ip","organization":"zhuuyicheng","domainName":"github"},"branch":"master","displayName":"zhuuyicheng/ip[master]","outputFolderName":"zhuuyicheng_ip_master"},{"location":{"location":"https://github.com/chaaaaun/ip.git","repoName":"ip","organization":"chaaaaun","domainName":"github"},"branch":"master","displayName":"chaaaaun/ip[master]","outputFolderName":"chaaaaun_ip_master"},{"location":{"location":"https://github.com/ChuaZiLong/ip.git","repoName":"ip","organization":"ChuaZiLong","domainName":"github"},"branch":"master","displayName":"ChuaZiLong/ip[master]","outputFolderName":"ChuaZiLong_ip_master"},{"location":{"location":"https://github.com/Benson15912/ip.git","repoName":"ip","organization":"Benson15912","domainName":"github"},"branch":"master","displayName":"Benson15912/ip[master]","outputFolderName":"Benson15912_ip_master"},{"location":{"location":"https://github.com/c-wenlong/ip.git","repoName":"ip","organization":"c-wenlong","domainName":"github"},"branch":"master","displayName":"c-wenlong/ip[master]","outputFolderName":"c-wenlong_ip_master"},{"location":{"location":"https://github.com/gavin331/ip.git","repoName":"ip","organization":"gavin331","domainName":"github"},"branch":"master","displayName":"gavin331/ip[master]","outputFolderName":"gavin331_ip_master"},{"location":{"location":"https://github.com/CJerrong/ip.git","repoName":"ip","organization":"CJerrong","domainName":"github"},"branch":"master","displayName":"CJerrong/ip[master]","outputFolderName":"CJerrong_ip_master"},{"location":{"location":"https://github.com/ibnu2651/ip.git","repoName":"ip","organization":"ibnu2651","domainName":"github"},"branch":"master","displayName":"ibnu2651/ip[master]","outputFolderName":"ibnu2651_ip_master"},{"location":{"location":"https://github.com/1rbg/ip.git","repoName":"ip","organization":"1rbg","domainName":"github"},"branch":"master","displayName":"1rbg/ip[master]","outputFolderName":"1rbg_ip_master"},{"location":{"location":"https://github.com/alvinnzz/ip.git","repoName":"ip","organization":"alvinnzz","domainName":"github"},"branch":"master","displayName":"alvinnzz/ip[master]","outputFolderName":"alvinnzz_ip_master"},{"location":{"location":"https://github.com/whelan-low/ip.git","repoName":"ip","organization":"whelan-low","domainName":"github"},"branch":"master","displayName":"whelan-low/ip[master]","outputFolderName":"whelan-low_ip_master"},{"location":{"location":"https://github.com/ShanylOng/ip.git","repoName":"ip","organization":"ShanylOng","domainName":"github"},"branch":"master","displayName":"ShanylOng/ip[master]","outputFolderName":"ShanylOng_ip_master"},{"location":{"location":"https://github.com/ReflectiveObsidian/ip.git","repoName":"ip","organization":"ReflectiveObsidian","domainName":"github"},"branch":"master","displayName":"ReflectiveObsidian/ip[master]","outputFolderName":"ReflectiveObsidian_ip_master"},{"location":{"location":"https://github.com/kwuunnn/ip.git","repoName":"ip","organization":"kwuunnn","domainName":"github"},"branch":"master","displayName":"kwuunnn/ip[master]","outputFolderName":"kwuunnn_ip_master"},{"location":{"location":"https://github.com/billyhoce/ip.git","repoName":"ip","organization":"billyhoce","domainName":"github"},"branch":"master","displayName":"billyhoce/ip[master]","outputFolderName":"billyhoce_ip_master"},{"location":{"location":"https://github.com/Ryo-Seah/ip.git","repoName":"ip","organization":"Ryo-Seah","domainName":"github"},"branch":"master","displayName":"Ryo-Seah/ip[master]","outputFolderName":"Ryo-Seah_ip_master"},{"location":{"location":"https://github.com/meowwtama/ip.git","repoName":"ip","organization":"meowwtama","domainName":"github"},"branch":"master","displayName":"meowwtama/ip[master]","outputFolderName":"meowwtama_ip_master"},{"location":{"location":"https://github.com/gingerbreaf/ip.git","repoName":"ip","organization":"gingerbreaf","domainName":"github"},"branch":"master","displayName":"gingerbreaf/ip[master]","outputFolderName":"gingerbreaf_ip_master"},{"location":{"location":"https://github.com/yeoshuheng/ip.git","repoName":"ip","organization":"yeoshuheng","domainName":"github"},"branch":"master","displayName":"yeoshuheng/ip[master]","outputFolderName":"yeoshuheng_ip_master"},{"location":{"location":"https://github.com/shaunlxw/ip.git","repoName":"ip","organization":"shaunlxw","domainName":"github"},"branch":"master","displayName":"shaunlxw/ip[master]","outputFolderName":"shaunlxw_ip_master"},{"location":{"location":"https://github.com/DingBao-sys/ip.git","repoName":"ip","organization":"DingBao-sys","domainName":"github"},"branch":"master","displayName":"DingBao-sys/ip[master]","outputFolderName":"DingBao-sys_ip_master"},{"location":{"location":"https://github.com/ashleyclx/ip.git","repoName":"ip","organization":"ashleyclx","domainName":"github"},"branch":"master","displayName":"ashleyclx/ip[master]","outputFolderName":"ashleyclx_ip_master"},{"location":{"location":"https://github.com/TheodoreKooo/ip.git","repoName":"ip","organization":"TheodoreKooo","domainName":"github"},"branch":"master","displayName":"TheodoreKooo/ip[master]","outputFolderName":"TheodoreKooo_ip_master"},{"location":{"location":"https://github.com/casaarlai/ip.git","repoName":"ip","organization":"casaarlai","domainName":"github"},"branch":"master","displayName":"casaarlai/ip[master]","outputFolderName":"casaarlai_ip_master"},{"location":{"location":"https://github.com/sun-ruiheng/ip.git","repoName":"ip","organization":"sun-ruiheng","domainName":"github"},"branch":"master","displayName":"sun-ruiheng/ip[master]","outputFolderName":"sun-ruiheng_ip_master"},{"location":{"location":"https://github.com/Fidget-Spinner/ip.git","repoName":"ip","organization":"Fidget-Spinner","domainName":"github"},"branch":"master","displayName":"Fidget-Spinner/ip[master]","outputFolderName":"Fidget-Spinner_ip_master"},{"location":{"location":"https://github.com/Cedricaca/ip.git","repoName":"ip","organization":"Cedricaca","domainName":"github"},"branch":"master","displayName":"Cedricaca/ip[master]","outputFolderName":"Cedricaca_ip_master"},{"location":{"location":"https://github.com/YowSiaoKang/ip.git","repoName":"ip","organization":"YowSiaoKang","domainName":"github"},"branch":"master","displayName":"YowSiaoKang/ip[master]","outputFolderName":"YowSiaoKang_ip_master"},{"location":{"location":"https://github.com/J-wang-CSMA/ip.git","repoName":"ip","organization":"J-wang-CSMA","domainName":"github"},"branch":"master","displayName":"J-wang-CSMA/ip[master]","outputFolderName":"J-wang-CSMA_ip_master"},{"location":{"location":"https://github.com/Ragnapop/ip.git","repoName":"ip","organization":"Ragnapop","domainName":"github"},"branch":"master","displayName":"Ragnapop/ip[master]","outputFolderName":"Ragnapop_ip_master"},{"location":{"location":"https://github.com/UdhayaShan1/ip.git","repoName":"ip","organization":"UdhayaShan1","domainName":"github"},"branch":"master","displayName":"UdhayaShan1/ip[master]","outputFolderName":"UdhayaShan1_ip_master"},{"location":{"location":"https://github.com/tayziyi/ip.git","repoName":"ip","organization":"tayziyi","domainName":"github"},"branch":"master","displayName":"tayziyi/ip[master]","outputFolderName":"tayziyi_ip_master"},{"location":{"location":"https://github.com/blaukc/ip.git","repoName":"ip","organization":"blaukc","domainName":"github"},"branch":"master","displayName":"blaukc/ip[master]","outputFolderName":"blaukc_ip_master"},{"location":{"location":"https://github.com/kokerinks/ip.git","repoName":"ip","organization":"kokerinks","domainName":"github"},"branch":"master","displayName":"kokerinks/ip[master]","outputFolderName":"kokerinks_ip_master"},{"location":{"location":"https://github.com/mahadhir247/ip.git","repoName":"ip","organization":"mahadhir247","domainName":"github"},"branch":"master","displayName":"mahadhir247/ip[master]","outputFolderName":"mahadhir247_ip_master"},{"location":{"location":"https://github.com/delishad21/ip.git","repoName":"ip","organization":"delishad21","domainName":"github"},"branch":"master","displayName":"delishad21/ip[master]","outputFolderName":"delishad21_ip_master"},{"location":{"location":"https://github.com/gavingoh99/ip.git","repoName":"ip","organization":"gavingoh99","domainName":"github"},"branch":"master","displayName":"gavingoh99/ip[master]","outputFolderName":"gavingoh99_ip_master"},{"location":{"location":"https://github.com/kjw142857/ip.git","repoName":"ip","organization":"kjw142857","domainName":"github"},"branch":"master","displayName":"kjw142857/ip[master]","outputFolderName":"kjw142857_ip_master"},{"location":{"location":"https://github.com/dayn-1/ip.git","repoName":"ip","organization":"dayn-1","domainName":"github"},"branch":"master","displayName":"dayn-1/ip[master]","outputFolderName":"dayn-1_ip_master"},{"location":{"location":"https://github.com/macareonie/ip.git","repoName":"ip","organization":"macareonie","domainName":"github"},"branch":"master","displayName":"macareonie/ip[master]","outputFolderName":"macareonie_ip_master"},{"location":{"location":"https://github.com/Rikko1204/ip.git","repoName":"ip","organization":"Rikko1204","domainName":"github"},"branch":"master","displayName":"Rikko1204/ip[master]","outputFolderName":"Rikko1204_ip_master"},{"location":{"location":"https://github.com/teojunda/ip.git","repoName":"ip","organization":"teojunda","domainName":"github"},"branch":"master","displayName":"teojunda/ip[master]","outputFolderName":"teojunda_ip_master"},{"location":{"location":"https://github.com/thewongdylan/ip.git","repoName":"ip","organization":"thewongdylan","domainName":"github"},"branch":"master","displayName":"thewongdylan/ip[master]","outputFolderName":"thewongdylan_ip_master"},{"location":{"location":"https://github.com/bertrandong/ip.git","repoName":"ip","organization":"bertrandong","domainName":"github"},"branch":"master","displayName":"bertrandong/ip[master]","outputFolderName":"bertrandong_ip_master"},{"location":{"location":"https://github.com/rertyy/ip.git","repoName":"ip","organization":"rertyy","domainName":"github"},"branch":"master","displayName":"rertyy/ip[master]","outputFolderName":"rertyy_ip_master"},{"location":{"location":"https://github.com/soons1/ip.git","repoName":"ip","organization":"soons1","domainName":"github"},"branch":"master","displayName":"soons1/ip[master]","outputFolderName":"soons1_ip_master"},{"location":{"location":"https://github.com/solomonng2001/ip.git","repoName":"ip","organization":"solomonng2001","domainName":"github"},"branch":"master","displayName":"solomonng2001/ip[master]","outputFolderName":"solomonng2001_ip_master"},{"location":{"location":"https://github.com/guanquann/ip.git","repoName":"ip","organization":"guanquann","domainName":"github"},"branch":"master","displayName":"guanquann/ip[master]","outputFolderName":"guanquann_ip_master"},{"location":{"location":"https://github.com/YuSoonZ/ip.git","repoName":"ip","organization":"YuSoonZ","domainName":"github"},"branch":"master","displayName":"YuSoonZ/ip[master]","outputFolderName":"YuSoonZ_ip_master"},{"location":{"location":"https://github.com/JuliaPoo/ip.git","repoName":"ip","organization":"JuliaPoo","domainName":"github"},"branch":"master","displayName":"JuliaPoo/ip[master]","outputFolderName":"JuliaPoo_ip_master"},{"location":{"location":"https://github.com/dillontkh/ip.git","repoName":"ip","organization":"dillontkh","domainName":"github"},"branch":"master","displayName":"dillontkh/ip[master]","outputFolderName":"dillontkh_ip_master"},{"location":{"location":"https://github.com/camille-readbean/ip.git","repoName":"ip","organization":"camille-readbean","domainName":"github"},"branch":"master","displayName":"camille-readbean/ip[master]","outputFolderName":"camille-readbean_ip_master"},{"location":{"location":"https://github.com/ruijietay/ip.git","repoName":"ip","organization":"ruijietay","domainName":"github"},"branch":"master","displayName":"ruijietay/ip[master]","outputFolderName":"ruijietay_ip_master"},{"location":{"location":"https://github.com/HM33-Stu/ip.git","repoName":"ip","organization":"HM33-Stu","domainName":"github"},"branch":"master","displayName":"HM33-Stu/ip[master]","outputFolderName":"HM33-Stu_ip_master"},{"location":{"location":"https://github.com/nobodyishappy/ip.git","repoName":"ip","organization":"nobodyishappy","domainName":"github"},"branch":"master","displayName":"nobodyishappy/ip[master]","outputFolderName":"nobodyishappy_ip_master"},{"location":{"location":"https://github.com/yadunut/ip.git","repoName":"ip","organization":"yadunut","domainName":"github"},"branch":"master","displayName":"yadunut/ip[master]","outputFolderName":"yadunut_ip_master"},{"location":{"location":"https://github.com/breezetall/ip.git","repoName":"ip","organization":"breezetall","domainName":"github"},"branch":"master","displayName":"breezetall/ip[master]","outputFolderName":"breezetall_ip_master"},{"location":{"location":"https://github.com/jjchee77/ip.git","repoName":"ip","organization":"jjchee77","domainName":"github"},"branch":"master","displayName":"jjchee77/ip[master]","outputFolderName":"jjchee77_ip_master"},{"location":{"location":"https://github.com/BryanL2303/ip.git","repoName":"ip","organization":"BryanL2303","domainName":"github"},"branch":"master","displayName":"BryanL2303/ip[master]","outputFolderName":"BryanL2303_ip_master"},{"location":{"location":"https://github.com/RyanNgWH/ip.git","repoName":"ip","organization":"RyanNgWH","domainName":"github"},"branch":"master","displayName":"RyanNgWH/ip[master]","outputFolderName":"RyanNgWH_ip_master"},{"location":{"location":"https://github.com/Jaspertzx/ip.git","repoName":"ip","organization":"Jaspertzx","domainName":"github"},"branch":"master","displayName":"Jaspertzx/ip[master]","outputFolderName":"Jaspertzx_ip_master"},{"location":{"location":"https://github.com/smolegz/ip.git","repoName":"ip","organization":"smolegz","domainName":"github"},"branch":"master","displayName":"smolegz/ip[master]","outputFolderName":"smolegz_ip_master"},{"location":{"location":"https://github.com/azumieflare/ip.git","repoName":"ip","organization":"azumieflare","domainName":"github"},"branch":"master","displayName":"azumieflare/ip[master]","outputFolderName":"azumieflare_ip_master"},{"location":{"location":"https://github.com/javierng2knus/ip.git","repoName":"ip","organization":"javierng2knus","domainName":"github"},"branch":"master","displayName":"javierng2knus/ip[master]","outputFolderName":"javierng2knus_ip_master"},{"location":{"location":"https://github.com/SimKianSeng/ip.git","repoName":"ip","organization":"SimKianSeng","domainName":"github"},"branch":"master","displayName":"SimKianSeng/ip[master]","outputFolderName":"SimKianSeng_ip_master"},{"location":{"location":"https://github.com/jasperng-nus/ip.git","repoName":"ip","organization":"jasperng-nus","domainName":"github"},"branch":"master","displayName":"jasperng-nus/ip[master]","outputFolderName":"jasperng-nus_ip_master"},{"location":{"location":"https://github.com/HongRay/ip.git","repoName":"ip","organization":"HongRay","domainName":"github"},"branch":"master","displayName":"HongRay/ip[master]","outputFolderName":"HongRay_ip_master"},{"location":{"location":"https://github.com/kailashgautham/ip.git","repoName":"ip","organization":"kailashgautham","domainName":"github"},"branch":"master","displayName":"kailashgautham/ip[master]","outputFolderName":"kailashgautham_ip_master"},{"location":{"location":"https://github.com/zhenghuil/ip.git","repoName":"ip","organization":"zhenghuil","domainName":"github"},"branch":"master","displayName":"zhenghuil/ip[master]","outputFolderName":"zhenghuil_ip_master"},{"location":{"location":"https://github.com/donwong2308/ip.git","repoName":"ip","organization":"donwong2308","domainName":"github"},"branch":"master","displayName":"donwong2308/ip[master]","outputFolderName":"donwong2308_ip_master"},{"location":{"location":"https://github.com/jayllo-c/ip.git","repoName":"ip","organization":"jayllo-c","domainName":"github"},"branch":"master","displayName":"jayllo-c/ip[master]","outputFolderName":"jayllo-c_ip_master"},{"location":{"location":"https://github.com/cheahTJ/ip.git","repoName":"ip","organization":"cheahTJ","domainName":"github"},"branch":"master","displayName":"cheahTJ/ip[master]","outputFolderName":"cheahTJ_ip_master"},{"location":{"location":"https://github.com/triciiaaa/ip.git","repoName":"ip","organization":"triciiaaa","domainName":"github"},"branch":"master","displayName":"triciiaaa/ip[master]","outputFolderName":"triciiaaa_ip_master"},{"location":{"location":"https://github.com/larainezo/ip.git","repoName":"ip","organization":"larainezo","domainName":"github"},"branch":"master","displayName":"larainezo/ip[master]","outputFolderName":"larainezo_ip_master"},{"location":{"location":"https://github.com/kailinteoo/ip.git","repoName":"ip","organization":"kailinteoo","domainName":"github"},"branch":"master","displayName":"kailinteoo/ip[master]","outputFolderName":"kailinteoo_ip_master"},{"location":{"location":"https://github.com/brennalaurentan/ip.git","repoName":"ip","organization":"brennalaurentan","domainName":"github"},"branch":"master","displayName":"brennalaurentan/ip[master]","outputFolderName":"brennalaurentan_ip_master"},{"location":{"location":"https://github.com/GiselleTan/ip.git","repoName":"ip","organization":"GiselleTan","domainName":"github"},"branch":"master","displayName":"GiselleTan/ip[master]","outputFolderName":"GiselleTan_ip_master"},{"location":{"location":"https://github.com/taufiq/ip.git","repoName":"ip","organization":"taufiq","domainName":"github"},"branch":"master","displayName":"taufiq/ip[master]","outputFolderName":"taufiq_ip_master"},{"location":{"location":"https://github.com/xuelinglow/ip.git","repoName":"ip","organization":"xuelinglow","domainName":"github"},"branch":"master","displayName":"xuelinglow/ip[master]","outputFolderName":"xuelinglow_ip_master"},{"location":{"location":"https://github.com/shunjieee/ip.git","repoName":"ip","organization":"shunjieee","domainName":"github"},"branch":"master","displayName":"shunjieee/ip[master]","outputFolderName":"shunjieee_ip_master"},{"location":{"location":"https://github.com/SherwynNg/ip.git","repoName":"ip","organization":"SherwynNg","domainName":"github"},"branch":"master","displayName":"SherwynNg/ip[master]","outputFolderName":"SherwynNg_ip_master"},{"location":{"location":"https://github.com/AndrewOng2066/ip.git","repoName":"ip","organization":"AndrewOng2066","domainName":"github"},"branch":"master","displayName":"AndrewOng2066/ip[master]","outputFolderName":"AndrewOng2066_ip_master"},{"location":{"location":"https://github.com/MarcusGitty/ip.git","repoName":"ip","organization":"MarcusGitty","domainName":"github"},"branch":"master","displayName":"MarcusGitty/ip[master]","outputFolderName":"MarcusGitty_ip_master"},{"location":{"location":"https://github.com/Anant1902/ip.git","repoName":"ip","organization":"Anant1902","domainName":"github"},"branch":"master","displayName":"Anant1902/ip[master]","outputFolderName":"Anant1902_ip_master"},{"location":{"location":"https://github.com/headcube1/ip.git","repoName":"ip","organization":"headcube1","domainName":"github"},"branch":"master","displayName":"headcube1/ip[master]","outputFolderName":"headcube1_ip_master"},{"location":{"location":"https://github.com/jimseah-0116/ip.git","repoName":"ip","organization":"jimseah-0116","domainName":"github"},"branch":"master","displayName":"jimseah-0116/ip[master]","outputFolderName":"jimseah-0116_ip_master"},{"location":{"location":"https://github.com/chuahjiajie/ip.git","repoName":"ip","organization":"chuahjiajie","domainName":"github"},"branch":"master","displayName":"chuahjiajie/ip[master]","outputFolderName":"chuahjiajie_ip_master"},{"location":{"location":"https://github.com/ararchch/ip.git","repoName":"ip","organization":"ararchch","domainName":"github"},"branch":"master","displayName":"ararchch/ip[master]","outputFolderName":"ararchch_ip_master"},{"location":{"location":"https://github.com/chiaryan/ip.git","repoName":"ip","organization":"chiaryan","domainName":"github"},"branch":"master","displayName":"chiaryan/ip[master]","outputFolderName":"chiaryan_ip_master"},{"location":{"location":"https://github.com/chengjunyuan/ip.git","repoName":"ip","organization":"chengjunyuan","domainName":"github"},"branch":"master","displayName":"chengjunyuan/ip[master]","outputFolderName":"chengjunyuan_ip_master"},{"location":{"location":"https://github.com/LimZiJia/ip.git","repoName":"ip","organization":"LimZiJia","domainName":"github"},"branch":"master","displayName":"LimZiJia/ip[master]","outputFolderName":"LimZiJia_ip_master"},{"location":{"location":"https://github.com/darkvoid32/ip.git","repoName":"ip","organization":"darkvoid32","domainName":"github"},"branch":"master","displayName":"darkvoid32/ip[master]","outputFolderName":"darkvoid32_ip_master"},{"location":{"location":"https://github.com/maze508/ip.git","repoName":"ip","organization":"maze508","domainName":"github"},"branch":"master","displayName":"maze508/ip[master]","outputFolderName":"maze508_ip_master"},{"location":{"location":"https://github.com/RingoftheKing/ip.git","repoName":"ip","organization":"RingoftheKing","domainName":"github"},"branch":"master","displayName":"RingoftheKing/ip[master]","outputFolderName":"RingoftheKing_ip_master"},{"location":{"location":"https://github.com/Rishit02/ip.git","repoName":"ip","organization":"Rishit02","domainName":"github"},"branch":"master","displayName":"Rishit02/ip[master]","outputFolderName":"Rishit02_ip_master"},{"location":{"location":"https://github.com/drustanyjt/ip.git","repoName":"ip","organization":"drustanyjt","domainName":"github"},"branch":"master","displayName":"drustanyjt/ip[master]","outputFolderName":"drustanyjt_ip_master"},{"location":{"location":"https://github.com/Dexter-Wong/ip.git","repoName":"ip","organization":"Dexter-Wong","domainName":"github"},"branch":"master","displayName":"Dexter-Wong/ip[master]","outputFolderName":"Dexter-Wong_ip_master"},{"location":{"location":"https://github.com/jxunze/ip.git","repoName":"ip","organization":"jxunze","domainName":"github"},"branch":"master","displayName":"jxunze/ip[master]","outputFolderName":"jxunze_ip_master"},{"location":{"location":"https://github.com/Vision-2000/ip.git","repoName":"ip","organization":"Vision-2000","domainName":"github"},"branch":"master","displayName":"Vision-2000/ip[master]","outputFolderName":"Vision-2000_ip_master"},{"location":{"location":"https://github.com/Derekljh/ip.git","repoName":"ip","organization":"Derekljh","domainName":"github"},"branch":"master","displayName":"Derekljh/ip[master]","outputFolderName":"Derekljh_ip_master"},{"location":{"location":"https://github.com/alphajae11/ip.git","repoName":"ip","organization":"alphajae11","domainName":"github"},"branch":"master","displayName":"alphajae11/ip[master]","outputFolderName":"alphajae11_ip_master"},{"location":{"location":"https://github.com/Kappaccinoh/ip.git","repoName":"ip","organization":"Kappaccinoh","domainName":"github"},"branch":"master","displayName":"Kappaccinoh/ip[master]","outputFolderName":"Kappaccinoh_ip_master"},{"location":{"location":"https://github.com/minreiseah/ip.git","repoName":"ip","organization":"minreiseah","domainName":"github"},"branch":"master","displayName":"minreiseah/ip[master]","outputFolderName":"minreiseah_ip_master"},{"location":{"location":"https://github.com/yuhinarita/ip.git","repoName":"ip","organization":"yuhinarita","domainName":"github"},"branch":"master","displayName":"yuhinarita/ip[master]","outputFolderName":"yuhinarita_ip_master"},{"location":{"location":"https://github.com/quelinxiao/ip.git","repoName":"ip","organization":"quelinxiao","domainName":"github"},"branch":"master","displayName":"quelinxiao/ip[master]","outputFolderName":"quelinxiao_ip_master"},{"location":{"location":"https://github.com/kab-dot/ip.git","repoName":"ip","organization":"kab-dot","domainName":"github"},"branch":"master","displayName":"kab-dot/ip[master]","outputFolderName":"kab-dot_ip_master"},{"location":{"location":"https://github.com/alfaloo/ip.git","repoName":"ip","organization":"alfaloo","domainName":"github"},"branch":"master","displayName":"alfaloo/ip[master]","outputFolderName":"alfaloo_ip_master"},{"location":{"location":"https://github.com/doyelee0313/ip.git","repoName":"ip","organization":"doyelee0313","domainName":"github"},"branch":"master","displayName":"doyelee0313/ip[master]","outputFolderName":"doyelee0313_ip_master"},{"location":{"location":"https://github.com/sdevih/ip.git","repoName":"ip","organization":"sdevih","domainName":"github"},"branch":"master","displayName":"sdevih/ip[master]","outputFolderName":"sdevih_ip_master"},{"location":{"location":"https://github.com/Emberlynn-Loo/ip.git","repoName":"ip","organization":"Emberlynn-Loo","domainName":"github"},"branch":"master","displayName":"Emberlynn-Loo/ip[master]","outputFolderName":"Emberlynn-Loo_ip_master"},{"location":{"location":"https://github.com/tejas-1405/ip.git","repoName":"ip","organization":"tejas-1405","domainName":"github"},"branch":"master","displayName":"tejas-1405/ip[master]","outputFolderName":"tejas-1405_ip_master"},{"location":{"location":"https://github.com/H4mes/ip.git","repoName":"ip","organization":"H4mes","domainName":"github"},"branch":"master","displayName":"H4mes/ip[master]","outputFolderName":"H4mes_ip_master"},{"location":{"location":"https://github.com/ChocoRagdoll/ip.git","repoName":"ip","organization":"ChocoRagdoll","domainName":"github"},"branch":"master","displayName":"ChocoRagdoll/ip[master]","outputFolderName":"ChocoRagdoll_ip_master"},{"location":{"location":"https://github.com/dwangwk/ip.git","repoName":"ip","organization":"dwangwk","domainName":"github"},"branch":"master","displayName":"dwangwk/ip[master]","outputFolderName":"dwangwk_ip_master"},{"location":{"location":"https://github.com/leeweiming3/ip.git","repoName":"ip","organization":"leeweiming3","domainName":"github"},"branch":"master","displayName":"leeweiming3/ip[master]","outputFolderName":"leeweiming3_ip_master"},{"location":{"location":"https://github.com/Wyrkx/ip.git","repoName":"ip","organization":"Wyrkx","domainName":"github"},"branch":"master","displayName":"Wyrkx/ip[master]","outputFolderName":"Wyrkx_ip_master"},{"location":{"location":"https://github.com/jeong-jaeho/ip.git","repoName":"ip","organization":"jeong-jaeho","domainName":"github"},"branch":"master","displayName":"jeong-jaeho/ip[master]","outputFolderName":"jeong-jaeho_ip_master"},{"location":{"location":"https://github.com/tohlh/ip.git","repoName":"ip","organization":"tohlh","domainName":"github"},"branch":"master","displayName":"tohlh/ip[master]","outputFolderName":"tohlh_ip_master"},{"location":{"location":"https://github.com/tzaph/ip.git","repoName":"ip","organization":"tzaph","domainName":"github"},"branch":"master","displayName":"tzaph/ip[master]","outputFolderName":"tzaph_ip_master"},{"location":{"location":"https://github.com/PateShin/ip.git","repoName":"ip","organization":"PateShin","domainName":"github"},"branch":"master","displayName":"PateShin/ip[master]","outputFolderName":"PateShin_ip_master"},{"location":{"location":"https://github.com/PallonCX/ip.git","repoName":"ip","organization":"PallonCX","domainName":"github"},"branch":"master","displayName":"PallonCX/ip[master]","outputFolderName":"PallonCX_ip_master"},{"location":{"location":"https://github.com/benson1029/ip.git","repoName":"ip","organization":"benson1029","domainName":"github"},"branch":"master","displayName":"benson1029/ip[master]","outputFolderName":"benson1029_ip_master"},{"location":{"location":"https://github.com/Kaya3842/ip.git","repoName":"ip","organization":"Kaya3842","domainName":"github"},"branch":"master","displayName":"Kaya3842/ip[master]","outputFolderName":"Kaya3842_ip_master"},{"location":{"location":"https://github.com/JustWeiHao/ip.git","repoName":"ip","organization":"JustWeiHao","domainName":"github"},"branch":"master","displayName":"JustWeiHao/ip[master]","outputFolderName":"JustWeiHao_ip_master"},{"location":{"location":"https://github.com/chin-herng/ip.git","repoName":"ip","organization":"chin-herng","domainName":"github"},"branch":"master","displayName":"chin-herng/ip[master]","outputFolderName":"chin-herng_ip_master"},{"location":{"location":"https://github.com/swtan346/ip.git","repoName":"ip","organization":"swtan346","domainName":"github"},"branch":"master","displayName":"swtan346/ip[master]","outputFolderName":"swtan346_ip_master"},{"location":{"location":"https://github.com/gosongying/ip.git","repoName":"ip","organization":"gosongying","domainName":"github"},"branch":"master","displayName":"gosongying/ip[master]","outputFolderName":"gosongying_ip_master"},{"location":{"location":"https://github.com/IamZhenHong/ip.git","repoName":"ip","organization":"IamZhenHong","domainName":"github"},"branch":"master","displayName":"IamZhenHong/ip[master]","outputFolderName":"IamZhenHong_ip_master"},{"location":{"location":"https://github.com/ivan24004/ip.git","repoName":"ip","organization":"ivan24004","domainName":"github"},"branch":"master","displayName":"ivan24004/ip[master]","outputFolderName":"ivan24004_ip_master"},{"location":{"location":"https://github.com/sarjinius/ip.git","repoName":"ip","organization":"sarjinius","domainName":"github"},"branch":"master","displayName":"sarjinius/ip[master]","outputFolderName":"sarjinius_ip_master"},{"location":{"location":"https://github.com/shavonneg/ip.git","repoName":"ip","organization":"shavonneg","domainName":"github"},"branch":"master","displayName":"shavonneg/ip[master]","outputFolderName":"shavonneg_ip_master"},{"location":{"location":"https://github.com/STELLA-LYE/ip.git","repoName":"ip","organization":"STELLA-LYE","domainName":"github"},"branch":"master","displayName":"STELLA-LYE/ip[master]","outputFolderName":"STELLA-LYE_ip_master"},{"location":{"location":"https://github.com/Lalelulilulela/ip.git","repoName":"ip","organization":"Lalelulilulela","domainName":"github"},"branch":"master","displayName":"Lalelulilulela/ip[master]","outputFolderName":"Lalelulilulela_ip_master"},{"location":{"location":"https://github.com/eunrcn/ip.git","repoName":"ip","organization":"eunrcn","domainName":"github"},"branch":"master","displayName":"eunrcn/ip[master]","outputFolderName":"eunrcn_ip_master"},{"location":{"location":"https://github.com/jocelyn-soh/ip.git","repoName":"ip","organization":"jocelyn-soh","domainName":"github"},"branch":"master","displayName":"jocelyn-soh/ip[master]","outputFolderName":"jocelyn-soh_ip_master"},{"location":{"location":"https://github.com/lynnetteeee/ip.git","repoName":"ip","organization":"lynnetteeee","domainName":"github"},"branch":"master","displayName":"lynnetteeee/ip[master]","outputFolderName":"lynnetteeee_ip_master"},{"location":{"location":"https://github.com/chenyixin0/ip.git","repoName":"ip","organization":"chenyixin0","domainName":"github"},"branch":"master","displayName":"chenyixin0/ip[master]","outputFolderName":"chenyixin0_ip_master"},{"location":{"location":"https://github.com/tanjieling0/ip.git","repoName":"ip","organization":"tanjieling0","domainName":"github"},"branch":"master","displayName":"tanjieling0/ip[master]","outputFolderName":"tanjieling0_ip_master"},{"location":{"location":"https://github.com/alex-setyawan/ip.git","repoName":"ip","organization":"alex-setyawan","domainName":"github"},"branch":"master","displayName":"alex-setyawan/ip[master]","outputFolderName":"alex-setyawan_ip_master"},{"location":{"location":"https://github.com/peienlim/ip.git","repoName":"ip","organization":"peienlim","domainName":"github"},"branch":"master","displayName":"peienlim/ip[master]","outputFolderName":"peienlim_ip_master"},{"location":{"location":"https://github.com/danielleloh/ip.git","repoName":"ip","organization":"danielleloh","domainName":"github"},"branch":"master","displayName":"danielleloh/ip[master]","outputFolderName":"danielleloh_ip_master"},{"location":{"location":"https://github.com/jannaleong/ip.git","repoName":"ip","organization":"jannaleong","domainName":"github"},"branch":"master","displayName":"jannaleong/ip[master]","outputFolderName":"jannaleong_ip_master"},{"location":{"location":"https://github.com/huekoh/ip.git","repoName":"ip","organization":"huekoh","domainName":"github"},"branch":"master","displayName":"huekoh/ip[master]","outputFolderName":"huekoh_ip_master"},{"location":{"location":"https://github.com/wapisai/ip.git","repoName":"ip","organization":"wapisai","domainName":"github"},"branch":"master","displayName":"wapisai/ip[master]","outputFolderName":"wapisai_ip_master"},{"location":{"location":"https://github.com/NatLeong/ip.git","repoName":"ip","organization":"NatLeong","domainName":"github"},"branch":"master","displayName":"NatLeong/ip[master]","outputFolderName":"NatLeong_ip_master"},{"location":{"location":"https://github.com/Pughal77/ip.git","repoName":"ip","organization":"Pughal77","domainName":"github"},"branch":"master","displayName":"Pughal77/ip[master]","outputFolderName":"Pughal77_ip_master"},{"location":{"location":"https://github.com/tahnya/ip.git","repoName":"ip","organization":"tahnya","domainName":"github"},"branch":"master","displayName":"tahnya/ip[master]","outputFolderName":"tahnya_ip_master"},{"location":{"location":"https://github.com/rahhulleee/ip.git","repoName":"ip","organization":"rahhulleee","domainName":"github"},"branch":"master","displayName":"rahhulleee/ip[master]","outputFolderName":"rahhulleee_ip_master"},{"location":{"location":"https://github.com/tamagochuuu/ip.git","repoName":"ip","organization":"tamagochuuu","domainName":"github"},"branch":"master","displayName":"tamagochuuu/ip[master]","outputFolderName":"tamagochuuu_ip_master"},{"location":{"location":"https://github.com/Chiarena/ip.git","repoName":"ip","organization":"Chiarena","domainName":"github"},"branch":"master","displayName":"Chiarena/ip[master]","outputFolderName":"Chiarena_ip_master"},{"location":{"location":"https://github.com/agreatdayy/ip.git","repoName":"ip","organization":"agreatdayy","domainName":"github"},"branch":"master","displayName":"agreatdayy/ip[master]","outputFolderName":"agreatdayy_ip_master"},{"location":{"location":"https://github.com/CaptainKeqing/ip.git","repoName":"ip","organization":"CaptainKeqing","domainName":"github"},"branch":"master","displayName":"CaptainKeqing/ip[master]","outputFolderName":"CaptainKeqing_ip_master"},{"location":{"location":"https://github.com/evedaktyl/ip.git","repoName":"ip","organization":"evedaktyl","domainName":"github"},"branch":"master","displayName":"evedaktyl/ip[master]","outputFolderName":"evedaktyl_ip_master"},{"location":{"location":"https://github.com/zhikaiong2001/ip.git","repoName":"ip","organization":"zhikaiong2001","domainName":"github"},"branch":"master","displayName":"zhikaiong2001/ip[master]","outputFolderName":"zhikaiong2001_ip_master"},{"location":{"location":"https://github.com/johnyoozhengxian/ip.git","repoName":"ip","organization":"johnyoozhengxian","domainName":"github"},"branch":"master","displayName":"johnyoozhengxian/ip[master]","outputFolderName":"johnyoozhengxian_ip_master"},{"location":{"location":"https://github.com/KinTatHo/ip.git","repoName":"ip","organization":"KinTatHo","domainName":"github"},"branch":"master","displayName":"KinTatHo/ip[master]","outputFolderName":"KinTatHo_ip_master"},{"location":{"location":"https://github.com/Joseph31416/ip.git","repoName":"ip","organization":"Joseph31416","domainName":"github"},"branch":"master","displayName":"Joseph31416/ip[master]","outputFolderName":"Joseph31416_ip_master"},{"location":{"location":"https://github.com/Murugan-Maniish/ip.git","repoName":"ip","organization":"Murugan-Maniish","domainName":"github"},"branch":"master","displayName":"Murugan-Maniish/ip[master]","outputFolderName":"Murugan-Maniish_ip_master"},{"location":{"location":"https://github.com/Joshy837/ip.git","repoName":"ip","organization":"Joshy837","domainName":"github"},"branch":"master","displayName":"Joshy837/ip[master]","outputFolderName":"Joshy837_ip_master"},{"location":{"location":"https://github.com/ChenXy128/ip.git","repoName":"ip","organization":"ChenXy128","domainName":"github"},"branch":"master","displayName":"ChenXy128/ip[master]","outputFolderName":"ChenXy128_ip_master"},{"location":{"location":"https://github.com/jamessinmaojun/ip.git","repoName":"ip","organization":"jamessinmaojun","domainName":"github"},"branch":"master","displayName":"jamessinmaojun/ip[master]","outputFolderName":"jamessinmaojun_ip_master"},{"location":{"location":"https://github.com/Joelwang22/ip.git","repoName":"ip","organization":"Joelwang22","domainName":"github"},"branch":"master","displayName":"Joelwang22/ip[master]","outputFolderName":"Joelwang22_ip_master"},{"location":{"location":"https://github.com/shawnnlimm/ip.git","repoName":"ip","organization":"shawnnlimm","domainName":"github"},"branch":"master","displayName":"shawnnlimm/ip[master]","outputFolderName":"shawnnlimm_ip_master"},{"location":{"location":"https://github.com/erv-teo/ip.git","repoName":"ip","organization":"erv-teo","domainName":"github"},"branch":"master","displayName":"erv-teo/ip[master]","outputFolderName":"erv-teo_ip_master"},{"location":{"location":"https://github.com/h4ow3i/ip.git","repoName":"ip","organization":"h4ow3i","domainName":"github"},"branch":"master","displayName":"h4ow3i/ip[master]","outputFolderName":"h4ow3i_ip_master"},{"location":{"location":"https://github.com/ziyang27/ip.git","repoName":"ip","organization":"ziyang27","domainName":"github"},"branch":"master","displayName":"ziyang27/ip[master]","outputFolderName":"ziyang27_ip_master"},{"location":{"location":"https://github.com/FangRuoqing/ip.git","repoName":"ip","organization":"FangRuoqing","domainName":"github"},"branch":"master","displayName":"FangRuoqing/ip[master]","outputFolderName":"FangRuoqing_ip_master"},{"location":{"location":"https://github.com/0nesheep/ip.git","repoName":"ip","organization":"0nesheep","domainName":"github"},"branch":"master","displayName":"0nesheep/ip[master]","outputFolderName":"0nesheep_ip_master"},{"location":{"location":"https://github.com/0-yibai/ip.git","repoName":"ip","organization":"0-yibai","domainName":"github"},"branch":"master","displayName":"0-yibai/ip[master]","outputFolderName":"0-yibai_ip_master"},{"location":{"location":"https://github.com/jerremyng/ip.git","repoName":"ip","organization":"jerremyng","domainName":"github"},"branch":"master","displayName":"jerremyng/ip[master]","outputFolderName":"jerremyng_ip_master"},{"location":{"location":"https://github.com/irwynliong/ip.git","repoName":"ip","organization":"irwynliong","domainName":"github"},"branch":"master","displayName":"irwynliong/ip[master]","outputFolderName":"irwynliong_ip_master"},{"location":{"location":"https://github.com/yorklim/ip.git","repoName":"ip","organization":"yorklim","domainName":"github"},"branch":"master","displayName":"yorklim/ip[master]","outputFolderName":"yorklim_ip_master"},{"location":{"location":"https://github.com/vannykin/ip.git","repoName":"ip","organization":"vannykin","domainName":"github"},"branch":"master","displayName":"vannykin/ip[master]","outputFolderName":"vannykin_ip_master"},{"location":{"location":"https://github.com/laney0808/ip.git","repoName":"ip","organization":"laney0808","domainName":"github"},"branch":"master","displayName":"laney0808/ip[master]","outputFolderName":"laney0808_ip_master"},{"location":{"location":"https://github.com/yapxuanxuan/ip.git","repoName":"ip","organization":"yapxuanxuan","domainName":"github"},"branch":"master","displayName":"yapxuanxuan/ip[master]","outputFolderName":"yapxuanxuan_ip_master"},{"location":{"location":"https://github.com/Greg-Tan/ip.git","repoName":"ip","organization":"Greg-Tan","domainName":"github"},"branch":"master","displayName":"Greg-Tan/ip[master]","outputFolderName":"Greg-Tan_ip_master"},{"location":{"location":"https://github.com/taniatsq/ip.git","repoName":"ip","organization":"taniatsq","domainName":"github"},"branch":"master","displayName":"taniatsq/ip[master]","outputFolderName":"taniatsq_ip_master"},{"location":{"location":"https://github.com/yongkotaro/ip.git","repoName":"ip","organization":"yongkotaro","domainName":"github"},"branch":"master","displayName":"yongkotaro/ip[master]","outputFolderName":"yongkotaro_ip_master"},{"location":{"location":"https://github.com/tanyunchao/ip.git","repoName":"ip","organization":"tanyunchao","domainName":"github"},"branch":"master","displayName":"tanyunchao/ip[master]","outputFolderName":"tanyunchao_ip_master"},{"location":{"location":"https://github.com/KiatLun/ip.git","repoName":"ip","organization":"KiatLun","domainName":"github"},"branch":"master","displayName":"KiatLun/ip[master]","outputFolderName":"KiatLun_ip_master"},{"location":{"location":"https://github.com/Xuyan0518/ip.git","repoName":"ip","organization":"Xuyan0518","domainName":"github"},"branch":"master","displayName":"Xuyan0518/ip[master]","outputFolderName":"Xuyan0518_ip_master"},{"location":{"location":"https://github.com/cleowenxuan/ip.git","repoName":"ip","organization":"cleowenxuan","domainName":"github"},"branch":"master","displayName":"cleowenxuan/ip[master]","outputFolderName":"cleowenxuan_ip_master"},{"location":{"location":"https://github.com/logical-1985516/ip.git","repoName":"ip","organization":"logical-1985516","domainName":"github"},"branch":"master","displayName":"logical-1985516/ip[master]","outputFolderName":"logical-1985516_ip_master"},{"location":{"location":"https://github.com/jessicawyz/ip.git","repoName":"ip","organization":"jessicawyz","domainName":"github"},"branch":"master","displayName":"jessicawyz/ip[master]","outputFolderName":"jessicawyz_ip_master"},{"location":{"location":"https://github.com/ashleyy2444/ip.git","repoName":"ip","organization":"ashleyy2444","domainName":"github"},"branch":"master","displayName":"ashleyy2444/ip[master]","outputFolderName":"ashleyy2444_ip_master"},{"location":{"location":"https://github.com/tengcharmaine/ip.git","repoName":"ip","organization":"tengcharmaine","domainName":"github"},"branch":"master","displayName":"tengcharmaine/ip[master]","outputFolderName":"tengcharmaine_ip_master"},{"location":{"location":"https://github.com/Jawad280/ip.git","repoName":"ip","organization":"Jawad280","domainName":"github"},"branch":"master","displayName":"Jawad280/ip[master]","outputFolderName":"Jawad280_ip_master"},{"location":{"location":"https://github.com/ThatGirlJam/ip.git","repoName":"ip","organization":"ThatGirlJam","domainName":"github"},"branch":"master","displayName":"ThatGirlJam/ip[master]","outputFolderName":"ThatGirlJam_ip_master"},{"location":{"location":"https://github.com/saiutkarsh33/ip.git","repoName":"ip","organization":"saiutkarsh33","domainName":"github"},"branch":"master","displayName":"saiutkarsh33/ip[master]","outputFolderName":"saiutkarsh33_ip_master"},{"location":{"location":"https://github.com/meenulekha/ip.git","repoName":"ip","organization":"meenulekha","domainName":"github"},"branch":"master","displayName":"meenulekha/ip[master]","outputFolderName":"meenulekha_ip_master"},{"location":{"location":"https://github.com/LargeCrowd/ip.git","repoName":"ip","organization":"LargeCrowd","domainName":"github"},"branch":"master","displayName":"LargeCrowd/ip[master]","outputFolderName":"LargeCrowd_ip_master"},{"location":{"location":"https://github.com/linnn-7/ip.git","repoName":"ip","organization":"linnn-7","domainName":"github"},"branch":"master","displayName":"linnn-7/ip[master]","outputFolderName":"linnn-7_ip_master"},{"location":{"location":"https://github.com/maiyasaliha/ip.git","repoName":"ip","organization":"maiyasaliha","domainName":"github"},"branch":"master","displayName":"maiyasaliha/ip[master]","outputFolderName":"maiyasaliha_ip_master"},{"location":{"location":"https://github.com/jonpwk/ip.git","repoName":"ip","organization":"jonpwk","domainName":"github"},"branch":"master","displayName":"jonpwk/ip[master]","outputFolderName":"jonpwk_ip_master"},{"location":{"location":"https://github.com/ChillinRage/ip.git","repoName":"ip","organization":"ChillinRage","domainName":"github"},"branch":"master","displayName":"ChillinRage/ip[master]","outputFolderName":"ChillinRage_ip_master"},{"location":{"location":"https://github.com/moguries/ip.git","repoName":"ip","organization":"moguries","domainName":"github"},"branch":"master","displayName":"moguries/ip[master]","outputFolderName":"moguries_ip_master"},{"location":{"location":"https://github.com/Alteqa/ip.git","repoName":"ip","organization":"Alteqa","domainName":"github"},"branch":"master","displayName":"Alteqa/ip[master]","outputFolderName":"Alteqa_ip_master"},{"location":{"location":"https://github.com/Zack-Tay/ip.git","repoName":"ip","organization":"Zack-Tay","domainName":"github"},"branch":"master","displayName":"Zack-Tay/ip[master]","outputFolderName":"Zack-Tay_ip_master"},{"location":{"location":"https://github.com/marcus-ny/ip.git","repoName":"ip","organization":"marcus-ny","domainName":"github"},"branch":"master","displayName":"marcus-ny/ip[master]","outputFolderName":"marcus-ny_ip_master"},{"location":{"location":"https://github.com/bennyLCK/ip.git","repoName":"ip","organization":"bennyLCK","domainName":"github"},"branch":"master","displayName":"bennyLCK/ip[master]","outputFolderName":"bennyLCK_ip_master"},{"location":{"location":"https://github.com/kinjalagarwal1810/ip.git","repoName":"ip","organization":"kinjalagarwal1810","domainName":"github"},"branch":"master","displayName":"kinjalagarwal1810/ip[master]","outputFolderName":"kinjalagarwal1810_ip_master"},{"location":{"location":"https://github.com/R-Laksh/ip.git","repoName":"ip","organization":"R-Laksh","domainName":"github"},"branch":"master","displayName":"R-Laksh/ip[master]","outputFolderName":"R-Laksh_ip_master"},{"location":{"location":"https://github.com/Colex2000/ip.git","repoName":"ip","organization":"Colex2000","domainName":"github"},"branch":"master","displayName":"Colex2000/ip[master]","outputFolderName":"Colex2000_ip_master"},{"location":{"location":"https://github.com/DhiraPT/ip.git","repoName":"ip","organization":"DhiraPT","domainName":"github"},"branch":"master","displayName":"DhiraPT/ip[master]","outputFolderName":"DhiraPT_ip_master"},{"location":{"location":"https://github.com/yyccbb/ip.git","repoName":"ip","organization":"yyccbb","domainName":"github"},"branch":"master","displayName":"yyccbb/ip[master]","outputFolderName":"yyccbb_ip_master"},{"location":{"location":"https://github.com/nigel27022001/ip.git","repoName":"ip","organization":"nigel27022001","domainName":"github"},"branch":"master","displayName":"nigel27022001/ip[master]","outputFolderName":"nigel27022001_ip_master"},{"location":{"location":"https://github.com/shamesjen/ip.git","repoName":"ip","organization":"shamesjen","domainName":"github"},"branch":"master","displayName":"shamesjen/ip[master]","outputFolderName":"shamesjen_ip_master"},{"location":{"location":"https://github.com/sindhurajain/ip.git","repoName":"ip","organization":"sindhurajain","domainName":"github"},"branch":"master","displayName":"sindhurajain/ip[master]","outputFolderName":"sindhurajain_ip_master"},{"location":{"location":"https://github.com/ryanlimdx/ip.git","repoName":"ip","organization":"ryanlimdx","domainName":"github"},"branch":"master","displayName":"ryanlimdx/ip[master]","outputFolderName":"ryanlimdx_ip_master"},{"location":{"location":"https://github.com/hiivan/ip.git","repoName":"ip","organization":"hiivan","domainName":"github"},"branch":"master","displayName":"hiivan/ip[master]","outputFolderName":"hiivan_ip_master"},{"location":{"location":"https://github.com/Apzure/ip.git","repoName":"ip","organization":"Apzure","domainName":"github"},"branch":"master","displayName":"Apzure/ip[master]","outputFolderName":"Apzure_ip_master"},{"location":{"location":"https://github.com/bgopi23/ip.git","repoName":"ip","organization":"bgopi23","domainName":"github"},"branch":"master","displayName":"bgopi23/ip[master]","outputFolderName":"bgopi23_ip_master"},{"location":{"location":"https://github.com/LWS49/ip.git","repoName":"ip","organization":"LWS49","domainName":"github"},"branch":"master","displayName":"LWS49/ip[master]","outputFolderName":"LWS49_ip_master"},{"location":{"location":"https://github.com/wang-xinrong/ip.git","repoName":"ip","organization":"wang-xinrong","domainName":"github"},"branch":"master","displayName":"wang-xinrong/ip[master]","outputFolderName":"wang-xinrong_ip_master"},{"location":{"location":"https://github.com/HusseinSafwan02/ip.git","repoName":"ip","organization":"HusseinSafwan02","domainName":"github"},"branch":"master","displayName":"HusseinSafwan02/ip[master]","outputFolderName":"HusseinSafwan02_ip_master"},{"location":{"location":"https://github.com/Ko-Khan/ip.git","repoName":"ip","organization":"Ko-Khan","domainName":"github"},"branch":"master","displayName":"Ko-Khan/ip[master]","outputFolderName":"Ko-Khan_ip_master"},{"location":{"location":"https://github.com/yleeyilin/ip.git","repoName":"ip","organization":"yleeyilin","domainName":"github"},"branch":"master","displayName":"yleeyilin/ip[master]","outputFolderName":"yleeyilin_ip_master"},{"location":{"location":"https://github.com/jiahui0309/ip.git","repoName":"ip","organization":"jiahui0309","domainName":"github"},"branch":"master","displayName":"jiahui0309/ip[master]","outputFolderName":"jiahui0309_ip_master"},{"location":{"location":"https://github.com/Jayne1010/ip.git","repoName":"ip","organization":"Jayne1010","domainName":"github"},"branch":"master","displayName":"Jayne1010/ip[master]","outputFolderName":"Jayne1010_ip_master"},{"location":{"location":"https://github.com/getsquared/ip.git","repoName":"ip","organization":"getsquared","domainName":"github"},"branch":"master","displayName":"getsquared/ip[master]","outputFolderName":"getsquared_ip_master"},{"location":{"location":"https://github.com/kaitinghh/ip.git","repoName":"ip","organization":"kaitinghh","domainName":"github"},"branch":"master","displayName":"kaitinghh/ip[master]","outputFolderName":"kaitinghh_ip_master"},{"location":{"location":"https://github.com/4llysa/ip.git","repoName":"ip","organization":"4llysa","domainName":"github"},"branch":"master","displayName":"4llysa/ip[master]","outputFolderName":"4llysa_ip_master"},{"location":{"location":"https://github.com/Lin-Shuang-Shuang/ip.git","repoName":"ip","organization":"Lin-Shuang-Shuang","domainName":"github"},"branch":"master","displayName":"Lin-Shuang-Shuang/ip[master]","outputFolderName":"Lin-Shuang-Shuang_ip_master"},{"location":{"location":"https://github.com/youdonnnn/ip.git","repoName":"ip","organization":"youdonnnn","domainName":"github"},"branch":"master","displayName":"youdonnnn/ip[master]","outputFolderName":"youdonnnn_ip_master"},{"location":{"location":"https://github.com/xuwen-ho/ip.git","repoName":"ip","organization":"xuwen-ho","domainName":"github"},"branch":"master","displayName":"xuwen-ho/ip[master]","outputFolderName":"xuwen-ho_ip_master"},{"location":{"location":"https://github.com/ongzhili/ip.git","repoName":"ip","organization":"ongzhili","domainName":"github"},"branch":"master","displayName":"ongzhili/ip[master]","outputFolderName":"ongzhili_ip_master"},{"location":{"location":"https://github.com/miffi/ip.git","repoName":"ip","organization":"miffi","domainName":"github"},"branch":"master","displayName":"miffi/ip[master]","outputFolderName":"miffi_ip_master"},{"location":{"location":"https://github.com/wallacexuhanxiao/ip.git","repoName":"ip","organization":"wallacexuhanxiao","domainName":"github"},"branch":"master","displayName":"wallacexuhanxiao/ip[master]","outputFolderName":"wallacexuhanxiao_ip_master"},{"location":{"location":"https://github.com/Teee728/ip.git","repoName":"ip","organization":"Teee728","domainName":"github"},"branch":"master","displayName":"Teee728/ip[master]","outputFolderName":"Teee728_ip_master"},{"location":{"location":"https://github.com/wolffe88/ip.git","repoName":"ip","organization":"wolffe88","domainName":"github"},"branch":"master","displayName":"wolffe88/ip[master]","outputFolderName":"wolffe88_ip_master"},{"location":{"location":"https://github.com/jskimdev/ip.git","repoName":"ip","organization":"jskimdev","domainName":"github"},"branch":"master","displayName":"jskimdev/ip[master]","outputFolderName":"jskimdev_ip_master"},{"location":{"location":"https://github.com/reetmitra/ip.git","repoName":"ip","organization":"reetmitra","domainName":"github"},"branch":"master","displayName":"reetmitra/ip[master]","outputFolderName":"reetmitra_ip_master"},{"location":{"location":"https://github.com/iamtr/ip.git","repoName":"ip","organization":"iamtr","domainName":"github"},"branch":"master","displayName":"iamtr/ip[master]","outputFolderName":"iamtr_ip_master"},{"location":{"location":"https://github.com/officialchengyud/ip.git","repoName":"ip","organization":"officialchengyud","domainName":"github"},"branch":"master","displayName":"officialchengyud/ip[master]","outputFolderName":"officialchengyud_ip_master"},{"location":{"location":"https://github.com/GERARDJM018/ip.git","repoName":"ip","organization":"GERARDJM018","domainName":"github"},"branch":"master","displayName":"GERARDJM018/ip[master]","outputFolderName":"GERARDJM018_ip_master"},{"location":{"location":"https://github.com/howen02/ip.git","repoName":"ip","organization":"howen02","domainName":"github"},"branch":"master","displayName":"howen02/ip[master]","outputFolderName":"howen02_ip_master"},{"location":{"location":"https://github.com/NusMinato/ip.git","repoName":"ip","organization":"NusMinato","domainName":"github"},"branch":"master","displayName":"NusMinato/ip[master]","outputFolderName":"NusMinato_ip_master"},{"location":{"location":"https://github.com/hjuntan/ip.git","repoName":"ip","organization":"hjuntan","domainName":"github"},"branch":"master","displayName":"hjuntan/ip[master]","outputFolderName":"hjuntan_ip_master"},{"location":{"location":"https://github.com/gauravuj/ip.git","repoName":"ip","organization":"gauravuj","domainName":"github"},"branch":"master","displayName":"gauravuj/ip[master]","outputFolderName":"gauravuj_ip_master"},{"location":{"location":"https://github.com/yespiggy/ip.git","repoName":"ip","organization":"yespiggy","domainName":"github"},"branch":"master","displayName":"yespiggy/ip[master]","outputFolderName":"yespiggy_ip_master"},{"location":{"location":"https://github.com/Windofbitter/ip.git","repoName":"ip","organization":"Windofbitter","domainName":"github"},"branch":"master","displayName":"Windofbitter/ip[master]","outputFolderName":"Windofbitter_ip_master"},{"location":{"location":"https://github.com/NewtonKoh/ip.git","repoName":"ip","organization":"NewtonKoh","domainName":"github"},"branch":"master","displayName":"NewtonKoh/ip[master]","outputFolderName":"NewtonKoh_ip_master"},{"location":{"location":"https://github.com/narwhalsilent/ip.git","repoName":"ip","organization":"narwhalsilent","domainName":"github"},"branch":"master","displayName":"narwhalsilent/ip[master]","outputFolderName":"narwhalsilent_ip_master"},{"location":{"location":"https://github.com/starsia/ip.git","repoName":"ip","organization":"starsia","domainName":"github"},"branch":"master","displayName":"starsia/ip[master]","outputFolderName":"starsia_ip_master"},{"location":{"location":"https://github.com/AidenLYT/ip.git","repoName":"ip","organization":"AidenLYT","domainName":"github"},"branch":"master","displayName":"AidenLYT/ip[master]","outputFolderName":"AidenLYT_ip_master"},{"location":{"location":"https://github.com/nyankoclaws/ip.git","repoName":"ip","organization":"nyankoclaws","domainName":"github"},"branch":"master","displayName":"nyankoclaws/ip[master]","outputFolderName":"nyankoclaws_ip_master"},{"location":{"location":"https://github.com/angsongyee/ip.git","repoName":"ip","organization":"angsongyee","domainName":"github"},"branch":"master","displayName":"angsongyee/ip[master]","outputFolderName":"angsongyee_ip_master"},{"location":{"location":"https://github.com/eliotlee68/ip.git","repoName":"ip","organization":"eliotlee68","domainName":"github"},"branch":"master","displayName":"eliotlee68/ip[master]","outputFolderName":"eliotlee68_ip_master"},{"location":{"location":"https://github.com/Yskie/ip.git","repoName":"ip","organization":"Yskie","domainName":"github"},"branch":"master","displayName":"Yskie/ip[master]","outputFolderName":"Yskie_ip_master"},{"location":{"location":"https://github.com/faaheem13/ip.git","repoName":"ip","organization":"faaheem13","domainName":"github"},"branch":"master","displayName":"faaheem13/ip[master]","outputFolderName":"faaheem13_ip_master"},{"location":{"location":"https://github.com/Shauryan123/ip.git","repoName":"ip","organization":"Shauryan123","domainName":"github"},"branch":"master","displayName":"Shauryan123/ip[master]","outputFolderName":"Shauryan123_ip_master"},{"location":{"location":"https://github.com/MaYuehan/ip.git","repoName":"ip","organization":"MaYuehan","domainName":"github"},"branch":"master","displayName":"MaYuehan/ip[master]","outputFolderName":"MaYuehan_ip_master"},{"location":{"location":"https://github.com/kaiyi27/ip.git","repoName":"ip","organization":"kaiyi27","domainName":"github"},"branch":"master","displayName":"kaiyi27/ip[master]","outputFolderName":"kaiyi27_ip_master"},{"location":{"location":"https://github.com/radeon2525/ip.git","repoName":"ip","organization":"radeon2525","domainName":"github"},"branch":"master","displayName":"radeon2525/ip[master]","outputFolderName":"radeon2525_ip_master"},{"location":{"location":"https://github.com/dedsecrattle/ip.git","repoName":"ip","organization":"dedsecrattle","domainName":"github"},"branch":"master","displayName":"dedsecrattle/ip[master]","outputFolderName":"dedsecrattle_ip_master"},{"location":{"location":"https://github.com/AdityaB4/ip.git","repoName":"ip","organization":"AdityaB4","domainName":"github"},"branch":"master","displayName":"AdityaB4/ip[master]","outputFolderName":"AdityaB4_ip_master"},{"location":{"location":"https://github.com/PyromancerBoom/ip.git","repoName":"ip","organization":"PyromancerBoom","domainName":"github"},"branch":"master","displayName":"PyromancerBoom/ip[master]","outputFolderName":"PyromancerBoom_ip_master"},{"location":{"location":"https://github.com/JiaXinEu/ip.git","repoName":"ip","organization":"JiaXinEu","domainName":"github"},"branch":"master","displayName":"JiaXinEu/ip[master]","outputFolderName":"JiaXinEu_ip_master"},{"location":{"location":"https://github.com/Ella-e/ip.git","repoName":"ip","organization":"Ella-e","domainName":"github"},"branch":"master","displayName":"Ella-e/ip[master]","outputFolderName":"Ella-e_ip_master"},{"location":{"location":"https://github.com/yiwern5/ip.git","repoName":"ip","organization":"yiwern5","domainName":"github"},"branch":"master","displayName":"yiwern5/ip[master]","outputFolderName":"yiwern5_ip_master"},{"location":{"location":"https://github.com/SamuelZero1/ip.git","repoName":"ip","organization":"SamuelZero1","domainName":"github"},"branch":"master","displayName":"SamuelZero1/ip[master]","outputFolderName":"SamuelZero1_ip_master"},{"location":{"location":"https://github.com/nuyer/ip.git","repoName":"ip","organization":"nuyer","domainName":"github"},"branch":"master","displayName":"nuyer/ip[master]","outputFolderName":"nuyer_ip_master"},{"location":{"location":"https://github.com/SeaHogs/ip.git","repoName":"ip","organization":"SeaHogs","domainName":"github"},"branch":"master","displayName":"SeaHogs/ip[master]","outputFolderName":"SeaHogs_ip_master"},{"location":{"location":"https://github.com/TarinPairor/ip.git","repoName":"ip","organization":"TarinPairor","domainName":"github"},"branch":"master","displayName":"TarinPairor/ip[master]","outputFolderName":"TarinPairor_ip_master"},{"location":{"location":"https://github.com/KSSWSept20/ip.git","repoName":"ip","organization":"KSSWSept20","domainName":"github"},"branch":"master","displayName":"KSSWSept20/ip[master]","outputFolderName":"KSSWSept20_ip_master"},{"location":{"location":"https://github.com/myang2020/ip.git","repoName":"ip","organization":"myang2020","domainName":"github"},"branch":"master","displayName":"myang2020/ip[master]","outputFolderName":"myang2020_ip_master"},{"location":{"location":"https://github.com/leepoeaik/ip.git","repoName":"ip","organization":"leepoeaik","domainName":"github"},"branch":"master","displayName":"leepoeaik/ip[master]","outputFolderName":"leepoeaik_ip_master"},{"location":{"location":"https://github.com/justinlengch/ip.git","repoName":"ip","organization":"justinlengch","domainName":"github"},"branch":"master","displayName":"justinlengch/ip[master]","outputFolderName":"justinlengch_ip_master"},{"location":{"location":"https://github.com/Li-Zizhen/ip.git","repoName":"ip","organization":"Li-Zizhen","domainName":"github"},"branch":"master","displayName":"Li-Zizhen/ip[master]","outputFolderName":"Li-Zizhen_ip_master"},{"location":{"location":"https://github.com/ashleygoh1/ip.git","repoName":"ip","organization":"ashleygoh1","domainName":"github"},"branch":"master","displayName":"ashleygoh1/ip[master]","outputFolderName":"ashleygoh1_ip_master"},{"location":{"location":"https://github.com/Wongqingyee/ip.git","repoName":"ip","organization":"Wongqingyee","domainName":"github"},"branch":"master","displayName":"Wongqingyee/ip[master]","outputFolderName":"Wongqingyee_ip_master"},{"location":{"location":"https://github.com/AjayArvind2207/ip.git","repoName":"ip","organization":"AjayArvind2207","domainName":"github"},"branch":"master","displayName":"AjayArvind2207/ip[master]","outputFolderName":"AjayArvind2207_ip_master"},{"location":{"location":"https://github.com/Austintjh19/ip.git","repoName":"ip","organization":"Austintjh19","domainName":"github"},"branch":"master","displayName":"Austintjh19/ip[master]","outputFolderName":"Austintjh19_ip_master"},{"location":{"location":"https://github.com/jinhanfromNUS/ip.git","repoName":"ip","organization":"jinhanfromNUS","domainName":"github"},"branch":"master","displayName":"jinhanfromNUS/ip[master]","outputFolderName":"jinhanfromNUS_ip_master"},{"location":{"location":"https://github.com/ziyi22/ip.git","repoName":"ip","organization":"ziyi22","domainName":"github"},"branch":"master","displayName":"ziyi22/ip[master]","outputFolderName":"ziyi22_ip_master"},{"location":{"location":"https://github.com/menatahari/ip.git","repoName":"ip","organization":"menatahari","domainName":"github"},"branch":"master","displayName":"menatahari/ip[master]","outputFolderName":"menatahari_ip_master"},{"location":{"location":"https://github.com/ThitipatC/ip.git","repoName":"ip","organization":"ThitipatC","domainName":"github"},"branch":"master","displayName":"ThitipatC/ip[master]","outputFolderName":"ThitipatC_ip_master"},{"location":{"location":"https://github.com/purivirakarin/ip.git","repoName":"ip","organization":"purivirakarin","domainName":"github"},"branch":"master","displayName":"purivirakarin/ip[master]","outputFolderName":"purivirakarin_ip_master"},{"location":{"location":"https://github.com/modembcc/ip.git","repoName":"ip","organization":"modembcc","domainName":"github"},"branch":"master","displayName":"modembcc/ip[master]","outputFolderName":"modembcc_ip_master"},{"location":{"location":"https://github.com/yashma-sonara/ip.git","repoName":"ip","organization":"yashma-sonara","domainName":"github"},"branch":"master","displayName":"yashma-sonara/ip[master]","outputFolderName":"yashma-sonara_ip_master"},{"location":{"location":"https://github.com/0liverkong/ip.git","repoName":"ip","organization":"0liverkong","domainName":"github"},"branch":"master","displayName":"0liverkong/ip[master]","outputFolderName":"0liverkong_ip_master"},{"location":{"location":"https://github.com/dhlee03/ip.git","repoName":"ip","organization":"dhlee03","domainName":"github"},"branch":"master","displayName":"dhlee03/ip[master]","outputFolderName":"dhlee03_ip_master"},{"location":{"location":"https://github.com/shayaansultan/ip.git","repoName":"ip","organization":"shayaansultan","domainName":"github"},"branch":"master","displayName":"shayaansultan/ip[master]","outputFolderName":"shayaansultan_ip_master"},{"location":{"location":"https://github.com/ljy0422/ip.git","repoName":"ip","organization":"ljy0422","domainName":"github"},"branch":"master","displayName":"ljy0422/ip[master]","outputFolderName":"ljy0422_ip_master"},{"location":{"location":"https://github.com/JukeBoxK/ip.git","repoName":"ip","organization":"JukeBoxK","domainName":"github"},"branch":"master","displayName":"JukeBoxK/ip[master]","outputFolderName":"JukeBoxK_ip_master"},{"location":{"location":"https://github.com/Howlong11/ip.git","repoName":"ip","organization":"Howlong11","domainName":"github"},"branch":"master","displayName":"Howlong11/ip[master]","outputFolderName":"Howlong11_ip_master"},{"location":{"location":"https://github.com/Hibeom0929/ip.git","repoName":"ip","organization":"Hibeom0929","domainName":"github"},"branch":"master","displayName":"Hibeom0929/ip[master]","outputFolderName":"Hibeom0929_ip_master"},{"location":{"location":"https://github.com/VatsalVitosh/ip.git","repoName":"ip","organization":"VatsalVitosh","domainName":"github"},"branch":"master","displayName":"VatsalVitosh/ip[master]","outputFolderName":"VatsalVitosh_ip_master"},{"location":{"location":"https://github.com/bachletuankhai/ip.git","repoName":"ip","organization":"bachletuankhai","domainName":"github"},"branch":"master","displayName":"bachletuankhai/ip[master]","outputFolderName":"bachletuankhai_ip_master"},{"location":{"location":"https://github.com/RunjiaChen/ip.git","repoName":"ip","organization":"RunjiaChen","domainName":"github"},"branch":"master","displayName":"RunjiaChen/ip[master]","outputFolderName":"RunjiaChen_ip_master"}],"errorSet":[{"repoName":"Ryan-Reno/ip[master]","errorMessage":"Failed to clone from https://github.com/Ryan-Reno/ip.git"},{"repoName":"tcjazwei/ip[master]","errorMessage":"Failed to clone from https://github.com/tcjazwei/ip.git"},{"repoName":"Morninggloryyy/ip[master]","errorMessage":"Failed to clone from https://github.com/Morninggloryyy/ip.git"},{"repoName":"ValenciaLim/ip[master]","errorMessage":"Failed to clone from https://github.com/ValenciaLim/ip.git"},{"repoName":"nusliuyifan/ip[master]","errorMessage":"Failed to clone from https://github.com/nusliuyifan/ip.git"},{"repoName":"The-Dudeski/ip[master]","errorMessage":"Failed to clone from https://github.com/The-Dudeski/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-07","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}}