diff --git a/R/.RData b/R/.RData new file mode 100644 index 0000000..6d72e29 Binary files /dev/null and b/R/.RData differ diff --git a/R/.Rhistory b/R/.Rhistory index 1940037..aa3d73e 100644 --- a/R/.Rhistory +++ b/R/.Rhistory @@ -1,512 +1,512 @@ -scale_colour_manual(values=legend) -g +geom_point() + +geom_smooth(mapping = aes(x=age_of_project, y=total_community))+ +xlab("Age of the Project") + +ylab("Underproduction Factor") +g4 +g4 <- ggplot(data7, aes(x= (age_of_the_project /12), y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project, y=total_community))+ +xlab("Age of the Project") + +ylab("Underproduction Factor") +g4 +g4 <- ggplot(data7, aes(x=age_of_the_project, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project, y=total_community))+ +xlab("Age of the Project") + +ylab("Underproduction Factor") +g4 +g4 <- ggplot(data7, aes(x=age_of_the_project, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project, y=total_community))+ +xlab("Age of the Project") + +ylab("Underproduction Factor") +g4 +g4 <- ggplot(data7, aes(x=age_of_project/12, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project, y=total_community))+ +xlab("Age of the Proje") + +ylab("Underproduction Factor") +g4 +g4 <- ggplot(data7, aes(x=age_of_project/12, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/12, y=total_community))+ +xlab("Age of the Proje") + +ylab("Underproduction Factor") +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community))+ +xlab("Age of the Proje") + +ylab("Underproduction Factor") +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community))+ +xlab("Age of the Project (years)") + +ylab("Contributor Community Population") +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community, color=yellow))+ +xlab("Age of the Project (years)") + +ylab("Contributor Community Population") +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community))+ +xlab("Age of the Project (years)") + +ylab("Contributor Community Population") +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community))+ +xlab("Age of the Project (years)") + +ylab("Contributor Community Population") + +theme_bw() +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community), color="black")+ +xlab("Age of the Project (years)") + +ylab("Contributor Community Population") + +theme_bw() +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community), color="yellow")+ +xlab("Age of the Project (years)") + +ylab("Contributor Community Population") + +theme_bw() +g4 +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + +geom_point() + +geom_smooth(mapping = aes(x=age_of_project/365, y=total_community), color="red")+ +xlab("Age of the Project (years)") + +ylab("Contributor Community Population") + +theme_bw() +g4 +library(readr) +data6 <-read_csv('../kk_final_commentlist.csv', show_col_types=FALSE) +data6$total_community = data6$contributors + data6$collaborators +median(data6$total_community) +cor.test(data6$total_community, data6$age_of_project) +library(readr) +library(ggplot2) +data1 <- read_csv('../power_data_111023_mmt.csv',show_col_types = FALSE) +data1$up.fac.mean <- pmin(python_labeled, same_labeled, na.rm=TRUE) +data1$old_milestones <- data1$milestones +data1$new_milestones <- as.numeric(data1$milestones > 0) + 1 +data1$new.age <- as.numeric(cut(data1$age/365, breaks=c(0,9,12,15,17), labels=c(1,2,3,4))) +data1$new.formal.score <- data1$mmt / (data1$new_milestones/data1$new.age) +data1$new.age.factor <- as.factor(data1$new.age) +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_point() + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), +method='lm', formula= y~x) +g2 +data1$up.fac.mean <- pmin(python_labeled, same_labeled, na.rm=TRUE) +data1 <- read_csv('../power_data_111023_mmt.csv',show_col_types = FALSE) +data2 <- read_csv('../inst_all_packages_full_results.csv') +#d$nd <- to_logical(d$not.damaging, custom_true=c("Y")) +#levels(d$source) <- c("IP-based Editors", "New Editors", "Registered Editors", "Tor-based Editors") +python_labeled <- as.numeric(data2$up.fac.mean[match(paste('python',tolower(data1$pkg), sep = "-"), data2$pkg)]) +same_labeled <- as.numeric(data2$up.fac.mean[match(tolower(data1$pkg), data2$pkg)]) +data1$up.fac.mean <- pmin(python_labeled, same_labeled, na.rm=TRUE) +data1$old_milestones <- data1$milestones +data1$new_milestones <- as.numeric(data1$milestones > 0) + 1 +data1$new.age.factor <- as.factor(data1$new.age) +data1$new.age <- as.numeric(cut(data1$age/365, breaks=c(0,9,12,15,17), labels=c(1,2,3,4))) +data1$new.formal.score <- data1$mmt / (data1$new_milestones/data1$new.age) +data1$new.age.factor <- as.factor(data1$new.age) +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_point() + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), +method='lm', formula= y~x) +g2 +data1 <- read_csv('../power_data_111023_mmt.csv',show_col_types = FALSE) +data2 <- read_csv('../inst_all_packages_full_results.csv') +#d$nd <- to_logical(d$not.damaging, custom_true=c("Y")) +#levels(d$source) <- c("IP-based Editors", "New Editors", "Registered Editors", "Tor-based Editors") +python_labeled <- as.numeric(data2$up.fac.mean[match(paste('python',tolower(data1$pkg), sep = "-"), data2$pkg)]) +same_labeled <- as.numeric(data2$up.fac.mean[match(tolower(data1$pkg), data2$pkg)]) +data1$up.fac.mean <- pmin(python_labeled, same_labeled, na.rm=TRUE) +data1$old_milestones <- data1$milestones +data1$new_milestones <- as.numeric(data1$milestones > 0) + 1 +# (2) - Run the model on the pilot data +data1$formal.score <- data1$mmt / (data1$old_milestones/data1$age) +data1$new.age <- as.numeric(cut(data1$age/365, breaks=c(0,9,12,15,17), labels=c(1,2,3,4))) +data1$new.formal.score <- data1$mmt / (data1$new_milestones/data1$new.age) +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_point() + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x) +g2 +data1$new.age <- as.numeric(cut(data1$age/365, breaks=c(0,9,12,15,17), labels=c(1,2,3,4))) +data1$new.formal.score <- data1$mmt / (data1$new_milestones/data1$new.age) +data1$new.age.factor <- as.factor(data1$new.age) +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_point() + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_point() + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_point() + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() +g2 g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, colour = "0-9y"), size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31, colour = "9-12y"), size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78, colour = "12-15y"), size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23, colour = "15-16y"), size=1)+ -labs(x="MMT", y="Mean Underproduction Factor", colour="Project Age Group") + -scale_colour_manual(values=legend) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor", color="Project Age Group") + -scale_colour_manual(values=legend) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor", colour="Project Age Group") + -scale_colour_manual(values=legend) -g -colors <- c("0-9y":"#E69F00","9-12y":"#56B4E9", "12-15y":"#D55E00","15-16y":"#CC79A7") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, colour=new.age.factor), size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -data2 <- subset(data1, (data1$age / 365) < 14 ) -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.5, colour=new.age.factor), size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.5, colour=new.age.factor), size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.7, colour=new.age.factor), size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=2)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38),colour = "#E69F00", size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31), colour = "#56B4E9", size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78), colour = "#D55E00", size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23) , colour = "#CC79A7", size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(name="Project Age Group", values=c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7")) -g -colors <- c("0-9y"="#E69F00","9-12y":"#56B4E9", "12-15y":"#D55E00","15-16y":"#CC79A7") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(values=colors_legend) -g -#colors <- c("0-9y"="#E69F00","9-12y":"#56B4E9", "12-15y":"#D55E00","15-16y":"#CC79A7") -colors_legend <- c("0-9y"="red","9-12y":"green", "12-15y":"blue","15-16y":"orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(values=colors_legend) -#colors <- c("0-9y"="#E69F00","9-12y":"#56B4E9", "12-15y":"#D55E00","15-16y":"#CC79A7") -colors_legend <- c("0-9y"="red","9-12y":"green", "12-15y":"blue","15-16y":"orange") -#colors <- c("0-9y"="#E69F00","9-12y":"#56B4E9", "12-15y":"#D55E00","15-16y":"#CC79A7") -colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(values=colors_legend) -g -colors_legend <- c("0-9y"="#E69F00","9-12y":"#56B4E9", "12-15y":"#D55E00","15-16y":"#CC79A7") -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(values=colors_legend) -g -colors_legend <- c("0-9y"="#E69F00","9-12y":"#56B4E9", "12-15y":"#D55E00","15-16y":"#CC79A7") -colors_legend <- c("0-9y"="#E69F00","9-12y"="#56B4E9", "12-15y"="#D55E00","15-16y"="#CC79A7") -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor") + -scale_colour_manual(values=colors_legend) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ +#geom_smooth( method="lm", formula=(y~x), colour = "orange")+ +geom_abline(intercept=coef(mmtmodel1)[1], slope=coef(mmtmodel1)[2], colour = "orange", size=1)+ +geom_errorbar(aes(ymin=y-yerr, ymax=y+yerr), width=0.09)+ labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + -scale_colour_manual(values=colors_legend) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, breaks = c("1", "2", "3", "4")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="0-9y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="9-12y"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="12-15y" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="15-16y") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, breaks=c("1", "2", "3", "4")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color=0), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color=1), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color=2 ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color=3) , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend) -g -colors_legend <- c("a"="#E69F00","b"="#56B4E9", "c"="#D55E00","d"="#CC79A7") -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) -g -+ theme(legend.position='bottom') -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme(legend.position='bottom') -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme(legend.position=c(0.95, 0.95)) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme(legend.position=c(1, -5)) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme(legend.position=c(-5, 1)) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme(legend.position="bottom") -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.justification = c("right", "top")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.95, 0.95), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.75, 0.95), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.35, 0.95), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.35, 0.25), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.35, 0.15), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.25, 0.15), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.15, 0.15), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.15, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.31, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.78, color="c" ), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-0.23, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.72, slope=-1.38, color="b"), size=1.5)+ -geom_abline(aes(intercept=1.65, slope=-1.38, color="c" ), size=1.5)+ -geom_abline(aes(intercept=2.8, slope=-1.38, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.72, slope=-1.38, color="b"), size=1.5)+ -geom_abline(aes(intercept=2.255, slope=-1.38, color="c" ), size=1.5)+ -geom_abline(aes(intercept=2.8, slope=-1.38, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.72, slope=-1.38, color="b"), size=1.5)+ -geom_abline(aes(intercept=2.25, slope=-1.38, color="c" ), size=1.5)+ -geom_abline(aes(intercept=2.8, slope=-1.38, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.72, slope=-1.38, color="b"), size=1.5)+ -geom_abline(aes(intercept=2.25, slope=-1.38, color="c" ), size=1.5)+ -geom_abline(aes(intercept=2.8, slope=-1.38, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme( legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) + theme_bw() g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.72, slope=-1.38, color="b"), size=1.5)+ -geom_abline(aes(intercept=2.25, slope=-1.38, color="c" ), size=1.5)+ -geom_abline(aes(intercept=2.8, slope=-1.38, color="d") , size=1.5)+ +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +theme_bw() +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_point() + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme_bw( legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +theme_bw() +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.72, slope=-1.38, color="b"), size=1.5)+ -geom_abline(aes(intercept=2.25, slope=-1.38, color="c" ), size=1.5)+ -geom_abline(aes(intercept=2.8, slope=-1.38, color="d") , size=1.5)+ +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme_bw(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g -#colors_legend <- c("0-9y"="red","9-12y"="green", "12-15y"="blue","15-16y"="orange") -g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + -geom_point() + -geom_abline(aes(intercept=1.65, slope=-1.38, color="a"), size=1.5)+ -geom_abline(aes(intercept=1.72, slope=-1.38, color="b"), size=1.5)+ -geom_abline(aes(intercept=2.25, slope=-1.38, color="c" ), size=1.5)+ -geom_abline(aes(intercept=2.8, slope=-1.38, color="d") , size=1.5)+ -labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + -scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + -theme_bw()+ +theme_bw() + theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) -g +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +scale_colour_manual(values=colors_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +scale_colour_manual(values=color_legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +scale_colour_manual( labels=c("0-9y", "9-12y", "12-15y","15-16y")) + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +scale_colour_manual(values=legend, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +scale_colour_manual(values=legend.values, labels=c("0-9y", "9-12y", "12-15y","15-16y")) + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +data1$new.age.factor <- factor(data1$new.age, levels=c(1,2,3,4), labels=c("0-9y", "9-12y", "12-15y","15-16y")) +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + +geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), +method='lm', formula= y~x, se=FALSE)+ +labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 +library(readr) +library(ggplot2) +library(tidyverse) +data7 <- read_csv('../final_data/kk_final_octo.csv', show_col_types = FALSE) +median(data7$underproduction_mean) +length(which(data7$underproduction_low < 0)) +364 / 3843 +data5 <- read_csv('../kk_final_readme_roster.csv', show_col_types=FALSE) +data5 <- read_csv('..final_data/kk_final_readme_roster.csv', show_col_types=FALSE) +data5 <- read_csv('../final_data/kk_final_readme_roster.csv', show_col_types=FALSE) +length(which(data5$underproduction_low < 0)) +227/2695 +#primary analysis for cross-sectional community metrics +overall_data <- read_csv('../final_data/deb_full_data.csv',show_col_types = FALSE) +rm(list=ls()) +set.seed(424242) +library(readr) +library(ggplot2) +library(tidyverse) +#primary analysis for cross-sectional community metrics +overall_data <- read_csv('../final_data/deb_full_data.csv',show_col_types = FALSE) +octo_data <- read_csv('../final_data/deb_octo_data.csv', show_col_types = FALSE) +overall_data$mmt <- (((oveall_data1$collaborators * 2)+ overall_data$contributors) / (overall_data$contributors + overall_data$collaborators)) +overall_data$mmt <- (((overall_data1$collaborators * 2)+ overall_data$contributors) / (overall_data$contributors + overall_data$collaborators)) +overall_data$mmt <- (((overall_data$collaborators * 2)+ overall_data$contributors) / (overall_data$contributors + overall_data$collaborators)) +mean(overall_data1$mmt) +mean(overall_data$mmt) +hist(overall_data$mmt, probability = TRUE) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,9,12,15,17), labels=c(1,2,3,4))) +table(data1$new.age) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data1$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +hist(overall_data$new.age.factor) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,7,11,13,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age.factor) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,7,11,13,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age.factor) +hist(overall_data$new.age) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,8,11,13,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,8,11,15,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,8,11,14,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,7,11,14,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,7,10,14,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,7,10,13,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +data1$new.age <- as.numeric(cut(data1$age_of_project/365, breaks=c(0,9,12,15,17), labels=c(1,2,3,4))) +age_vector <- overall_data$age_of_project/365 +order(age_vector) +order(age_vector) +quartile(age_vector) +quantile(age_vector) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) +1159/5105 +1391/5105 +1277/5105 +1276/510 +1276/5105 +#shows the cross-age downward slopes for all underproduction averages in the face of MMT +g3 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), +method='lm', formula= y~x) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() +g3 +#shows the cross-age downward slopes for all underproduction averages in the face of MMT +g3 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_point(mapping = aes(color=new.age.factor)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), +method='lm', formula= y~x) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() +g3 +#shows the cross-age downward slopes for all underproduction averages in the face of MMT +g3 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), +method='lm', formula= y~x) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() +g3 +mmtmodel1 <- lm(up.fac.mean ~ mmt + new.age.factor, data=overall_data) +mmtmodel1 <- lm(underproduction_mean ~ mmt + new.age.factor, data=overall_data) +summary(mmtmodel1) +#shows the cross-age downward slopes for all underproduction averages in the face of MMT +g3 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), +method='lm', formula= y~x) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g3 +#shows the cross-age downward slopes for all underproduction averages in the face of MMT +g3 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), formula= y~x) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g3 +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor)) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g4 +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor)) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.0, 0.0), legend.justification = c("left", "bottom")) +g4 +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor)) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.0, 0.0), legend.justification = c("right", "top")) +g4 +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor)) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(1.0, 1.0), legend.justification = c("right", "top")) +g4 +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor)) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.9, 1.0), legend.justification = c("right", "top")) +g4 +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor)) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.9, 0.9), legend.justification = c("right", "top")) +g4 +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + +geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), se=FALSE) + +xlab("MMT") + +ylab("Underproduction Factor") + +theme_bw() + +theme(legend.position = c(0.9, 0.9), legend.justification = c("right", "top")) +g4 +min(overall_data$underproduction_mean) +max(overall_data$underproduction_mean) +octo_data <- read_csv('../final_data/deb_octo_data.csv', show_col_types = FALSE) +octo_data$new.age <- as.numeric(cut(octo_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(octo_data$new.age) +999 / 3842 +1139/3842 +955/3842 +747/3842 +octo_data$new.age.factor <- as.factor(octo_data$new.age) +hist(overall_data$new.age) +hist(octo_data$new.age) +octo_data$mmt <- (((octo_data$collaborators * 2)+ octo_data$contributors) / (octo_data$contributors + octo_data$collaborators)) +mean(overall_data$mmt) +mean(octo_data$mmt) +hist(octo_data$mmt, probability = TRUE) +head(octo_data) +octo_data$issue_mmt <- (((octo_data$issue_contrib_count * 2)+ octo_data$api_contrib_count) / (octo_data$api_contrib_count)) +hist(octo_data$issue_mmt, probability = TRUE) +octo_data$issue_mmt <- (((octo_data$issue_contrib_count * 2)+ octo_data$api_contrib_count + octo_data$wiki_contrib_count + octo_data$file_contrib_count) / (octo_data$api_contrib_count + + octo_data$wiki_contrib_count + octo_data$issue_contrib_count + octo_data$file_contrib_count)) +hist(octo_data$issue_mmt, probability = TRUE) +octo_mmtmodel1 <- lm(underproduction_mean ~ mmt + new.age.factor, data=octo_data) +summary(octo_mmtmodel1) +issue_mmtmodel1 <- lm(underproduction_mean ~ issue_mmt + new.age.factor, data=octo_data) +summary(issue_mmtmodel1) +octo_data$wiki_mmt <- (((octo_data$wiki_contrib_count * 2)+ octo_data$api_contrib_count + octo_data$wiki_contrib_count + octo_data$file_contrib_count) / (octo_data$api_contrib_count + + octo_data$wiki_contrib_count + octo_data$issue_contrib_count + octo_data$file_contrib_count)) +hist(octo_data$wiki_mmt, probability = TRUE) +wiki_mmtmodel1 <- lm(underproduction_mean ~ issue_mmt + new.age.factor, data=octo_data) +summary(wiki_mmtmodel1) +wiki_mmtmodel1 <- lm(underproduction_mean ~ wiki_mmt + new.age.factor, data=octo_data) +summary(wiki_mmtmodel1) +texreg(list(mmtmodel1, issue_mmtmodel1, wiki_mmtmodel1), stars=NULL, digits=2, +custom.model.names=c( 'MMT (Overall Dataset)'), +custom.coef.names=c('(Intercept)', 'MMT', 'Age-2', 'Age-3', 'Age-4'), +use.packages=FALSE, table=FALSE, ci.force = TRUE) +source('powerAnalysis.R') #my little "lib" +texreg(list(octo_mmtmodel1, issue_mmtmodel1, wiki_mmtmodel1), stars=NULL, digits=2, +custom.model.names=c( 'M1: augm. formality','M2: MMT', 'M3: milestones' ), +custom.coef.names=c('(Intercept)', 'Augmented formality', 'MMT', 'Age-2', 'Age-3', 'Age-4', 'Milestones'), +use.packages=FALSE, table=FALSE, ci.force = TRUE) +texreg(list(mmtmodel1, issue_mmtmodel1, wiki_mmtmodel1), stars=NULL, digits=2, +custom.model.names=c( 'MMT (Overall Dataset)'), +custom.coef.names=c('(Intercept)', 'MMT', 'Age-2', 'Age-3', 'Age-4'), +use.packages=FALSE, table=TRUE, ci.force = TRUE) +readme_data <- read_csv("../final_data/deb_readme_roster.csv", show_col_types = FALSE) +readme_data <- read_csv("../final_data/deb_readme_roster.csv", show_col_types = FALSE) +#below here is the analysis for the readme data +readme_data$new.age <- as.numeric(cut(readme_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(readme_data$new.age) +readme_data$new.age.factor <- as.factor(readme_data$new.age) +hist(readme_data$new.age) +637 / 2694 +676 / 2694 +725 / 2694 +656 / 2694 +contributing_data <- read_csv("../final_data/deb_contribfile_roster.csv", show_col_types = FALSE) +#below here is the analysis for the contributing.md files +readme_data$new.age <- as.numeric(cut(readme_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(readme_data$new.age) +readme_data$new.age.factor <- as.factor(readme_data$new.age) +#below here is the analysis for the contributing.md files +contributing_data$new.age <- as.numeric(cut(contributing_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(contributing_data$new.age) +contributing_data$new.age.factor <- as.factor(contributing_data$new.age) +hist(contributing_data$new.age) +76/528 +119 / 528 +171/ 528 +162 / 528 diff --git a/R/GovRiskPower.R b/R/GovRiskPower.R new file mode 100644 index 0000000..548a99c --- /dev/null +++ b/R/GovRiskPower.R @@ -0,0 +1,105 @@ +rm(list=ls()) +set.seed(424242) + +library(readr) +library(ggplot2) +library(tidyverse) + +#primary analysis for cross-sectional community metrics +overall_data <- read_csv('../final_data/deb_full_data.csv',show_col_types = FALSE) +octo_data <- read_csv('../final_data/deb_octo_data.csv', show_col_types = FALSE) +readme_data <- read_csv("../final_data/deb_readme_roster.csv", show_col_types = FALSE) +contributing_data <- read_csv("../final_data/deb_contribfile_roster.csv", show_col_types = FALSE) + +overall_data$mmt <- (((overall_data$collaborators * 2)+ overall_data$contributors) / (overall_data$contributors + overall_data$collaborators)) +mean(overall_data$mmt) +hist(overall_data$mmt, probability = TRUE) + +#age_vector <- overall_data$age_of_project/365 +#quantile(age_vector) +overall_data$new.age <- as.numeric(cut(overall_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(overall_data$new.age) +overall_data$new.age.factor <- as.factor(overall_data$new.age) +hist(overall_data$new.age) + +mmtmodel1 <- lm(underproduction_mean ~ mmt + new.age.factor, data=overall_data) +summary(mmtmodel1) + +#shows the cross-age downward slopes for all underproduction averages in the face of MMT +g4 <- ggplot(overall_data, aes(x=mmt, y=underproduction_mean)) + + geom_smooth(mapping = aes(x=mmt, y=underproduction_mean, color=new.age.factor), se=FALSE) + + xlab("MMT") + + ylab("Underproduction Factor") + + theme_bw() + + theme(legend.position = c(0.9, 0.9), legend.justification = c("right", "top")) +g4 + +texreg(list(mmtmodel1, issue_mmtmodel1, wiki_mmtmodel1), stars=NULL, digits=2, + custom.model.names=c( 'MMT (Overall Dataset)'), + custom.coef.names=c('(Intercept)', 'MMT', 'Age-2', 'Age-3', 'Age-4'), + use.packages=FALSE, table=TRUE, ci.force = TRUE) + +# below this is the analysis for the octo data +octo_data$new.age <- as.numeric(cut(octo_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(octo_data$new.age) +octo_data$new.age.factor <- as.factor(octo_data$new.age) +hist(octo_data$new.age) + +octo_data$mmt <- (((octo_data$collaborators * 2)+ octo_data$contributors) / (octo_data$contributors + octo_data$collaborators)) +mean(octo_data$mmt) +hist(octo_data$mmt) +head(octo_data) + +octo_data <- octo_data[which(octo_data$issue_contrib_count <= octo_data$total_contrib),] +write.csv(octo_data, "new_octo.csv", row.names = FALSE) + +#TODO: there's an issue with calculating this but somehow not an issue with the wiki one +octo_data$issue_mmt <- ((octo_data$issue_contrib_count * 2) + (octo_data$total_contrib - octo_data$issue_contrib_count)) / (octo_data$total_contrib) +octo_data$sqrt_issue_mmt <- sqrt(octo_data$issue_mmt) +g2 <- ggplot(octo_data, aes(issue_mmt)) + geom_histogram(binwidth = 0.01) + theme_bw() +g2 +g1 <- ggplot(octo_data, aes(sqrt_issue_mmt)) + geom_histogram(binwidth = 0.01) + theme_bw() +g1 +#right skewed data, need to transform + +octo_data$wiki_mmt <- ((octo_data$wiki_contrib_count * 2) + (octo_data$total_contrib - octo_data$wiki_contrib_count)) / (octo_data$total_contrib) +hist(octo_data$wiki_mmt) +g3 <- ggplot(octo_data, aes(wiki_mmt)) + geom_histogram(binwidth = 0.01) + theme_bw() +g3 +median(octo_data$wiki_mmt) +qqnorm(octo_data$wiki_mmt) +#left skewed data, need to transform + + +#below are the models for the octo data, there should be analysis for each one +octo_mmtmodel1 <- lm(underproduction_mean ~ mmt + new.age.factor, data=octo_data) +summary(octo_mmtmodel1) + +issue_mmtmodel1 <- lm(underproduction_mean ~ issue_mmt + new.age.factor, data=octo_data) +summary(issue_mmtmodel1) + +sqrt_issue_mmtmodel1 <- lm(underproduction_mean ~ sqrt_issue_mmt + new.age.factor, data=octo_data) +summary(sqrt_issue_mmtmodel1) + +wiki_mmtmodel1 <- lm(underproduction_mean ~ wiki_mmt + new.age.factor, data=octo_data) +summary(wiki_mmtmodel1) + +library(texreg) #my little "lib" + +texreg(list(octo_mmtmodel1, issue_mmtmodel1, wiki_mmtmodel1), stars=NULL, digits=2, + custom.model.names=c( 'M1: MMT','M2: issue contrib.', 'M3: wiki_contrib.' ), + custom.coef.names=c('(Intercept)', 'MMT', 'Issues', 'Age-2', 'Age-3', 'Age-4', 'Wiki'), + use.packages=FALSE, table=FALSE, ci.force = TRUE) + +#below here is the analysis for the readme.md data +readme_data$new.age <- as.numeric(cut(readme_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(readme_data$new.age) +readme_data$new.age.factor <- as.factor(readme_data$new.age) +hist(readme_data$new.age) + + +#below here is the analysis for the contributing.md files +contributing_data$new.age <- as.numeric(cut(contributing_data$age_of_project/365, breaks=c(0,7.524197,10.323056,13.649367,17), labels=c(1,2,3,4))) +table(contributing_data$new.age) +contributing_data$new.age.factor <- as.factor(contributing_data$new.age) +hist(contributing_data$new.age) diff --git a/R/calculatePower.R b/R/calculatePower.R index c9df63b..e21e637 100644 --- a/R/calculatePower.R +++ b/R/calculatePower.R @@ -68,9 +68,20 @@ cor.test(data1$mmt, data1$up.fac.mean) cor.test(data1$milestones, data1$up.fac.mean) cor.test(data1$age, data1$up.fac.mean) -data1$new.age.factor <- as.factor(data1$new.age) +data1$new.age.factor <- factor(data1$new.age, levels=c(1,2,3,4), labels=c("0-9y", "9-12y", "12-15y","15-16y")) #geom_abline(intercept=coef(mmtmodel1)[1], slope=coef(mmtmodel1)[2], colour = "orange")+ + +g2 <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + + geom_smooth(mapping = aes(x=mmt, y=up.fac.mean, color=new.age.factor), + method='lm', formula= y~x, se=FALSE)+ + labs(x="MMT", y="Mean Underproduction Factor", color = "Project Age Group") + + theme_bw() + + theme(legend.position = c(0.05, 0.05), legend.justification = c("left", "bottom")) +g2 + + + g <- ggplot(data1, aes(x=mmt, y=up.fac.mean)) + geom_point() + #geom_smooth( method="lm", formula=(y~x), colour = "orange")+ diff --git a/R/cs497_final_plot.png b/R/cs497_final_plot.png new file mode 100644 index 0000000..041de53 Binary files /dev/null and b/R/cs497_final_plot.png differ diff --git a/R/newAnalysis.R b/R/newAnalysis.R index ddf547c..84ec05f 100644 --- a/R/newAnalysis.R +++ b/R/newAnalysis.R @@ -3,11 +3,15 @@ set.seed(424242) library(readr) library(ggplot2) +library(tidyverse) data1 <- read_csv('../kk_final_expanded_data_final.csv',show_col_types = FALSE) data2 <- read_csv('../kk_final_octo_data_total.csv',show_col_types = FALSE) data3 <- read_csv('../kk_final_doclist_roster.csv',show_col_types = FALSE) data4 <-read_csv('../kk_final_rosterslist.csv',show_col_types = FALSE) +data5 <- read_csv('../final_data/kk_final_readme_roster.csv', show_col_types=FALSE) +data6 <-read_csv('../kk_final_commentlist.csv', show_col_types=FALSE) +data7 <- read_csv('../final_data/kk_final_octo.csv', show_col_types = FALSE) #getting data subset metadata head(data1) @@ -19,10 +23,24 @@ length(which(data2$underproduction_low < 0)) mean(data2$underproduction_mean) length(which(data1$underproduction_low < 0)) -mean(data1$underproduction_mean) +median(data1$underproduction_mean) + +length(which(data5$underproduction_low < 0)) + +median(data7$underproduction_mean) length(which(data3$underproduction_low < 0)) -mean(data3$underproduction_mean) +median(data3$underproduction_mean) +median(data3$age_of_project / 365) + +length(which(data5$underproduction_low < 0)) +median(data5$underproduction_mean) +median(data5$age_of_project / 365) + +length(which(data6$underproduction_low < 0)) +median(data6$underproduction_mean) +median(data6$age_of_project / 365) +median(data6$contributors) length(which(data4$underproduction_low < 0)) mean(data4$underproduction_mean) @@ -136,8 +154,51 @@ g3 <- ggplot(data1, aes(x=mmt, y=underproduction_mean)) + theme_bw() g3 + +head(data6) +quantile(data1$contributors + data1$collaborators,probs=c(0.025,0.975)) +data6$total_community = data6$contributors + data6$collaborators +data7 <- subset(data6, total_community > 1.0 & total_community < 457.4) +g4 <- ggplot(data7, aes(x=age_of_project/365, y=total_community)) + + geom_point() + + geom_smooth(mapping = aes(x=age_of_project/365, y=total_community), color="red")+ + xlab("Age of the Project (years)") + + ylab("Contributor Community Population") + + theme_bw() +g4 + +median(data6$total_community) +cor.test(data6$total_community, data6$age_of_project) + cor.test(data1$mmt, data1$new.age) age_data <- subset(data1, !is.na(new.age)) g2 <- ggplot(age_data, aes(x=factor(new.age), y=mmt))+ geom_boxplot() g2 + + +d3u <- data3[order(data3$underproduction_mean, decreasing=TRUE),] +d3hu <- d3u[1:176,] +d3mu <- d3u[177:352,] +d3lu <- d3u[353:528, ] +median(d3hu$underproduction_mean) +median(d3hu$age_of_project / 365) + +max(d3mu$underproduction_mean) +median(d3mu$underproduction_mean) +median(d3mu$age_of_project / 365) + +max(d3lu$underproduction_mean) +median(d3lu$underproduction_mean) +median(d3lu$age_of_project / 365) +d3lunames <- as.vector(d3lu$project_name) + + +data1 <- data1 %>% mutate(case_when(data1$project_name %in% data3$project_name ~ 1, .default = 0)) +data1 <- data1 %>% rename(has_file = `case_when(data1$project_name %in% data3$project_name ~ 1, .default = 0)`) +cor.test(data1$has_file, data1$underproduction_mean) + +data1 <- data1 %>% mutate(case_when(data1$project_name %in% data5$project_name ~ 1, .default = 0)) +data1 <- data1 %>% rename(has_readme = `case_when(data1$project_name %in% data5$project_name ~ 1, .default = 0)`) +cor.test(data1$has_readme, data1$underproduction_mean) + diff --git a/R/saner24_presentation.png b/R/saner24_presentation.png new file mode 100644 index 0000000..5fed21d Binary files /dev/null and b/R/saner24_presentation.png differ diff --git a/deb_octo_data.csv b/deb_octo_data.csv new file mode 100644 index 0000000..be047cb --- /dev/null +++ b/deb_octo_data.csv @@ -0,0 +1,3843 @@ +project_name,underproduction_mean,underproduction_low,underproduction_high,debian_vcs_link,upstream_vcs_link,age_of_project,contributors,collaborators,milestone_count,api_contrib_count,issue_contrib_count,file_contrib_count,wiki_contrib_count +0xFFFF,-0.510168673014387,1.45279943111322,-1.00117086618243,https://salsa.debian.org/debian/0xffff, https://github.com/pali/0xFFFF,5557.842777777778,3,11,0,6.0,9.0,0.0,0.0 +3270font,0.795626592579791,4.35746269027599,-0.214217071018684,https://github.com/kilobyte/3270font/tree/debian,https://github.com/kilobyte/3270font,3596.6082060185186,6,15,0,9.0,3.0,0.0,0.0 +4pane-debian-dir,-0.242627942451996,2.29989480702703,-0.819422099435506,https://github.com/dghart/4pane-debian-dir/tree/master/,https://github.com/dghart/4pane-debian-dir,2236.685972222222,0,2,0,1.0,2.0,0.0,0.0 +4ti2,0.476440833737227,3.0285400273249,-0.219194365566797,https://salsa.debian.org/math-team/4ti2, https://github.com/4ti2/4ti2.git,5656.560381944444,3,11,0,6.0,18.0,0.0,0.0 +6tunnel,-0.563131581951037,0.346490727983096,-0.839859948356692,https://salsa.debian.org/debian/6tunnel, https://github.com/wojtekka/6tunnel,2673.0241203703704,1,7,0,5.0,18.0,0.0,1.0 +a2jmidid,0.359466917341911,1.94843440395128,-0.156227733435732,https://salsa.debian.org/multimedia-team/a2jmidid, https://github.com/linuxaudio/a2jmidid.git,4551.794791666666,8,8,0,12.0,23.0,0.0,0.0 +abGate,0.170683343407432,2.31288851659804,-0.444716742427934,https://salsa.debian.org/multimedia-team/abgate, https://github.com/antanasbruzas/abGate.git,1677.578622685185,2,8,0,4.0,5.0,0.0,0.0 +link,0.24190624984189,3.45214605429943,-0.714154937378648,https://salsa.debian.org/multimedia-team/ableton-link, https://github.com/Ableton/link.git,2835.8410648148147,20,10,0,19.0,81.0,0.0,0.0 +acme-tiny,-0.0997740414324175,0.698285251666775,-0.357256083455663,https://salsa.debian.org/letsencrypt-team/acme-tiny, https://github.com/diafygi/acme-tiny.git,2161.2252314814814,7,34,0,36.0,354.0,0.0,0.0 +acpi_call,0.105692079347462,1.31966601416273,-0.230983048552108,https://salsa.debian.org/moonsweep/acpi-call, https://github.com/nix-community/acpi_call.git,4711.2498958333335,14,26,0,29.0,24.0,0.0,0.0 +adapta-kde,-0.0885623802323334,2.08899063570217,-0.531363678282838,https://salsa.debian.org/debian/adapta-kde, https://github.com/PapirusDevelopmentTeam/adapta-kde.git,636.9053819444445,2,5,0,3.0,0.0,0.0,0.0 +admesh,0.126087687547782,1.81004815315567,-0.381631878995558,https://salsa.debian.org/science-team/admesh, https://github.com/admesh/admesh,3319.1463078703705,15,9,1,20.0,42.0,0.0,0.0 +ADMS,-0.674637302613584,2.08369083985849,-1.26384529492003,https://salsa.debian.org/science-team/adms, https://github.com/Qucs/ADMS.git,3397.3394444444443,6,10,0,12.0,44.0,0.0,3.0 +ADOL-C,-0.218347665039878,0.298998807070195,-0.420097301634624,https://salsa.debian.org/science-team/adolc, https://github.com/coin-or/ADOL-C,5292.595347222222,11,44,0,11.0,43.0,0.0,2.0 +taplib,-0.160732025116376,2.2507776055854,-0.654429732393435,https://salsa.debian.org/debian-astro-team/adql, https://github.com/gmantele/taplib.git,3533.9449074074078,2,12,0,7.0,26.0,0.0,0.0 +adwaita-qt,0.20520102503331,2.35604851930854,-0.287329460126735,https://salsa.debian.org/debian/adwaita-qt, https://github.com/FedoraQt/adwaita-qt.git,3324.8509953703706,3,11,0,9.0,135.0,0.0,0.0 +aeskulap,-0.0079946863672042,0.736060248382803,-0.280025211041137,https://salsa.debian.org/med-team/aeskulap, https://github.com/pipelka/aeskulap.git,0.1217013888888888,0,2,0,2.0,3.0,0.0,0.0 +afew,-0.174094467011175,3.09143638082015,-1.08293165491561,https://salsa.debian.org/python-team/packages/afew, https://github.com/afewmail/afew,4444.563113425926,14,62,1,59.0,188.0,0.0,0.0 +AFFLIBv3,0.485538307170435,1.29662314566269,0.0866885422979764,https://salsa.debian.org/pkg-security-team/afflib, https://github.com/sshock/AFFLIBv3,3923.2419675925926,1,18,0,14.0,23.0,0.0,0.0 +afio,0.747197510388286,2.0817065145595,0.0678453147004074,https://salsa.debian.org/debian/afio, https://github.com/kholtman/afio,3009.1574652777776,0,6,0,4.0,8.0,0.0,0.0 +AFLplusplus,-0.686637531101834,2.56987917132519,-1.47664664720389,https://salsa.debian.org/pkg-security-team/aflplusplus, https://github.com/AFLplusplus/AFLplusplus.git,1658.7534375,94,190,0,201.0,0.0,0.0,0.0 +aggdraw,-1.07382835714099,1.08967225466761,-1.53119433014289,https://salsa.debian.org/debian-gis-team/aggdraw, https://github.com/pytroll/aggdraw,4403.477824074074,4,15,2,15.0,48.0,0.0,0.0 +aha,-0.0329000286867077,2.2809487303377,-0.533748136594285,https://salsa.debian.org/debian/aha, https://github.com/theZiz/aha.git,3422.3746180555554,1,26,0,18.0,0.0,0.0,1.0 +aiodns,0.165682622787304,1.9021756707542,-0.278362239529697,https://salsa.debian.org/python-team/packages/aiodns, https://github.com/saghul/aiodns.git,3490.347627314815,13,17,0,27.0,96.0,0.0,0.0 +aioprocessing,-1.81061727232512,-0.403150642885575,-2.07004751938444,https://github.com/davesteele/aioprocessing,https://github.com/davesteele/aioprocessing,3054.801087962963,3,13,0,8.0,1.0,0.0,0.0 +airspyone_host,0.135032826004998,1.76380044815631,-0.226663426706937,https://salsa.debian.org/bottoms/pkg-airspy-host, https://github.com/airspy/airspyone_host.git,3592.9147685185185,9,15,0,21.0,60.0,0.0,6.0 +airspyhf,0.427779244708739,3.1863173208831,-0.243105119199454,https://salsa.debian.org/debian-hamradio-team/airspyhf, https://github.com/airspy/airspyhf.git,2334.5221527777776,3,13,0,13.0,36.0,0.0,0.0 +aiscm,-2.12660277467281,-0.902299849194399,-2.44827575241459,https://github.com/wedesoft/aiscm,https://github.com/wedesoft/aiscm,3606.191886574074,0,8,0,3.0,7.0,0.0,0.0 +alabaster,1.58400342307142,5.01808713483245,0.375411668055358,https://github.com/jbouse-debian/alabaster,https://github.com/jbouse-debian/alabaster,3086.3917592592597,1,6,0,4.0,4.0,0.0,0.0 +amavisd-milter,0.615386064993919,3.58791746330739,-0.470593396980749,https://salsa.debian.org/debian/amavisd-milter, https://github.com/prehor/amavisd-milter,5582.939282407408,1,5,0,3.0,7.0,0.0,0.0 +amazon-ecr-credential-helper,-1.29350179960878,1.33757148943728,-1.88556025790644,https://github.com/awslabs/amazon-ecr-credential-helper/tree/debian,https://github.com/awslabs/amazon-ecr-credential-helper,2759.79707175926,31,49,1,56.0,371.0,0.0,0.0 +amora,-0.638598553710922,1.53381287298563,-1.33733542687029,https://github.com/amora/amora/tree/master/amora-server,https://github.com/amora/amora,4404.234166666667,0,11,0,6.0,5.0,0.0,0.0 +amsynth,0.330636481205025,1.22096174668993,-0.126935944721445,https://salsa.debian.org/multimedia-team/amsynth, https://github.com/nixxcode/amsynth.git ,5332.927199074074,11,24,0,21.0,100.0,0.0,3.0 +amule,0.483943008568694,0.687632642276388,0.323873644784891,https://salsa.debian.org/debian/amule, https://github.com/amule-project/amule.git,5047.608055555555,11,25,0,16.0,46.0,0.0,0.0 +amule-emc,-0.35842492549173,1.85783039290765,-0.805888050424067,https://salsa.debian.org/morph/amule-emc, https://github.com/palopezv/amule-emc,2735.137662037037,0,2,0,0.0,1.0,0.0,0.0 +analog-ce,0.310010033709121,0.630895138146135,0.112953472819103,https://salsa.debian.org/debian/analog, https://github.com/c-amie/analog-ce.git,798.2990509259259,2,1,0,1.0,4.0,0.0,0.0 +anfo,-0.516434387853255,1.11412287457208,-0.885801240207339,https://salsa.debian.org/med-team/anfo, https://github.com/udo-stenzel/anfo,2083.773831018518,0,5,0,1.0,1.0,0.0,1.0 +anomaly,-2.69792324322731,-0.929443293100317,-3.01576616380581,https://github.com/mogaal/anomaly,https://github.com/mogaal/anomaly,224.8161226851852,0,2,0,1.0,2.0,0.0,0.0 +anosql,-1.75319624841393,0.617887353067759,-2.32130372860723,https://salsa.debian.org/python-team/packages/anosql, https://github.com/honza/anosql,2207.993252314815,1,18,0,12.0,24.0,0.0,0.0 +ansible-lint,0.211320028568518,2.3970134544815,-0.419254984826276,https://salsa.debian.org/python-team/packages/ansible-lint, https://github.com/ansible/ansible-lint,3772.125497685185,239,77,4,263.0,0.0,0.0,0.0 +antpm,-0.425797777129549,1.24994179184445,-0.909726437737696,https://salsa.debian.org/debian/antpm, https://github.com/ralovich/antpm,5246.650289351852,2,16,0,6.0,4.0,0.0,0.0 +anypaper,-0.836678133184714,1.82939574661697,-1.52533132104935,https://github.com/mogaal/anypaper,https://github.com/mogaal/anypaper,358.82306712962964,0,1,0,1.0,0.0,0.0,0.0 +aoeui,-1.57537450782922,-0.101833059663743,-2.0145689051822,https://salsa.debian.org/debian/aoeui, https://github.com/pklausler/aoeui.git,0.0311342592592592,0,4,0,1.0,2.0,0.0,0.0 +apachetop,-0.143396865464015,0.138479110564189,-0.243618701858805,https://salsa.debian.org/debian/apachetop, https://github.com/tessus/apachetop.git,4171.428784722222,1,5,0,3.0,11.0,0.0,0.0 +apel,-0.169991167552123,0.0467119456793215,-0.250388459902794,https://salsa.debian.org/debian/apel, https://github.com/wanderlust/apel,5064.915416666667,2,8,0,5.0,0.0,0.0,0.0 +apipkg,0.184852309301291,2.33864121667993,-0.297646362982771,https://salsa.debian.org/python-team/packages/apipkg, https://github.com/pytest-dev/apipkg,4796.353657407408,4,14,0,15.0,32.0,0.0,0.0 +aplpy,-0.0173305787238414,1.63947414572158,-0.5266587064989,https://salsa.debian.org/debian-astro-team/aplpy, https://github.com/aplpy/aplpy.git,4761.81462962963,3,44,0,33.0,0.0,0.0,1.0 +appdirs,0.345827763928743,1.95777273592346,-0.1122252660673,https://salsa.debian.org/python-team/packages/appdirs, https://github.com/ActiveState/appdirs.git,4580.797060185185,5,36,0,28.0,143.0,0.0,0.0 +appstream-generator,-1.13327130705794,-0.106054630060675,-1.48245214164576,https://salsa.debian.org/pkgutopia-team/appstream-generator, https://github.com/ximion/appstream-generator,2846.9885185185185,14,5,0,14.0,47.0,0.0,0.0 +apriltag,-1.11792448520614,1.09172581797555,-1.60478369927801,https://salsa.debian.org/science-team/apriltag, https://github.com/AprilRobotics/apriltag.git,1884.050208333333,21,28,0,42.0,0.0,0.0,0.0 +aprsdigi,0.178115776781859,2.74040042620765,-0.734339569554546,https://salsa.debian.org/debian-hamradio-team/aprsdigi, https://github.com/n2ygk/aprsdigi.git,5178.246157407408,2,9,0,4.0,7.0,0.0,0.0 +aprx,-0.270432687731495,2.12334679437291,-0.928014463668959,https://salsa.debian.org/debian-hamradio-team/aprx, https://github.com/PhirePhly/aprx,4964.077986111111,6,4,1,7.0,43.0,0.0,0.0 +apt-forktracer,0.0547352043403831,1.11225907504004,-0.240127558405969,https://github.com/porridge/apt-forktracer,https://github.com/porridge/apt-forktracer,5457.924699074074,1,3,0,2.0,1.0,0.0,0.0 +apt-offline,0.768191027819902,1.80772812578453,0.14873991524389,https://github.com/rickysarraf/apt-offline,https://github.com/rickysarraf/apt-offline,5588.93,4,18,3,12.0,62.0,0.0,2.0 +apt-venv,0.598527814932702,4.8192892934729,-0.729186428346901,https://salsa.debian.org/debian/apt-venv, https://github.com/LeoIannacone/apt-venv,1672.1250694444443,0,3,0,1.0,7.0,0.0,0.0 +aptitude-robot,0.0330441367843519,2.69876434953211,-0.675886625136312,https://github.com/elmar/aptitude-robot,https://github.com/elmar/aptitude-robot,3822.3247685185183,3,7,1,6.0,9.0,0.0,0.0 +apulse-debian,-0.17717245694643,1.29973697966089,-0.457689776114603,https://github.com/exaexa/apulse-debian,https://github.com/exaexa/apulse-debian,2693.7106712962964,2,11,0,9.0,2.0,0.0,0.0 +apvlv,0.802618607627995,2.49129268373325,-0.0110446925998544,https://salsa.debian.org/debian/apvlv, https://github.com/naihe2010/apvlv,4571.194467592592,1,28,0,18.0,92.0,0.0,0.0 +arachne-pnr,-0.239398811946727,0.905582303267077,-0.512849948602523,https://salsa.debian.org/science-team/arachne-pnr, https://github.com/cseed/arachne-pnr.git,1523.5826388888888,1,29,0,24.0,90.0,0.0,0.0 +ArbiterJS,-0.937225020502237,1.30941715563241,-1.36792845588423,https://salsa.debian.org/js-team/arbiterjs, https://github.com/ArbiterJS/ArbiterJS,777.6784722222222,0,1,0,0.0,0.0,0.0,0.0 +arc,1.00343051924479,2.95692526003554,0.170462970292605,https://git.hadrons.org/cgit/debian/pkgs/arc.git, https://github.com/ani6al/arc,0.1011921296296296,1,1,0,1.0,0.0,0.0,0.0 +arc-theme,0.0557512099432434,0.947010638316818,-0.178866228103829,https://github.com/UbuntuBudgie/arc-theme/tree/debian,https://github.com/UbuntuBudgie/arc-theme,2773.5425578703703,36,30,0,2.0,2.0,0.0,0.0 +arch-test,0.0607618911495027,0.902121307048674,-0.111650473265456,https://github.com/kilobyte/arch-test/tree/debian,https://github.com/kilobyte/arch-test,2721.055891203704,2,7,0,6.0,10.0,0.0,0.0 +archmage,-0.576675011074068,-0.303765149491576,-0.66643977901654,https://salsa.debian.org/python-team/packages/archmage, https://github.com/dottedmag/archmage,4875.184641203704,1,4,0,3.0,16.0,0.0,0.0 +arcp-py,-5.04003096550869,-2.68378015115337,-5.48022562431772,https://salsa.debian.org/python-team/packages/arcp, https://github.com/stain/arcp-py.git,744.5613194444444,0,3,0,2.0,4.0,0.0,0.0 +ardentryst,1.6336595560978,4.79019636159861,0.411496119890012,https://salsa.debian.org/games-team/ardentryst, https://github.com/ardentryst/ardentryst,3087.714386574074,4,6,0,6.0,7.0,0.0,0.0 +arename,-0.775437519802333,0.964651401264811,-1.13021327762464,https://salsa.debian.org/perl-team/modules/packages/arename, https://github.com/ft/arename.git,5509.574097222222,2,1,0,3.0,3.0,0.0,0.0 +phc-winner-argon2,0.743835667031226,2.53001733258646,0.120353018604403,https://salsa.debian.org/pkg-security-team/argon2, https://github.com/P-H-C/phc-winner-argon2,2090.997083333333,21,70,0,62.0,101.0,0.0,0.0 +aif,-0.0994853604563674,0.238247100664681,-0.28857380307344,https://salsa.debian.org/pkg-security-team/arno-iptables-firewall, https://github.com/arno-iptables-firewall/aif.git,5173.18931712963,1,13,0,3.0,50.0,0.0,0.0 +arp-scan,0.797385402380103,2.15787074804071,0.191351546468569,https://salsa.debian.org/pkg-security-team/arp-scan, https://github.com/royhills/arp-scan,5689.268958333333,1,16,0,11.0,61.0,0.0,1.0 +arpack-ng,0.383731858572043,0.90281659714996,0.109037111073968,https://salsa.debian.org/science-team/arpack, https://github.com/opencollab/arpack-ng.git,4374.647488425926,45,30,0,53.0,0.0,0.0,0.0 +arping,0.530645087037964,1.29700118051615,0.131538230952086,https://salsa.debian.org/debian/arping, https://github.com/ThomasHabets/arping,5640.3308564814815,6,8,1,10.0,48.0,0.0,0.0 +assess,-1.40003217092266,1.13321839319326,-2.02785078876853,https://salsa.debian.org/emacsen-team/assess-el, https://github.com/phillord/assess.git,2948.009340277778,0,8,0,6.0,12.0,0.0,0.0 +astLib,-0.495336351891529,0.608015445387811,-0.672906049388893,https://salsa.debian.org/debian-astro-team/astlib, https://github.com/mattyowl/astLib.git,2666.6349305555555,0,4,0,2.0,5.0,0.0,0.0 +astromenace,-0.408368489260551,0.580436103347323,-0.617588634321928,https://salsa.debian.org/games-team/astromenace, https://github.com/viewizard/astromenace.git,5567.492789351852,5,4,0,7.0,21.0,0.0,0.0 +astropy-healpix,-0.49444740252525,0.228063170215548,-0.722061408568394,https://salsa.debian.org/debian-astro-team/astropy-healpix, https://github.com/astropy/astropy-healpix,2653.9758333333334,3,14,5,12.0,33.0,0.0,2.0 +atig,-1.86484932436433,0.279641993042784,-2.4212366268619,https://salsa.debian.org/ruby-team/atig, https://github.com/atig/atig,4572.51880787037,2,14,1,10.0,17.0,0.0,0.0 +atlas-cpp,0.0341726982762952,1.17604381513103,-0.472138155533536,https://salsa.debian.org/games-team/atlas-cpp, https://github.com/worldforge/atlas-cpp,5588.922164351852,1,7,0,7.0,9.0,0.0,0.0 +audacious-plugins,1.72247171834969,2.52845544067147,1.16381708545179,https://salsa.debian.org/multimedia-team/audacious-plugins, https://github.com/audacious-media-player/audacious-plugins,5769.387013888889,19,100,0,83.0,0.0,0.0,0.0 +audiofile,0.422362872962016,1.13708828319636,0.0919717084661777,https://salsa.debian.org/multimedia-team/audiofile, https://github.com/mpruett/audiofile,1573.8945023148149,10,2,0,8.0,60.0,0.0,0.0 +austin,-1.98858852892086,0.974958297295704,-2.7198737393518,https://github.com/P403n1x87/austin,https://github.com/P403n1x87/austin,1837.728599537037,4,7,8,7.0,31.0,0.0,1.0 +autocutsel-debian,0.179784385400598,2.4764961712794,-0.387389100269758,https://github.com/elmar/autocutsel-debian,https://github.com/elmar/autocutsel-debian,3741.755243055556,3,8,0,7.0,1.0,0.0,0.0 +autolog,-0.458646695482971,0.523863618104121,-1.08434604225924,https://salsa.debian.org/pkg-security-team/autolog, https://github.com/JKDingwall/autolog.git,1891.041099537037,4,11,0,5.0,2.0,0.0,0.0 +automx-debian,-0.602057717962991,1.66065748723862,-1.37814875072612,https://github.com/wreiner/automx-debian.git,https://github.com/wreiner/automx-debian.git,38.18844907407407,1,1,0,1.0,0.0,0.0,0.0 +autopostgresqlbackup,0.0717331465361871,1.17795098215516,-0.397378227547243,https://salsa.debian.org/kolter/autopostgresqlbackup, https://github.com/k0lter/autopostgresqlbackup,1670.5722222222223,8,3,0,6.0,19.0,0.0,0.0 +autorenamer,-0.387619242637331,1.62524040114515,-0.886762447634072,https://github.com/porridge/autorenamer,https://github.com/porridge/autorenamer,3637.0090277777776,4,1,0,1.0,3.0,0.0,0.0 +averell,-3.39170600349659,-0.26243257747773,-4.23121536245205,https://github.com/jeanparpaillon/averell,https://github.com/jeanparpaillon/averell,585.8797453703704,0,1,0,0.0,2.0,0.0,0.0 +pkg-avr-evtd,0.755271395491288,5.63934271407374,-0.829494080541009,https://github.com/rbrito/pkg-avr-evtd,https://github.com/rbrito/pkg-avr-evtd,3784.563078703704,0,1,0,0.0,1.0,0.0,0.0 +awesfx,0.870533101226705,2.21630178301874,0.156143202155603,https://salsa.debian.org/multimedia-team/awesfx, https://github.com/tiwai/awesfx.git,1324.8292592592593,0,1,0,1.0,2.0,0.0,0.0 +biber,0.0255972490490973,0.397529493523627,-0.113970940798544,https://github.com/debian-tex/biber,https://github.com/debian-tex/biber,5232.948425925926,2,17,0,7.0,1.0,0.0,0.0 +biblesync,0.325069114209177,3.36910240068842,-0.454746471221156,https://salsa.debian.org/pkg-crosswire-team/biblesync, https://github.com/karlkleinpaste/biblesync.git,2205.173877314815,0,6,0,3.0,7.0,0.0,0.0 +bibtool,0.67899184842312,1.77532496580043,0.129925599871968,https://salsa.debian.org/tex-team/bibtool, https://github.com/ge-ne/bibtool.git,4734.066354166666,1,5,0,3.0,29.0,0.0,0.0 +binkd,-1.52911487316923,-0.720899386825205,-1.8984875134446,https://salsa.debian.org/md/binkd, https://github.com/pgul/binkd,5661.947349537037,4,23,0,12.0,24.0,0.0,0.0 +bino,0.195257650160866,1.88170602761767,-0.477460599883246,https://github.com/schaal/bino,https://github.com/schaal/bino,3762.760949074074,0,4,0,2.0,1.0,0.0,0.0 +binwalk,0.223750881111973,1.33453734812974,-0.151364007244613,https://salsa.debian.org/pkg-security-team/binwalk, https://github.com/ReFirmLabs/binwalk,3364.812650462963,24,70,1,71.0,16.0,0.0,25.0 +biometric-authentication,-0.485933223014382,1.53460316722766,-1.05540820789117,https://github.com/ukui/biometric-authentication,https://github.com/ukui/biometric-authentication,1286.1941203703705,2,8,0,4.0,14.0,0.0,0.0 +bitstruct,-1.04221111689686,1.67587334368042,-1.74083643825012,https://salsa.debian.org/python-team/packages/bitstruct, https://github.com/eerimoq/bitstruct,3110.3722916666666,2,10,0,6.0,34.0,0.0,0.0 +blackboxwm,0.924067069407153,1.54859497059993,0.49552529995811,https://salsa.debian.org/debian/blackbox, https://github.com/bbidulock/blackboxwm,5638.59306712963,4,7,0,8.0,24.0,0.0,0.0 +pkg-blahtexml,-0.848977997693807,1.48264420883758,-1.46630499643819,http://github.com/abhidg/pkg-blahtexml,http://github.com/abhidg/pkg-blahtexml,103.99862268518518,0,1,0,0.0,0.0,0.0,0.0 +Bluebird,1.1380974192667,4.27679649907411,0.156297008688033,https://salsa.debian.org/desktop-themes-team/bluebird-gtk-theme, https://github.com/shimmerproject/Bluebird,2956.8580092592592,3,16,0,11.0,26.0,0.0,0.0 +bmap-tools,-0.150405205584776,1.12527328019887,-0.487915123133271,https://salsa.debian.org/debian/bmap-tools, https://github.com/intel/bmap-tools,4042.210324074074,15,24,3,22.0,30.0,0.0,1.0 +boinctui,-0.143241370303535,1.42078631201341,-0.551211578534268,https://github.com/suleman1971/boinctui,https://github.com/suleman1971/boinctui,3939.330289351852,1,7,0,5.0,21.0,0.0,0.0 +bootinfoscript,-0.380931310220602,1.1240423782693,-0.708241731837265,https://salsa.debian.org/debian/boot-info-script, https://github.com/arvidjaar/bootinfoscript,3172.7375,1,7,0,3.0,19.0,0.0,0.0 +booth,-2.58824334072441,-1.37680108542551,-2.95829241505189,https://salsa.debian.org/ha-team/booth, https://github.com/ClusterLabs/booth.git,4438.4447337962965,6,37,0,22.0,34.0,0.0,0.0 +btchip-python,-1.18126727565667,1.40233755830126,-1.74149210073441,https://salsa.debian.org/python-team/packages/btchip-python, https://github.com/LedgerHQ/btchip-python.git,3019.882118055556,5,10,0,10.0,36.0,0.0,0.0 +btfs,-0.169232571549437,2.67737572993722,-0.890342282945852,https://salsa.debian.org/debian/btfs, https://github.com/johang/btfs,2774.3356481481483,11,11,0,15.0,32.0,0.0,0.0 +bti,-0.258899790920775,0.719543827742079,-0.728355222098141,https://git.toastfreeware.priv.at/debian/bti.git, https://github.com/gregkh/bti.git,3076.666469907407,14,25,0,25.0,36.0,0.0,0.0 +btrbk-packaging,0.115661714812478,2.28486375421134,-0.528665037688743,https://github.com/digint/btrbk-packaging,https://github.com/digint/btrbk-packaging,2807.899606481481,1,3,0,1.0,4.0,0.0,0.0 +compsize,0.105824084946372,2.80496949324477,-0.483145807159615,https://github.com/kilobyte/compsize/tree/debian,https://github.com/kilobyte/compsize,1814.023148148148,0,8,0,7.0,52.0,0.0,0.0 +budgie-desktop,-0.386390958459653,-0.105065504385218,-0.472234935184176,https://github.com/ubuntubudgie/budgie-desktop/tree/debian,https://github.com/ubuntubudgie/budgie-desktop,3652.422164351852,35,69,1,5.0,47.0,0.0,0.0 +budgie-extras,-0.354986420486241,1.91887121098529,-0.884811147535145,https://github.com/UbuntuBudgie/budgie-extras/tree/debian,https://github.com/UbuntuBudgie/budgie-extras,2299.353599537037,13,15,6,20.0,6.0,0.0,0.0 +budgie-indicator-applet,-0.316571005570996,1.8644335275796,-0.771503970333106,https://github.com/UbuntuBudgie/budgie-indicator-applet/tree/debian,https://github.com/UbuntuBudgie/budgie-indicator-applet,2410.5153935185185,0,6,1,2.0,24.0,0.0,0.0 +buildapp,-0.63064476325835,1.6220492356019,-1.34203914519867,https://salsa.debian.org/common-lisp-team/buildapp, https://github.com/xach/buildapp,2095.158275462963,0,6,0,6.0,25.0,0.0,0.0 +bwm-ng,1.40121922638423,3.17070056112281,0.556698761606925,https://salsa.debian.org/debian/bwm-ng, https://github.com/vgropp/bwm-ng,5022.657708333333,1,12,0,7.0,29.0,0.0,0.0 +cafeobj,-1.81043132765264,-1.01537341316671,-2.04973002943085,https://github.com/CafeOBJ/cafeobj,https://github.com/CafeOBJ/cafeobj,3212.0939699074074,0,7,0,3.0,3.0,0.0,2.0 +capnproto-debian,0.268831217820633,0.976027409602492,-0.0981830891894599,https://github.com/thomaslee/capnproto-debian,https://github.com/thomaslee/capnproto-debian,3752.338587962963,3,4,0,3.0,5.0,0.0,0.0 +carbon-c-relay,-1.72067037974238,2.11869981422391,-2.79128175183474,https://salsa.debian.org/debian/carbon-c-relay, https://github.com/grobian/carbon-c-relay.git,3376.0489467592597,8,36,0,25.0,0.0,0.0,1.0 +CARE-debian,-0.283623715441212,3.50380717493441,-1.34600107840302,https://github.com/ivoire/CARE-debian,https://github.com/ivoire/CARE-debian,2.719085648148148,0,2,0,1.0,1.0,0.0,0.0 +observatories-table,-0.193209856940157,1.24126511547144,-0.456590678476781,https://salsa.debian.org/debian-astro-team/casacore-data-observatories, https://github.com/casacore/observatories-table.git,766.9570138888889,1,3,0,2.0,2.0,0.0,0.0 +cassbeam,-0.259045108732969,0.99925176795752,-0.64497459970991,https://salsa.debian.org/debian-astro-team/cassbeam, https://github.com/ratt-ru/cassbeam,1099.9010185185184,0,5,0,3.0,3.0,0.0,0.0 +casync,-1.01620040906362,-0.313916552001019,-1.22652686269664,https://salsa.debian.org/systemd-team/casync, https://github.com/systemd/casync,2466.758460648148,38,15,0,44.0,38.0,0.0,0.0 +catcodec,-1.16856097988268,1.07727622127783,-1.61838805183779,https://salsa.debian.org/openttd-team/catcodec, https://github.com/OpenTTD/catcodec.git,4292.817731481481,2,4,0,3.0,2.0,0.0,0.0 +catimg,-0.095358226892815,2.16059280461038,-0.684470800131645,https://salsa.debian.org/debian/catimg, https://github.com/posva/catimg.git,3000.6790046296296,7,14,0,12.0,58.0,0.0,0.0 +caveexpress,-0.4341110970634,0.569471844099123,-0.596582894640061,https://salsa.debian.org/games-team/caveexpress, https://github.com/mgerhardy/caveexpress,2582.468125,2,6,0,4.0,11.0,0.0,3.0 +Cavez-of-Phear-packaging,0.0722256397124372,3.40949806890074,-0.719928552689934,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,23.047060185185185,0,1,0,1.0,1.0,0.0,0.0 +cbatticon,-0.663419875564642,2.03340349247728,-1.26388333093062,https://salsa.debian.org/debian/cbatticon, https://github.com/valr/cbatticon.git,4175.712280092593,3,25,0,19.0,61.0,0.0,2.0 +cbflib,0.93542859469883,4.35392030923547,-0.192952620584131,https://salsa.debian.org/science-team/cbflib, https://github.com/yayahjb/cbflib,5636.079074074074,1,18,0,8.0,16.0,0.0,0.0 +cbm,0.21754416509263,1.98271593846827,-0.387294516619196,https://salsa.debian.org/debian/cbm, https://github.com/resurrecting-open-source-projects/cbm,918.9922337962964,1,3,0,2.0,11.0,0.0,0.0 +ccbuild,-0.962946960309181,0.114636713661811,-1.38364630293163,https://salsa.debian.org/debian/ccbuild, https://github.com/bneijt/ccbuild.git,4764.88787037037,1,5,0,2.0,9.0,0.0,0.0 +cccc,1.16306556252959,3.77237240672707,0.0933849485786392,https://salsa.debian.org/debian/cccc, https://github.com/sarnold/cccc,2703.078263888889,1,7,0,3.0,10.0,0.0,0.0 +ccd2iso-debian,0.361667663026416,2.3145122267346,-0.282934292614776,https://github.com/paulproteus/ccd2iso-debian,https://github.com/paulproteus/ccd2iso-debian,10.083055555555555,1,1,0,2.0,1.0,0.0,0.0 +cclive,0.307502373439416,1.02460368794776,-0.0680117934195265,https://github.com/mogaal/cclive,https://github.com/mogaal/cclive,1632.909375,1,4,0,2.0,0.0,0.0,0.0 +cd-discid,0.692531699194494,3.31714740439398,-0.0825478540875517,https://github.com/taem/cd-discid/tree/deb,https://github.com/taem/cd-discid,2591.008657407408,2,2,0,3.0,8.0,0.0,0.0 +cellwriter,1.0089121851132,3.16829611372249,-0.0123490019388128,https://salsa.debian.org/debian/cellwriter, https://github.com/risujin/cellwriter,1174.0054050925926,1,2,0,2.0,8.0,0.0,1.0 +cen64-debian,-0.029911283215682,2.26144224386536,-0.656674834422946,https://github.com/dh4/cen64-debian/,https://github.com/dh4/cen64-debian,1926.2346064814813,0,5,0,3.0,1.0,0.0,0.0 +cen64-qt-debian,-0.75249983700087,1.46037636686185,-1.3157313925883,https://github.com/dh4/cen64-qt-debian/,https://github.com/dh4/cen64-qt-debian,1637.485798611111,0,4,0,3.0,1.0,0.0,0.0 +centreon-clib,-3.28683340227343,-0.861496330752058,-3.74980450462126,https://salsa.debian.org/centreon-team/centreon-clib, https://github.com/centreon/centreon-clib.git,4179.851145833333,9,17,0,12.0,14.0,0.0,0.0 +certspotter,-1.03336899144768,-0.0755768851187664,-1.23321678033423,https://salsa.debian.org/go-team/packages/certspotter, https://github.com/sslmate/certspotter,2838.790173611111,7,8,2,11.0,9.0,0.0,0.0 +CeWL,-0.0142294381514053,1.81401970760581,-0.3642449143816,https://salsa.debian.org/pkg-security-team/cewl, https://github.com/digininja/CeWL.git,2751.2389351851853,7,13,0,13.0,22.0,0.0,0.0 +cgroupfs-mount,0.595007950900762,2.24623334497127,0.0389645238605131,https://github.com/tianon/cgroupfs-mount,https://github.com/tianon/cgroupfs-mount,2931.2437847222222,0,7,0,5.0,13.0,0.0,0.0 +chafa,0.272945474595222,2.52779998751645,-0.163744365589759,https://salsa.debian.org/debian/chafa, https://github.com/hpjansson/chafa.git,2095.0478819444443,25,6,0,27.0,29.0,0.0,1.0 +Chaosreader,0.0512197310285199,1.96603100420262,-0.369285280047979,https://salsa.debian.org/pkg-security-team/chaosreader, https://github.com/brendangregg/Chaosreader,66.77311342592593,0,4,0,3.0,13.0,0.0,0.0 +charls,0.0895204965616005,0.743307844318276,-0.074607345455957,https://salsa.debian.org/med-team/charls, https://github.com/team-charls/charls.git,5412.763923611111,9,14,0,14.0,20.0,0.0,2.0 +cjk,0.96971045192412,1.67956459925518,0.507884270602392,https://github.com/debian-tex/cjk,https://github.com/debian-tex/cjk,4969.946932870371,1,7,0,4.0,2.0,0.0,0.0 +cjose,0.295403894225127,3.32408154360737,-0.620603569312427,https://salsa.debian.org/debian/cjose, https://github.com/zmartzone/cjose.git,2698.734525462963,9,16,0,16.0,4.0,0.0,0.0 +cjs,0.333425494754278,1.2158627920863,-0.0031931609189193,https://salsa.debian.org/cinnamon-team/cjs, https://github.com/linuxmint/cjs.git,3771.5652546296296,71,77,0,93.0,33.0,0.0,0.0 +ckbuilder,-1.34868158730321,1.76031609091417,-2.14728019209048,https://salsa.debian.org/js-team/ckbuilder, https://github.com/ckeditor/ckbuilder.git,3366.2307291666666,1,11,0,10.0,31.0,0.0,0.0 +cl-csv,-0.184313614747289,2.2825016420111,-0.96073562232821,https://salsa.debian.org/common-lisp-team/cl-csv, https://github.com/AccelerationNet/cl-csv,3373.83613425926,0,10,0,9.0,30.0,0.0,0.0 +cl-ftp,-0.620575027091736,2.04071728583489,-1.43486349328461,https://github.com/pinterface/cl-ftp,https://github.com/pinterface/cl-ftp,3252.967800925926,1,3,0,2.0,5.0,0.0,0.0 +cl-github-v3,-0.525886754158901,3.14869829126253,-1.57786858265274,https://github.com/hanshuebner/cl-github-v3,https://github.com/hanshuebner/cl-github-v3,2986.6350810185186,1,3,0,2.0,3.0,0.0,0.0 +ironclad,-0.292619474112447,2.54629736188643,-0.922896652786111,https://salsa.debian.org/common-lisp-team/cl-ironclad, https://github.com/sharplispers/ironclad,5005.706145833334,20,31,0,38.0,63.0,0.0,0.0 +local-time,-0.115573501850646,3.19884844019897,-1.05826046015465,http://github.com/dlowe-net/local-time,http://github.com/dlowe-net/local-time,5698.714988425926,7,50,0,0.0,0.0,0.0,0.0 +lparallel,-0.321212710190555,2.53460680683082,-1.09783355160211,https://github.com/lmj/lparallel,https://github.com/lmj/lparallel,2019.918599537037,0,5,0,4.0,49.0,0.0,0.0 +cl-markdown,-0.704735027971642,1.45184776406069,-1.14067274074447,https://github.com/gwkkwg/cl-markdown,https://github.com/gwkkwg/cl-markdown,5675.890451388889,2,4,0,3.0,15.0,0.0,0.0 +debian-coinor-ipopt,0.583213862110971,1.84678405520125,-0.0234312409683467,https://github.com/ghorn/debian-coinor-ipopt.git,https://github.com/ghorn/debian-coinor-ipopt.git,39.84579861111112,1,2,0,3.0,6.0,0.0,0.0 +coinst,-2.11911563959485,-0.175813398653396,-2.70071674016248,https://salsa.debian.org/ocaml-team/coinst, https://github.com/vouillon/coinst,2037.998599537037,0,10,0,3.0,4.0,0.0,0.0 +CoinUtils,0.517305852879183,1.72351671374194,0.0836708659931843,https://salsa.debian.org/science-team/coinutils, https://github.com/coin-or/CoinUtils,5778.888067129629,5,20,0,19.0,32.0,0.0,0.0 +collada-dom,0.691454203040474,3.66249206375898,-0.134321500846446,https://salsa.debian.org/science-team/collada-dom, https://github.com/rdiankov/collada-dom,2502.508460648148,0,12,0,6.0,37.0,0.0,0.0 +colord-gtk,0.769755293149984,2.98266391249002,0.0770418790099909,https://salsa.debian.org/debian/colord-gtk, https://github.com/hughsie/colord-gtk.git,4151.426111111111,7,4,0,8.0,20.0,0.0,0.0 +Colormake,0.495748907183494,1.69796875790221,-0.100333617807014,https://salsa.debian.org/debian/colormake, https://github.com/pagekite/Colormake,1830.174016203704,0,12,0,7.0,19.0,0.0,0.0 +colorspacious,-0.582161446637875,2.00413195982339,-1.1596382364804,https://salsa.debian.org/python-team/packages/colorspacious, https://github.com/njsmith/colorspacious.git,1894.8289351851847,2,10,0,9.0,30.0,0.0,0.0 +terminal-colors,-0.385784518377601,0.918857234529672,-0.806313357128645,https://salsa.debian.org/python-team/packages/colortest-python, https://github.com/eikenb/terminal-colors,4692.335277777778,1,2,0,2.0,11.0,0.0,0.0 +ColPack,0.201786704303149,1.93022602918197,-0.369590338773087,https://salsa.debian.org/science-team/colpack, https://github.com/CSCsw/ColPack,1916.7757175925929,1,22,0,9.0,0.0,0.0,0.0 +CommonMark-py,-0.11416500838552,1.25116861936766,-0.370232748261099,https://salsa.debian.org/python-team/packages/commonmark-bkrs, https://github.com/rolandshoemaker/CommonMark-py,472.4580902777778,0,5,0,4.0,23.0,0.0,0.0 +concordance,-0.462505057253659,0.313950398378314,-0.757335484243348,https://salsa.debian.org/debian/concordance, https://github.com/jaymzh/concordance.git,5701.118645833333,1,3,0,2.0,16.0,0.0,0.0 +config-package-dev,-0.205622525599008,1.25227242344213,-0.663386036163591,https://github.com/sipb/config-package-dev,https://github.com/sipb/config-package-dev,3585.0969444444445,4,6,0,9.0,9.0,0.0,0.0 +ssh-connect,0.663929963393126,3.49432697612261,-0.262388666763748,https://salsa.debian.org/debian/connect-proxy, https://github.com/gotoh/ssh-connect,3911.032627314815,0,6,0,3.0,7.0,0.0,0.0 +workbench,0.0811043258468287,2.67880223287002,-0.752864478646339,http://github.com/neurodebian/workbench,http://github.com/neurodebian/workbench,3495.7424652777777,3,16,0,0.0,0.0,0.0,0.0 +conserver,-0.552268878270219,0.057058802324775,-0.882189154355052,https://salsa.debian.org/debian/conserver, https://github.com/conserver/conserver.git,4671.668912037037,1,15,0,9.0,21.0,0.0,0.0 +constantly,0.850928447450448,3.76185287361888,0.0151388634103646,https://salsa.debian.org/python-team/packages/constantly, https://github.com/twisted/constantly.git,2708.6915162037035,2,14,0,8.0,30.0,0.0,0.0 +context,0.344932688438594,0.843880747316441,0.0662940567739085,https://github.com/debian-tex/context,https://github.com/debian-tex/context,5666.629780092592,2,10,0,4.0,3.0,0.0,0.0 +context-modules,0.280565146336701,2.52001699963819,-0.144175883889574,https://github.com/debian-tex/context-modules,https://github.com/debian-tex/context-modules,4444.346076388889,3,7,0,4.0,3.0,0.0,0.0 +context-free,-0.344235576793784,0.756294578766934,-0.832158475394757,https://github.com/MtnViewJohn/context-free,https://github.com/MtnViewJohn/context-free,2911.319537037037,1,9,0,3.0,27.0,0.0,9.0 +ConvertAll,0.17718959925243,1.87090042227686,-0.385587912227108,https://salsa.debian.org/qt-kde-team/extras/convertall, https://github.com/doug-101/ConvertAll.git,72.02152777777778,1,2,0,1.0,0.0,0.0,0.0 +convertdate,-1.07797049264342,1.52635035805152,-1.637269668297,https://salsa.debian.org/python-team/packages/convertdate, https://github.com/fitnr/convertdate,2873.5651041666665,10,11,0,11.0,44.0,0.0,0.0 +project--copyright-update,-0.552197160511787,1.80663899291966,-1.14317611874124,https://salsa.debian.org/debian/copyright-update, https://github.com/jaalto/project--copyright-update,3367.86224537037,0,1,0,1.0,0.0,0.0,0.0 +core.cache,-0.561021563903902,2.40885140581525,-1.30307388825199,https://salsa.debian.org/clojure-team/core-cache-clojure, https://github.com/clojure/core.cache,4284.517013888889,8,15,0,13.0,17.0,0.0,18.0 +cruft,1.80166164497765,2.73609258052625,1.15018799751513,https://github.com/a-detiste/cruft,https://github.com/a-detiste/cruft,5211.506574074074,2,8,0,7.0,3.0,0.0,0.0 +cruft-ng,0.142059123983331,2.30970880347388,-0.517173950214686,https://github.com/a-detiste/cruft-ng,https://github.com/a-detiste/cruft-ng,3368.403101851852,2,10,0,10.0,11.0,0.0,1.0 +cryfs,-0.132351299256985,0.869380622104774,-0.369453027315021,https://github.com/davesteele/cryfs,https://github.com/davesteele/cryfs,3180.9594560185187,28,15,0,27.0,1.0,0.0,0.0 +CTDConverter,-2.85255153038538,-0.454986667446423,-3.32075962513198,https://salsa.debian.org/med-team/ctdconverter, https://github.com/WorkflowConversion/CTDConverter,2616.914618055556,5,13,0,9.0,15.0,0.0,0.0 +cupt,-0.785166248865459,-0.741356000388487,-0.810209813689326,https://github.com/jackyf/cupt/tree/master,https://github.com/jackyf/cupt,3964.469525462963,4,7,0,6.0,9.0,0.0,1.0 +curvedns,-1.14617069868587,0.112741442647767,-1.37381298923115,https://salsa.debian.org/pkg-security-team/curvedns, https://github.com/curvedns/curvedns.git,3466.7757291666667,0,3,0,2.0,9.0,0.0,0.0 +cwm,-0.500204428130531,1.5042184567307,-0.935282538869387,https://github.com/jamesmcdonald/cwm,https://github.com/jamesmcdonald/cwm,5679.896053240741,1,30,0,0.0,1.0,0.0,0.0 +cycle,-0.313126048987607,0.695465190317994,-0.784417881760549,https://salsa.debian.org/med-team/cycle, https://github.com/metlov/cycle.git,229.95253472222225,0,1,0,1.0,0.0,0.0,0.0 +project--perl-ddir,-0.912637206116603,1.42468411057732,-1.47148394747172,https://salsa.debian.org/debian/ddir, https://github.com/jaalto/project--perl-ddir.git,3338.2834722222224,0,1,0,1.0,2.0,0.0,0.0 +debomatic,-0.81580971969394,-0.137115679074174,-1.08219980726607,https://salsa.debian.org/python-team/packages/debomatic, https://github.com/debomatic/debomatic,5739.495,4,16,0,13.0,18.0,0.0,0.0 +debootstick,-0.508717038467695,0.838230754407855,-0.881558905514112,https://github.com/drakkar-lig/debootstick,https://github.com/drakkar-lig/debootstick,3036.077210648148,5,8,0,8.0,20.0,0.0,2.0 +debian-debuerreotype,-1.06317343402172,1.46487811831655,-1.62978734955743,https://github.com/debuerreotype/debian-debuerreotype,https://github.com/debuerreotype/debian-debuerreotype,2712.8558217592595,0,4,0,2.0,2.0,0.0,0.0 +deepin-notifications,0.34744427251328,3.65477856026676,-0.432180899283793,https://salsa.debian.org/pkg-deepin-team/deepin-notifications, https://github.com/linuxdeepin/deepin-notifications,2025.0469791666667,4,26,0,14.0,18.0,0.0,0.0 +dicteval,-2.95369863336871,-0.13208757085462,-3.68895558088223,https://salsa.debian.org/debian/dicteval, https://github.com/osantana/dicteval.git,1110.6433217592592,3,12,0,10.0,14.0,0.0,0.0 +ding-libs,0.383342255623489,2.49364247157588,-0.138147012901626,https://salsa.debian.org/sssd-team/ding-libs, https://github.com/SSSD/ding-libs,5249.620081018518,15,12,0,14.0,16.0,0.0,0.0 +dir2ogg,0.239694684529411,1.64152149103211,-0.319092918386963,https://github.com/julian-klode/dir2ogg,https://github.com/julian-klode/dir2ogg,1310.029988425926,1,5,1,3.0,9.0,0.0,0.0 +direnv-deb,-0.0068848379529366,1.75857064726267,-0.451160585745145,https://github.com/direnv/direnv-deb,https://github.com/direnv/direnv-deb,3256.5212847222224,1,6,0,1.0,1.0,0.0,0.0 +node-dirty,-0.890988573271716,2.62270164954084,-1.95121575670237,https://salsa.debian.org/js-team/dirty.js, https://github.com/felixge/node-dirty.git,4940.328217592592,7,21,0,20.0,52.0,0.0,0.0 +discus,1.17050209388181,3.7454601143753,0.0821077036260994,https://salsa.debian.org/debian/discus, https://github.com/ncarrier/discus.git,1119.0192592592591,0,4,0,1.0,3.0,0.0,0.0 +diskscan,-0.280844219583857,0.383638380054831,-0.419348469516611,https://salsa.debian.org/debian/diskscan, https://github.com/baruch/diskscan.git,1436.448587962963,0,3,0,3.0,32.0,0.0,0.0 +ditaa,1.14456117412936,3.55385867527915,0.142833129763842,https://salsa.debian.org/java-team/ditaa, https://github.com/stathissideris/ditaa,4647.896041666667,3,17,0,12.0,73.0,0.0,0.0 +dizzy,0.520793755568244,2.80204550149747,-0.216143515141367,https://salsa.debian.org/perl-team/modules/packages/dizzy, https://github.com/penma/dizzy.git,1717.3470949074074,4,6,0,4.0,1.0,0.0,0.0 +django-bitfield,-1.16477034913538,1.67677395120211,-1.90983423918484,https://salsa.debian.org/python-team/packages/django-bitfield, https://github.com/disqus/django-bitfield,4482.6217939814815,15,33,0,35.0,84.0,0.0,0.0 +django-cas-server,-1.30889605800658,2.22928155508197,-2.31585064165671,https://salsa.debian.org/python-team/packages/django-cas-server, https://github.com/nitmir/django-cas-server.git,3041.6335532407406,8,9,0,13.0,46.0,0.0,0.0 +pkg-django-compat,-1.3241602950543,-0.188608342685688,-1.76573419272312,https://github.com/Linaro/pkg-django-compat.git,https://github.com/Linaro/pkg-django-compat.git,1206.0878819444445,0,6,0,3.0,3.0,0.0,0.0 +django-cors-headers,-1.11394108758359,0.0671040287419646,-1.33673891031328,https://salsa.debian.org/python-team/packages/django-cors-headers, https://github.com/adamchainz/django-cors-headers,3979.5858333333335,47,28,0,63.0,10.0,0.0,0.0 +django-guardian,-0.631840562330008,-0.175666538081989,-0.763973423985717,https://salsa.debian.org/python-team/packages/django-guardian, https://github.com/lukaszb/django-guardian,4311.932407407408,74,100,0,127.0,8.0,0.0,0.0 +pkg-django-restricted-resource,-1.28697318749763,0.227913210920117,-1.75195429034595,https://github.com/Linaro/pkg-django-restricted-resource,https://github.com/Linaro/pkg-django-restricted-resource,3194.8619212962963,0,7,0,4.0,3.0,0.0,0.0 +django-reversion,-0.777150964031435,0.998338835547634,-1.41528755792732,https://salsa.debian.org/python-team/packages/django-reversion, https://github.com/etianen/django-reversion.git,5522.85568287037,31,173,0,144.0,17.0,0.0,14.0 +django-setuptest,-1.00398830268751,1.89173998079783,-1.73987964391938,https://salsa.debian.org/python-team/packages/django-setuptest, https://github.com/praekelt/django-setuptest.git,1589.0550810185184,0,22,0,14.0,37.0,0.0,0.0 +pkg-django-testproject,-0.799939510918389,1.64354352492061,-1.44945239463122,https://github.com/Linaro/pkg-django-testproject,https://github.com/Linaro/pkg-django-testproject,3196.2780324074074,0,5,0,3.0,4.0,0.0,0.0 +pkg-django-testscenarios,-1.32571469322239,-0.0322578005939973,-1.66580907161116,https://github.com/Linaro/pkg-django-testscenarios,https://github.com/Linaro/pkg-django-testscenarios,3196.290115740741,0,7,0,4.0,5.0,0.0,0.0 +django-xmlrpc,-1.05007079848215,0.674157923649932,-1.51575190788338,https://salsa.debian.org/python-team/packages/django-xmlrpc, https://github.com/Fantomas42/django-xmlrpc,2632.308738425926,1,5,0,2.0,8.0,0.0,0.0 +dmarc-cat,-0.148389439253667,3.37717563751846,-1.19012336227191,https://salsa.debian.org/go-team/packages/dmarc-cat, https://github.com/keltia/dmarc-cat.git,1521.780300925926,0,4,0,3.0,19.0,0.0,0.0 +dms,-1.79235609405398,0.949013949455289,-3.00405896670681,https://github.com/grantma/dms,https://github.com/grantma/dms,1425.0333101851852,0,7,0,1.0,0.0,0.0,0.0 +dnstap-ldns,-1.96300285476509,0.490838248116668,-2.57881243839486,https://salsa.debian.org/dns-team/dnstap-ldns, https://github.com/dnstap/dnstap-ldns.git,2977.030300925926,3,7,0,5.0,6.0,0.0,0.0 +dnswalk,1.90066134270794,5.30649558843814,0.587989273593071,https://salsa.debian.org/debian/dnswalk, https://github.com/davebarr/dnswalk.git,3790.913483796296,0,2,0,2.0,5.0,0.0,0.0 +docdiff,-0.363775606360358,0.689503034880956,-0.723612814035272,https://salsa.debian.org/debian/docdiff, https://github.com/hisashim/docdiff,3912.654814814815,0,6,1,5.0,11.0,0.0,2.0 +Droopy,-0.89398694325989,1.3787169177303,-1.33370261042345,https://salsa.debian.org/debian/droopy, https://github.com/stackp/Droopy.git,5280.214768518518,0,7,0,4.0,33.0,0.0,0.0 +drumkv1,-0.195646303841167,1.07067209089277,-0.459428091573063,https://salsa.debian.org/multimedia-team/drumkv1, https://github.com/rncbc/drumkv1.git,4115.909027777778,1,13,0,4.0,23.0,0.0,1.0 +dtach,0.472092738388935,2.05322582228663,-0.0564635600433057,https://salsa.debian.org/voelkel-guest/dtach, https://github.com/crigler/dtach.git,1708.1544328703703,2,2,0,3.0,25.0,0.0,0.0 +dtfabric,0.0544342307870755,2.34172880310567,-0.479367618131588,https://salsa.debian.org/debian/dtfabric, https://github.com/libyal/dtfabric.git,2597.957638888889,0,1,0,1.0,6.0,0.0,1.0 +dumpet,0.811956716178272,4.83296464467065,-0.595687566980936,https://salsa.debian.org/debian/dumpet, https://github.com/rhboot/dumpet.git,4953.931909722222,2,5,0,3.0,2.0,0.0,0.0 +dvbcut-deb,-0.140015948042476,0.399549472596794,-0.360309815738839,https://github.com/bernhardu/dvbcut-deb,https://github.com/bernhardu/dvbcut-deb,2301.5843402777778,21,3,0,13.0,12.0,0.0,0.0 +dvisvgm,0.171998282183947,1.55084136410994,-0.142662310021075,https://github.com/debian-tex/dvisvgm,https://github.com/debian-tex/dvisvgm,1541.3238194444446,1,6,0,3.0,2.0,0.0,0.0 +dymo-cups-drivers,0.169549098118807,1.26534235036264,-0.0340436610527709,https://salsa.debian.org/printing-team/dymo-cups-drivers, https://github.com/matthiasbock/dymo-cups-drivers,4079.640983796297,4,11,0,5.0,30.0,0.0,0.0 +e2tools,-0.31548264769242,0.572945917024269,-0.592896826629012,https://salsa.debian.org/debian/e2tools, https://github.com/e2tools/e2tools,1196.5083217592592,2,6,3,6.0,14.0,0.0,0.0 +easygit,0.383586011018572,3.59575944736992,-0.580757122704697,https://salsa.debian.org/debian/easygit, https://github.com/newren/easygit,3676.0657175925926,399,15,0,318.0,0.0,0.0,0.0 +easyprocess,-0.53799173320537,1.94599701982545,-1.02194320670944,https://salsa.debian.org/python-team/packages/easyprocess, https://github.com/ponty/easyprocess.git,4652.397800925926,3,9,0,6.0,23.0,0.0,0.0 +ecdsautils,-0.584218908434214,1.61127583977002,-1.01705206899644,https://salsa.debian.org/communitywlan-team/ecdsautils, https://github.com/freifunk-gluon/ecdsautils,3436.625625,1,8,0,5.0,0.0,0.0,0.0 +edbrowse,0.370832211502124,1.58291273937709,-0.194120259542338,https://salsa.debian.org/a11y-team/edbrowse, https://github.com/CMB/edbrowse.git,5783.51974537037,9,22,0,20.0,30.0,0.0,10.0 +emacs-python-environment,-0.649779646433018,0.888158589770637,-0.925484796949458,https://salsa.debian.org/emacsen-team/emacs-python-environment, https://github.com/tkf/emacs-python-environment.git,626.8352777777778,0,3,0,3.0,12.0,0.0,0.0 +engauge_debian,0.468318437833274,1.88446333899741,-0.132199812189396,https://github.com/winchen/engauge_debian,https://github.com/winchen/engauge_debian,3059.142997685185,0,6,0,2.0,1.0,0.0,0.0 +enjarify,0.427359644725641,3.15080798032506,-0.369092656100407,https://salsa.debian.org/android-tools-team/enjarify, https://github.com/Storyyeller/enjarify,1738.110949074074,3,12,0,10.0,26.0,0.0,0.0 +entrypoints,0.857419697011272,4.10478343532811,0.0074721980594274,https://salsa.debian.org/python-team/packages/entrypoints, https://github.com/takluyver/entrypoints,2468.1372569444443,5,10,0,10.0,52.0,0.0,0.0 +enzyme,0.220928112203971,2.75082274669523,-0.536278177153044,https://salsa.debian.org/python-team/packages/enzyme, https://github.com/Diaoul/enzyme,665.1386111111111,0,3,0,2.0,20.0,0.0,0.0 +epoptes,-0.542451972754831,0.373723502712433,-0.839677995870044,https://github.com/epoptes/epoptes,https://github.com/epoptes/epoptes,4351.406793981481,4,10,0,8.0,6.0,0.0,0.0 +epr-api,-0.18355944237455,2.54906287161903,-0.893126650478525,https://salsa.debian.org/debian-gis-team/epr-api, https://github.com/bcdev/epr-api,4843.189861111111,0,19,0,7.0,3.0,0.0,0.0 +erfa,0.262633232067465,2.31782689876188,-0.183508382360506,https://salsa.debian.org/debian-astro-team/erfa, https://github.com/liberfa/erfa,3687.085324074074,3,14,0,13.0,25.0,0.0,0.0 +eris,-0.632476632964692,0.613394085601497,-1.19935072425888,https://salsa.debian.org/games-team/eris, https://github.com/worldforge/eris,5633.240509259259,2,7,0,8.0,6.0,0.0,0.0 +bear,-1.55987070079877,0.774057185069086,-2.05495667348586,https://salsa.debian.org/erlang-team/packages/erlang-bear, https://github.com/boundary/bear.git,985.0124652777778,0,11,0,6.0,17.0,0.0,0.0 +cuttlefish,-1.15701693005491,1.40793711612312,-1.97224413027031,https://salsa.debian.org/erlang-team/packages/erlang-cuttlefish, https://github.com/Kyorai/cuttlefish.git,3504.207511574074,6,42,0,29.0,12.0,0.0,17.0 +getopt,-1.24640146881314,1.24055252773571,-1.75273510466258,https://salsa.debian.org/erlang-team/packages/erlang-getopt, https://github.com/jcomellas/getopt,5121.0564583333335,4,19,0,16.0,31.0,0.0,0.0 +extrace,-0.716911995983522,1.64180015266931,-1.26212145910812,https://salsa.debian.org/debian/extrace, https://github.com/chneukirchen/extrace,3149.892662037037,4,2,0,5.0,5.0,0.0,0.0 +eyeD3-debian,1.23632208346383,2.32250673725634,0.591986174485483,https://github.com/gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian,2546.8571180555555,1,6,0,1.0,2.0,0.0,0.0 +faac,0.408637631433611,1.78820560884343,-0.0272312250909511,https://salsa.debian.org/multimedia-team/faac, https://github.com/knik0/faac,5409.507118055555,6,12,0,10.0,30.0,0.0,0.0 +faad2,1.05441750561477,2.23396241847788,0.471664053362126,https://salsa.debian.org/multimedia-team/faad2, https://github.com/knik0/faad2.git,5741.370833333333,16,14,0,22.0,44.0,0.0,0.0 +faba-icon-theme,0.891121238708099,4.43847406760927,-0.114244381250684,https://github.com/ubuntubudgie/faba-icon-theme/tree/debian,https://github.com/ubuntubudgie/faba-icon-theme,1592.9366782407408,0,6,0,2.0,0.0,0.0,0.0 +fabulous,-1.900421627324,-0.0667224501676742,-2.49350299164384,https://salsa.debian.org/python-team/packages/fabulous, https://github.com/jart/fabulous.git,4223.1852546296295,4,8,0,7.0,25.0,5.0,0.0 +fadecut,-0.667350092463335,1.85383645777287,-1.13854409825705,https://github.com/fadecut/fadecut/tree/debian,https://github.com/fadecut/fadecut,2792.815474537037,1,14,5,2.0,11.0,0.0,1.0 +fai,-0.141029003062567,-0.0834131887446058,-0.187507023426249,https://github.com/faiproject/fai,https://github.com/faiproject/fai,5773.004537037037,75,16,0,54.0,6.0,0.0,0.0 +fakesleep,-2.48126536481237,0.0741874263754914,-3.00289319258141,https://salsa.debian.org/python-team/packages/fakesleep, https://github.com/wearpants/fakesleep,0.0144907407407407,0,1,0,1.0,3.0,0.0,0.0 +fastd,0.333514221887181,3.12787150801173,-0.517000559553248,https://salsa.debian.org/communitywlan-team/fastd, https://github.com/NeoRaider/fastd.git,4199.101087962963,7,5,0,10.0,31.0,0.0,1.0 +ft2-clone,-1.40046242909984,1.30557026771413,-2.13381470047187,https://salsa.debian.org/multimedia-team/fasttracker2, https://github.com/8bitbubsy/ft2-clone,1461.167395833333,1,7,0,7.0,46.0,0.0,0.0 +fastx_toolkit,-0.345788605712488,1.09299754636222,-0.780912212098643,https://salsa.debian.org/med-team/fastx-toolkit, https://github.com/agordon/fastx_toolkit.git,3133.6998726851853,1,6,0,3.0,38.0,0.0,0.0 +fatcat,0.484244234595616,3.27011211542871,-0.26926443972348,https://salsa.debian.org/pkg-security-team/fatcat, https://github.com/gregwar/fatcat,3248.511898148148,2,7,0,6.0,33.0,0.0,0.0 +fatresize,1.78148207308487,4.9928976783678,0.533041051742402,https://salsa.debian.org/parted-team/fatresize, https://github.com/ya-mouse/fatresize,2189.5325,0,6,0,4.0,33.0,0.0,0.0 +fbpager,1.58823801856965,4.00012622311752,0.50196164463335,https://salsa.debian.org/debian/fbpager, https://github.com/fluxbox/fbpager,37.65318287037037,0,2,0,1.0,2.0,0.0,0.0 +fbset,1.31343177622143,2.3999244160546,0.655961770934684,https://github.com/sudipm-mukherjee/fbset.git,https://github.com/sudipm-mukherjee/fbset.git,5178.7434375,2,3,0,1.0,1.0,0.0,0.0 +fcgiwrap,0.313457792128019,1.1712166292828,-0.0802338795231698,https://salsa.debian.org/debian/fcgiwrap, https://github.com/gnosek/fcgiwrap,2589.724513888889,5,10,0,10.0,65.0,0.0,0.0 +fcitx-libpinyin,1.39043144689308,5.58305392877006,-0.0318276844096985,https://salsa.debian.org/input-method-team/fcitx-libpinyin, https://github.com/fcitx/fcitx-libpinyin,4359.651828703703,2,6,0,6.0,22.0,0.0,0.0 +pkg-fdm,0.367216892864716,2.19386340439911,-0.462639406832624,https://github.com/ft/pkg-fdm/,https://github.com/ft/pkg-fdm,5107.6653125,0,3,0,2.0,1.0,0.0,0.0 +fizmo-ncursesw,-0.203260447661615,2.2028162183293,-0.777045143620456,https://github.com/chrender/fizmo-ncursesw,https://github.com/chrender/fizmo-ncursesw,4851.414270833333,0,5,0,2.0,1.0,0.0,0.0 +flake8-polyfill,-0.290509698927459,2.15006672717983,-0.831786942179057,https://salsa.debian.org/python-team/packages/flake8-polyfill, https://github.com/PyCQA/flake8-polyfill.git,2673.183090277778,0,6,0,4.0,5.0,0.0,0.0 +flam3,0.783107292468659,3.7427433820312,-0.265060915265368,https://salsa.debian.org/debian/flam3, https://github.com/scottdraves/flam3,1152.1052083333334,1,7,0,3.0,25.0,0.0,4.0 +flask-jwt-simple,-3.74100421556996,-1.19160534497848,-4.32012170593659,https://salsa.debian.org/python-team/packages/flask-jwt-simple, https://github.com/vimalloc/flask-jwt-simple.git,1518.8651041666667,3,4,0,3.0,21.0,0.0,0.0 +flask-ldapconn,-1.08168170594019,1.85475959550756,-1.94217483827094,https://salsa.debian.org/python-team/packages/flask-ldapconn, https://github.com/rroemhild/flask-ldapconn,3190.6329976851853,4,10,0,11.0,32.0,0.0,0.0 +flask-silk,-0.0747361696036186,1.01910654442886,-0.341329221279819,https://salsa.debian.org/python-team/packages/flask-silk, https://github.com/sublee/flask-silk.git,2842.474108796296,0,7,0,3.0,4.0,0.0,0.0 +Junicode-font,0.974912303527955,2.35283220785299,0.319530132515262,https://salsa.debian.org/fonts-team/fonts-junicode, https://github.com/psb1558/Junicode-font,1677.9374305555557,3,4,0,6.0,15.0,0.0,0.0 +font-abyssinica,1.19124184578817,4.47035187308855,0.0766166907759292,https://salsa.debian.org/fonts-team/fonts-sil-abyssinica, https://github.com/silnrsi/font-abyssinica,1729.864050925926,1,8,0,7.0,2.0,0.0,0.0 +font-andika,0.226819752990735,1.73023566653979,-0.152119962769353,https://salsa.debian.org/fonts-team/fonts-sil-andika, https://github.com/silnrsi/font-andika,2361.704618055556,0,9,0,6.0,6.0,0.0,0.0 +foomatic-db,1.52097988119048,2.57857919950378,0.87665393025699,https://salsa.debian.org/printing-team/foomatic-db, https://github.com/OpenPrinting/foomatic-db.git,5681.190208333333,5,53,0,16.0,22.0,0.0,0.0 +formiko-debian,0.162847167151378,3.12972432185322,-0.606131131317192,https://github.com/ondratu/formiko-debian,https://github.com/ondratu/formiko-debian,1770.974849537037,2,2,0,3.0,3.0,0.0,0.0 +fortunes-br,0.382603091861005,2.47263573506667,-0.423938387085185,https://github.com/leitao/fortunes-br.git,https://github.com/leitao/fortunes-br.git,0.0056944444444444,0,1,0,1.0,0.0,0.0,0.0 +fortunes-mario-deb,0.274619658131346,1.87733323973623,-0.319371444076809,http://github.com/fike/fortunes-mario-deb,http://github.com/fike/fortunes-mario-deb,1606.775150462963,3,8,0,0.0,0.0,0.0,0.0 +fpgatools,0.263317733632337,3.62302416150927,-0.617914371101901,https://github.com/Wolfgang-Spraul/fpgatools,https://github.com/Wolfgang-Spraul/fpgatools,1132.0893287037038,1,6,0,5.0,0.0,0.0,0.0 +fqterm,-1.47783361153791,-0.410002791422599,-1.88643834830968,https://salsa.debian.org/chinese-team/fqterm, https://github.com/mytbk/fqterm,3515.765625,5,7,0,7.0,21.0,0.0,1.0 +FreeAlchemist,0.0594496950411277,2.2746437450724,-0.470758238747303,https://salsa.debian.org/python-team/packages/freealchemist, https://github.com/dakk/FreeAlchemist,3586.183032407408,0,3,0,1.0,0.0,0.0,0.0 +tools,0.0533159837796709,3.77655540826837,-1.29913035007012,https://salsa.debian.org/freedict-team/freedict-tools, https://github.com/freedict/tools.git,2348.65375,1,10,0,9.0,17.0,0.0,0.0 +freedv-gui,-0.321380589116011,1.14269359486899,-0.737833311519897,https://salsa.debian.org/debian-hamradio-team/freedv, https://github.com/drowe67/freedv-gui,3043.6515972222223,1,33,0,13.0,0.0,0.0,0.0 +freewheeling,0.57929039917913,2.50716578190389,-0.253456796640715,https://salsa.debian.org/multimedia-team/freewheeling, https://github.com/free-wheeling/freewheeling,5218.87306712963,1,3,0,3.0,28.0,0.0,2.0 +frozen-bubble,0.165035777228148,0.460197722494619,-0.0231433031569209,https://salsa.debian.org/perl-team/modules/packages/frozen-bubble, https://github.com/kthakore/frozen-bubble.git,3389.417650462963,4,17,0,10.0,23.0,0.0,0.0 +fyba,0.475498625383177,2.62895458120477,-0.0402028003181061,https://salsa.debian.org/debian-gis-team/fyba, https://github.com/kartverket/fyba.git,1185.3266203703704,1,10,0,5.0,17.0,0.0,0.0 +g2,-0.232798927583725,0.480081823717711,-0.573745503227334,https://salsa.debian.org/med-team/g2, https://github.com/danielrmeyer/g2,0.0,0,1,0,0.0,3.0,0.0,0.0 +ganeti-os-noop,-0.228103612944439,2.15469639223046,-0.852366861019704,https://salsa.debian.org/ganeti-team/ganeti-os-noop, https://github.com/grnet/ganeti-os-noop,677.1858449074074,0,6,0,2.0,5.0,1.0,0.0 +ganglia-modules-linux,0.0664199187930569,1.29560667255327,-0.272928032988035,https://salsa.debian.org/debian/ganglia-modules-linux, https://github.com/ganglia/ganglia-modules-linux.git,1617.3040972222225,0,6,0,3.0,4.0,0.0,0.0 +sonata,-0.529426882518877,1.06124614808373,-0.831456731478739,https://salsa.debian.org/science-team/gap-sonata, https://github.com/gap-packages/sonata.git,4006.9744907407407,4,7,0,4.0,8.0,0.0,0.0 +toric,-0.245145645400494,2.49491676474835,-0.818626096822567,https://salsa.debian.org/science-team/gap-toric, https://github.com/gap-packages/toric.git,3029.62,4,5,0,5.0,6.0,0.0,0.0 +garmintools,-0.21743425080625,0.536608891166221,-0.517674515044991,https://salsa.debian.org/debian/garmin-forerunner-tools, https://github.com/jorgesca/garmintools.git,2685.798298611111,0,5,0,3.0,1.0,0.0,0.0 +gatk-native-bindings,-0.100986588709375,2.46240098272391,-0.676296383991726,https://salsa.debian.org/java-team/gatk-native-bindings, https://github.com/broadinstitute/gatk-native-bindings,505.80189814814815,1,4,0,3.0,6.0,0.0,0.0 +gau2grid,-0.815898808955968,1.13429271732607,-1.40690475029843,https://salsa.debian.org/debichem-team/gau2grid, https://github.com/dgasmith/gau2grid,1166.9793981481482,4,10,0,8.0,18.0,0.0,0.0 +gconjugue,-1.19339536101734,0.61341419506809,-1.71179876451413,https://salsa.debian.org/debian/gconjugue, https://github.com/jalvesaq/gconjugue,2752.153888888889,0,4,0,1.0,3.0,0.0,0.0 +gdnsd,-2.96783921653793,-0.39790549938739,-3.67190541100761,https://github.com/paravoid/gdnsd,https://github.com/paravoid/gdnsd,4241.3566550925925,2,11,0,9.0,3.0,0.0,0.0 +geki2,-0.258574180554736,1.13020964582534,-0.602596537838345,https://salsa.debian.org/games-team/geki2, https://github.com/Quipyowert2/geki2,1827.8569328703704,0,3,0,1.0,1.0,0.0,0.0 +gelemental,0.101871491885225,1.2000806540432,-0.308055090869883,https://salsa.debian.org/debichem-team/gelemental, https://github.com/ginggs/gelemental,1560.5809722222225,8,4,0,9.0,9.0,0.0,0.0 +gsl,-1.78734710744917,-0.17508623401531,-2.06894845508284,https://github.com/bluca/gsl,https://github.com/bluca/gsl,3538.601678240741,4,35,0,24.0,1.0,0.0,0.0 +genetic,0.270772615288209,2.70696739683723,-0.438075928444894,https://salsa.debian.org/science-team/genetic, https://github.com/skoblov-lab/genetic,1118.9616550925923,2,4,0,1.0,1.0,0.0,0.0 +genext2fs,-0.288257654556958,0.206342373917604,-0.5033680475232,https://salsa.debian.org/debian/genext2fs, https://github.com/bestouff/genext2fs,3682.290104166667,0,10,0,5.0,18.0,0.0,0.0 +gimp-texturize,0.155585557161129,1.26629801322369,-0.194566602740913,https://salsa.debian.org/debian/gimp-texturize, https://github.com/lmanul/gimp-texturize.git,3625.7350810185194,1,11,0,4.0,8.0,0.0,0.0 +ginkgocadx,-0.262848364130749,0.261946365484675,-0.473858603741579,https://salsa.debian.org/med-team/ginkgocadx, https://github.com/gerddie/ginkgocadx.git,2123.806111111111,1,5,0,5.0,27.0,0.0,0.0 +git-lfs,0.10850806546047,1.28879399830704,-0.211778678166103,https://salsa.debian.org/go-team/packages/git-lfs, https://github.com/github/git-lfs.git,3479.309016203704,54,197,0,202.0,5.0,0.0,124.0 +git-remote-hg,1.38041870165709,3.90908821951378,0.287352123060667,https://salsa.debian.org/debian/git-remote-hg, https://github.com/mnauw/git-remote-hg/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +debian,-0.513550947087722,0.0361166657458587,-0.732066503862449,https://salsa.debian.org/debian/github-backup,https://salsa.debian.org/debian/github-backup,3299.6675694444443,9,13,0,0.0,0.0,0.0,0.0 +gitless,-1.01294721721959,1.17454442756473,-1.55328553128069,https://salsa.debian.org/python-team/packages/gitless, https://github.com/sdg-mit/gitless.git,1580.4098032407408,8,31,0,24.0,19.0,0.0,0.0 +gitmagic,0.0058626792252935,1.39680236467479,-0.411777383585704,https://salsa.debian.org/debian/gitmagic, https://github.com/blynn/gitmagic,4774.439953703703,12,73,0,47.0,40.0,0.0,3.0 +giza,-0.0821548043704013,1.7697955981988,-0.433099872352207,https://salsa.debian.org/debian-astro-team/giza, https://github.com/danieljprice/giza,4755.9934837962965,2,14,0,9.0,20.0,0.0,1.0 +gjots2,0.494722277557668,2.20920550502522,-0.349273527502639,https://github.com/leggewie-DM/gjots2,https://github.com/leggewie-DM/gjots2,4231.040023148148,3,4,0,1.0,2.0,0.0,0.0 +gkrellm-cpufreq-debian,0.520662810261337,3.09832773332327,-0.290811488089151,https://github.com/glaubitz/gkrellm-cpufreq-debian,https://github.com/glaubitz/gkrellm-cpufreq-debian,3039.783865740741,1,2,0,1.0,3.0,0.0,0.0 +gkrelluim,-1.25246985745735,0.701045689976412,-1.62024310513475,https://salsa.debian.org/debian/gkrelluim, https://github.com/dai-vdr/gkrelluim.git,5001.253333333333,0,1,0,0.0,0.0,0.0,0.0 +glimpse,4.84219789067736,8.06243279158319,3.38459316763573,https://github.com/az143/glimpse,https://github.com/az143/glimpse,3292.598958333333,0,6,0,2.0,2.0,0.0,0.0 +global,0.925106943891178,1.80298075221874,0.395670583842805,https://github.com/punitagrawal/global,https://github.com/punitagrawal/global,2253.924212962963,4,4,0,5.0,4.0,0.0,0.0 +gmetric4j,-2.75986928766789,-0.590610246331083,-3.29509205415348,https://github.com/ganglia/gmetric4j,https://github.com/ganglia/gmetric4j,3040.700127314815,1,11,0,5.0,21.0,0.0,2.0 +gnarwl,-1.00912731780396,-0.119732536714327,-1.47832568928384,https://salsa.debian.org/debian/gnarwl, https://github.com/fln/gnarwl,2570.5118287037035,1,9,0,5.0,7.0,0.0,0.0 +dash-to-panel,0.112497150565975,2.19074418636135,-0.424673425471541,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dash-to-panel, https://github.com/home-sweet-gnome/dash-to-panel.git,2629.753946759259,40,85,0,86.0,104.0,0.0,2.0 +dash-to-dock,-0.0287596469367206,0.983041172753154,-0.301129726005059,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dashtodock, https://github.com/micheleg/dash-to-dock.git,4172.053009259259,157,30,0,142.0,64.0,0.0,0.0 +GoldenEye,0.291422342120509,3.23766478434891,-0.422802284339128,https://salsa.debian.org/pkg-security-team/goldeneye, https://github.com/jseidl/GoldenEye,3012.1110532407406,1,7,0,5.0,0.0,0.0,0.0 +apps-gorm,0.379214595573564,1.50539380252219,-0.0975198397004308,https://salsa.debian.org/gnustep-team/gorm.app, https://github.com/gnustep/apps-gorm,5785.686678240741,3,22,0,21.0,13.0,0.0,0.0 +gosa-core,-0.3775685335741,-0.218913245151997,-0.490142989776367,https://salsa.debian.org/debian-edu-pkg-team/gosa, https://github.com/gosa-project/gosa-core,5676.765821759259,7,31,0,8.0,18.0,0.0,0.0 +gosa-plugins-mailaddress,-2.33839798824977,0.264356858694085,-2.98564755573703,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-mailaddress, https://github.com/gosa-project/gosa-plugins-mailaddress,2274.676365740741,0,4,0,2.0,4.0,0.0,0.0 +gosa-plugins-netgroups,-0.991400762891599,0.477737244370405,-1.38270096634839,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-netgroups, https://github.com/gosa-project/gosa-plugins-netgroups,1422.7270023148149,0,3,0,1.0,2.0,0.0,0.0 +gosa-plugins-pwreset,-1.35983377184844,0.287923337303386,-1.62929317992199,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-pwreset, https://github.com/gosa-project/gosa-plugins-pwreset,2184.168125,0,3,0,1.0,1.0,0.0,0.0 +linux-crypto,-2.36115638748562,-0.86455846759555,-2.62341468211892,https://salsa.debian.org/lumag/gost-crypto, https://github.com/GostCrypt/linux-crypto.git,1726.5372222222222,2,3,0,2.0,3.0,0.0,0.0 +gpicview,2.07026716447993,4.21859764899317,1.05394216899283,https://salsa.debian.org/lxde-team/gpicview, https://github.com/lxde/gpicview,5713.732662037037,76,42,0,59.0,6.0,0.0,0.0 +gpp,0.629564590648757,3.86571206671939,-0.308981221820961,https://salsa.debian.org/debian/gpp, https://github.com/logological/gpp/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +gpustat,-0.741403160392273,1.67386030509305,-1.1885003927339,https://salsa.debian.org/nvidia-team/gpustat, https://github.com/wookayin/gpustat,2769.873078703704,16,5,3,17.0,31.0,0.0,0.0 +gpyfft,-0.0412032188187653,3.09310643757917,-0.922104196637825,https://salsa.debian.org/science-team/gpyfft, https://github.com/geggo/gpyfft,2840.725300925926,4,10,0,8.0,33.0,0.0,0.0 +gss-ntlmssp,-1.07585140078542,0.718744628304251,-1.51478530983583,https://salsa.debian.org/freeipa-team/gss-ntlmssp, https://github.com/gssapi/gss-ntlmssp,3594.9212152777777,10,4,0,7.0,12.0,0.0,1.0 +gtkguitune,-0.249127738628021,0.382618678459193,-0.459149545237519,https://github.com/bobek/gtkguitune,https://github.com/bobek/gtkguitune,3186.2603587962963,1,3,0,2.0,1.0,0.0,0.0 +gtkterm,1.66141581433244,3.22367868482496,0.801083568030018,https://salsa.debian.org/debian/gtkterm, https://github.com/Jeija/gtkterm.git,4575.4452083333335,6,17,0,14.0,44.0,0.0,0.0 +gtranscribe,-0.52598532093121,1.68552447049882,-0.950618828955398,https://salsa.debian.org/debian/gtranscribe, https://github.com/innir/gtranscribe,3558.9036921296297,0,5,1,2.0,14.0,0.0,0.0 +guake-indicator,0.225084840589738,2.50139112834453,-0.537897622387219,https://salsa.debian.org/debian/guake-indicator/, https://github.com/Ozzyboshi/guake-indicator,2489.141122685185,1,8,0,4.0,11.0,0.0,0.0 +gufw,1.82170657320495,4.36249019311549,0.73445987540299,https://salsa.debian.org/python-team/packages/gui-ufw, https://github.com/costales/gufw.git,1462.9175578703705,0,7,0,8.0,66.0,0.0,0.0 +guidedog,-1.21278206618604,0.0904612736593897,-1.69262749618264,https://github.com/antocm/guidedog/tree/debian,https://github.com/antocm/guidedog,2480.661736111111,0,5,0,2.0,1.0,0.0,1.0 +guile-ssh,-0.898003176566419,3.15796707178121,-2.08007087259509,https://salsa.debian.org/debian/guile-ssh, https://github.com/artyom-poptsov/guile-ssh.git,3867.355983796296,0,10,0,8.0,28.0,0.0,0.0 +gup,-5.16957026468003,-4.44854545374036,-5.42895905623184,https://github.com/rfc1036/gup,https://github.com/rfc1036/gup,3593.8147453703705,0,1,0,1.0,0.0,0.0,0.0 +guzzle_sphinx_theme,-0.870402263256846,0.681504728971643,-1.1374775257454,https://salsa.debian.org/python-team/packages/guzzle-sphinx-theme, https://github.com/guzzle/guzzle_sphinx_theme.git,2860.313402777778,3,11,0,12.0,42.0,0.0,0.0 +debian-gwaei,-0.241530181808764,1.20814974222975,-0.872223429611782,https://github.com/norbusan/debian-gwaei,https://github.com/norbusan/debian-gwaei,2765.6634375,2,2,0,2.0,3.0,0.0,0.0 +gwakeonlan,0.853516994065889,3.06274146318228,-0.0322068922641137,https://salsa.debian.org/debian/gwakeonlan, https://github.com/muflone/gwakeonlan.git,4933.515127314815,2,13,0,10.0,35.0,0.0,0.0 +gwc,0.608752042959984,1.62897330411708,0.0519069421770505,https://salsa.debian.org/multimedia-team/gwc, https://github.com/AlisterH/gwc.git,3165.170532407408,1,5,0,3.0,6.0,0.0,0.0 +gxkb,0.378793618102741,4.06984648812116,-0.633487570844487,https://github.com/mati75/gxkb.git,https://github.com/mati75/gxkb.git,2732.567650462963,0,4,0,2.0,2.0,0.0,0.0 +gxtuner,1.26252365881053,4.75338294151494,0.0339744565712773,https://salsa.debian.org/multimedia-team/gxtuner, https://github.com/brummer10/gxtuner,1914.189201388889,3,6,0,4.0,9.0,0.0,0.0 +h2o,-0.732154034912123,0.815719717951388,-1.28127323117718,https://salsa.debian.org/debian/h2o, https://github.com/h2o/h2o,4716.585949074074,44,155,4,123.0,17.0,0.0,22.0 +h5utils,-0.0466394354620323,0.620050047907465,-0.315947352633772,https://salsa.debian.org/debian-gis-team/h5utils, https://github.com/NanoComp/h5utils.git,5379.830416666667,0,6,0,3.0,18.0,0.0,0.0 +hacktv,-2.00826730577902,0.152267044037194,-2.47275412010978,https://salsa.debian.org/debian-hamradio-team/hacktv, https://github.com/fsphil/hacktv,2394.743078703704,3,7,0,8.0,43.0,0.0,0.0 +HandBrake,1.390484339078,2.68514870700298,0.64515826171242,https://salsa.debian.org/multimedia-team/handbrake, https://github.com/HandBrake/HandBrake,5786.367523148148,105,51,3,108.0,0.0,0.0,2.0 +hexedit,1.48881421467303,3.48586859691273,0.561731376761798,https://salsa.debian.org/debian/hexedit, https://github.com/pixel/hexedit.git,5414.790706018519,8,14,0,14.0,45.0,0.0,0.0 +hexter,0.408060348118351,2.76030001415653,-0.344323176379156,https://salsa.debian.org/multimedia-team/hexter, https://github.com/smbolton/hexter.git ,4380.352847222222,0,6,0,5.0,17.0,0.0,0.0 +hfst-ospell,0.259192073708983,1.3643095913664,-0.0408851514528968,https://salsa.debian.org/science-team/hfst-ospell, https://github.com/hfst/hfst-ospell.git,4745.75769675926,1,17,0,8.0,24.0,0.0,1.0 +hijra,-1.15210447252993,0.901978485933006,-1.98964059526422,https://salsa.debian.org/islamic-team/hijra, https://github.com/ojuba-org/hijra.git,4311.288414351852,0,8,0,4.0,4.0,0.0,0.0 +hinawa-utils,-1.80364309063727,0.940925857099933,-2.44228018023471,https://salsa.debian.org/debian/hinawa-utils/, https://github.com/takaswie/hinawa-utils.git,2264.298796296296,1,2,0,2.0,8.0,0.0,0.0 +hiro,-3.12301135787983,-1.14023553381057,-3.69314465756504,https://salsa.debian.org/python-team/packages/hiro, https://github.com/alisaifee/hiro,3329.753263888889,1,3,0,3.0,6.0,0.0,0.0 +hmat-oss,0.302795748495868,3.08224049554587,-0.630153054299577,https://salsa.debian.org/science-team/hmat-oss, https://github.com/jeromerobert/hmat-oss.git,3261.6730555555555,6,19,0,14.0,7.0,0.0,0.0 +hodie,-0.839827098753095,0.847259008084228,-1.20596126816846,https://salsa.debian.org/cts/hodie, https://github.com/michiexile/hodie,1318.6005671296296,0,5,0,1.0,2.0,0.0,0.0 +hoel,-2.62622621697402,-0.673459335408438,-3.01125437253336,https://salsa.debian.org/debian-iot-team/oauth2/hoel.git, https://github.com/babelouest/hoel,1340.3941203703705,3,9,0,7.0,12.0,0.0,0.0 +html2text,1.33403803979287,2.32152554452253,0.727545163261413,https://salsa.debian.org/debian/html2text, https://github.com/grobian/html2text,1388.0924421296295,5,7,0,7.0,21.0,0.0,0.0 +html5-parser,0.458800578494514,2.4674305886851,-0.0847285940270142,https://github.com/debian-calibre/html5-parser,https://github.com/debian-calibre/html5-parser,2309.525925925926,1,6,0,5.0,4.0,0.0,0.0 +hyphen,0.431472953444581,1.60395404929647,0.0503177928932619,https://salsa.debian.org/libreoffice-team/hyphen, https://github.com/hunspell/hyphen.git,2824.9621875,2,9,0,6.0,18.0,0.0,0.0 +hyphen-ru,1.36394021241656,5.60995268002231,0.017512985101694,http://github.com/Protagores/hyphen-ru,http://github.com/Protagores/hyphen-ru,3.0971875,0,1,0,0.0,0.0,0.0,0.0 +i18nspector,-0.313015622769601,1.34702827047449,-0.821005946432485,https://salsa.debian.org/debian/i18nspector, https://github.com/jwilk/i18nspector,3956.454016203704,0,2,0,2.0,6.0,0.0,0.0 +i2pd,-0.85878278022978,0.149294279481958,-1.15455770054614,https://salsa.debian.org/yangfl-guest/i2pd, https://github.com/PurpleI2P/i2pd,3747.131585648148,37,139,2,97.0,14.0,0.0,23.0 +i7z,0.0808738408514938,1.26223617887634,-0.243091165882832,https://salsa.debian.org/debian/i7z, https://github.com/ajaiantilal/i7z,310.0352199074074,0,7,0,3.0,33.0,0.0,0.0 +IanniX,-0.18807323044584,2.14869055414818,-0.87546624741016,https://salsa.debian.org/multimedia-team/iannix, https://github.com/buzzinglight/IanniX,4212.690243055556,7,14,0,10.0,41.0,0.0,3.0 +ibuffer-projectile,-0.722806195261783,1.81540772308371,-1.29214807400522,https://salsa.debian.org/emacsen-team/ibuffer-projectile, https://github.com/purcell/ibuffer-projectile.git,3152.389108796296,1,7,0,7.0,14.0,0.0,0.0 +ice-builder-gradle-debian-packaging,-1.18494857071322,0.940607993180076,-1.63914293753475,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2370.9240625,0,3,0,2.0,3.0,0.0,0.0 +icebreaker,0.469225637128789,1.84119572041145,-0.176942105980292,https://salsa.debian.org/games-team/icebreaker, https://github.com/mattdm/icebreaker.git,3923.769930555556,0,5,0,4.0,7.0,0.0,0.0 +icemon,0.703092293725719,3.58351003456912,-0.29590599853479,https://salsa.debian.org/qt-kde-team/extras/icemon, https://github.com/icecc/icemon.git,4527.72,9,27,0,37.0,45.0,0.0,1.0 +icecream-sundae,-1.03853764893726,1.81493250427221,-1.71495059042769,https://salsa.debian.org/debian/icecream-sundae, https://github.com/JPEWdev/icecream-sundae,638.2833796296296,3,6,0,6.0,16.0,0.0,0.0 +ifetch-tools,-1.77631166835684,-1.41794350156919,-1.86446506771438,https://github.com/unixabg/ifetch-tools,https://github.com/unixabg/ifetch-tools,5167.966319444445,0,4,0,3.0,2.0,0.0,0.0 +ifupdown-multi,-0.000891109304905,3.57957149248289,-1.03563713495261,https://github.com/edmonds/ifupdown-multi,https://github.com/edmonds/ifupdown-multi,2598.182175925926,0,2,0,1.0,1.0,0.0,0.0 +inn,-0.504610683048708,-0.419983646964629,-0.570339528426107,https://salsa.debian.org/md/inn2, https://github.com/InterNetNews/inn.git,5725.585011574074,6,6,0,10.0,0.0,0.0,0.0 +iodine,-0.272251022107355,-0.141218742848917,-0.33085250197786,https://git.toastfreeware.priv.at/debian/iodine.git/, https://github.com/yarrick/iodine.git,5593.126863425926,29,23,0,31.0,45.0,0.0,0.0 +ionit,-2.56769805015944,-0.998151936758215,-2.98444937682541,https://github.com/bdrung/ionit/tree/debian/unstable,https://github.com/bdrung/ionit,1307.9435069444444,2,5,0,2.0,4.0,0.0,0.0 +ip4r,-1.46327455556285,-0.46779578486403,-1.71199333845707,https://salsa.debian.org/postgresql/ip4r, https://github.com/RhodiumToad/ip4r.git,3711.2765972222223,1,6,0,5.0,22.0,0.0,0.0 +ipheth-debian,0.943090802667325,3.76382585272279,-0.13743487302787,https://github.com/pmcenery/ipheth-debian,https://github.com/pmcenery/ipheth-debian,4243.605381944444,0,4,0,2.0,1.0,0.0,0.0 +ipmctl,-1.80380628845051,-0.234444738513806,-2.06963966567453,https://github.com/kilobyte/ipmctl/tree/debian,https://github.com/kilobyte/ipmctl,1854.5950810185184,32,11,0,22.0,0.0,0.0,0.0 +ippusbxd,0.0111748533285641,2.66002786497703,-0.722026887945832,https://salsa.debian.org/printing-team/ippusbxd, https://github.com/OpenPrinting/ippusbxd,2327.077696759259,1,12,0,6.0,11.0,0.0,0.0 +iprange,0.648037588830882,3.95974953639138,-0.294516128273265,https://salsa.debian.org/debian/iprange, https://github.com/firehol/iprange.git,1873.7119328703704,0,7,0,3.0,20.0,0.0,1.0 +iprutils,-1.90302314060055,0.333968509203932,-2.44604336862968,https://salsa.debian.org/debian/iprutils, https://github.com/bjking1/iprutils,5119.04505787037,18,20,0,15.0,14.0,0.0,0.0 +ipv6calc,0.543298857583,1.76348144592324,-0.0022190697373333,https://salsa.debian.org/debian/ipv6calc, https://github.com/pbiering/ipv6calc,5498.61324074074,2,10,5,7.0,16.0,0.0,0.0 +ipv6toolkit,0.155618378638467,2.6785840103418,-0.553670011158937,https://github.com/alvarezp/ipv6toolkit/tree/debian,https://github.com/alvarezp/ipv6toolkit,3020.5637962962965,1,17,0,8.0,0.0,0.0,0.0 +pkg-ipvsadm,1.61908553590761,2.78315854014052,0.905629891911793,https://github.com/formorer/pkg-ipvsadm,https://github.com/formorer/pkg-ipvsadm,3173.692650462963,1,2,0,2.0,3.0,0.0,0.0 +ipython_genutils,0.530177331159466,3.23732216372701,-0.0754853282825387,https://salsa.debian.org/python-team/packages/ipython-genutils, https://github.com/ipython/ipython_genutils,4920.52525462963,2,28,3,27.0,23.0,0.0,0.0 +ir.lv2,0.0482033804799324,1.80727862952251,-0.420434877989828,https://salsa.debian.org/multimedia-team/ir.lv2, https://github.com/tomszilagyi/ir.lv2.git,901.637175925926,2,4,0,0.0,1.0,0.0,0.0 +sptable,-0.357289537612694,2.89104688412438,-1.14398316665318,https://salsa.debian.org/debian-astro-team/iraf-sptable, https://github.com/iraf-community/sptable,2001.9924189814813,2,4,0,1.0,3.0,0.0,0.0 +ircmarkers,-1.44359281417606,0.758311846290358,-1.91259895279885,https://github.com/df7cb/ircmarkers,https://github.com/df7cb/ircmarkers,5694.884652777778,1,3,0,3.0,1.0,0.0,0.0 +jack_midi_clock,0.311892005219808,2.95526744630425,-0.405657357283279,https://salsa.debian.org/multimedia-team/jack-midi-clock, https://github.com/x42/jack_midi_clock,4775.637094907407,0,4,0,3.0,3.0,0.0,0.0 +jackson-dataformat-yaml,-0.305012260019323,2.80829889504518,-1.24553614944756,https://salsa.debian.org/java-team/jackson-dataformat-yaml, https://github.com/FasterXML/jackson-dataformat-yaml.git,2094.170972222222,1,22,0,16.0,0.0,0.0,4.0 +jaraco.itertools,-2.17707155845664,0.444418251427644,-2.90534259730026,https://salsa.debian.org/python-team/packages/jaraco.itertools, https://github.com/jaraco/jaraco.itertools.git,3229.339699074074,17,5,0,18.0,7.0,0.0,0.0 +java-atk-wrapper,0.561521276968394,1.24498345336031,0.204264214561703,https://salsa.debian.org/a11y-team/java-atk-wrapper, https://github.com/GNOME/java-atk-wrapper,5298.576481481481,11,11,0,8.0,3.0,0.0,0.0 +JDim,-1.06254556293429,0.959946482851881,-1.47215937444498,https://salsa.debian.org/debian/jdim, https://github.com/JDimproved/JDim.git,5782.991446759259,2,15,0,8.0,9.0,0.0,0.0 +jhead,-0.104696216854107,0.0128556712069062,-0.161995278111666,https://salsa.debian.org/reichel/jhead, https://github.com/Matthias-Wandel/jhead,974.1013078703704,4,13,0,10.0,49.0,0.0,0.0 +jinja2-time,-0.469855593594599,1.15700255667956,-0.765624870746036,https://salsa.debian.org/python-team/packages/jinja2-time, https://github.com/hackebrot/jinja2-time,2112.113865740741,0,3,0,2.0,20.0,0.0,0.0 +jitterdebugger,-2.34850289021288,-0.153305583740891,-2.78597412958911,https://salsa.debian.org/debian/jitterdebugger, https://github.com/igaw/jitterdebugger.git,1214.2022916666667,8,3,0,9.0,12.0,0.0,0.0 +jitterentropy-rngd,-1.05689833744364,-0.269418208237385,-1.18678360666823,https://salsa.debian.org/debian/jitterentropy-rngd, https://github.com/smuellerDD/jitterentropy-rngd,2267.9794675925928,9,1,0,10.0,33.0,0.0,0.0 +jmxetric,-2.90173269580308,-0.736327467665169,-3.32435528351605,https://github.com/ganglia/jmxetric,https://github.com/ganglia/jmxetric,2292.7484027777778,0,9,0,5.0,14.0,0.0,0.0 +jp2a,0.90449830665757,3.53924486148421,-0.035152028233776,https://salsa.debian.org/debian/jp2a, https://github.com/Talinx/jp2a,2190.7298032407407,3,4,0,6.0,11.0,0.0,0.0 +jupyter-sphinx-theme,-0.409104944658621,-0.0453166630361136,-0.489960530338634,https://salsa.debian.org/python-team/packages/jupyter-sphinx-theme, https://github.com/jupyter/jupyter-sphinx-theme,1834.3539467592595,2,32,0,24.0,12.0,0.0,0.0 +kamcli,-4.77863888246194,-2.41825417083059,-5.41794032912643,https://salsa.debian.org/pkg-voip-team/kamcli/, https://github.com/kamailio/kamcli,3121.915613425926,1,5,0,5.0,8.0,0.0,0.0 +kamerka,0.874312432154536,3.7857646392802,-0.131221834186747,http://github.com/dos1/kamerka,http://github.com/dos1/kamerka,2873.9879282407405,7,12,1,0.0,0.0,0.0,0.0 +debian-karlyriceditor,-0.114559294607774,2.74446814581886,-1.06888085948574,https://github.com/martin-steghoefer/debian-karlyriceditor,https://github.com/martin-steghoefer/debian-karlyriceditor,1746.032951388889,1,1,0,2.0,0.0,0.0,0.0 +kbtin,-0.288549712057774,1.24720454478505,-0.639846297022434,https://github.com/kilobyte/kbtin/tree/debian,https://github.com/kilobyte/kbtin,5761.034421296296,1,4,0,3.0,7.0,0.0,0.0 +kcemu-debian,-1.54653182143857,-0.396554760130113,-1.84525690547919,https://github.com/glaubitz/kcemu-debian,https://github.com/glaubitz/kcemu-debian,4222.827384259259,2,2,0,1.0,0.0,0.0,0.0 +kchmviewer,0.93820662178197,2.37580504033689,0.261336739546184,https://salsa.debian.org/qt-kde-team/extras/kchmviewer, https://github.com/gyunaev/kchmviewer,2255.6306481481483,1,6,0,4.0,23.0,0.0,0.0 +kcmsystemd-debian,0.759962900165511,3.93884947872597,-0.157727067888915,https://github.com/shsorbom/kcmsystemd-debian.git,https://github.com/shsorbom/kcmsystemd-debian.git,684.1522685185186,1,12,0,8.0,3.0,0.0,0.0 +keychain,1.09333931055728,2.27523860593191,0.436036226574602,https://salsa.debian.org/debian/keychain, https://github.com/funtoo/keychain,3125.510335648148,23,18,0,32.0,53.0,0.0,0.0 +khard,0.0842088928565309,2.53505362152663,-0.577783913713889,https://salsa.debian.org/python-team/packages/khard, https://github.com/lucc/khard,3364.343252314815,16,20,1,32.0,41.0,0.0,0.0 +kim-api,-0.84238574718087,1.43936931025803,-1.29131340105252,https://salsa.debian.org/science-team/kim-api, https://github.com/openkim/kim-api,4210.4546527777775,1,26,1,10.0,24.0,0.0,1.0 +kindleclip,-0.897428336753415,0.95694298072959,-1.34493936657523,https://github.com/gwolf/kindleclip,https://github.com/gwolf/kindleclip,1841.0025925925927,0,1,0,1.0,7.0,0.0,0.0 +javadev,-0.406165740995511,0.763204212274886,-0.700075074205343,https://salsa.debian.org/med-team/king, https://github.com/rlabduke/javadev.git,5017.593321759259,0,15,0,1.0,3.0,0.0,0.0 +kismet-debian,1.93354168906184,2.95707792512029,1.27565983236249,https://github.com/andrikos/kismet-debian,https://github.com/andrikos/kismet-debian,1415.5860300925926,0,1,0,1.0,0.0,0.0,0.0 +clj-kitchensink,-0.603912685759974,2.58491383360333,-1.56003564470341,https://salsa.debian.org/clojure-team/kitchensink-clojure, https://github.com/puppetlabs/clj-kitchensink.git,3697.849513888889,12,47,0,34.0,0.0,0.0,0.0 +klatexformula_debian,-0.260216607100692,0.570546910004265,-0.533087067152199,https://github.com/TobiasWinchen/klatexformula_debian,https://github.com/TobiasWinchen/klatexformula_debian,3554.8463541666665,0,6,0,3.0,1.0,0.0,0.0 +debian-ksmtuned,0.646860672362004,3.79046478818789,-0.316952623223276,https://github.com/bzed/debian-ksmtuned,https://github.com/bzed/debian-ksmtuned,2027.7201157407408,1,1,0,2.0,2.0,0.0,0.0 +kylin-burner,0.589186392716584,3.70026389459128,-0.323169363713414,https://github.com/ukui/kylin-burner,https://github.com/ukui/kylin-burner,1294.0143055555557,2,9,0,4.0,7.0,0.0,0.0 +kylin-display-switch,-1.73669784855691,1.72525864535503,-2.55888479295058,https://github.com/ukui/kylin-display-switch,https://github.com/ukui/kylin-display-switch,1387.1396296296296,4,11,0,10.0,8.0,0.0,0.0 +lablgtk-extras,-0.875622819527657,2.0634481167041,-1.81863867107358,https://salsa.debian.org/ocaml-team/lablgtk-extras, https://github.com/zoggy/lablgtk-extras.git,3792.513993055556,0,3,0,1.0,2.0,0.0,0.0 +labltk,-0.149699500232681,2.0785630826913,-0.594072233009189,https://salsa.debian.org/ocaml-team/labltk, https://github.com/garrigue/labltk.git,3339.163726851852,1,3,0,3.0,27.0,0.0,0.0 +laby,1.66559486704987,5.31988652273022,0.363489103578681,https://salsa.debian.org/ocaml-team/laby, https://github.com/sgimenez/laby.git,2556.982488425926,11,12,0,15.0,44.0,0.0,7.0 +coffee,-0.808406208185641,0.153961816122418,-0.967422887806145,https://salsa.debian.org/debian/latex-coffee-stains, https://github.com/Echsecutor/coffee,1954.8484027777777,1,7,0,3.0,2.0,0.0,0.0 +latexmk,2.31421691584301,4.88702496788656,1.18951476263909,https://github.com/debian-tex/latexmk,https://github.com/debian-tex/latexmk,1865.2669907407408,3,7,0,5.0,3.0,0.0,0.0 +latexml,0.54261846305742,2.96554000638401,-0.327187748398835,https://github.com/debian-tex/latexml,https://github.com/debian-tex/latexml,2055.920833333333,2,6,0,4.0,1.0,0.0,0.0 +pkg-lava-tool,-1.55531712907973,-0.409262776090778,-1.88250714100602,https://github.com/Linaro/pkg-lava-tool,https://github.com/Linaro/pkg-lava-tool,2892.9631481481483,0,21,0,7.0,2.0,0.0,0.0 +pkg-lavapdu,-1.36019013800191,0.657602704230426,-1.96606438025235,https://github.com/Linaro/pkg-lavapdu,https://github.com/Linaro/pkg-lavapdu,1898.0415972222224,9,22,0,16.0,6.0,0.0,0.0 +lazyarray,-1.69308762567003,1.50971549729651,-2.52626040435176,https://salsa.debian.org/science-team/lazyarray, https://github.com/NeuralEnsemble/lazyarray,3518.1808333333333,0,8,0,4.0,5.0,0.0,0.0 +lbzip2,0.455341312482129,1.92068726890908,-0.0826154573108765,https://github.com/kjn/lbzip2/tree/debian,https://github.com/kjn/lbzip2,2710.187037037037,0,3,0,1.0,4.0,0.0,1.0 +lcdf-typetools,0.58507577130595,1.66109971662088,0.0976153045151779,https://salsa.debian.org/fonts-team/lcdf-typetools, https://github.com/kohler/lcdf-typetools.git,5649.369733796297,4,5,0,6.0,27.0,0.0,0.0 +acme-poe-knee,-1.84449687364852,-0.737744175866493,-2.06614662838924,https://salsa.debian.org/perl-team/modules/packages/libacme-poe-knee-perl, https://github.com/jib/acme-poe-knee.git,0.0,0,1,0,1.0,0.0,0.0,0.0 +Alien-SDL,-0.0977796475509862,0.352980875093779,-0.196993100241036,https://salsa.debian.org/perl-team/modules/packages/libalien-sdl-perl, https://github.com/PerlGameDev/Alien-SDL.git,2024.7772222222225,0,15,0,7.0,10.0,0.0,0.0 +ambix,-0.289176138137127,1.59564396027712,-0.687016111902386,https://salsa.debian.org/multimedia-team/libambix, https://github.com/iem-projects/ambix.git,2332.8963194444445,2,15,0,3.0,2.0,0.0,0.0 +apache-singleton,-1.49187580345858,1.06305630921166,-2.24278252148668,https://salsa.debian.org/perl-team/modules/packages/libapache-singleton-perl, https://github.com/mschout/apache-singleton.git,2808.970277777778,2,1,0,2.0,0.0,0.0,0.0 +mod_authnz_pam,-0.171493579444976,2.2098425672121,-0.807482786059824,https://salsa.debian.org/freeipa-team/mod-authnz-pam, https://github.com/adelton/mod_authnz_pam.git,3451.97412037037,6,1,0,5.0,17.0,0.0,0.0 +App-CPANTS-Lint,-0.210887319557571,3.00227103174808,-1.19316653911583,https://salsa.debian.org/perl-team/modules/packages/libapp-cpants-lint-perl, https://github.com/charsbar/App-CPANTS-Lint.git,177.50917824074074,0,3,0,3.0,4.0,0.0,0.0 +p5-app-perlrdf-command-query,-2.51957168210821,-0.172808532499257,-3.00600909784156,https://salsa.debian.org/perl-team/modules/packages/libapp-perlrdf-command-query-perl, https://github.com/tobyink/p5-app-perlrdf-command-query,786.4794675925926,0,1,0,1.0,1.0,0.0,0.0 +Archive-Ar,-0.71531738452492,1.42189925112464,-1.42620083593273,https://salsa.debian.org/perl-team/modules/packages/libarchive-ar-perl, https://github.com/jbazik/Archive-Ar.git,1734.3291435185183,1,5,0,2.0,4.0,0.0,0.0 +libaria,-0.428707675191208,2.53338676919594,-1.5521033494237,https://github.com/jksrecko/libaria,https://github.com/jksrecko/libaria,1255.0196875,1,2,0,2.0,3.0,0.0,0.0 +perl-Array-Iterator,-1.15205088514643,1.00621865951028,-1.58992109441508,https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl, https://github.com/perlancar/perl-Array-Iterator.git,4456.128819444444,1,16,0,6.0,7.0,0.0,0.0 +Astro-FITS-CFITSIO,-0.284600425980382,1.07282475745656,-0.745324073043926,https://salsa.debian.org/perl-team/modules/packages/libastro-fits-cfitsio-perl, https://github.com/pratzlaff/Astro-FITS-CFITSIO,41.81601851851852,1,3,0,2.0,1.0,0.0,0.0 +AtomBus,-2.91849755028402,-0.982392531095765,-3.31825175924226,https://salsa.debian.org/perl-team/modules/packages/libatombus-perl, https://github.com/ironcamel/AtomBus.git,574.4602777777778,0,2,0,2.0,4.0,0.0,0.0 +p5-atteanx-compatibility-trine,-5.22135593701404,-3.80318807546455,-5.48633171256616,https://salsa.debian.org/perl-team/modules/packages/libatteanx-compatibility-trine-perl, https://github.com/kjetilk/p5-atteanx-compatibility-trine.git,174.84822916666667,0,1,0,2.0,4.0,0.0,0.0 +atteanx-endpoint,-5.05245814008373,-2.96367698752262,-5.47981100244117,https://salsa.debian.org/perl-team/modules/packages/libatteanx-endpoint-perl, https://github.com/kasei/atteanx-endpoint.git,581.8788078703703,0,3,0,2.0,1.0,0.0,0.0 +p5-atteanx-store-sparql,-3.65476325026021,-1.11409279227118,-4.30123236800764,https://salsa.debian.org/perl-team/modules/packages/libatteanx-store-sparql-perl, https://github.com/kjetilk/p5-atteanx-store-sparql.git,1578.1186458333334,1,3,0,4.0,5.0,0.0,0.0 +perl-Authen-Captcha,-0.818923462273046,0.262039817002478,-1.09025276036136,https://salsa.debian.org/perl-team/modules/packages/libauthen-captcha-perl, https://github.com/lkundrak/perl-Authen-Captcha.git,604.0063194444444,4,2,0,4.0,1.0,0.0,0.0 +B-Hooks-OP-Check,0.626322505912957,3.42503431358663,-0.0183739613238044,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-op-check-perl, https://github.com/karenetheridge/B-Hooks-OP-Check,4225.852743055556,1,3,0,3.0,0.0,0.0,0.0 +B-Hooks-Parser,-1.17250550970678,-0.0976957026841385,-1.34187041612142,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-parser-perl, https://github.com/karenetheridge/B-Hooks-Parser.git,3844.972962962963,4,3,0,6.0,6.0,0.0,0.0 +b-utils,-0.223357706433193,1.28995519192297,-0.554196127235344,https://salsa.debian.org/perl-team/modules/packages/libb-utils-perl, https://github.com/jbenjore/b-utils.git,1697.3214351851852,0,9,0,2.0,12.0,0.0,0.0 +libb2,0.434492648437129,2.40595874241059,-0.0945466725319232,https://salsa.debian.org/debian/libb2, https://github.com/BLAKE2/libb2.git,2769.1435185185187,5,14,0,15.0,43.0,0.0,0.0 +backuppc-xs,0.0682740706788018,4.01112170792808,-0.993297530938372,https://salsa.debian.org/debian/libbackuppc-xs-perl, https://github.com/backuppc/backuppc-xs.git,1496.3014004629629,2,5,0,2.0,11.0,0.0,0.0 +libbase58,-0.389939172071052,2.46800026126513,-1.14873224026754,https://salsa.debian.org/debian/libbase58, https://github.com/luke-jr/libbase58,2238.1648148148147,3,7,0,8.0,0.0,0.0,0.0 +libbde,0.371557995740405,2.35314653128062,-0.26791692513328,https://salsa.debian.org/pkg-security-team/libbde, https://github.com/libyal/libbde,2546.627939814815,2,1,0,3.0,54.0,0.0,2.0 +BerkeleyDB,0.0941918810204488,0.610418765724799,-0.0890236718572083,https://salsa.debian.org/md/libberkeleydb-perl, https://github.com/pmqs/BerkeleyDB.git,5644.912708333333,1,4,0,3.0,5.0,0.0,0.0 +bio-alignio-stockholm,-4.98359309327353,-2.63492488806894,-5.47134285585201,https://salsa.debian.org/med-team/libbio-alignio-stockholm-perl, https://github.com/bioperl/bio-alignio-stockholm.git,10.219930555555557,0,2,0,2.0,0.0,0.0,0.0 +bio-cluster,-0.799786679945149,1.44017702946909,-1.32146786939763,https://salsa.debian.org/med-team/libbio-cluster-perl, https://github.com/bioperl/bio-cluster.git,7.36181712962963,0,2,0,2.0,2.0,0.0,0.0 +bio-db-embl,-3.9031050099171,-1.61332024209617,-4.34259364321851,https://salsa.debian.org/med-team/libbio-db-embl-perl, https://github.com/bioperl/bio-db-embl.git,156.30994212962963,0,2,0,2.0,2.0,0.0,0.0 +bioparser,-1.08373202424909,1.81606023628075,-1.76182554973011,https://salsa.debian.org/med-team/libbioparser-dev, https://github.com/rvaser/bioparser,2526.044467592593,2,4,0,2.0,7.0,0.0,0.0 +bot-training,-3.27507453363212,-1.12810114994616,-3.74062506514963,https://salsa.debian.org/perl-team/modules/packages/libbot-training-perl, https://github.com/avar/bot-training.git,3166.806180555556,0,2,0,2.0,3.0,0.0,0.0 +bpp-core,-0.305508300184024,1.34277738657172,-0.926682080336262,https://salsa.debian.org/med-team/libbpp-core, https://github.com/BioPP/bpp-core,4797.182592592592,3,24,0,9.0,13.0,0.0,0.0 +bpp-phyl,-0.690831866570964,0.510825623765991,-1.09879198049711,https://salsa.debian.org/med-team/libbpp-phyl, https://github.com/BioPP/bpp-phyl.git,5775.35337962963,2,40,0,11.0,26.0,0.0,0.0 +bpp-phyl-omics,-0.359895885705015,2.06352724748729,-1.10739933873049,https://salsa.debian.org/med-team/libbpp-phyl-omics, https://github.com/BioPP/bpp-phyl-omics.git,4025.941504629629,0,9,0,3.0,3.0,0.0,0.0 +bpp-popgen,-0.52715335068207,1.12516828093041,-1.10423338211461,https://salsa.debian.org/med-team/libbpp-popgen, https://github.com/BioPP/bpp-popgen,5514.957303240741,1,13,0,4.0,2.0,0.0,0.0 +bpp-qt,-0.0541983728834032,2.88651489322735,-1.0203907927126,https://salsa.debian.org/med-team/libbpp-qt, https://github.com/BioPP/bpp-qt,5024.875405092593,0,12,0,3.0,1.0,0.0,0.0 +bpp-raa,-0.469533407646168,2.42360881452285,-1.43715046438339,https://salsa.debian.org/med-team/libbpp-raa, https://github.com/BioPP/bpp-raa,5066.236296296296,0,17,0,4.0,1.0,0.0,0.0 +bpp-seq,-0.7192518957179,0.639487538052811,-1.12339073370082,https://salsa.debian.org/med-team/libbpp-seq, https://github.com/BioPP/bpp-seq,5747.750347222222,1,22,0,5.0,7.0,0.0,0.0 +bpp-seq-omics,-0.456933536859396,1.1913544638617,-1.06020960411164,https://salsa.debian.org/med-team/libbpp-seq-omics, https://github.com/BioPP/bpp-seq-omics.git,4806.927708333334,0,14,0,4.0,5.0,0.0,0.0 +bultitude,-1.47739279941611,1.11637729354484,-2.10734817800803,https://salsa.debian.org/clojure-team/libbultitude-clojure, https://github.com/TimoFreiberg/bultitude.git,2812.2660300925927,1,20,0,15.0,5.0,0.0,0.0 +Business-EDI,-3.91445005775242,-1.66062729378522,-4.34443150895097,https://salsa.debian.org/perl-team/modules/packages/libbusiness-edi-perl, https://github.com/atz/Business-EDI.git,1031.8625925925926,0,2,0,1.0,2.0,0.0,0.0 +business-isbn,0.445633593785377,2.26446843527189,-0.0741413599516852,https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl, https://github.com/briandfoy/business-isbn.git,5456.629849537037,2,8,0,6.0,17.0,0.0,0.0 +libcaca,1.71582611475539,2.89520234793643,1.00943954206487,https://salsa.debian.org/multimedia-team/libcaca, https://github.com/cacalabs/libcaca.git,5032.472719907408,5,18,0,13.0,72.0,0.0,0.0 +cache-historical-perl,-2.39546917813327,0.151997287990525,-2.98535466833354,https://salsa.debian.org/perl-team/modules/packages/libcache-historical-perl, https://github.com/mschilli/cache-historical-perl.git,1172.6421064814815,1,1,0,2.0,0.0,0.0,0.0 +Cache-Memcached-Fast,0.499032957628515,3.91729136130268,-0.435081154087133,https://salsa.debian.org/perl-team/modules/packages/libcache-memcached-fast-perl, https://github.com/JRaspass/Cache-Memcached-Fast.git,5347.568032407407,1,11,0,8.0,23.0,0.0,0.0 +libcap-ng,0.839670026529806,1.68148066895671,0.38961988470801,https://salsa.debian.org/debian/libcap-ng, https://github.com/stevegrubb/libcap-ng,2330.445636574074,16,5,0,19.0,22.0,0.0,0.0 +libcapi20,0.836881386149714,2.39310410592819,0.20317721975515,https://github.com/leggewie-DM/libcapi20,https://github.com/leggewie-DM/libcapi20,1469.2789236111112,0,1,0,1.0,1.0,0.0,0.0 +Catalyst-Authentication-Credential-HTTP,-0.544586959051202,1.72372401732191,-0.984891698566424,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-authentication-credential-http-perl, https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,3862.908715277778,0,7,0,7.0,0.0,0.0,0.0 +catalyst-dispatch-regex,-0.260617385620325,1.84559522516076,-0.690893343307126,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-dispatchtype-regex-perl, https://github.com/mvgrimes/catalyst-dispatch-regex.git,733.893287037037,0,2,0,2.0,3.0,0.0,0.0 +Catalyst-Model-DBIC-Schema,0.0213319889022422,2.94093546704044,-0.716478592326738,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl, https://github.com/perl-catalyst/Catalyst-Model-DBIC-Schema,5560.308182870371,1,18,0,13.0,3.0,0.0,0.0 +Catmandu-Atom,-2.04489225214707,-0.0901925189999215,-2.46895081507721,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-atom-perl, https://github.com/LibreCat/Catmandu-Atom.git,2313.0128472222223,0,6,0,5.0,2.0,0.0,0.0 +Catmandu-FileStore,-4.67516034270954,-1.94167863581073,-5.40675422276224,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-filestore-perl, https://github.com/LibreCat/Catmandu-FileStore.git,1680.9195138888888,0,7,0,6.0,8.0,0.0,0.0 +Catmandu-Importer-getJSON,-1.1909213365812,1.10956530068731,-1.91384748855888,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-importer-getjson-perl, https://github.com/nichtich/Catmandu-Importer-getJSON.git,2053.850451388889,2,5,0,5.0,11.0,0.0,0.0 +Catmandu-MAB2,-2.19951681724105,-0.597061273551498,-2.59576371835463,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-mab2-perl, https://github.com/jorol/Catmandu-MAB2.git,2364.960335648148,0,4,0,2.0,7.0,0.0,0.0 +Catmandu-RDF,-1.56740048472914,0.787312450154127,-2.11566994828594,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-rdf-perl, https://github.com/LibreCat/Catmandu-RDF.git,3436.103472222222,1,7,0,4.0,19.0,0.0,1.0 +Catmandu-SRU,-1.63474446252057,0.78564739371543,-2.21316911400086,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-sru-perl, https://github.com/LibreCat/Catmandu-SRU.git,3182.483275462963,4,14,0,8.0,13.0,0.0,0.0 +Catmandu-Store-MongoDB,-2.1900265393602,0.0427518930586047,-2.61767130429254,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-store-mongodb-perl, https://github.com/LibreCat/Catmandu-Store-MongoDB.git,3318.004826388889,0,6,0,4.0,6.0,0.0,0.0 +Catmandu-Wikidata,-1.87511712583925,0.710680555891489,-2.45456938930886,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-wikidata-perl, https://github.com/nichtich/Catmandu-Wikidata.git,3124.955462962963,0,3,0,1.0,4.0,0.0,1.0 +cgi-application-server,-1.35036849249102,1.11634713627467,-2.06065945310525,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-server-perl, https://github.com/rjbs/cgi-application-server.git,2084.016111111111,0,3,0,2.0,2.0,0.0,0.0 +CGI-Expand,-0.599511907686873,1.6030547825179,-1.08677298424467,https://salsa.debian.org/perl-team/modules/packages/libcgi-expand-perl, https://github.com/bowman/CGI-Expand.git,1724.5804629629629,2,5,0,2.0,1.0,0.0,0.0 +CGI-Session-ExpireSessions,-2.14112586282376,-0.617520504117339,-2.47229079355589,https://salsa.debian.org/perl-team/modules/packages/libcgi-session-expiresessions-perl, https://github.com/ronsavage/CGI-Session-ExpireSessions,152.66833333333332,0,1,0,1.0,2.0,0.0,0.0 +Chatbot-Eliza,-1.31449350426372,1.236256832299,-1.89655576545199,https://salsa.debian.org/perl-team/modules/packages/libchatbot-eliza-perl, https://github.com/ggruen/Chatbot-Eliza,2872.7296875,1,4,0,2.0,0.0,0.0,0.0 +chi-driver-redis,-1.05628319308502,1.25009921134522,-1.52730469888866,https://salsa.debian.org/perl-team/modules/packages/libchi-driver-redis-perl, https://github.com/rentrak/chi-driver-redis,2250.50630787037,1,6,0,4.0,5.0,0.0,0.0 +libcitygml,-1.08987563239087,0.0704593831664847,-1.42266032798209,https://salsa.debian.org/debian-gis-team/libcitygml, https://github.com/jklimke/libcitygml.git,4063.004247685185,3,34,0,18.0,41.0,0.0,0.0 +class-c3-adopt-next,-0.163979536958511,2.01506094104541,-0.601255754329458,https://salsa.debian.org/perl-team/modules/packages/libclass-c3-adopt-next-perl, https://github.com/rafl/class-c3-adopt-next.git,539.1778587962963,0,4,0,2.0,0.0,0.0,0.0 +Class-Container,-0.0506280246429037,1.66438436343495,-0.403669563546539,https://salsa.debian.org/perl-team/modules/packages/libclass-container-perl, https://github.com/kenahoo/Class-Container.git,1.6649189814814815,1,3,0,3.0,3.0,0.0,0.0 +class-insideout,-0.678352344690154,1.04541323920504,-0.97115967310205,https://salsa.debian.org/perl-team/modules/packages/libclass-insideout-perl, https://github.com/dagolden/class-insideout.git,3195.8285300925927,0,3,0,2.0,8.0,0.0,0.0 +class-meta,-2.15881558350204,0.14075896482123,-2.6165631942791,https://salsa.debian.org/perl-team/modules/packages/libclass-meta-perl, https://github.com/theory/class-meta.git,2689.2590856481484,0,3,0,2.0,3.0,0.0,0.0 +class-refresh,-1.6945342202961,0.520783525916502,-2.14753434399534,https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl, https://github.com/doy/class-refresh.git,1057.1042708333334,0,3,0,3.0,6.0,0.0,0.0 +libcleri,-2.6428568290907,0.0499127530635172,-3.28649977004622,https://salsa.debian.org/siridb-team/libcleri, https://github.com/cesbit/libcleri.git,2711.969259259259,2,9,0,4.0,7.0,0.0,0.0 +config-auto,0.233385477718996,2.06610472361022,-0.239618471601792,https://salsa.debian.org/perl-team/modules/packages/libconfig-auto-perl, https://github.com/jib/config-auto.git,2192.371273148148,2,3,0,1.0,2.0,0.0,0.0 +Config-Identity,-1.129265412311,1.04574522231088,-1.56242377687895,https://salsa.debian.org/perl-team/modules/packages/libconfig-identity-perl, https://github.com/dagolden/Config-Identity.git,2902.57318287037,0,4,0,3.0,2.0,0.0,0.0 +perl-Convert-ASN1,0.419794898053812,1.94729964801752,-0.0317401556640202,https://salsa.debian.org/perl-team/modules/packages/libconvert-asn1-perl, https://github.com/gbarr/perl-Convert-ASN1.git,5538.404745370371,6,11,0,13.0,39.0,0.0,0.0 +convert-binhex,0.529709039060214,2.61582830552676,-0.0231792705203415,https://salsa.debian.org/perl-team/modules/packages/libconvert-binhex-perl, https://github.com/stephenenelson/convert-binhex.git,816.5657407407407,0,2,0,2.0,2.0,0.0,0.0 +CPAN-DistnameInfo,0.252239952864869,2.02125361505163,-0.171465155423167,https://salsa.debian.org/perl-team/modules/packages/libcpan-distnameinfo-perl, https://github.com/gbarr/CPAN-DistnameInfo.git,2596.9826157407406,4,4,0,6.0,11.0,0.0,0.0 +perl-crypt-cracklib,-0.65435420358181,2.05698864183903,-1.41052925856148,https://salsa.debian.org/perl-team/modules/packages/libcrypt-cracklib-perl, https://github.com/dsully/perl-crypt-cracklib.git,1122.667164351852,0,2,0,1.0,5.0,0.0,0.0 +Crypt-DH-GMP,-0.252110483547694,0.859231572492236,-0.460005687711896,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-gmp-perl, https://github.com/lestrrat/Crypt-DH-GMP.git,1507.2044791666667,0,3,0,2.0,2.0,0.0,0.0 +crypt-dh,-0.350596725004508,1.42268759936621,-0.742243187014457,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-perl, https://github.com/wchristian/crypt-dh.git,6.734872685185185,0,3,0,2.0,0.0,0.0,0.0 +perl-Crypt-OpenSSL-Bignum,0.573671133014678,2.81767307204475,-0.0231679045971852,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-bignum-perl, https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git,1031.4781134259258,1,6,0,3.0,7.0,0.0,0.0 +perl-crypt-openssl-pkcs10,-0.343109822890731,2.50779094362159,-1.11358892422623,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-pkcs10-perl, https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git,84.9646875,1,2,0,1.0,1.0,0.0,0.0 +Crypt-OpenSSL-RSA,0.468502078925036,2.48091743646101,-0.0400198202668383,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-rsa-perl, https://github.com/toddr/Crypt-OpenSSL-RSA.git,4592.847384259259,12,12,0,16.0,31.0,0.0,0.0 +crypt-saltedhash,-0.4905719307211,1.64024676105544,-0.934415329371285,https://salsa.debian.org/perl-team/modules/packages/libcrypt-saltedhash-perl, https://github.com/campus-explorer/crypt-saltedhash,137.03401620370371,2,4,0,4.0,7.0,0.0,0.0 +CSS-Tiny,-0.218715773814563,2.05468986638088,-0.96146265117124,https://salsa.debian.org/perl-team/modules/packages/libcss-tiny-perl, https://github.com/chorny/CSS-Tiny.git,2896.0719791666666,1,2,0,3.0,0.0,0.0,0.0 +libcue,1.32805273658989,4.56460981557363,0.252853490660642,https://salsa.debian.org/debian/libcue, https://github.com/lipnitsk/libcue,5295.136643518518,10,5,0,13.0,29.0,0.0,0.0 +libcypher-parser,-0.512286836062366,1.70433584305484,-0.950571479404257,https://github.com/cleishm/libcypher-parser,https://github.com/cleishm/libcypher-parser,2052.113113425926,4,8,0,4.0,34.0,0.0,1.0 +Dancer-Plugin-REST,-1.33219354498241,1.34672558198526,-1.94826239209436,https://salsa.debian.org/perl-team/modules/packages/libdancer-plugin-rest-perl, https://github.com/perldancer/Dancer-Plugin-REST.git,1451.9472800925926,1,5,0,2.0,4.0,0.0,0.0 +perl-Data-Alias,0.13786050485189,2.14863540110046,-0.59774663848673,https://salsa.debian.org/perl-team/modules/packages/libdata-alias-perl, https://github.com/mvduin/perl-Data-Alias,610.4551041666666,0,2,0,2.0,4.0,0.0,0.0 +Data-Dumper-Concise,0.266376219738567,2.5519999594901,-0.214468320591165,https://salsa.debian.org/perl-team/modules/packages/libdata-dumper-concise-perl, https://github.com/p5sagit/Data-Dumper-Concise,2778.042824074074,1,3,0,2.0,0.0,0.0,0.0 +Data-FormValidator,-0.45258754497388,1.18338314982585,-0.804155609034666,https://salsa.debian.org/perl-team/modules/packages/libdata-formvalidator-perl, https://github.com/dnmfarrell/Data-FormValidator.git,2189.7575578703704,3,6,0,6.0,10.0,0.0,0.0 +data-hal,-0.770858799752407,2.2387120211772,-1.72989030653014,https://salsa.debian.org/perl-team/modules/packages/libdata-hal-perl, https://github.com/sipwise/data-hal.git,3620.849722222222,0,13,0,10.0,4.0,0.0,0.0 +Data-OptList,0.475207897773845,2.78157274811564,-0.0271116591451956,https://salsa.debian.org/perl-team/modules/packages/libdata-optlist-perl, https://github.com/rjbs/Data-OptList.git,5253.301597222222,0,2,0,2.0,5.0,0.0,0.0 +data-phrasebook,-2.01734551847377,0.505391897753403,-2.5982578959812,https://salsa.debian.org/perl-team/modules/packages/libdata-phrasebook-perl, https://github.com/barbie/data-phrasebook.git,3782.0208333333335,0,1,0,1.0,0.0,0.0,0.0 +perl-database-dumptruck,-2.63547120163211,-0.0532919359770311,-3.28003114864831,https://salsa.debian.org/perl-team/modules/packages/libdatabase-dumptruck-perl, https://github.com/lkundrak/perl-database-dumptruck.git,85.85665509259259,0,1,0,1.0,1.0,0.0,0.0 +DateTime-Format-Mail,0.384147121548033,2.86153098635143,-0.176516925774215,https://salsa.debian.org/perl-team/modules/packages/libdatetime-format-mail-perl, https://github.com/book/DateTime-Format-Mail.git,809.9546875,2,1,0,3.0,7.0,0.0,0.0 +DBD-ODBC,-0.449258658863497,-0.364703919915002,-0.460569682754974,https://salsa.debian.org/perl-team/modules/packages/libdbd-odbc-perl, https://github.com/perl5-dbi/DBD-ODBC.git,4357.050034722222,1,12,0,8.0,22.0,0.0,0.0 +DBD-SQLite2,-0.224262645662366,0.859942918234476,-0.439189710062929,https://salsa.debian.org/perl-team/modules/packages/libdbd-sqlite2-perl, https://github.com/rurban/DBD-SQLite2,1683.3107175925925,3,5,0,1.0,0.0,0.0,0.0 +DBIx-Abstract,-0.766399669130522,0.986002005750937,-1.21681199680077,https://salsa.debian.org/perl-team/modules/packages/libdbix-abstract-perl, https://github.com/iarna/DBIx-Abstract.git,3028.229884259259,1,6,0,3.0,3.0,0.0,0.0 +dbix-class-schema-loader,0.89990218704414,3.27432627136939,-0.0171547790581848,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-schema-loader-perl, https://github.com/dbsrgits/dbix-class-schema-loader,5369.710428240741,13,29,0,32.0,33.0,0.0,0.0 +Debian-Copyright,0.0036003397421843,1.98259658529217,-0.556601221378198,https://salsa.debian.org/perl-team/modules/packages/libdebian-copyright-perl, https://github.com/periapt/Debian-Copyright.git,467.6439236111111,0,1,0,1.0,1.0,0.0,0.0 +Devel-bt,-0.592688876556296,2.1164194626675,-1.63740000907631,https://salsa.debian.org/perl-team/modules/packages/libdevel-bt-perl, http://github.com/rafl/Devel-bt,563.5733796296296,0,1,0,0.0,0.0,0.0,0.0 +Devel-Cycle,0.297571705512991,2.36286761372623,-0.168993723239249,https://salsa.debian.org/perl-team/modules/packages/libdevel-cycle-perl, https://github.com/lstein/Devel-Cycle.git,24.43947916666667,1,2,0,1.0,0.0,0.0,0.0 +devel-symdump,0.199576191193946,1.34056313934649,-0.0953876401382176,https://salsa.debian.org/debian/libdevel-symdump-perl, https://github.com/andk/devel-symdump,2899.582337962963,0,6,0,4.0,4.0,0.0,0.0 +Perl-Device-Cdio,-1.37044892859906,-0.77266816598082,-1.56986386541455,https://salsa.debian.org/perl-team/modules/packages/libdevice-cdio-perl, https://github.com/rocky/Perl-Device-Cdio.git,3711.374328703704,0,4,0,1.0,6.0,0.0,0.0 +directory-scratch,-0.357823412563771,3.29365450830587,-1.41078954620383,https://salsa.debian.org/perl-team/modules/packages/libdirectory-scratch-perl, https://github.com/bobtfish/directory-scratch.git,1951.386898148148,1,5,0,4.0,1.0,0.0,0.0 +p5-dist-inkt,-1.65279023959925,0.791052072723341,-2.14105439365199,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-perl, https://github.com/tobyink/p5-dist-inkt,2915.0334953703705,0,1,0,1.0,4.0,0.0,0.0 +p5-dist-inkt-role-test,-1.59420052729208,1.67834253175514,-2.40986098895479,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-role-test-perl, https://github.com/tobyink/p5-dist-inkt-role-test,0.0739467592592592,0,1,0,1.0,0.0,0.0,0.0 +dist-zilla-plugins-cjm,-0.713512093421909,1.91378513486864,-1.4906069541154,https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-plugins-cjm-perl, https://github.com/madsen/dist-zilla-plugins-cjm,3005.914583333333,0,4,0,4.0,10.0,0.0,0.0 +libdivsufsort,0.380281967565474,3.16393071678085,-0.250352894348317,https://salsa.debian.org/med-team/libdivsufsort, https://github.com/y-256/libdivsufsort.git,2687.775405092593,0,6,0,2.0,28.0,0.0,0.0 +libdogleg,-0.266710118406638,1.72454983506092,-0.671141966061006,https://salsa.debian.org/science-team/libdogleg, https://github.com/dkogan/libdogleg.git,4490.860775462963,0,5,0,2.0,1.0,0.0,0.0 +libeatmydata,0.37630008167934,1.13756083942558,0.0117248362272004,https://salsa.debian.org/debian/libeatmydata, https://github.com/stewartsmith/libeatmydata.git,5640.288402777778,11,12,0,16.0,27.0,0.0,0.0 +Email-MIME-CreateHTML,-0.598597254011203,0.939646451821147,-0.986646924334629,https://salsa.debian.org/perl-team/modules/packages/libemail-mime-createhtml-perl, https://github.com/vanstyn/Email-MIME-CreateHTML.git,1257.2075810185186,1,3,0,3.0,9.0,0.0,0.0 +end,-1.69522310014399,0.28599806094986,-2.1369126329462,https://salsa.debian.org/perl-team/modules/packages/libend-perl, https://github.com/Abigail/end.git,519.9620023148149,0,1,0,0.0,1.0,0.0,0.0 +libeot,0.423161778651438,2.67505498459498,-0.0161024184366224,https://salsa.debian.org/fonts-team/libeot, https://github.com/umanwizard/libeot.git,3660.845810185185,1,5,0,4.0,6.0,0.0,0.0 +eval-closure,0.372593106926558,2.60258253063066,-0.0711445028701896,https://salsa.debian.org/perl-team/modules/packages/libeval-closure-perl, https://github.com/doy/eval-closure.git,2047.9688310185184,1,4,0,5.0,11.0,0.0,0.0 +libevt,0.323158064550001,2.93880386185079,-0.346454351849185,https://salsa.debian.org/pkg-security-team/libevt, https://github.com/libyal/libevt,2794.588125,1,2,0,2.0,3.0,0.0,2.0 +libevtx,0.467904020555896,3.39412035752315,-0.312819654242962,https://salsa.debian.org/pkg-security-team/libevtx, https://github.com/libyal/libevtx,2794.5568055555555,0,1,0,1.0,24.0,0.0,2.0 +libeXaDrums,-1.5757657499677,0.465583492343728,-2.04715858021389,https://github.com/SpintroniK/libeXaDrums/tree/debian,https://github.com/SpintroniK/libeXaDrums,2888.0486342592594,2,6,0,3.0,6.0,0.0,0.0 +libexif-gtk,0.689902820789787,2.40945855479862,0.0374998073843081,https://salsa.debian.org/debian-phototools-team/libexif-gtk, https://github.com/libexif/libexif-gtk.git,5131.870740740741,2,5,0,6.0,4.0,0.0,0.0 +ExtUtils-CBuilder,-0.503646513449252,1.03449994745768,-0.986378757811456,https://salsa.debian.org/perl-team/modules/packages/libextutils-cbuilder-perl, https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder.git,4657.334675925926,8,12,0,11.0,12.0,0.0,0.0 +extutils-modulemaker,-1.62871770525338,0.494975147829164,-2.0632435210871,https://salsa.debian.org/perl-team/modules/packages/libextutils-modulemaker-perl, https://github.com/jkeenan/extutils-modulemaker.git,3844.1565972222224,0,2,0,1.0,4.0,0.0,0.0 +libfcgi-debian,2.40257909492813,4.86016916774602,1.24157296748068,https://github.com/tehnick/libfcgi-debian,https://github.com/tehnick/libfcgi-debian,1176.160451388889,0,1,0,1.0,1.0,0.0,0.0 +File-MimeInfo,1.31465824728545,3.14462338384238,0.477590629243755,https://salsa.debian.org/perl-team/modules/packages/libfile-mimeinfo-perl, https://github.com/mbeijen/File-MimeInfo.git,3834.7099189814817,10,12,0,18.0,50.0,0.0,0.0 +File-Modified,-0.14543119621438,1.40115857614676,-0.504112448898396,https://salsa.debian.org/perl-team/modules/packages/libfile-modified-perl, https://github.com/neilb/File-Modified,2145.0378472222224,1,2,0,1.0,0.0,0.0,0.0 +file-save-home,-1.80078184282679,0.360448766779334,-2.23762980034239,https://salsa.debian.org/perl-team/modules/packages/libfile-save-home-perl, https://github.com/jkeenan/file-save-home,1776.9554861111112,0,2,0,1.0,0.0,0.0,0.0 +File-Touch,0.0982847029607248,1.83362628207572,-0.256095919435532,https://salsa.debian.org/perl-team/modules/packages/libfile-touch-perl, https://github.com/neilb/File-Touch,4116.497048611112,1,3,0,2.0,3.0,0.0,0.0 +perl-File-Write-Rotate,-1.02965565727428,1.34590846292153,-1.50055666713275,https://salsa.debian.org/perl-team/modules/packages/libfile-write-rotate-perl, https://github.com/sharyanto/perl-File-Write-Rotate.git,3146.811388888889,0,17,0,5.0,6.0,0.0,0.0 +filehandle-unget,0.006382388461796,1.59403727039346,-0.275660120132887,https://salsa.debian.org/perl-team/modules/packages/libfilehandle-unget-perl, https://github.com/coppit/filehandle-unget.git,3647.096493055556,0,3,0,1.0,0.0,0.0,0.0 +Filesys-Notify-Simple,0.192457779636544,2.72358801313718,-0.246444055582868,https://salsa.debian.org/perl-team/modules/packages/libfilesys-notify-simple-perl, https://github.com/miyagawa/Filesys-Notify-Simple.git,4730.416481481481,0,13,0,9.0,27.0,0.0,0.0 +Filter,-0.255535639743574,0.0318054425186413,-0.307743574225788,https://salsa.debian.org/debian/libfilter-perl, https://github.com/rurban/Filter,4868.305486111111,5,12,0,11.0,13.0,0.0,0.0 +filter-template,-1.0581574356645,1.19033145952756,-1.57732486605528,https://salsa.debian.org/perl-team/modules/packages/libfilter-template-perl, https://github.com/rcaputo/filter-template,1475.562013888889,0,1,0,1.0,0.0,0.0,0.0 +libfixposix,-0.420611457701383,2.08913962281545,-0.980646791686086,https://salsa.debian.org/common-lisp-team/libfixposix, https://github.com/sionescu/libfixposix.git,4611.074537037037,9,4,0,10.0,24.0,0.0,0.0 +libfizmo,0.627328452133396,4.56921020590766,-0.487828541567491,https://github.com/chrender/libfizmo,https://github.com/chrender/libfizmo,4850.527395833334,1,7,0,3.0,3.0,0.0,0.0 +libfsntfs,0.331790789788397,2.82328509978561,-0.275189207603366,https://salsa.debian.org/pkg-security-team/libfsntfs, https://github.com/libyal/libfsntfs.git,3331.7044212962965,0,1,0,1.0,16.0,0.0,2.0 +libfte,-1.92682557271572,0.482897517427581,-2.55573996881726,https://github.com/kpdyer/libfte/tree/debian/unstable,https://github.com/kpdyer/libfte,519.2035763888889,0,6,1,3.0,6.0,0.0,0.0 +libfvde,0.956903500165177,4.51034102255231,-0.136541327675116,https://salsa.debian.org/pkg-security-team/libfvde, https://github.com/libyal/libfvde.git,3327.7584953703704,0,1,0,1.0,79.0,0.0,2.0 +libfwnt,0.467849319478135,3.45031754421071,-0.315591020305446,https://salsa.debian.org/pkg-security-team/libfwnt, https://github.com/libyal/libfwnt,3707.817083333333,2,1,0,3.0,9.0,0.0,2.0 +libfwsi,0.476745135518984,3.28246115681856,-0.324451907406893,https://salsa.debian.org/pkg-security-team/libfwsi, https://github.com/libyal/libfwsi.git,3356.517939814815,0,1,0,1.0,19.0,0.0,2.0 +gclib,-1.2540063751135,1.23935064340759,-1.79397930397421,https://salsa.debian.org/med-team/libgclib, https://github.com/gpertea/gclib,2782.2130555555555,2,2,0,3.0,11.0,0.0,0.0 +gdal-grass,0.178547049625118,2.12292907891647,-0.469838334134553,https://salsa.debian.org/debian-gis-team/gdal-grass, https://github.com/OSGeo/gdal-grass.git,695.4440625,6,4,0,13.0,3.0,0.0,0.0 +geo-google-mapobject,-0.873636438099119,1.4566987693908,-1.31398698076915,https://salsa.debian.org/perl-team/modules/packages/libgeo-google-mapobject-perl, https://github.com/periapt/geo-google-mapobject.git,50.64109953703704,0,1,0,1.0,1.0,0.0,0.0 +geoip-api-perl,-0.133611196143978,0.522308388905415,-0.297696092577808,https://salsa.debian.org/perl-team/modules/packages/libgeo-ip-perl, https://github.com/maxmind/geoip-api-perl.git,4739.876516203703,5,12,0,10.0,18.0,0.0,0.0 +git-pureperl,-0.927053139470002,0.744963626975721,-1.39019653031615,https://salsa.debian.org/perl-team/modules/packages/libgit-pureperl-perl, https://github.com/broquaint/git-pureperl.git,2866.3317824074074,3,22,0,14.0,6.0,0.0,0.0 +libgit2,0.742684346702617,1.48996278809533,0.311843826472492,https://salsa.debian.org/debian/libgit2, https://github.com/libgit2/libgit2.git,5520.89537037037,104,508,0,399.0,0.0,0.0,0.0 +gnupg-interface,0.161583038884558,0.739184756002484,-0.110459047620561,https://salsa.debian.org/perl-team/modules/packages/libgnupg-interface-perl, https://github.com/bestpractical/gnupg-interface.git,5505.203530092593,4,10,0,13.0,15.0,0.0,0.0 +Graph-D3,-2.01038793657804,0.581517663859652,-2.59231812459341,https://salsa.debian.org/perl-team/modules/packages/libgraph-d3-perl, https://github.com/shoheik/Graph-D3.git,1331.9675925925926,1,3,0,3.0,3.0,0.0,0.0 +Graph-ReadWrite,0.0013928295658517,2.59587383646985,-0.736153594207741,https://salsa.debian.org/perl-team/modules/packages/libgraph-readwrite-perl, https://github.com/neilb/Graph-ReadWrite.git,2428.8532986111118,0,5,0,3.0,3.0,0.0,0.0 +p5-graph-writer-dsm,-2.83596805730607,-0.700752628701255,-3.30757825947649,https://salsa.debian.org/perl-team/modules/packages/libgraph-writer-dsm-perl, https://github.com/joenio/p5-graph-writer-dsm.git,1743.0827777777777,0,2,0,1.0,0.0,0.0,0.0 +Graphics-ColorNames-WWW,-0.88460985143656,1.11849009005437,-1.36747130387901,https://salsa.debian.org/perl-team/modules/packages/libgraphics-colornames-www-perl, https://github.com/cfaerber/Graphics-ColorNames-WWW,3881.265960648148,0,3,0,1.0,0.0,0.0,0.0 +GraphViz,-0.0292832904495931,0.874891106216712,-0.213177080658366,https://salsa.debian.org/perl-team/modules/packages/libgraphviz-perl, https://github.com/ronsavage/GraphViz.git,4149.564768518519,0,8,0,6.0,5.0,0.0,0.0 +libgtextutils,0.18107998983877,2.31422265375572,-0.633302611667991,https://salsa.debian.org/med-team/libgtextutils, https://github.com/agordon/libgtextutils.git,1379.9043171296296,1,2,0,1.0,21.0,0.0,0.0 +gzstream,-0.460427174775033,1.0639003315321,-0.728042296265996,https://salsa.debian.org/med-team/libgzstream, https://github.com/kanedo/gzstream.git,1271.815011574074,0,2,0,1.0,4.0,0.0,0.0 +perl-html-stripscripts,-0.360680107455353,1.79508020243341,-0.787087963735414,https://salsa.debian.org/perl-team/modules/packages/libhtml-stripscripts-perl, https://github.com/clintongormley/perl-html-stripscripts.git,634.9694444444444,1,1,0,2.0,4.0,0.0,0.0 +html-template,0.262399831160294,1.27876100434538,-0.0168521747450782,https://salsa.debian.org/perl-team/modules/packages/libhtml-template-perl, https://github.com/mpeters/html-template.git,2360.5546296296297,1,10,0,6.0,17.0,0.0,0.0 +HTML-Tiny,-0.274204964539277,2.11584952732761,-0.803423421637951,https://salsa.debian.org/perl-team/modules/packages/libhtml-tiny-perl, https://github.com/ap/HTML-Tiny.git,5143.924953703704,0,2,0,2.0,0.0,0.0,0.0 +HTTP-Message,1.22405742344076,4.08227207317498,0.277166760595612,https://salsa.debian.org/perl-team/modules/packages/libhttp-message-perl, https://github.com/libwww-perl/HTTP-Message.git,5655.126851851852,76,18,0,56.0,26.0,0.0,1.0 +HTTP-Proxy,-0.0949217120593665,1.2455203169444,-0.635012392432945,https://salsa.debian.org/perl-team/modules/packages/libhttp-proxy-perl, https://github.com/book/HTTP-Proxy.git,4041.041539351852,7,1,0,8.0,15.0,0.0,0.0 +http-server-simple,0.823119522613044,2.85274649929505,0.0853932498155173,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-perl, https://github.com/bestpractical/http-server-simple,2910.7674074074075,4,11,0,11.0,4.0,0.0,0.0 +HTTP-Server-Simple-PSGI,-0.197712609482771,1.91803650261317,-0.628530926125277,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-psgi-perl, https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git,1409.5210763888888,0,2,0,2.0,3.0,0.0,0.0 +libhugetlbfs,-0.658388726093722,1.40818106083284,-1.17912709896999,https://github.com/punitagrawal/libhugetlbfs.git,https://github.com/punitagrawal/libhugetlbfs.git,2039.1172800925929,1,1,0,2.0,1.0,0.0,0.0 +libics,-1.54875714770234,-0.797716011379056,-1.72373430156596,https://salsa.debian.org/med-team/libics, https://github.com/svi-opensource/libics,4511.101527777778,4,15,0,9.0,13.0,0.0,0.0 +Net-IDN-Encode,0.0249334358955235,3.97227604118717,-1.06592890954293,https://salsa.debian.org/perl-team/modules/packages/libidna-punycode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.639594907408,6,7,0,3.0,12.0,0.0,0.0 +iksemel,1.40567067167507,3.301003501109,0.531380273002264,https://salsa.debian.org/debian/libiksemel, https://github.com/meduketto/iksemel,2285.3264351851853,0,3,0,0.0,15.0,0.0,0.0 +p5-image-exif,-0.356621075413228,0.802761541852296,-0.610345556971281,https://salsa.debian.org/perl-team/modules/packages/libimage-exif-perl, https://github.com/arc/p5-image-exif.git,101.2955787037037,2,2,0,1.0,1.0,0.0,0.0 +Image-MetaData-JPEG,0.178247493087967,2.80157895707243,-0.571723996659595,https://salsa.debian.org/perl-team/modules/packages/libimage-metadata-jpeg-perl, https://github.com/rjbs/Image-MetaData-JPEG.git,1915.8586921296296,1,3,0,2.0,0.0,0.0,0.0 +image-size,0.272891509746704,1.59419369349031,-0.145996324790789,https://salsa.debian.org/perl-team/modules/packages/libimage-size-perl, https://github.com/rjray/image-size.git,4527.537858796296,0,12,0,10.0,14.0,0.0,0.0 +libinstpatch,0.306371504286247,2.06827310595229,-0.0894533027777747,https://salsa.debian.org/multimedia-team/libinstpatch, https://github.com/swami/libinstpatch,4470.764583333334,4,11,0,8.0,17.0,0.0,0.0 +p5-io-callback,-2.02122954763607,0.669477436474041,-2.72119693576599,https://salsa.debian.org/perl-team/modules/packages/libio-callback-perl, https://github.com/tobyink/p5-io-callback.git,2909.5988078703704,0,1,0,1.0,0.0,0.0,0.0 +IO-Digest,-0.176999858307328,2.43534422389143,-0.855332929595617,https://salsa.debian.org/perl-team/modules/packages/libio-digest-perl, https://github.com/clkao/IO-Digest.git,1863.099710648148,1,4,0,3.0,4.0,0.0,0.0 +File-Flock,0.217024179697917,2.8246432585759,-0.63601674251534,https://salsa.debian.org/perl-team/modules/packages/libio-event-perl, https://github.com/muir/File-Flock.git,474.8396990740741,0,4,0,4.0,6.0,0.0,0.0 +LibIO-Interface-Perl,1.0184295464928,4.14764748469928,0.0508969183914208,https://salsa.debian.org/perl-team/modules/packages/libio-interface-perl, https://github.com/lstein/LibIO-Interface-Perl.git,2278.4801041666665,0,2,0,1.0,6.0,0.0,0.0 +perl-io-socket-inet6,1.05361058182567,2.55415908896728,0.360368514702543,https://salsa.debian.org/perl-team/modules/packages/libio-socket-inet6-perl, https://github.com/shlomif/perl-io-socket-inet6.git,5052.830706018519,0,3,0,1.0,0.0,0.0,0.0 +IPC-Run3,0.563072317431629,3.20249246798755,-0.0863000735851595,https://salsa.debian.org/perl-team/modules/packages/libipc-run3-perl, https://github.com/rjbs/IPC-Run3.git,1899.0353819444445,8,2,0,10.0,19.0,0.0,0.0 +ipc-system-simple,0.702506806357814,3.37307823313289,0.0378027177660786,https://salsa.debian.org/perl-team/modules/packages/libipc-system-simple-perl, https://github.com/pjf/ipc-system-simple.git,5306.457638888889,4,11,0,8.0,42.0,0.0,0.0 +ITL,0.0254308756570228,1.55467054599278,-0.427459048128751,https://salsa.debian.org/islamic-team/libitl, https://github.com/arabeyes-org/ITL,3251.473090277778,2,13,0,6.0,19.0,0.0,0.0 +libitl-gobject,-0.743991329234141,1.48353017572794,-1.36908980309503,https://salsa.debian.org/islamic-team/libitl-gobject, https://github.com/aelmahmoudy/libitl-gobject.git,2211.2291898148146,0,2,0,1.0,0.0,0.0,0.0 +jbzip2,-0.111762555314467,1.76451539915625,-0.553204654470051,https://salsa.debian.org/java-team/libjbzip2-java, https://github.com/routeKIT/jbzip2.git,1394.2040046296297,0,2,0,1.0,0.0,0.0,0.0 +libjcat,-2.96652961883189,-1.13865549089184,-3.32297511016998,https://salsa.debian.org/efi-team/libjcat, https://github.com/hughsie/libjcat.git,1373.0888425925923,7,5,0,7.0,13.0,0.0,0.0 +jifty-dbi,-1.61466795584401,0.785230687618362,-2.27076034379016,https://salsa.debian.org/perl-team/modules/packages/libjifty-dbi-perl, https://github.com/bestpractical/jifty-dbi.git,2518.146388888889,1,16,0,21.0,6.0,0.0,0.0 +Lingua-EN-Inflect-Number,0.128032689867242,2.5007020447864,-0.401786300359941,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-inflect-number-perl, https://github.com/neilbowers/Lingua-EN-Inflect-Number,2030.0671527777777,1,2,0,1.0,0.0,0.0,0.0 +Lingua-EN-Numbers-Ordinate,-0.528739698770259,1.71367679038345,-0.95685749031336,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-numbers-ordinate-perl, https://github.com/neilb/Lingua-EN-Numbers-Ordinate,4119.229085648148,1,2,0,1.0,0.0,0.0,0.0 +Lingua-PT-Stemmer,-0.0370378021163652,1.75560599769747,-0.405294301299482,https://salsa.debian.org/perl-team/modules/packages/liblingua-pt-stemmer-perl, https://github.com/neilb/Lingua-PT-Stemmer.git,472.7143518518519,1,2,0,1.0,0.0,0.0,0.0 +list-compare,0.391313448822763,2.69306808066932,-0.0910990526566794,https://salsa.debian.org/perl-team/modules/packages/liblist-compare-perl, https://github.com/jkeenan/list-compare.git,5186.55181712963,4,4,0,6.0,7.0,0.0,0.0 +Locale-Maketext-Gettext,-0.498869475594542,1.13023375711277,-0.82798089589324,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-gettext-perl, https://github.com/imacat/Locale-Maketext-Gettext.git,519.6569444444444,0,2,0,1.0,0.0,0.0,0.0 +locale-maketext-lexicon,0.161275632049051,1.89696025323471,-0.284099785121201,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-lexicon-perl, https://github.com/clintongormley/locale-maketext-lexicon.git,1951.7074074074076,1,9,0,7.0,17.0,0.0,0.0 +p5-Locales,-1.04391245581118,1.14085517175161,-1.47854564563719,https://salsa.debian.org/perl-team/modules/packages/liblocales-perl, https://github.com/drmuey/p5-Locales.git,1740.6568287037037,0,3,0,2.0,4.0,0.0,0.0 +liblockfile-debian,1.34528048506525,2.16203178683404,0.834960494457955,https://github.com/miquels/liblockfile-debian,https://github.com/miquels/liblockfile-debian,1484.1868055555556,0,2,0,1.0,0.0,0.0,0.0 +log-message-simple,0.207617298002529,1.66317485535803,-0.0635138373050909,https://salsa.debian.org/perl-team/modules/packages/liblog-message-simple-perl, https://github.com/jib/log-message-simple.git,1230.0807175925927,0,3,0,2.0,1.0,0.0,0.0 +libltc,0.25462320273444,2.48146198812678,-0.195451051854273,https://salsa.debian.org/multimedia-team/libltc, https://github.com/x42/libltc,3674.491215277778,2,8,0,6.0,48.0,0.0,0.0 +p5-lwp-useragent-chicaching,-0.794221914108557,1.51789164766528,-1.22722810427765,https://salsa.debian.org/perl-team/modules/packages/liblwp-useragent-chicaching-perl, https://github.com/kjetilk/p5-lwp-useragent-chicaching.git,1283.769074074074,0,1,0,1.0,3.0,0.0,0.0 +magpie,-1.71586351135262,1.1978848249893,-2.52089829827459,https://salsa.debian.org/perl-team/modules/packages/libmagpie-perl, https://github.com/tamarou/magpie.git,2275.6417824074074,0,6,0,5.0,5.0,0.0,3.0 +mail-mbox-messageparser,-0.0992180028765262,0.383308459256174,-0.254928133610786,https://salsa.debian.org/perl-team/modules/packages/libmail-mbox-messageparser-perl, https://github.com/coppit/mail-mbox-messageparser.git,3258.3029513888887,0,3,0,1.0,0.0,0.0,0.0 +perl5-MailTools,1.05296856677644,2.15207135791342,0.469020884464135,https://salsa.debian.org/perl-team/modules/packages/libmailtools-perl, https://github.com/markov2/perl5-MailTools,1648.7267013888888,0,2,0,1.0,4.0,0.0,0.0 +libmatemixer,0.519077651770942,2.87142669869048,-0.0439618763861113,https://salsa.debian.org/debian-mate-team/libmatemixer, https://github.com/mate-desktop/libmatemixer.git,3404.5255092592597,7,20,0,15.0,31.0,0.0,0.0 +perl-math-basecalc,-1.04929713915701,0.776247486414709,-1.60691357416815,https://salsa.debian.org/perl-team/modules/packages/libmath-basecalc-perl, https://github.com/kenahoo/perl-math-basecalc.git,3269.0290740740743,0,8,0,2.0,5.0,0.0,0.0 +Math-GMP,-0.497770031800226,1.2717897116415,-0.979192756759848,https://salsa.debian.org/perl-team/modules/packages/libmath-gmp-perl, https://github.com/turnstep/Math-GMP.git,2969.082974537037,1,6,0,5.0,6.0,0.0,0.0 +Math-Random-ISAAC,0.647713767893043,3.36094723709202,-0.0377506361166474,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-perl, https://github.com/jawnsy/Math-Random-ISAAC,2416.308032407408,0,1,0,1.0,1.0,0.0,0.0 +Math-Random-ISAAC-XS,0.420044115350087,2.42617679498187,-0.0688144674619528,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-xs-perl, https://github.com/jawnsy/Math-Random-ISAAC-XS.git,2412.8853703703703,0,1,0,1.0,0.0,0.0,0.0 +math-random-oo,-1.35187489411529,0.998777142068624,-1.80721660160684,https://salsa.debian.org/perl-team/modules/packages/libmath-random-oo-perl, https://github.com/dagolden/math-random-oo.git,1499.3150694444444,0,1,0,1.0,2.0,0.0,0.0 +mce-perl,-0.240648845381619,2.07944154167984,-0.673322484241476,https://salsa.debian.org/perl-team/modules/packages/libmce-perl, https://github.com/marioroy/mce-perl.git,2944.7772337962965,1,6,0,6.0,17.0,0.0,0.0 +Memoize-ExpireLRU,0.193651801444528,2.93098175326362,-0.401914517363021,https://salsa.debian.org/perl-team/modules/packages/libmemoize-expirelru-perl, https://github.com/neilb/Memoize-ExpireLRU,624.640474537037,1,2,0,1.0,0.0,0.0,0.0 +Message-Passing,-1.57217074451121,-0.58317998885584,-1.7635460332697,https://salsa.debian.org/perl-team/modules/packages/libmessage-passing-perl, https://github.com/suretec/Message-Passing.git,2987.778923611111,1,15,0,11.0,14.0,0.0,0.0 +method-signatures-simple,-0.505171814610598,2.28798951395145,-1.1367149384271,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-simple-perl, https://github.com/rhesa/method-signatures-simple.git,4262.9309953703705,0,6,0,2.0,4.0,0.0,0.0 +minIni,-0.45273006696408,0.830257974649423,-0.745676424048719,https://salsa.debian.org/yangfl-guest/minIni, https://github.com/compuphase/minIni,2280.3336342592597,2,6,0,4.0,22.0,0.0,0.0 +MLDBM,0.255685088884825,2.21713282261784,-0.141370053434749,https://salsa.debian.org/perl-team/modules/packages/libmldbm-perl, https://github.com/chorny/MLDBM.git,1906.0319791666664,3,2,0,2.0,0.0,0.0,0.0 +Module-CPANTS-Analyse,0.609245808655205,3.47889052553453,-0.468888102677164,https://salsa.debian.org/perl-team/modules/packages/libmodule-cpants-analyse-perl, https://github.com/cpants/Module-CPANTS-Analyse.git,5647.731215277778,8,20,0,23.0,21.0,0.0,0.0 +module-extract-use,-1.42148872513497,0.722346225431496,-1.86166140766187,https://salsa.debian.org/perl-team/modules/packages/libmodule-extract-use-perl, https://github.com/briandfoy/module-extract-use.git,2918.7995717592594,0,7,0,4.0,8.0,0.0,0.0 +Module-Find,0.530689072476863,2.96191107462692,-0.0631954530758141,https://salsa.debian.org/perl-team/modules/packages/libmodule-find-perl, https://github.com/crenz/Module-Find.git,4710.686875,2,8,0,7.0,14.0,0.0,0.0 +module-install-readmefrompod,-1.83121316421891,-0.803308246618474,-2.06158147084299,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-readmefrompod-perl, https://github.com/bingos/module-install-readmefrompod.git,2847.0250694444444,0,7,0,6.0,4.0,0.0,0.0 +Perl-Module-Install-XSUtil,-1.95286814843256,-0.416199022673938,-2.2440219120537,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-xsutil-perl, https://github.com/gfx/Perl-Module-Install-XSUtil.git,1649.8556828703704,0,9,0,3.0,4.0,0.0,0.0 +Module-Manifest,-0.275080980203051,2.04126647656298,-0.707206931063704,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-perl, https://github.com/karenetheridge/Module-Manifest,3547.187893518518,0,3,0,3.0,0.0,0.0,0.0 +module-manifest-skip-pm,-0.331104704504746,2.08964832134239,-0.861124086399516,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-skip-perl, https://github.com/ingydotnet/module-manifest-skip-pm.git,1169.1213194444445,0,5,0,3.0,11.0,0.0,0.0 +p5-module-package-rdf,-1.9996964424579,0.808957985695429,-2.72477826606109,https://salsa.debian.org/perl-team/modules/packages/libmodule-package-rdf-perl, https://github.com/tobyink/p5-module-package-rdf,668.6822106481482,0,1,0,1.0,0.0,0.0,0.0 +module-signature,0.615393347672838,2.30814388681991,0.0588548984962523,https://salsa.debian.org/perl-team/modules/packages/libmodule-signature-perl, https://github.com/audreyt/module-signature.git,4414.52917824074,0,17,0,11.0,23.0,0.0,0.0 +Module-Starter-Plugin-CGIApp,-1.0772217684868,1.77744216289853,-2.03621850623778,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,4024.0661921296296,0,7,0,4.0,4.0,0.0,0.0 +p5-moops,-2.01602412276297,0.184857935561608,-2.57476905541738,https://salsa.debian.org/perl-team/modules/packages/libmoops-perl, https://github.com/tobyink/p5-moops,2419.9678819444443,0,3,0,2.0,7.0,0.0,0.0 +p5-moosex-attributetags,-1.48444699100229,0.712280225199573,-1.91694570169781,https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributetags-perl, https://github.com/tobyink/p5-moosex-attributetags,2042.2449074074077,0,1,0,1.0,4.0,0.0,0.0 +perl-mp3-info,0.972200522358068,3.06359046848305,0.14597462639865,https://salsa.debian.org/perl-team/modules/packages/libmp3-info-perl, https://github.com/JJ/perl-mp3-info.git,3267.4327777777776,1,4,0,1.0,3.0,0.0,0.0 +libmsiecf,0.46552312906009,3.43022127806562,-0.320200298445252,https://salsa.debian.org/pkg-security-team/libmsiecf, https://github.com/libyal/libmsiecf.git,3548.1866898148146,0,1,0,1.0,5.0,0.0,2.0 +multidimensional,0.637848870853986,3.40591300570569,-0.108805795385123,https://salsa.debian.org/perl-team/modules/packages/libmultidimensional-perl, https://github.com/ilmari/multidimensional,4293.3777314814815,1,3,0,4.0,4.0,0.0,0.0 +libmurmurhash,-1.16067502145436,1.24196568505228,-1.59222127523527,https://salsa.debian.org/med-team/libmurmurhash, https://github.com/kloetzl/libmurmurhash.git,1568.0675578703704,0,1,0,1.0,0.0,0.0,0.0 +perl-nagios-object,-0.0287280625874169,2.41658250392272,-0.514503755554881,https://salsa.debian.org/perl-team/modules/packages/libnagios-object-perl, https://github.com/duncs/perl-nagios-object.git,4719.336793981482,1,14,0,9.0,10.0,0.0,0.0 +libnatpmp,0.254340902214523,1.1083518392238,4.5219738185424e-05,https://salsa.debian.org/miniupnp-team/libnatpmp, https://github.com/miniupnp/libnatpmp,3832.098252314815,3,20,0,19.0,24.0,0.0,0.0 +libnbcompat,-5.04706956390868,-2.61580162813559,-5.47995498785397,https://github.com/jgoerzen/libnbcompat,https://github.com/jgoerzen/libnbcompat,3888.0046759259258,0,19,0,0.0,2.0,0.0,0.0 +libndp,0.413875636023979,2.26088219753132,0.0018314312966356,https://salsa.debian.org/debian/libndp, https://github.com/jpirko/libndp.git,3924.0402314814814,9,4,0,9.0,18.0,0.0,0.0 +libneo4j-client,-0.44200445507635,1.82260432303787,-1.19625097352374,https://github.com/cleishm/libneo4j-client,https://github.com/cleishm/libneo4j-client,1826.306435185185,2,5,0,3.0,62.0,0.0,1.0 +p5-Net-DNS-Lite,-0.388600875739514,1.73875559764193,-0.810307744985523,https://salsa.debian.org/perl-team/modules/packages/libnet-dns-lite-perl, https://github.com/kazuho/p5-Net-DNS-Lite.git,2215.071388888889,0,7,0,6.0,9.0,0.0,0.0 +Net-IDN-Encode,0.202120296662982,2.48699815996222,-0.240749262969265,https://salsa.debian.org/perl-team/modules/packages/libnet-idn-encode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.639594907408,6,7,0,3.0,12.0,0.0,0.0 +perl-net-jabber-bot,-1.40647099245218,2.21383625500312,-2.3398369660299,https://salsa.debian.org/perl-team/modules/packages/libnet-jabber-bot-perl, https://github.com/toddr/perl-net-jabber-bot.git,4656.943171296296,0,12,0,5.0,11.0,0.0,1.0 +Net-LDAP-FilterBuilder,-1.03116738256461,1.31644249513134,-1.55059074652219,https://salsa.debian.org/perl-team/modules/packages/libnet-ldap-filterbuilder-perl, https://github.com/ollyg/Net-LDAP-FilterBuilder.git,3727.993148148148,1,4,0,2.0,2.0,0.0,0.0 +libnet-ldapapi-perl,0.329801233060665,4.21712292515636,-0.93758425895926,https://github.com/whm/libnet-ldapapi-perl,https://github.com/whm/libnet-ldapapi-perl,2319.3761458333333,0,8,0,3.0,3.0,0.0,0.0 +Net-Netmask,0.194909018374484,1.29739745595377,-0.0893189593134,https://salsa.debian.org/perl-team/modules/packages/libnet-netmask-perl, https://github.com/jmaslak/Net-Netmask.git,4478.38675925926,1,7,0,6.0,3.0,0.0,0.0 +Net-OpenID-Server,-1.09555440281624,0.684539371669913,-1.53725150822958,https://salsa.debian.org/perl-team/modules/packages/libnet-openid-server-perl, https://github.com/robn/Net-OpenID-Server.git,848.2155092592593,2,3,0,3.0,3.0,0.0,0.0 +Net-SMTP-TLS,-0.113211376060407,2.6114896609769,-0.702491846232613,https://salsa.debian.org/perl-team/modules/packages/libnet-smtp-tls-butmaintained-perl, https://github.com/fayland/Net-SMTP-TLS,3215.150324074074,2,5,0,4.0,4.0,0.0,0.0 +libnfo,-1.67562099042326,0.120641287739072,-2.18697726172515,https://salsa.debian.org/debian/libnfo, https://github.com/GeeXboX/libnfo,1108.031238425926,0,6,0,3.0,0.0,0.0,0.0 +libnids,1.48070068944423,2.86889934498414,0.725429802558325,https://salsa.debian.org/pkg-security-team/libnids, https://github.com/MITRECND/libnids.git,3593.0894791666665,1,9,0,6.0,10.0,0.0,0.0 +number-fraction,-1.54009992200597,1.00799051030491,-2.12164752767652,https://salsa.debian.org/perl-team/modules/packages/libnumber-fraction-perl, https://github.com/p5-number-fraction/number-fraction.git,5664.8216203703705,3,11,0,5.0,9.0,0.0,0.0 +libofa,0.47335821093708,1.43356884961668,0.0963115974952011,https://salsa.debian.org/debian/libofa, https://github.com/tanob/libofa.git,2279.4909837962964,1,2,0,1.0,3.0,0.0,0.0 +libolecf,0.462165542271876,3.32672178633661,-0.317708482986411,https://salsa.debian.org/pkg-security-team/libolecf, https://github.com/libyal/libolecf.git,3351.053310185185,0,1,0,1.0,5.0,0.0,2.0 +libopenaptx,-1.76978937147399,0.402104648829942,-2.23189383047556,https://salsa.debian.org/debian/libopenaptx, https://github.com/pali/libopenaptx,1024.2505671296296,0,2,0,2.0,31.0,0.0,0.0 +pal,-0.743616408890405,0.798812895611161,-1.02496439640612,https://salsa.debian.org/med-team/libpal-java, https://github.com/tamuri/pal,382.9409953703704,0,2,0,1.0,0.0,0.0,0.0 +p5-Palm,0.0204029609200805,1.21979890093133,-0.348294954995836,https://salsa.debian.org/perl-team/modules/packages/libpalm-perl, https://github.com/madsen/p5-Palm,2036.3955092592596,2,5,0,5.0,0.0,0.0,0.0 +pam-encfs,-0.0672752006332246,1.03918901778327,-0.551441000800444,https://salsa.debian.org/debian/libpam-encfs, https://github.com/tinti/pam-encfs,2773.2122222222224,0,4,0,2.0,2.0,0.0,0.0 +libpam-pwdfile,-0.106743202581158,0.500255871782442,-0.322631680806691,https://github.com/tiwe-de/libpam-pwdfile/tree/debian,https://github.com/tiwe-de/libpam-pwdfile,923.3027546296296,2,2,0,2.0,8.0,0.0,0.0 +PGObject-Type-DateTime,-1.48153978983064,0.670943023248935,-1.915973171553,https://salsa.debian.org/perl-team/modules/packages/libpgobject-type-datetime-perl, https://github.com/ledgersmb/PGObject-Type-DateTime.git,3652.6989467592593,0,8,0,4.0,6.0,0.0,0.0 +PGObject-Util-DBAdmin,-1.54489086293298,0.601409032824626,-1.98253889024086,https://salsa.debian.org/perl-team/modules/packages/libpgobject-util-dbadmin-perl, https://github.com/ledgersmb/PGObject-Util-DBAdmin.git,2615.949641203704,0,5,0,3.0,10.0,0.0,0.0 +pgp-sign,-0.503791011658959,2.24402219243158,-1.33246533923206,https://salsa.debian.org/rra/libpgp-sign-perl, https://github.com/rra/pgp-sign,2555.095613425926,1,5,0,2.0,2.0,0.0,0.0 +perl5-PGPLOT,-0.198681417470982,1.80326443154908,-0.928918103160525,https://salsa.debian.org/perl-team/modules/packages/libpgplot-perl, https://github.com/PDLPorters/perl5-PGPLOT.git,2564.25125,4,7,0,6.0,6.0,0.0,0.0 +Plack-Middleware-CSRFBlock,-2.88989675535782,-0.719836486790939,-3.32408331985609,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-csrfblock-perl, https://github.com/mattp-/Plack-Middleware-CSRFBlock,1436.9725347222222,1,7,0,3.0,3.0,0.0,0.0 +Plack-Middleware-Deflater,-0.868604600480895,1.4026303205951,-1.34095502952361,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl, https://github.com/miyagawa/Plack-Middleware-Deflater.git,4308.662222222222,0,5,0,3.0,10.0,0.0,0.0 +Plack-Middleware-File-Sass,-3.74262183296797,-1.21094665420884,-4.32021382111369,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-file-sass-perl, https://github.com/miyagawa/Plack-Middleware-File-Sass.git,372.7359490740741,0,1,0,1.0,4.0,0.0,0.0 +plack-test-anyevent,-2.2481916187177,0.456054424993921,-2.95550062704452,https://salsa.debian.org/perl-team/modules/packages/libplack-test-anyevent-perl, https://github.com/hoelzro/plack-test-anyevent.git,2226.702013888889,0,6,0,3.0,7.0,0.0,0.0 +pod-2-docbook,-2.18584394371273,0.12252816735333,-2.61706839567257,https://salsa.debian.org/perl-team/modules/packages/libpod-2-docbook-perl, https://github.com/jozef/pod-2-docbook,1292.6652546296295,0,6,0,3.0,2.0,0.0,0.0 +libpod-webserver-perl,-0.420499708143128,2.37146990894034,-1.53685095216261,https://github.com/mogaal/libpod-webserver-perl,https://github.com/mogaal/libpod-webserver-perl,801.0357291666667,1,1,0,1.0,1.0,0.0,0.0 +Pod-Wordlist-hanekomu,-2.35247628682149,-0.0387599898094948,-2.78606413640892,https://salsa.debian.org/perl-team/modules/packages/libpod-wordlist-hanekomu-perl, https://github.com/dagolden/Pod-Wordlist-hanekomu,1571.103576388889,0,3,0,2.0,0.0,0.0,0.0 +poe-component-client-http,-1.05015036849306,-0.26446186447687,-1.32838779114614,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-http-perl, https://github.com/rcaputo/poe-component-client-http,2297.0143402777776,1,4,0,7.0,6.0,0.0,0.0 +poe-component-client-ident,-2.74078918210574,-1.39695331454504,-3.01424759559606,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-ident-perl, https://github.com/bingos/poe-component-client-ident.git,49.70814814814815,0,1,0,1.0,0.0,0.0,0.0 +poe-component-client-keepalive,-0.912307219691627,1.38958661839801,-1.34891728809416,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-keepalive-perl, https://github.com/rcaputo/poe-component-client-keepalive.git,2357.5085300925925,2,4,0,8.0,6.0,0.0,0.0 +poe-filter-ircd,-0.374557942849074,1.93583892146358,-0.831515046781277,https://salsa.debian.org/perl-team/modules/packages/libpoe-filter-ircd-perl, https://github.com/bingos/poe-filter-ircd.git,1552.6868865740742,0,4,0,3.0,1.0,0.0,0.0 +poe-loop-tk,-0.195847077988649,2.02375545200345,-0.755381301293398,https://salsa.debian.org/perl-team/modules/packages/libpoe-loop-tk-perl, https://github.com/rcaputo/poe-loop-tk,2011.4116435185183,0,7,0,11.0,1.0,0.0,0.0 +Probe-Perl,-0.120869478301789,2.68264316932431,-0.746852827696491,https://salsa.debian.org/perl-team/modules/packages/libprobe-perl-perl, https://github.com/kenahoo/Probe-Perl,112.02817129629628,0,2,0,1.0,0.0,0.0,0.0 +perl-proc-processtable,0.0374994029564422,0.48248435291711,-0.0771518619204283,https://salsa.debian.org/perl-team/modules/packages/libproc-processtable-perl, https://github.com/jwbargsten/perl-proc-processtable,3896.737118055556,1,25,0,20.0,24.0,0.0,0.0 +libpuzzle,-0.668014026669582,0.652955703084538,-1.12433312368326,https://salsa.debian.org/debian-phototools-team/libpuzzle, https://github.com/jedisct1/libpuzzle,2324.9386458333333,1,8,0,5.0,25.0,0.0,0.0 +libpwquality,0.510351431411485,1.87787850612544,0.0684762008403447,https://salsa.debian.org/gnome-team/libpwquality, https://github.com/libpwquality/libpwquality.git,4429.906377314815,51,15,0,49.0,43.0,0.0,0.0 +libqcow,0.434557263537964,3.15015521965935,-0.291421202425118,https://salsa.debian.org/pkg-security-team/libqcow, https://github.com/libyal/libqcow.git,3715.767152777778,0,1,0,1.0,19.0,0.0,2.0 +p5-rdf-acl,-2.0654979490634,1.28090823759533,-3.07339107233876,https://salsa.debian.org/perl-team/modules/packages/librdf-acl-perl, https://github.com/tobyink/p5-rdf-acl,1688.9962731481482,0,1,0,1.0,0.0,0.0,0.0 +RDF-aREF,-1.63216559742988,0.51267312940242,-2.0632435210871,https://salsa.debian.org/perl-team/modules/packages/librdf-aref-perl, https://github.com/nichtich/RDF-aREF.git,2565.866770833333,2,8,0,4.0,11.0,0.0,1.0 +RDF-Generator-Void,-1.63319542972363,0.625956949556484,-2.06342802293264,https://salsa.debian.org/perl-team/modules/packages/librdf-generator-void-perl, https://github.com/kjetilk/RDF-Generator-Void.git,1725.5093171296296,0,6,0,4.0,4.0,0.0,0.0 +RDF-Helper-Properties,-1.4850797676548,1.07499452260591,-2.1065327244584,https://salsa.debian.org/perl-team/modules/packages/librdf-helper-properties-perl, https://github.com/kjetilk/RDF-Helper-Properties.git,2324.5435416666664,0,5,0,3.0,5.0,0.0,0.0 +RDF-LinkedData,-1.52971899967862,-0.067842436919694,-2.08400212272878,https://salsa.debian.org/perl-team/modules/packages/librdf-linkeddata-perl, https://github.com/kjetilk/RDF-LinkedData.git,4060.5603472222224,0,7,0,4.0,7.0,0.0,0.0 +p5-rdf-ns-curated,-1.18462978482918,1.01719315039781,-1.62134295307884,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-curated-perl, https://github.com/kjetilk/p5-rdf-ns-curated.git,2949.0642245370373,0,4,0,3.0,5.0,0.0,0.0 +RDF-NS,-0.52501600994773,1.01221794001187,-0.872083603299781,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-perl, https://github.com/nichtich/RDF-NS.git,4253.416851851852,2,5,0,4.0,13.0,0.0,0.0 +p5-rdf-query-client,-1.19131397245775,0.750204607793778,-1.75482893581306,https://salsa.debian.org/perl-team/modules/packages/librdf-query-client-perl, https://github.com/tobyink/p5-rdf-query-client,1767.4564930555557,0,1,0,1.0,2.0,0.0,0.0 +libSavitar,-0.0624513387530921,1.31074037796173,-0.382634692042406,https://salsa.debian.org/3dprinting-team/libsavitar, https://github.com/Ultimaker/libSavitar.git,2417.888148148148,12,19,0,17.0,35.0,0.0,0.0 +libsbsms,0.167875397062312,1.64214052262321,-0.131354146421564,https://salsa.debian.org/multimedia-team/libsbsms, https://github.com/claytonotey/libsbsms.git,571.9734837962963,2,6,0,5.0,9.0,0.0,0.0 +p5-scalar-does,-0.53666515553433,1.22778989488429,-0.950471364107704,https://salsa.debian.org/perl-team/modules/packages/libscalar-does-perl, https://github.com/tobyink/p5-scalar-does,1614.181099537037,0,3,0,1.0,2.0,0.0,0.0 +libscca,0.46368276972707,3.52041926177531,-0.331124382950878,https://salsa.debian.org/pkg-security-team/libscca, https://github.com/libyal/libscca,3348.012650462963,1,1,0,2.0,11.0,0.0,2.0 +SDL_net,0.287925601835457,2.70482829766967,-0.176557931964796,https://salsa.debian.org/sdl-team/libsdl2-net, https://github.com/libsdl-org/SDL_net.git,5565.033611111111,10,12,0,14.0,0.0,0.0,0.0 +perl-SHARYANTO-Utils,-2.34414656253823,-0.0852227274110705,-2.78556091741264,https://salsa.debian.org/perl-team/modules/packages/libsharyanto-utils-perl, https://github.com/perlancar/perl-SHARYANTO-Utils.git,2945.597754629629,0,13,0,2.0,4.0,0.0,0.0 +simpleini,-3.1256993278502,-0.524309938879686,-3.72794076397833,https://salsa.debian.org/yangfl-guest/simpleini, https://github.com/brofield/simpleini,5767.129050925926,12,11,0,17.0,66.0,0.0,0.0 +libsmdev,0.490191263592225,3.54730228444253,-0.318165930819659,https://salsa.debian.org/pkg-security-team/libsmdev, https://github.com/libyal/libsmdev,2801.6257060185185,0,1,0,1.0,7.0,0.0,2.0 +libsml,-2.55837529881451,0.0607386648107673,-3.2378106609148,https://github.com/volkszaehler/libsml/tree/debian,https://github.com/volkszaehler/libsml,4561.306574074074,12,15,0,19.0,11.0,0.0,0.0 +libsmraw,0.47410590340377,3.39663211123058,-0.321025674201182,https://salsa.debian.org/pkg-security-team/libsmraw, https://github.com/libyal/libsmraw.git,2800.5750925925927,0,1,0,1.0,3.0,0.0,2.0 +SNMP-Extension-PassPersist,0.122684641538774,3.08053336090536,-0.739812883216525,https://salsa.debian.org/perl-team/modules/packages/libsnmp-extension-passpersist-perl, https://github.com/maddingue/SNMP-Extension-PassPersist.git,1526.080787037037,0,1,0,1.0,2.0,0.0,0.0 +SOAP-WSDL,0.24944731263946,2.22137007210412,-0.215176538120953,https://salsa.debian.org/perl-team/modules/packages/libsoap-wsdl-perl, https://github.com/scrottie/SOAP-WSDL,3956.848634259259,2,7,0,5.0,8.0,0.0,0.0 +debian-libsodium,0.765244085135836,2.64803550783215,0.125530797539089,https://github.com/gcsideal/debian-libsodium,https://github.com/gcsideal/debian-libsodium,2198.6639814814816,0,2,0,2.0,3.0,0.0,0.0 +sort-naturally,0.734479252349759,3.73541621778303,-0.0108935716486266,https://salsa.debian.org/perl-team/modules/packages/libsort-naturally-perl, https://github.com/bingos/sort-naturally.git,681.4402893518519,0,3,0,3.0,6.0,0.0,0.0 +term-ui,0.398065193240985,2.59889297858378,-0.0533124700759042,https://salsa.debian.org/perl-team/modules/packages/libterm-ui-perl, https://github.com/jib/term-ui.git,4487.122407407407,4,10,0,11.0,10.0,0.0,0.0 +Test-Cmd,-1.4068778672912,-0.243767507585069,-1.62828796025182,https://salsa.debian.org/perl-team/modules/packages/libtest-cmd-perl, https://github.com/neilb/Test-Cmd.git,4572.228310185185,1,7,0,4.0,6.0,0.0,0.0 +test-compile,-0.175779081431813,2.26305679363941,-0.803073855123069,https://salsa.debian.org/perl-team/modules/packages/libtest-compile-perl, https://github.com/egiles/test-compile,5567.375601851852,2,14,0,11.0,11.0,0.0,0.0 +test-corpus-audio-mpd,-2.74135833573926,-1.39926735845413,-3.01594906527937,https://salsa.debian.org/perl-team/modules/packages/libtest-corpus-audio-mpd-perl, http://github.com/jquelin/test-corpus-audio-mpd,904.9165856481482,0,2,0,0.0,0.0,0.0,0.0 +Test-Database,-1.83380913497229,0.613327463187255,-2.34008679884277,https://salsa.debian.org/perl-team/modules/packages/libtest-database-perl, https://github.com/book/Test-Database.git,2702.254953703704,3,2,0,5.0,6.0,0.0,0.0 +Test-File-Contents,-1.18096229775599,0.434377868320852,-1.48264698647843,https://salsa.debian.org/perl-team/modules/packages/libtest-file-contents-perl, https://github.com/ap/Test-File-Contents.git,4644.347511574074,2,4,0,3.0,8.0,0.0,0.0 +Test-Perl-Critic,0.264206027251901,2.90168344557812,-0.523782562876993,https://salsa.debian.org/perl-team/modules/packages/libtest-perl-critic-perl, https://github.com/Perl-Critic/Test-Perl-Critic.git,4634.745844907407,0,9,0,6.0,19.0,0.0,0.0 +Test-Pod-Coverage,-0.201777392019441,1.08314758829641,-0.432747700797595,https://salsa.debian.org/perl-team/modules/packages/libtest-pod-coverage-perl, https://github.com/neilbowers/Test-Pod-Coverage,1677.1204166666666,1,2,0,2.0,4.0,0.0,0.0 +test-prereq,-1.88960570834042,-0.367653369623538,-2.15461171930815,https://salsa.debian.org/perl-team/modules/packages/libtest-prereq-perl, https://github.com/briandfoy/test-prereq.git,2918.7659375,4,8,0,7.0,13.0,0.0,0.0 +Test-RDF,-1.52737405933553,1.1507063443416,-2.12297090884194,https://salsa.debian.org/perl-team/modules/packages/libtest-rdf-perl, https://github.com/kjetilk/Test-RDF.git,2744.08443287037,0,3,0,2.0,4.0,0.0,0.0 +Test-RedisServer,-2.94083493267149,-0.0880954322803377,-3.66851510228242,https://salsa.debian.org/perl-team/modules/packages/libtest-redisserver-perl, https://github.com/typester/Test-RedisServer.git,3497.317025462963,0,12,0,6.0,19.0,0.0,0.0 +Test-Strict,0.0413930214920238,1.971000323689,-0.491725485595185,https://salsa.debian.org/perl-team/modules/packages/libtest-strict-perl, https://github.com/manwar/Test-Strict.git,2362.520509259259,1,15,0,11.0,23.0,0.0,0.0 +Test-XPath,-1.69700412757212,0.582725427839162,-2.14674756098572,https://salsa.debian.org/perl-team/modules/packages/libtest-xpath-perl, https://github.com/manwar/Test-XPath.git,4673.896469907408,1,7,0,5.0,9.0,0.0,0.0 +Text-CSV_XS,0.321044338398603,2.30356481785881,-0.0928202392731093,https://salsa.debian.org/perl-team/modules/packages/libtext-csv-xs-perl, https://github.com/Tux/Text-CSV_XS.git,5755.1094907407405,9,17,0,13.0,37.0,0.0,0.0 +Text-Diff,0.318625038543993,2.49178187060109,-0.168554791579662,https://salsa.debian.org/perl-team/modules/packages/libtext-diff-perl, https://github.com/neilb/Text-Diff,2314.185601851852,0,6,0,3.0,4.0,0.0,0.0 +p5-Text-FindIndent,-0.555513183475546,1.67112528991827,-1.00832526739478,https://salsa.debian.org/perl-team/modules/packages/libtext-findindent-perl, https://github.com/tsee/p5-Text-FindIndent.git,3337.124328703704,0,6,0,2.0,1.0,0.0,0.0 +text-markdown,0.934319761936114,4.33297705496069,-0.166685437504858,https://salsa.debian.org/perl-team/modules/packages/libtext-markdown-perl, https://github.com/bobtfish/text-markdown.git,2874.5088194444443,0,12,0,7.0,40.0,0.0,0.0 +text-multimarkdown,0.251726289263937,2.93013200166338,-0.554049890835888,https://salsa.debian.org/perl-team/modules/packages/libtext-multimarkdown-perl, https://github.com/bobtfish/text-multimarkdown.git,2348.7609953703704,0,10,0,6.0,15.0,0.0,0.0 +Text-Soundex,0.813169646070408,4.20540820560788,0.0081736989336309,https://salsa.debian.org/perl-team/modules/packages/libtext-soundex-perl, https://github.com/rjbs/Text-Soundex,1152.2136342592592,3,2,0,3.0,0.0,0.0,0.0 +perl-Text-sprintfn,-0.817958965788847,2.15007124945723,-1.60695349482585,https://salsa.debian.org/perl-team/modules/packages/libtext-sprintfn-perl, https://github.com/perlancar/perl-Text-sprintfn,2949.61625,0,11,0,2.0,2.0,0.0,0.0 +thread_pool,-0.540663626276791,1.50526353603252,-1.07288308787208,https://salsa.debian.org/med-team/libthread-pool, https://github.com/rvaser/thread_pool,1629.2300810185186,1,4,0,1.0,6.0,0.0,0.0 +libthumbor,-3.09799425599102,-0.437018346915755,-3.71717021447499,https://salsa.debian.org/python-team/packages/libthumbor, https://github.com/thumbor/libthumbor,4029.2128125,6,18,0,14.0,40.0,0.0,7.0 +Tie-IxHash,0.730873545729144,3.27475066745528,0.0615000077631298,https://salsa.debian.org/perl-team/modules/packages/libtie-ixhash-perl, https://github.com/chorny/Tie-IxHash.git,1314.8113773148148,1,4,0,2.0,6.0,0.0,0.0 +tools.logging,-0.0293820524135521,2.73352207490157,-0.667351571787989,https://salsa.debian.org/clojure-team/libtools-logging-clojure, https://github.com/clojure/tools.logging.git,4541.119618055555,3,16,0,7.0,0.0,0.0,0.0 +p5-types-datetime,-1.22242531036125,1.1350772402848,-1.71343703820229,https://salsa.debian.org/perl-team/modules/packages/libtypes-datetime-perl, https://github.com/tobyink/p5-types-datetime,1190.8059837962962,1,4,0,3.0,5.0,0.0,0.0 +libunibreak,0.391070731401678,2.53841337301907,-0.123480715889143,https://salsa.debian.org/qt-kde-team/3rdparty/libunibreak, https://github.com/adah1972/libunibreak.git,5748.020740740741,6,11,0,12.0,26.0,0.0,3.0 +libuninameslist,0.487513273800329,2.48630016931597,-0.0941545187032333,https://salsa.debian.org/fonts-team/libuninameslist, https://github.com/fontforge/libuninameslist,5640.186574074074,5,13,0,13.0,19.0,0.0,0.0 +usbauth-all,-0.601487574640931,1.9320845324868,-1.22518035577705,https://salsa.debian.org/debian/libusbauth-configparser, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0,2.0,7.0,0.0,0.0 +vcs-lite,-0.854288642725774,1.46043999521999,-1.32941773389118,https://salsa.debian.org/perl-team/modules/packages/libvcs-lite-perl, http://github.com/barbie/vcs-lite,1975.3471527777776,0,1,0,0.0,0.0,0.0,0.0 +libverto,2.41895367773709,5.94720677902277,1.01589189254594,https://salsa.debian.org/debian/libverto, https://github.com/latchset/libverto,3721.924490740741,8,2,0,9.0,9.0,0.0,0.0 +libvhdi,0.648102145419946,3.13520528751691,-0.167154547293664,https://salsa.debian.org/pkg-security-team/libvhdi, https://github.com/libyal/libvhdi.git,3717.622407407408,1,1,0,2.0,16.0,0.0,2.0 +vitacilina,-3.60211801359306,-0.769754564008352,-4.29247813265034,https://salsa.debian.org/perl-team/modules/packages/libvitacilina-perl, https://github.com/damog/vitacilina.git,2796.749988425926,1,5,0,4.0,5.0,0.0,0.0 +libvmdk,0.96647885593189,4.38842861799146,-0.0908861019951137,https://salsa.debian.org/pkg-security-team/libvmdk, https://github.com/libyal/libvmdk.git,2936.766087962963,2,1,0,3.0,29.0,0.0,2.0 +perl5-XML-Compile-WSDL11,-1.43102862157411,0.741938827310165,-1.85944467446204,https://salsa.debian.org/perl-team/modules/packages/libxml-compile-wsdl11-perl, https://github.com/markov2/perl5-XML-Compile-WSDL11,1204.3164351851851,0,2,0,1.0,0.0,0.0,0.0 +XML-Encoding,-0.709322274153065,1.48980743096261,-1.18751789181575,https://salsa.debian.org/perl-team/modules/packages/libxml-encoding-perl, https://github.com/steve-m-hay/XML-Encoding.git,2428.8622685185187,1,1,0,1.0,0.0,0.0,0.0 +perl-XML-Generator,-0.485968992312904,1.02798418665572,-0.830160727545501,https://salsa.debian.org/perl-team/modules/packages/libxml-generator-perl, https://github.com/timlegge/perl-XML-Generator,442.0406828703704,0,3,0,2.0,0.0,0.0,0.0 +XML-SAX-Expat,0.708441292515007,2.92271712476809,0.0786452436347989,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-expat-perl, https://github.com/hoehrmann/XML-SAX-Expat,2544.4844675925924,0,4,0,2.0,2.0,0.0,0.0 +xml-sax-machines,-0.962860473725603,0.425340458563971,-1.26975404899833,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-machines-perl, https://github.com/perigrin/xml-sax-machines.git,1529.9486111111112,1,2,0,1.0,2.0,0.0,0.0 +xml-sax,0.996402311975507,2.25773121479724,0.391482823766641,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-perl, https://github.com/grantm/xml-sax,3966.257372685185,0,6,0,3.0,4.0,0.0,0.0 +p5-xml-saxon-xslt2,-1.00661250511358,2.28472673392841,-1.86458025649904,https://salsa.debian.org/perl-team/modules/packages/libxml-saxon-xslt2-perl, https://github.com/tobyink/p5-xml-saxon-xslt2,1518.5208564814816,0,1,0,1.0,2.0,0.0,0.0 +xmlbird,0.392931324098745,3.14776528674364,-0.438139231609347,https://salsa.debian.org/fonts-team/libxmlbird, https://github.com/johanmattssonm/xmlbird.git,3048.260277777778,1,7,0,6.0,9.0,0.0,0.0 +YAML-AppConfig,-0.280666544672343,2.15384258713683,-0.99668897545926,https://salsa.debian.org/perl-team/modules/packages/libyaml-appconfig-perl, https://github.com/Xaerxess/YAML-AppConfig,1551.237361111111,5,2,0,4.0,0.0,0.0,0.0 +libydpdict,-1.33679122898043,0.311079451576597,-1.74074276078311,https://github.com/porridge/libydpdict,https://github.com/porridge/libydpdict,5005.956967592592,1,3,0,2.0,1.0,0.0,0.0 +libzeep,-1.52790920901661,-0.646859418196531,-1.75485723290627,https://salsa.debian.org/med-team/libzeep, https://github.com/mhekkel/libzeep.git,5502.828634259259,2,5,0,2.0,10.0,0.0,0.0 +20kly,1.43422348850863,4.37833833439974,0.266715256234677,https://salsa.debian.org/python-team/packages/lightyears, https://github.com/20kly/20kly.git,4073.732349537037,0,3,0,1.0,5.0,0.0,0.0 +lilv,0.373195495390768,1.17831410260903,0.0585307699086615,https://salsa.debian.org/multimedia-team/lilv, https://github.com/lv2/lilv.git ,5733.844351851852,8,1,0,9.0,44.0,0.0,0.0 +limereg,0.236071407499813,2.90928891702837,-0.724726085369987,https://salsa.debian.org/science-team/limereg, https://github.com/RoelofBerg/limereg.git,1172.0418171296296,0,3,0,2.0,6.0,0.0,0.0 +logtop,0.349809666203344,3.71453083438433,-0.528348008657722,https://github.com/JulienPalard/logtop,https://github.com/JulienPalard/logtop,3192.2077430555555,0,9,0,4.0,8.0,0.0,0.0 +lolcat,0.672126293491262,3.17654320523077,-0.108840544461704,https://salsa.debian.org/ruby-team/lolcat, https://github.com/busyloop/lolcat.git,3767.915451388889,1,19,0,15.0,63.0,0.0,0.0 +loqui,-1.70079847884635,0.603996740702985,-2.14647400312162,https://salsa.debian.org/debian/loqui, https://github.com/sunnyone/loqui.git,4178.25380787037,1,9,0,3.0,2.0,0.0,0.0 +lsmount,0.241790672994827,3.2370471304323,-0.615190830342454,https://github.com/Llandon/lsmount,https://github.com/Llandon/lsmount,2894.883425925926,1,4,0,1.0,3.0,0.0,0.0 +ltsp,-0.260538969092853,-0.12702304328263,-0.357622790045197,https://github.com/ltsp/ltsp/,https://github.com/ltsp/ltsp,1481.8791782407409,11,5,0,10.0,11.0,0.0,25.0 +luadbi,0.15858131476338,2.68635146603853,-0.494955321624535,https://salsa.debian.org/lua-team/lua-dbi, https://github.com/mwild1/luadbi,2870.1189699074075,1,15,0,9.0,30.0,0.0,0.0 +luaexpat,0.0739779285984903,0.731738421595142,-0.042551661594947,https://salsa.debian.org/lua-team/lua-expat, https://github.com/lunarmodules/luaexpat,4256.833136574074,4,6,0,7.0,11.0,0.0,0.0 +linotify,-0.577989098351131,2.14392695201471,-1.22384955006102,https://salsa.debian.org/lua-team/lua-inotify, https://github.com/hoelzro/linotify.git,2964.312476851852,3,9,0,8.0,16.0,0.0,0.0 +lualdap,0.0504029107376684,1.73492235969394,-0.442531212295876,https://salsa.debian.org/lua-team/lua-ldap, https://github.com/lualdap/lualdap.git,4408.706979166666,7,12,0,13.0,25.0,0.0,0.0 +say,0.0600475564933599,3.43550606394514,-0.826292348408664,https://salsa.debian.org/lua-team/lua-say, https://github.com/lunarmodules/say.git,4008.0407638888887,1,11,0,8.0,11.0,0.0,0.0 +lyaml,-0.345498399406386,1.95837097623919,-0.798092863642857,https://salsa.debian.org/lua-team/lua-yaml/, https://github.com/gvvaughan/lyaml,3607.291111111111,1,7,1,6.0,63.0,0.0,0.0 +lunar-date,-1.09013250659012,-0.0609883227276274,-1.37419240455209,https://salsa.debian.org/chinese-team/lunar-date, https://github.com/yetist/lunar-date,5400.152511574074,1,8,0,2.0,12.0,0.0,0.0 +luola,-0.273628043096639,0.455422113672505,-0.570925483236996,https://salsa.debian.org/debian/luola, https://github.com/callaa/luola.git,0.009537037037037,0,1,0,1.0,2.0,0.0,0.0 +lv2,0.228928854296114,2.24238536076862,-0.280197366302975,https://salsa.debian.org/multimedia-team/lv2, https://github.com/lv2/lv2.git ,4741.717118055555,18,5,0,16.0,31.0,0.0,8.0 +lv2file,0.62671181749622,3.5316112472614,-0.33646141639388,https://salsa.debian.org/multimedia-team/lv2file, https://github.com/jeremysalwen/lv2file.git,4139.535844907407,2,9,0,4.0,7.0,0.0,0.0 +lwt,-0.134408788950251,0.913721687429713,-0.525463939625241,https://salsa.debian.org/ocaml-team/lwt, https://github.com/ocsigen/lwt.git,5681.656030092593,82,99,0,111.0,0.0,0.0,0.0 +lxappearance,2.81897548079455,5.13075810379885,1.6743807598685,https://salsa.debian.org/lxde-team/lxappearance, https://github.com/lxde/lxappearance.git,4801.901712962963,111,38,0,71.0,12.0,0.0,0.0 +lxsession,1.21161126131848,1.94330642054952,0.730043207292079,https://salsa.debian.org/lxde-team/lxsession, https://github.com/lxde/lxsession.git,5699.888217592593,92,44,0,68.0,24.0,0.0,0.0 +lz4json,-0.449253717062924,1.9714794784722,-0.963936688317348,https://github.com/kilobyte/lz4json/tree/debian,https://github.com/kilobyte/lz4json,1639.7853125,4,5,0,5.0,0.0,0.0,0.0 +mac-fdisk-debian,2.78807804405186,5.78644617890451,1.44607483621445,https://github.com/glaubitz/mac-fdisk-debian,https://github.com/glaubitz/mac-fdisk-debian,0.0261342592592592,1,1,0,1.0,1.0,0.0,0.0 +MACTelnet-Debian-Packaging,0.225958933485464,2.9645776480681,-0.541025290810861,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,1885.954872685185,0,3,0,1.0,3.0,0.0,0.0 +madwimax,0.538681645395499,4.84334308584582,-0.945045842558766,http://github.com/ago/madwimax,http://github.com/ago/madwimax,1040.9560532407406,1,3,0,0.0,0.0,0.0,0.0 +magicrescue,0.563858891668318,1.90926582030483,-0.0393062112510008,https://salsa.debian.org/pkg-security-team/magicrescue, https://github.com/jbj/magicrescue,1064.0338194444444,1,3,0,2.0,2.0,0.0,0.0 +magit-popup,0.257126882140113,2.50851860032197,-0.226004161916933,https://salsa.debian.org/emacsen-team/magit-popup, https://github.com/magit/magit-popup.git,3610.5775925925927,17,32,0,43.0,14.0,0.0,0.0 +emacsen-team,-0.915348517808773,0.287860470390552,-1.14845336720673,https://salsa.debian.org/emacsen-team/magithub,https://salsa.debian.org/emacsen-team/magithub,1074.2872569444444,13,18,0,0.0,0.0,0.0,0.0 +mando,-0.846804438538855,1.21547677845818,-1.3465386927714,https://salsa.debian.org/python-team/packages/mando, https://github.com/rubik/mando.git,3495.724976851852,7,5,0,9.0,21.0,0.0,0.0 +manpages-zh,0.301386440943916,1.48017485509722,-0.136667326869418,https://salsa.debian.org/chinese-team/manpages-zh, https://github.com/man-pages-zh/manpages-zh,5615.642997685185,2,12,2,8.0,40.0,0.0,0.0 +manuel,-1.81889274764173,0.917080683728173,-2.54909100406239,https://salsa.debian.org/python-team/packages/manuel, https://github.com/benji-york/manuel,5520.68181712963,2,23,0,16.0,26.0,0.0,0.0 +marisa-trie,-0.277005958138721,0.413076227789777,-0.552378814436184,https://salsa.debian.org/input-method-team/marisa, https://github.com/s-yata/marisa-trie.git,1648.6119675925927,1,9,0,7.0,42.0,0.0,0.0 +mate-backgrounds,0.515935631539252,3.13814567556382,-0.0659273195942037,https://salsa.debian.org/debian-mate-team/mate-backgrounds, https://github.com/mate-desktop/mate-backgrounds.git,4154.560983796297,7,18,0,16.0,26.0,0.0,0.0 +mate-user-guide,0.509453660333917,3.34014863452368,-0.0704353392956133,https://salsa.debian.org/debian-mate-team/mate-user-guide, https://github.com/mate-desktop/mate-user-guide.git,2933.239976851852,5,16,0,11.0,19.0,0.0,0.0 +mate-user-share,-0.0144878954693426,0.728790486575383,-0.214296600445842,https://salsa.debian.org/debian-mate-team/mate-user-share, https://github.com/mate-desktop/mate-user-share.git,4144.689560185185,7,22,0,16.0,27.0,0.0,0.0 +mate-window-applets,-0.186625862006892,1.9636663587303,-0.631316052138279,https://salsa.debian.org/debian-mate-team/mate-window-applets, https://github.com/ubuntu-mate/mate-window-applets.git,1140.5334375,6,3,0,6.0,20.0,0.0,0.0 +materia-theme,0.104523439166075,1.98911237952869,-0.322056337075137,https://salsa.debian.org/desktop-themes-team/materia-gtk-theme, https://github.com/nana-4/materia-theme/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +maybe,-0.652177660962719,1.93149932274197,-1.16866022133638,https://salsa.debian.org/debian/maybe, https://github.com/p-e-w/maybe,363.71996527777776,0,2,1,2.0,60.0,0.0,0.0 +marionette-collective,0.217220103404235,1.72252198514271,-0.431550566565911,https://salsa.debian.org/puppet-team/mcollective, https://github.com/puppetlabs/marionette-collective,3620.684814814815,74,101,0,96.0,3.0,0.0,0.0 +meanwhile,1.62254944680273,3.58133278579298,0.721415453862569,https://salsa.debian.org/debian/meanwhile, https://github.com/obriencj/meanwhile.git,352.0019560185185,1,1,0,2.0,2.0,0.0,0.0 +medusa,0.741883479621951,1.84163370329508,0.147300046663789,https://salsa.debian.org/pkg-security-team/medusa, https://github.com/jmk-foofus/medusa,2618.444803240741,4,10,0,10.0,71.0,0.0,0.0 +memkind,-2.33387552471405,-0.433038043535726,-2.77548730545927,https://github.com/kilobyte/memkind/tree/debian,https://github.com/kilobyte/memkind,3438.672719907408,30,85,0,50.0,2.0,0.0,0.0 +memtest86plus,2.26018528628274,3.30212897485253,1.55769243684764,https://salsa.debian.org/debian/memtest86plus, https://github.com/memtest86plus/memtest86plus.git,663.5358564814815,15,10,0,12.0,7.0,0.0,0.0 +mercator,-0.234086840652156,1.6571874231603,-0.993372483998148,https://salsa.debian.org/games-team/mercator, https://github.com/worldforge/mercator,5633.239039351852,0,7,0,5.0,5.0,0.0,0.0 +minidb,-0.45256841907941,1.7891094238408,-0.901882065554934,https://salsa.debian.org/mwerlen/minidb, https://github.com/thp/minidb.git,4339.298495370371,2,5,0,6.0,13.0,0.0,0.0 +minieigen,-0.209769675603415,0.786065492510597,-0.499567475024185,https://salsa.debian.org/science-team/minieigen, https://github.com/eudoxos/minieigen,4093.450752314815,0,12,0,7.0,18.0,0.0,0.0 +minisat,0.0818650829524057,0.863791765665042,-0.15323867669451,http://github.com/niklasso/minisat,http://github.com/niklasso/minisat,2028.9114699074075,1,5,0,0.0,0.0,0.0,0.0 +mkalias,-0.740847515735731,2.3071375002201,-1.57621282814895,https://salsa.debian.org/ruby-team/mkalias, https://github.com/LucianoPC/mkalias,68.21174768518519,0,3,0,2.0,2.0,0.0,0.0 +mktorrent,0.271181439442618,1.91015156083863,-0.315832001818897,https://salsa.debian.org/debian/mktorrent, https://github.com/pobrn/mktorrent,4360.041099537037,6,10,1,14.0,72.0,0.0,4.0 +mmtf-java,-5.03760231596504,-2.85148861820668,-5.47815425531561,https://salsa.debian.org/debichem-team/mmtf-java, https://github.com/rcsb/mmtf-java.git,2412.847696759259,1,12,0,6.0,13.0,0.0,0.0 +mmv,1.55973476794188,2.94192603962731,0.773988539168809,https://salsa.debian.org/debian/mmv, https://github.com/rrthomas/mmv.git,971.7580902777778,1,1,0,2.0,10.0,0.0,0.0 +mod_proxy_msrpc,-0.468677179433164,2.40360308588261,-1.24270834324212,https://github.com/bombadil/mod_proxy_msrpc/tree/debian/unstable,https://github.com/bombadil/mod_proxy_msrpc,805.3717013888889,0,4,0,1.0,20.0,0.0,1.0 +modem-cmd,-0.605289894259069,1.75550138408221,-1.15870302120442,https://salsa.debian.org/debian/modem-cmd, https://github.com/imZack/modem-cmd.git,939.0309143518518,1,4,0,2.0,5.0,0.0,0.0 +modplug-tools,0.463298821112483,2.94935695533041,-0.471250617669065,https://salsa.debian.org/multimedia-team/modplugtools, https://github.com/alexmyczko/modplug-tools,1743.9280324074075,2,5,0,3.0,4.0,0.0,0.0 +mom,-0.677784916058875,1.9853085783476,-1.50728694118819,https://salsa.debian.org/debian/mom, https://github.com/oVirt/mom,4972.782615740741,31,16,1,25.0,13.0,0.0,0.0 +mongo-c-driver,0.391595473477886,1.65193424172172,-0.0863313882600918,https://github.com/mongodb/mongo-c-driver/tree/master,https://github.com/mongodb/mongo-c-driver,5226.526793981481,106,124,0,112.0,0.0,0.0,0.0 +montage-wrapper,-0.386527472910265,1.18098125307059,-0.668011703348263,https://salsa.debian.org/debian-astro-team/montage-wrapper, https://github.com/astropy/montage-wrapper,3566.7960416666665,2,16,3,14.0,39.0,0.0,0.0 +mopidy-alsamixer,-0.09870874302379,2.93036560441422,-0.881097199259371,https://salsa.debian.org/mopidy-team/mopidy-alsamixer, https://github.com/mopidy/mopidy-alsamixer,3286.448043981481,1,5,0,5.0,39.0,0.0,0.0 +mopidy-beets,-0.60468876716376,2.36764996189768,-1.39229735541233,https://salsa.debian.org/mopidy-team/mopidy-beets, https://github.com/mopidy/mopidy-beets,3887.541516203704,2,10,0,7.0,27.0,0.0,0.0 +mopidy-dleyna,-0.615038725844887,1.86266196394951,-1.27641626402764,https://salsa.debian.org/mopidy-team/mopidy-dleyna, https://github.com/tkem/mopidy-dleyna.git,2554.961435185185,1,6,0,4.0,25.0,0.0,0.0 +mp3wrap,0.151188324867718,2.40476259056656,-0.40725515518371,https://github.com/marciosouza20/mp3wrap.git,https://github.com/marciosouza20/mp3wrap.git,36.62663194444445,0,2,0,1.0,0.0,0.0,0.0 +mpc123,0.851583607973775,3.56922845277816,-0.236625915855961,https://salsa.debian.org/debian/mpc123, https://github.com/bucciarati/mpc123,4095.704571759259,0,4,0,1.0,2.0,0.0,0.0 +mpdscribble,-0.723310154425429,-0.598143845452287,-0.765881663312659,https://salsa.debian.org/mpd-team/mpdscribble, https://github.com/MusicPlayerDaemon/mpdscribble.git,5474.359548611111,22,17,0,29.0,73.0,0.0,0.0 +mruby,-1.55143909996595,-1.30194929065207,-1.62438574917646,https://github.com/mruby-debian/mruby,https://github.com/mruby-debian/mruby,4156.842152777778,37,353,0,255.0,2.0,0.0,32.0 +msgpuck,-1.93451017963427,0.753860640813869,-2.5762644187483,https://github.com/rtsisyk/msgpuck,https://github.com/rtsisyk/msgpuck,1946.1415046296297,3,13,1,11.0,15.0,0.0,0.0 +msitools,0.96857864755185,3.44374449162624,0.0488138918020949,https://salsa.debian.org/debian/msitools, https://github.com/GNOME/msitools,4016.1692361111113,45,59,0,69.0,4.0,0.0,0.0 +mt-st,0.108214275192562,0.698343961100699,-0.160819349688546,https://salsa.debian.org/debian/mt-st, https://github.com/iustin/mt-st,3093.7365972222224,14,5,0,10.0,19.0,0.0,0.0 +mtpolicyd,-1.33115066473906,1.09540393332349,-1.99159053719769,https://salsa.debian.org/debian/mtpolicyd, https://github.com/benningm/mtpolicyd.git,2186.992615740741,1,4,0,3.0,21.0,0.0,0.0 +mtree-netbsd,-1.52166383626568,0.572560043278904,-2.03556084093468,https://github.com/jgoerzen/mtree-netbsd,https://github.com/jgoerzen/mtree-netbsd,1538.1956712962965,1,7,0,0.0,1.0,0.0,0.0 +MU-CITE,-0.925616528159329,0.961302198182606,-1.30986782122688,https://salsa.debian.org/debian/mu-cite, https://github.com/cvs-m17n-org/MU-CITE,4190.520243055556,2,3,0,4.0,3.0,0.0,0.0 +mudita24,-0.0566417904610256,1.52710694552876,-0.456890960392167,https://salsa.debian.org/multimedia-team/mudita24, https://github.com/NielsMayer/mudita24,2005.0215046296296,0,5,0,2.0,9.0,0.0,0.0 +mugshot,0.731663001564658,2.79600372787142,-0.155405937283755,https://salsa.debian.org/python-team/packages/mugshot, https://github.com/bluesabre/mugshot,3560.174490740741,3,9,0,7.0,25.0,0.0,1.0 +mupen64plus-video-glide64,0.116030911407292,2.32420182705417,-0.318535188077387,https://salsa.debian.org/games-team/mupen64plus-video-glide64, https://github.com/mupen64plus/mupen64plus-video-glide64,4871.843831018518,2,17,0,10.0,7.0,0.0,0.0 +mupen64plus-video-z64,-0.0630178118737083,1.30753012602191,-0.326353184052343,https://salsa.debian.org/games-team/mupen64plus-video-z64, https://github.com/mupen64plus/mupen64plus-video-z64,4885.85150462963,2,17,0,10.0,9.0,0.0,0.0 +muse,0.983489297580252,2.86043146231553,0.0726359101978075,https://salsa.debian.org/emacsen-team/muse-el, https://github.com/alexott/muse,5662.627488425926,5,7,0,9.0,14.0,0.0,0.0 +mwrap,-0.60552133436639,1.7500683414578,-1.36207792757055,https://salsa.debian.org/pkg-octave-team/mwrap, https://github.com/zgimbutas/mwrap,3042.604085648148,0,5,0,3.0,5.0,0.0,0.0 +nasty,1.73986227881638,6.04062879096075,0.355975741680568,https://salsa.debian.org/pkg-security-team/nasty, https://github.com/folkertvanheusden/nasty,2093.112141203704,0,4,0,2.0,1.0,0.0,0.0 +natsort,0.230739500706296,2.10957873454759,-0.239786098611584,https://salsa.debian.org/python-team/packages/natsort, https://github.com/SethMMorton/natsort.git,4065.054710648148,9,17,0,19.0,20.0,0.0,1.0 +repairer,0.924989159011341,3.22801093240111,0.0005519878433564,https://salsa.debian.org/l10n-korean-team/nautilus-filename-repairer, https://github.com/choehwanjin/repairer,2878.1959953703704,0,1,0,1.0,3.0,0.0,1.0 +nb2plots,-1.17067066899969,1.558936665396,-1.74337414795107,https://salsa.debian.org/python-team/packages/nb2plots, https://github.com/matthew-brett/nb2plots.git,2904.445428240741,2,7,0,6.0,21.0,0.0,0.0 +nbtscan,0.298999259572459,1.09081084898162,-0.072258625771159,https://salsa.debian.org/pkg-security-team/nbtscan, https://github.com/resurrecting-open-source-projects/nbtscan,1167.6364699074074,1,3,0,3.0,5.0,0.0,0.0 +ncbi-vdb,-0.656936156929907,-0.26758908733846,-0.775351605537836,https://salsa.debian.org/med-team/ncbi-vdb, https://github.com/ncbi/ncbi-vdb,3367.922349537037,2,70,0,18.0,30.0,0.0,5.0 +ncompress,0.636027623628673,1.86633446586061,0.0985497422934872,https://salsa.debian.org/debian/ncompress, https://github.com/vapier/ncompress.git,4740.116585648148,11,4,0,11.0,22.0,0.0,0.0 +ndctl,-0.302677153206692,0.473161468964432,-0.493948873656966,https://github.com/kilobyte/ndctl/tree/debian,https://github.com/kilobyte/ndctl,3210.136550925926,74,5,0,51.0,3.0,0.0,0.0 +ndg_httpsclient,0.154665527223133,1.0783288298941,-0.0773848972549682,https://salsa.debian.org/debian/ndg-httpsclient, https://github.com/cedadev/ndg_httpsclient,3360.013634259259,2,11,0,6.0,22.0,0.0,0.0 +neard-deb,0.531144467946746,4.09536046112595,-0.529664666273204,https://github.com/sameo/neard-deb,https://github.com/sameo/neard-deb,1126.7503587962965,0,4,0,2.0,2.0,0.0,0.0 +neartree,-0.026948666800543,2.39931456404801,-0.536624577915971,https://salsa.debian.org/science-team/neartree, https://github.com/yayahjb/neartree,4773.070625,0,3,0,2.0,2.0,0.0,0.0 +neko-debian,-0.347611667280448,0.402467422255248,-0.652059806336647,https://github.com/HaxeFoundation/neko-debian,https://github.com/HaxeFoundation/neko-debian,5577.663611111111,6,3,0,5.0,2.0,0.0,0.0 +neomutt,1.06606856927625,2.73514034016519,0.293529978768261,https://salsa.debian.org/mutt-team/neomutt, https://github.com/neomutt/neomutt,5650.5290625,268,117,0,322.0,9.0,0.0,0.0 +netconsole,-1.22008733076531,0.812746842992176,-1.64492554545763,https://salsa.debian.org/debian/netconsole, https://github.com/ionos-cloud/netconsole,558.8093865740741,0,1,0,1.0,2.0,0.0,0.0 +nfoview,-0.0498945428525614,1.66639642436479,-0.673619570770205,https://salsa.debian.org/python-team/packages/nfoview, https://github.com/otsaloma/nfoview,5657.375486111111,14,5,0,10.0,8.0,0.0,0.0 +nfstrace,0.716914155261743,2.64899839973439,-0.0935466194169699,https://salsa.debian.org/debian/nfstrace, https://github.com/epam/nfstrace,2137.7810300925926,9,42,0,16.0,32.0,0.0,0.0 +nifti2dicom,-0.118660725884591,1.29914234704403,-0.690326613808782,https://salsa.debian.org/med-team/nifti2dicom, https://github.com/biolab-unige/nifti2dicom.git,2963.076689814815,0,2,0,2.0,17.0,0.0,0.0 +ninka,-1.24279269841902,1.03386185307708,-1.68422465225299,https://salsa.debian.org/debian/ninka, https://github.com/dmgerman/ninka,4166.381226851852,0,17,0,10.0,27.0,0.0,0.0 +nload,0.692028657183034,1.96620387362066,0.124898373210051,https://github.com/marciosouza20/nload.git,https://github.com/marciosouza20/nload.git,5.863414351851852,0,1,0,1.0,0.0,0.0,0.0 +nm-tray,0.240241998372959,2.98991863506518,-0.450969541576458,https://salsa.debian.org/lxqt-team/nm-tray, https://github.com/palinek/nm-tray.git,2973.374907407408,57,7,0,43.0,49.0,0.0,0.0 +nocache,0.632372085509384,2.88030065921643,-0.0685290560079679,https://salsa.debian.org/debian/nocache, https://github.com/Feh/nocache,3331.9030902777777,2,12,0,11.0,42.0,0.0,0.0 +nodau,-1.59918098332055,-0.380553834464518,-1.90579865504737,https://salsa.debian.org/carnil/nodau, https://github.com/TicklishHoneyBee/nodau,4073.180266203704,2,7,0,3.0,6.0,0.0,0.0 +abbrev-js,0.316722509197571,2.542411628883,-0.116508926135461,https://salsa.debian.org/js-team/node-abbrev, https://github.com/npm/abbrev-js,5021.0522106481485,6,4,0,8.0,4.0,0.0,0.0 +node-active-x-obfuscator,-1.71020774505304,0.493982295689758,-2.1488227767458,https://salsa.debian.org/js-team/node-active-x-obfuscator, https://github.com/felixge/node-active-x-obfuscator.git,979.9255902777778,0,5,0,3.0,0.0,0.0,0.0 +address,-2.35128297317918,-0.229649289142757,-2.78518795649704,https://salsa.debian.org/js-team/node-address, https://github.com/node-modules/address.git,3756.583020833333,7,6,0,10.0,40.0,0.0,0.0 +ansi.js,0.651738311031233,3.38014235064764,-0.0622958721762609,https://salsa.debian.org/js-team/node-ansi, https://github.com/TooTallNate/ansi.js.git,2003.1949884259257,2,6,0,6.0,9.0,0.0,0.0 +applause,-2.60250313131545,0.0354812348524657,-3.27688620176222,https://salsa.debian.org/js-team/node-applause, https://github.com/outatime/applause.git,2600.159259259259,1,6,0,4.0,30.0,0.0,0.0 +node-cross-spawn-async,-0.478930722598944,0.528776497426984,-0.656856316148003,https://salsa.debian.org/js-team/node-cross-spawn-async, https://github.com/IndigoUnited/node-cross-spawn-async.git,674.7693981481482,1,12,0,8.0,0.0,0.0,0.0 +CSSStyleDeclaration,0.0239557667809956,3.78822964041075,-1.19987219826631,https://salsa.debian.org/js-team/node-cssstyle, https://github.com/chad3814/CSSStyleDeclaration.git,2137.453703703704,0,9,0,5.0,0.0,0.0,0.0 +d3-color,-0.567705875800697,2.34534257603246,-1.2646061130172,https://salsa.debian.org/js-team/node-d3-color, https://github.com/d3/d3-color,3047.924004629629,6,8,0,11.0,41.0,0.0,0.0 +node-dashdash,0.812623388044188,3.80261070206085,-0.0104465218940569,https://salsa.debian.org/js-team/node-dashdash, https://github.com/trentm/node-dashdash,3657.7330671296295,5,4,0,5.0,28.0,0.0,0.0 +node-deep-extend,0.307438417466485,2.59637205168232,-0.125693488111904,https://salsa.debian.org/js-team/node-deep-extend, https://github.com/unclechu/node-deep-extend.git,2469.077951388889,2,14,0,9.0,1.0,0.0,0.0 +dryice,-1.67778512157904,0.500982202464185,-2.14402133875302,https://salsa.debian.org/js-team/node-dryice, https://github.com/mozilla/dryice,1261.6348842592593,1,13,0,12.0,13.0,0.0,0.0 +node-errno,0.741995179761301,3.98601218296453,-0.0698570251612158,https://salsa.debian.org/js-team/node-errno, https://github.com/rvagg/node-errno,3152.3664699074075,3,11,0,11.0,31.0,0.0,0.0 +node-error-ex,-0.19943076513987,1.9233568791881,-0.626826184769078,https://salsa.debian.org/js-team/node-error-ex, https://github.com/qix-/node-error-ex.git,1448.5513425925926,4,8,0,5.0,25.0,0.0,0.0 +node-extend,0.700412932796901,3.61225818919211,-0.0527431496560251,https://salsa.debian.org/js-team/node-extend, https://github.com/justmoon/node-extend,4212.296400462963,1,15,0,13.0,1.0,0.0,0.0 +extend-shallow,-0.100692136205994,1.39274847089215,-0.363671536434426,https://salsa.debian.org/js-team/node-extend-shallow, https://github.com/jonschlinkert/extend-shallow,1170.6065046296296,0,5,0,3.0,4.0,0.0,0.0 +file-entry-cache,-0.78553361572232,1.96735490701636,-1.50114745977769,https://salsa.debian.org/js-team/node-file-entry-cache, https://github.com/royriojas/file-entry-cache.git,3181.554513888889,1,11,0,7.0,28.0,0.0,0.0 +node-findit,-0.205126007199742,2.73554935807846,-1.12092089615555,https://salsa.debian.org/js-team/node-findit2, https://github.com/andrewrk/node-findit.git,1811.444560185185,1,5,0,4.0,4.0,0.0,0.0 +fined,-0.163742539394668,2.12424520338368,-0.598287199531069,https://salsa.debian.org/js-team/node-fined, https://github.com/js-cli/fined,1982.843368055556,5,3,0,4.0,10.0,0.0,0.0 +node-form-data,0.507407617885221,3.03438749006499,-0.0886742860872058,https://salsa.debian.org/js-team/node-form-data, https://github.com/felixge/node-form-data.git,3563.1111111111118,9,36,0,35.0,5.0,0.0,0.0 +node-fresh,-0.345055731141623,2.00399135029319,-0.811249460027619,https://salsa.debian.org/js-team/node-fresh, https://github.com/visionmedia/node-fresh.git,3886.792523148148,11,3,0,12.0,37.0,0.0,0.0 +is-npm,0.978505177551384,4.50080521665299,0.0095997285176371,https://salsa.debian.org/js-team/node-is-npm, https://github.com/sindresorhus/is-npm,2619.041863425926,7,2,0,7.0,17.0,0.0,0.0 +is-typedarray,0.398097881605519,2.52872054104809,-0.0976776714706169,https://salsa.debian.org/js-team/node-is-typedarray, https://github.com/hughsk/is-typedarray,349.2442476851852,0,2,0,2.0,14.0,0.0,0.0 +isexe,0.309926564616418,2.61556674780173,-0.121825868604509,https://salsa.debian.org/js-team/node-isexe, https://github.com/isaacs/isexe,2832.2716319444444,1,4,0,1.0,26.0,0.0,0.0 +Jed,0.930746440764879,4.53344234930115,-0.0663016053168416,https://salsa.debian.org/js-team/node-jed, https://github.com/messageformat/Jed.git,1857.5029166666664,3,19,0,18.0,61.0,0.0,0.0 +jsesc,0.147810251199857,3.25063593574763,-0.509836101762777,https://salsa.debian.org/js-team/node-jsesc, https://github.com/mathiasbynens/jsesc,2702.1588310185184,6,3,0,8.0,44.0,0.0,0.0 +JSON.minify,-0.169187179320983,2.04088568277682,-0.616269415822788,https://salsa.debian.org/js-team/node-jsonminify, https://github.com/fkei/JSON.minify,3001.0353819444445,2,9,0,8.0,17.0,0.0,0.0 +JSONSelect,0.560182168885194,4.31588308765484,-0.455161948493957,https://salsa.debian.org/js-team/node-jsonselect, https://github.com/lloyd/JSONSelect,984.9768287037036,2,8,0,8.0,38.0,0.0,0.0 +knockout,-1.6817262175752,0.974888800445681,-2.31445041120492,https://salsa.debian.org/js-team/node-knockout, https://github.com/knockout/knockout.git,4081.797268518519,20,115,0,81.0,45.0,0.0,125.0 +lastfm-node,-0.280250257607831,3.23168612717949,-1.20929347459816,https://salsa.debian.org/js-team/node-lastfm, https://github.com/jammus/lastfm-node,4644.450601851852,2,11,2,9.0,28.0,0.0,0.0 +node-macaddress,-2.35780895421623,0.328634487578677,-2.98378560862831,https://salsa.debian.org/js-team/node-macaddress, https://github.com/scravy/node-macaddress,2961.771226851852,5,13,0,12.0,73.0,0.0,0.0 +map-visit,0.0602654466272552,2.34009842947509,-0.382383602841092,https://salsa.debian.org/js-team/node-map-visit, https://github.com/jonschlinkert/map-visit,645.0525115740741,0,3,0,2.0,3.0,0.0,0.0 +media-typer,-0.131455438500662,2.35671832759043,-0.755435114766888,https://salsa.debian.org/js-team/node-media-typer, https://github.com/expressjs/media-typer.git,2488.2450925925928,1,1,0,2.0,14.0,0.0,0.0 +merge-descriptors,-0.236806141078472,2.29012224120798,-0.806977495822024,https://salsa.debian.org/js-team/node-merge-descriptors, https://github.com/component/merge-descriptors.git,3669.9310532407408,3,3,0,6.0,17.0,0.0,0.0 +node-mess,-0.287232767122892,3.30467983678511,-1.21798330724086,https://salsa.debian.org/js-team/node-mess, https://github.com/bobrik/node-mess,420.8625578703704,0,3,0,2.0,2.0,0.0,0.0 +minimist,0.306391694788387,2.52636543620496,-0.122364382703569,https://salsa.debian.org/js-team/node-minimist, https://github.com/minimistjs/minimist.git,3791.1307175925926,12,9,0,15.0,32.0,0.0,0.0 +mixin-deep,0.204101590526034,2.30123186703565,-0.346097003267975,https://salsa.debian.org/js-team/node-mixin-deep, https://github.com/jonschlinkert/mixin-deep.git,1736.2018171296295,0,4,0,2.0,14.0,0.0,0.0 +node-mocks-http,-1.71384544531774,1.12901205397518,-2.42387043918479,https://salsa.debian.org/js-team/node-mocks-http, https://github.com/howardabrams/node-mocks-http,4315.254907407408,38,62,0,71.0,2.0,0.0,0.0 +repeat-element,0.0303018924920797,2.20505202148755,-0.399164761000657,https://salsa.debian.org/js-team/node-repeat-element, https://github.com/jonschlinkert/repeat-element,2277.980902777778,1,7,0,3.0,6.0,0.0,0.0 +semver-diff,0.325708866303715,2.53870067002644,-0.125046441132227,https://salsa.debian.org/js-team/node-semver-diff, https://github.com/sindresorhus/semver-diff,2556.954525462963,4,3,0,6.0,11.0,0.0,0.0 +node-simple-swizzle,-3.38281081414827,-1.53194352673748,-3.75105262783598,https://salsa.debian.org/js-team/node-simple-swizzle, https://github.com/qix-/node-simple-swizzle,2271.2482060185184,1,3,0,1.0,3.0,0.0,0.0 +snapdragon,0.0374783953629951,2.12447209054768,-0.385312660260935,https://salsa.debian.org/js-team/node-snapdragon, https://github.com/jonschlinkert/snapdragon.git,2160.505972222222,3,7,0,4.0,43.0,0.0,0.0 +ssri,0.433174013362414,2.85786683367901,-0.110736752570487,https://salsa.debian.org/js-team/node-ssri, https://github.com/zkat/ssri.git,2084.480960648148,2,3,0,2.0,27.0,0.0,0.0 +starttls,-3.20282716286771,0.312377645378091,-4.16563339474857,https://salsa.debian.org/js-team/node-starttls, https://github.com/mattcg/starttls,960.3696643518518,0,1,0,1.0,4.0,0.0,0.0 +string_decoder,0.432451352149301,3.00065387829445,-0.11388556041529,https://salsa.debian.org/js-team/node-string-decoder, https://github.com/nodejs/string_decoder.git,2072.548344907407,4,7,0,8.0,9.0,0.0,0.0 +test-commonjs,-1.18655279239841,1.20576422158202,-1.62213275829168,https://salsa.debian.org/js-team/node-test, https://github.com/Gozala/test-commonjs,826.1617476851852,0,3,0,1.0,16.0,0.0,0.0 +timed-out,0.534083437007622,2.81845062663013,-0.0696353825300733,https://salsa.debian.org/js-team/node-timed-out, https://github.com/floatdrop/timed-out,2343.4748726851853,6,7,0,8.0,28.0,0.0,0.0 +nodeenv,-0.657064895654331,1.48123278572443,-1.14641202998015,https://github.com/chriskuehl/nodeenv,https://github.com/chriskuehl/nodeenv,2128.729178240741,1,53,0,38.0,2.0,0.0,0.0 +nomacs,-0.119525261879833,0.47997282526778,-0.317632408743415,https://salsa.debian.org/lxqt-team/nomacs, https://github.com/nomacs/nomacs/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +nomnom,0.445291434323681,2.94027066625103,-0.332229597531666,https://github.com/mogaal/nomnom,https://github.com/mogaal/nomnom,917.9151273148148,0,2,0,1.0,0.0,0.0,0.0 +nordlicht,-0.419084010559164,1.2017878416935,-0.727454419469016,https://salsa.debian.org/multimedia-team/nordlicht, https://github.com/nordlicht/nordlicht,1854.1766087962965,0,8,0,6.0,13.0,0.0,0.0 +norm,0.0395894571205532,0.572587985673826,-0.037267926162076,https://salsa.debian.org/debian/norm, https://github.com/USNavalResearchLaboratory/norm,1453.1532523148148,10,9,0,11.0,11.0,0.0,1.0 +notmuch-addrlookup-c,-0.576514327926408,1.18775081367445,-1.01489130805224,https://salsa.debian.org/debian/notmuch-addrlookup, https://github.com/aperezdc/notmuch-addrlookup-c,3177.036828703704,9,8,0,14.0,28.0,0.0,0.0 +nsca-ng,-0.56336585116709,0.840435375497642,-1.12886714315489,https://salsa.debian.org/nagios-team/nsca-ng, https://github.com/weiss/nsca-ng.git,3817.9714236111113,3,6,0,5.0,6.0,0.0,0.0 +nsnake.debian,0.294306693001527,3.11801458646876,-0.512619256999377,https://github.com/alexdantas/nsnake.debian,https://github.com/alexdantas/nsnake.debian,35.09344907407407,0,2,0,0.0,1.0,0.0,0.0 +nsntrace,-0.210709526573928,2.4855302502504,-1.1430329762773,https://salsa.debian.org/sudip/nsntrace, https://github.com/nsntrace/nsntrace,1665.640150462963,1,7,0,6.0,21.0,0.0,0.0 +nss-passwords,0.798288153131981,3.72626608311281,-0.284388678695291,https://salsa.debian.org/ocaml-team/nss-passwords, https://github.com/glondu/nss-passwords,4767.951886574074,1,2,0,2.0,4.0,0.0,0.0 +nulib2,-2.88352813112769,-0.617225292019355,-3.32186220567484,https://salsa.debian.org/debian/nulib2, https://github.com/fadden/nulib2.git,2958.867164351852,0,7,0,4.0,9.0,0.0,0.0 +nuntius-linux,0.0562256061460863,3.00685250214119,-0.757895807437041,https://salsa.debian.org/debian/nuntius-linux, https://github.com/holylobster/nuntius-linux.git,1285.1505324074074,2,13,0,13.0,70.0,0.0,0.0 +nurpawiki,-4.20242583595846,-3.46817243027817,-4.35040398124291,https://salsa.debian.org/ocaml-team/nurpawiki, https://github.com/glondu/nurpawiki.git,5643.41212962963,0,6,0,2.0,2.0,0.0,0.0 +nvidia-modprobe,0.545740999476335,2.63343285523559,-0.0334171669270346,https://salsa.debian.org/nvidia-team/nvidia-modprobe, https://github.com/NVIDIA/nvidia-modprobe,3894.0040972222223,0,3,0,3.0,7.0,0.0,0.0 +nvidia-persistenced,0.554405071820581,2.85212831528211,-0.0537008340595563,https://salsa.debian.org/nvidia-team/nvidia-persistenced, https://github.com/NVIDIA/nvidia-persistenced,3871.020960648148,0,3,0,3.0,13.0,0.0,0.0 +nvidia-settings,0.315147961460213,2.76844051227516,-0.228849959583953,https://salsa.debian.org/nvidia-team/nvidia-settings, https://github.com/NVIDIA/nvidia-settings,5776.464930555556,24,5,0,16.0,143.0,0.0,0.0 +ocaml-ffmpeg,-1.76803246261922,0.621394630828162,-2.2379595426391,https://salsa.debian.org/ocaml-team/ocaml-ffmpeg, https://github.com/savonet/ocaml-ffmpeg.git,4033.376863425926,2,11,0,7.0,20.0,0.0,0.0 +ocaml-fileutils,-1.20786113175008,0.06771540309995,-1.45957569717602,https://salsa.debian.org/ocaml-team/ocaml-fileutils, https://github.com/gildor478/ocaml-fileutils.git,1144.378402777778,5,6,0,7.0,12.0,0.0,0.0 +ocaml-flac,-1.75076236617426,-0.350224532652695,-2.18902158435421,https://salsa.debian.org/ocaml-team/ocaml-flac, https://github.com/savonet/ocaml-flac.git,4915.279699074074,1,7,0,5.0,12.0,0.0,0.0 +gen,-2.91409646418086,-0.992291004321486,-3.31718696811559,https://salsa.debian.org/ocaml-team/ocaml-gen, https://github.com/c-cube/gen.git,3422.9857291666667,3,9,0,7.0,18.0,0.0,0.0 +ocaml-gstreamer,-0.175799754020537,2.60877233085239,-0.943082577639775,https://salsa.debian.org/ocaml-team/ocaml-gstreamer, https://github.com/savonet/ocaml-gstreamer.git,5244.753553240741,0,10,0,5.0,5.0,0.0,0.0 +ocaml-http,-1.54946051282033,1.58641070755953,-2.44654732590304,https://salsa.debian.org/ocaml-team/ocaml-http, https://github.com/sacerdot/ocaml-http.git,3570.2121180555555,1,3,0,2.0,0.0,0.0,0.0 +ocaml-inotify,-1.59844473814278,0.206726915975742,-1.97851302725586,https://salsa.debian.org/ocaml-team/ocaml-inotify, https://github.com/whitequark/ocaml-inotify,3586.280324074074,4,14,0,12.0,18.0,0.0,0.0 +ocaml-ladspa,-0.711865707758547,1.2358767301964,-1.43923132323344,https://salsa.debian.org/ocaml-team/ocaml-ladspa, https://github.com/savonet/ocaml-ladspa.git,4935.873645833333,1,7,0,4.0,4.0,0.0,0.0 +ocaml-ogg,-0.348620775993297,1.64371204997355,-0.96036025032132,https://salsa.debian.org/ocaml-team/ocaml-ogg, https://github.com/savonet/ocaml-ogg.git,5318.851840277778,1,7,0,4.0,2.0,0.0,0.0 +ocaml-opus,-0.945763206767853,1.35136386252887,-1.53810351093048,https://salsa.debian.org/ocaml-team/ocaml-opus, https://github.com/savonet/ocaml-opus.git,3889.197881944445,2,8,0,5.0,6.0,0.0,0.0 +res,-1.66192560718984,0.840438772603249,-2.37466946495814,https://salsa.debian.org/ocaml-team/ocaml-res, https://github.com/mmottl/res,3234.9244791666665,0,3,0,2.0,6.0,0.0,0.0 +ocaml-sha,-2.16157776555031,-1.56248040982033,-2.24745109731745,https://salsa.debian.org/ocaml-team/ocaml-sha, https://github.com/djs55/ocaml-sha.git,5351.19724537037,6,17,0,13.0,26.0,0.0,0.0 +ocaml-shine,-1.65373377007863,1.62127331012907,-2.50151750138973,https://salsa.debian.org/ocaml-team/ocaml-shine, https://github.com/savonet/ocaml-shine.git,3549.8277199074078,1,5,0,4.0,3.0,0.0,0.0 +ocaml-speex,-0.61538468061694,3.15438408626204,-1.9637699192271,https://salsa.debian.org/ocaml-team/ocaml-speex, https://github.com/savonet/ocaml-speex.git,5316.998090277778,1,7,0,4.0,2.0,0.0,0.0 +ocaml-ssl,1.26272191657388,4.06857202274891,0.140167964934891,https://salsa.debian.org/ocaml-team/ocaml-ssl, https://github.com/savonet/ocaml-ssl.git,5405.43818287037,11,30,0,25.0,0.0,0.0,0.0 +ocaml-theora,-0.251229253367388,3.15443606428574,-1.47281718966282,https://salsa.debian.org/ocaml-team/ocaml-theora, https://github.com/savonet/ocaml-theora.git,5316.99707175926,1,8,0,4.0,1.0,0.0,0.0 +ocaml-usb,-0.597368689342733,1.7793339383376,-1.2060915240285,https://salsa.debian.org/ocaml-team/ocaml-usb, https://github.com/letoh/ocaml-usb.git,4549.607326388889,1,8,0,5.0,8.0,0.0,0.0 +ocaml-vorbis,-0.982200132117348,0.998691427331073,-1.55205631917929,https://salsa.debian.org/ocaml-team/ocaml-vorbis, https://github.com/savonet/ocaml-vorbis.git,5459.566967592593,1,7,0,4.0,3.0,0.0,0.0 +ocamlagrep,-2.16520774964579,-1.01216289690604,-2.35724824650124,https://salsa.debian.org/ocaml-team/ocamlagrep, https://github.com/xavierleroy/ocamlagrep,2115.1310300925925,1,2,0,2.0,4.0,0.0,0.0 +gsl-ocaml,0.121644881238371,1.0155865796742,-0.246286652234876,https://salsa.debian.org/ocaml-team/ocamlgsl, https://github.com/mmottl/gsl-ocaml.git,3442.604502314815,1,11,0,10.0,21.0,0.0,0.0 +ocaml-makefile,-0.421444503870647,1.34113958259059,-0.786439559843771,https://salsa.debian.org/ocaml-team/ocamlmakefile, https://github.com/mmottl/ocaml-makefile.git,1922.9826967592592,0,4,0,2.0,8.0,0.0,0.0 +ocl-icd,0.278145441089624,0.851566458814537,0.0330607099598748,https://salsa.debian.org/opencl-team/ocl-icd, https://github.com/OCL-DEV/ocl-icd.git,4207.2761689814815,2,15,0,5.0,27.0,0.0,0.0 +octave-mpi,-0.0320527810472114,2.14923315120322,-0.636483429385765,https://salsa.debian.org/pkg-octave-team/octave-mpi, https://github.com/carlodefalco/octave-mpi,1390.1617245370371,1,3,0,1.0,6.0,0.0,0.0 +odil,-0.831778982805444,-0.397569441970177,-0.935173424395587,https://salsa.debian.org/med-team/odil, https://github.com/lamyj/odil,2678.173935185185,5,12,1,9.0,15.0,0.0,1.0 +odt2txt,0.955245423913758,3.26435998684312,0.092339100573121,https://salsa.debian.org/debian/odt2txt, https://github.com/dstosberg/odt2txt,3417.1558564814814,1,9,0,5.0,28.0,0.0,0.0 +ofxstatement,-0.83877240272067,1.489861656908,-1.29242181476493,https://github.com/gerasiov/ofxstatement,https://github.com/gerasiov/ofxstatement,1632.6686689814817,1,16,0,11.0,3.0,0.0,0.0 +ofxstatement-plugins,-0.555491606281527,2.2730604682278,-1.2542888677083,https://github.com/gerasiov/ofxstatement-plugins,https://github.com/gerasiov/ofxstatement-plugins,1689.0224305555555,0,3,0,1.0,0.0,0.0,0.0 +ogdi,0.463786622249594,1.38273816076166,0.070319022698257,https://salsa.debian.org/debian-gis-team/ogdi-dfsg, https://github.com/libogdi/ogdi.git,5366.5318402777775,1,9,0,9.0,11.0,0.0,0.0 +onesixtyone,-0.0525705363605959,1.79935769724069,-0.440487615518883,https://salsa.debian.org/pkg-security-team/onesixtyone, https://github.com/trailofbits/onesixtyone,3350.054722222222,10,11,0,15.0,26.0,0.0,0.0 +onionbalance,-1.70721970893323,-0.295338348899362,-2.10449057465737,https://salsa.debian.org/debian/onionbalance, https://github.com/asn-d6/onionbalance.git,3123.215324074074,16,8,0,18.0,1.0,0.0,0.0 +Sensor,-0.705184402046312,0.502182003342549,-0.967790766997195,https://salsa.debian.org/multimedia-team/openni-sensor-primesense, https://github.com/PrimeSense/Sensor.git,1069.8803587962964,0,3,0,3.0,28.0,0.0,1.0 +opensysusers,-3.30966318272112,-1.10811188350065,-3.75114493400175,https://salsa.debian.org/debian/opensysusers, https://github.com/cromerc/opensysusers.git,1929.928923611111,4,11,0,5.0,2.0,0.0,0.0 +OpenMSX,0.583206602447851,3.28250279543403,-0.143041661106683,https://salsa.debian.org/openttd-team/openttd-openmsx, https://github.com/OpenTTD/OpenMSX.git,5037.872604166667,7,8,0,10.0,18.0,0.0,0.0 +OpenSFX,0.0341113683294794,1.81042168290464,-0.372304383785565,https://salsa.debian.org/openttd-team/openttd-opensfx, https://github.com/OpenTTD/OpenSFX.git,5073.9709953703705,7,9,0,10.0,14.0,0.0,0.0 +opentyrian,-0.470902051471208,1.81286825060979,-0.900636134856693,https://salsa.debian.org/games-team/opentyrian, https://github.com/opentyrian/opentyrian.git,5445.219652777778,6,17,0,14.0,49.0,0.0,1.0 +platform,0.451088318283465,2.26041531250433,-0.0788317432754388,https://salsa.debian.org/debian/p8-platform, https://github.com/Pulse-Eight/platform.git,2947.354976851852,2,28,0,23.0,43.0,0.0,0.0 +pacemaker,1.1235155798957,1.88496777553281,0.624011358509109,https://salsa.debian.org/ha-team/pacemaker, https://github.com/ClusterLabs/pacemaker,5780.195138888889,21,156,0,106.0,3.0,0.0,0.0 +packit,1.48942834311213,3.95720756313973,0.379462691509891,https://salsa.debian.org/debian/packit, https://github.com/resurrecting-open-source-projects/packit,2522.847418981481,3,11,0,6.0,11.0,0.0,0.0 +pacman4console.debian,0.732053164869324,3.02920056306834,-0.160214161055993,https://github.com/alexdantas/pacman4console.debian,https://github.com/alexdantas/pacman4console.debian,442.21788194444446,0,2,0,2.0,1.0,0.0,0.0 +padthv1,-0.0637358518245524,2.79918411204868,-0.675200257772177,https://salsa.debian.org/multimedia-team/padthv1, https://github.com/rncbc/padthv1.git,2334.0719907407406,2,4,0,3.0,6.0,0.0,0.0 +pajeng,-2.29189452913937,-1.42465217231699,-2.57490979180573,https://salsa.debian.org/debian/pajeng, https://github.com/schnorr/pajeng.git,3890.985347222222,1,24,0,10.0,19.0,0.0,5.0 +pam_p11,-0.548583161526234,0.964446186711403,-1.10646596188949,https://salsa.debian.org/opensc-team/pam-p11, https://github.com/OpenSC/pam_p11.git,5663.13488425926,3,10,0,11.0,24.0,0.0,0.0 +ParaFly,-0.703785079701501,1.18315726331133,-1.09308492113404,https://salsa.debian.org/med-team/parafly, https://github.com/ParaFly/ParaFly,1437.0966666666666,1,4,0,2.0,1.0,0.0,0.0 +parallax,-0.0887932063431924,2.38916268908533,-0.651790373985227,https://salsa.debian.org/python-team/packages/parallax, https://github.com/krig/parallax,5166.3950231481485,4,10,0,8.0,6.0,0.0,0.0 +partd,0.209615305596686,2.61932118029702,-0.319373273551156,https://salsa.debian.org/python-team/packages/partd, https://github.com/dask/partd.git,3130.777800925926,14,10,0,21.0,46.0,0.0,0.0 +pass-extension-tail,-0.357805089713447,2.13667166838152,-0.933380627622862,https://salsa.debian.org/debian/pass-extension-tail, https://github.com/palortoff/pass-extension-tail,1892.8072222222224,4,2,0,5.0,18.0,0.0,0.0 +pastedeploy,0.159009188486497,1.14750716010409,-0.172766059220747,https://salsa.debian.org/python-team/packages/pastedeploy, https://github.com/Pylons/pastedeploy,4320.11724537037,5,24,0,21.0,22.0,0.0,0.0 +pastescript,0.353823270629373,1.35513254390523,-0.0943410822422864,https://salsa.debian.org/python-team/packages/pastescript, https://github.com/cdent/pastescript.git,3347.957789351852,0,24,0,14.0,7.0,0.0,0.0 +libdir,-0.025480314189379,1.53960860686673,-0.434339048580152,https://salsa.debian.org/multimedia-team/pd/pd-libdir, https://github.com/pure-data/libdir,2709.947835648148,1,9,0,3.0,1.0,0.0,0.0 +pd-lua,-0.369383513489571,1.75905614601873,-0.780819933618331,https://salsa.debian.org/multimedia-team/pd/pd-lua, https://github.com/agraef/pd-lua.git,3302.6912962962965,1,8,0,6.0,12.0,0.0,0.0 +moonlib,-0.220576523706958,2.02263054824689,-0.734517258281122,https://salsa.debian.org/multimedia-team/pd/pd-moonlib, https://github.com/MetaluNet/moonlib.git,5328.802453703704,1,11,0,4.0,15.0,0.0,0.0 +PuRestJson,-0.254922486955698,2.32023704201916,-0.819840459329826,https://salsa.debian.org/multimedia-team/pd/pd-purest-json, https://github.com/residuum/PuRestJson.git,4472.353229166667,0,8,0,5.0,24.0,0.0,2.0 +tclpd,-0.547232275125129,1.06538912069422,-0.832098932599204,https://salsa.debian.org/multimedia-team/pd/pd-tclpd, https://github.com/pd-externals/tclpd.git,5367.883101851852,2,12,0,3.0,0.0,0.0,0.0 +vbap,-0.212897524820705,1.75445810869701,-0.743250436269704,https://salsa.debian.org/multimedia-team/pd/pd-vbap, https://github.com/pd-externals/vbap.git,5156.073657407407,1,7,0,2.0,5.0,0.0,0.0 +xsample,-0.381260306551827,1.95255552142034,-0.868159642502604,https://salsa.debian.org/multimedia-team/pd/pd-xsample, https://github.com/grrrr/xsample.git,5672.9809259259255,1,13,0,6.0,6.0,0.0,0.0 +pdd,-0.96846896187884,1.30331332356726,-1.4106955015723,https://salsa.debian.org/debian/pdd, https://github.com/jarun/pdd.git,2233.847233796296,8,9,0,11.0,23.0,0.0,0.0 +pdfresurrect,-0.23996525388638,1.67946261371584,-0.59688237072784,https://salsa.debian.org/debian/pdfresurrect, https://github.com/enferex/pdfresurrect.git,5171.962662037037,2,6,0,6.0,19.0,0.0,0.0 +pkg-pdudaemon,-2.91306680643287,-0.145850824528147,-3.67906102762584,https://github.com/pdudaemon/pkg-pdudaemon,https://github.com/pdudaemon/pkg-pdudaemon,1898.0415972222224,9,22,0,16.0,6.0,0.0,0.0 +peony-extensions,-0.564111606101361,1.86591915571183,-1.18780438162773,https://github.com/ukui/peony-extensions,https://github.com/ukui/peony-extensions,1664.9383333333333,13,33,0,17.0,25.0,0.0,0.0 +pgcharts,-0.330716905200357,2.72524688656416,-1.4219394500185,https://github.com/dimitri/pgcharts,https://github.com/dimitri/pgcharts,2256.897962962963,2,6,0,6.0,31.0,0.0,0.0 +pgextwlist,-2.63340214747954,-0.157692962640915,-3.26209228710891,https://github.com/dimitri/pgextwlist,https://github.com/dimitri/pgextwlist,4298.991944444444,2,19,0,12.0,42.0,0.0,0.0 +pgl_ddl_deploy,-2.51856607601625,0.331077085543538,-3.25977074886732,https://salsa.debian.org/postgresql/pgl-ddl-deploy, https://github.com/enova/pgl_ddl_deploy.git,2403.256342592593,9,12,0,10.0,14.0,0.0,0.0 +pglogical_ticker,-1.99300280945124,1.9160778986305,-3.10566554484295,https://salsa.debian.org/postgresql/pglogical-ticker, https://github.com/enova/pglogical_ticker.git,1787.9691666666668,1,7,0,5.0,4.0,0.0,0.0 +pgpdump,0.36143950333341,1.51893397726003,-0.144183693016058,https://salsa.debian.org/debian/pgpdump, https://github.com/kazu-yamamoto/pgpdump.git,4538.913414351852,4,16,0,16.0,27.0,0.0,0.0 +pgqd,-1.0872351669669,1.05950568376667,-1.53142551702268,https://salsa.debian.org/postgresql/pgqd, https://github.com/pgq/pgqd,2225.1037384259257,0,1,0,1.0,6.0,0.0,0.0 +pgsphere,-0.619432588970695,1.61934040316392,-1.06735716946819,https://salsa.debian.org/postgresql/pgsphere, https://github.com/akorotkov/pgsphere,1961.9147569444444,2,10,0,7.0,24.0,0.0,0.0 +pgsql-asn1oid,-2.13226834673849,0.0065837251058692,-2.97386233799254,https://github.com/df7cb/pgsql-asn1oid,https://github.com/df7cb/pgsql-asn1oid,2425.896435185185,3,4,0,5.0,4.0,0.0,0.0 +pgxnclient,-0.85155888131832,0.370970429938223,-1.10149104887505,https://salsa.debian.org/postgresql/pgxnclient, https://github.com/pgxn/pgxnclient.git,3780.249421296296,0,7,0,7.0,26.0,0.0,1.0 +pgzero,-0.0710203462137889,2.37147323598952,-0.527322234446825,https://github.com/RPi-Distro/pgzero,https://github.com/RPi-Distro/pgzero,1071.605775462963,0,31,0,19.0,0.0,0.0,0.0 +Auth_SASL,0.442191496402906,2.67699921686042,-0.103972592038695,https://salsa.debian.org/php-team/pear/php-auth-sasl, https://github.com/pear/Auth_SASL.git,5614.356469907408,3,10,0,7.0,4.0,0.0,0.0 +ansel,-1.62227992306444,-0.0808757241466176,-1.9210437163213,https://salsa.debian.org/horde-team/php-horde-ansel, https://github.com/horde/ansel.git,3572.815891203704,8,17,0,12.0,3.0,0.0,0.0 +Auth,0.204785208426788,2.94636390757602,-0.554406768101709,https://salsa.debian.org/horde-team/php-horde-auth, https://github.com/horde/Auth.git,5222.153275462963,8,22,0,12.0,3.0,0.0,0.0 +Cache,-0.174470052161785,2.10645961966901,-0.621323731432901,https://salsa.debian.org/horde-team/php-horde-cache, https://github.com/horde/Cache.git,5348.468379629629,2,18,0,8.0,2.0,0.0,0.0 +Compress,-0.0162442715598989,2.573155410047,-0.607693905543425,https://salsa.debian.org/horde-team/php-horde-compress, https://github.com/horde/Compress.git,5217.754375,1,13,0,8.0,5.0,0.0,0.0 +Core,-0.380260796125779,0.352626984782649,-0.604615374728719,https://salsa.debian.org/horde-team/php-horde-core, https://github.com/horde/Core.git,5226.49806712963,21,34,0,20.0,9.0,0.0,0.0 +Crypt,0.187511708701416,2.67518359293262,-0.532965220602124,https://salsa.debian.org/horde-team/php-horde-crypt, https://github.com/horde/Crypt.git,5471.736516203704,3,21,0,13.0,6.0,0.0,0.0 +Css_Parser,-0.0402081222000321,2.52915570961585,-0.602732940546386,https://salsa.debian.org/horde-team/php-horde-css-parser, https://github.com/horde/Css_Parser.git,3874.0563888888887,2,10,0,6.0,4.0,0.0,0.0 +Data,0.183171821003295,3.09938130965899,-0.570655251896387,https://salsa.debian.org/horde-team/php-horde-data, https://github.com/horde/Data.git,5055.593263888889,0,13,0,7.0,3.0,0.0,0.0 +Dav,-0.386658763732866,0.750534238995732,-0.628487162499523,https://salsa.debian.org/horde-team/php-horde-dav, https://github.com/horde/Dav.git,3872.1194328703705,2,9,0,7.0,2.0,0.0,0.0 +Db,-0.264682174789894,1.37929818175092,-0.615400448018519,https://salsa.debian.org/horde-team/php-horde-db, https://github.com/horde/Db.git,5458.164583333333,6,19,0,14.0,13.0,0.0,0.0 +Editor,-0.223426584733947,1.34298704341404,-0.605941186398711,https://salsa.debian.org/horde-team/php-horde-editor, https://github.com/horde/Editor.git,5432.443020833333,0,10,0,4.0,0.0,0.0,0.0 +Form,0.14252789650246,2.56464496021431,-0.550380122776327,https://salsa.debian.org/horde-team/php-horde-form, https://github.com/horde/Form.git,5422.499918981482,3,17,0,11.0,2.0,0.0,0.0 +gollem,-0.171618986615286,2.89817525914709,-0.866777393612127,https://salsa.debian.org/horde-team/php-horde-gollem, https://github.com/horde/gollem.git,3924.770474537037,2,13,0,7.0,0.0,0.0,0.0 +groupware,-0.879575572702774,1.95588867647421,-1.59509283216139,https://salsa.debian.org/horde-team/php-horde-groupware, https://github.com/horde/groupware.git,2932.578773148148,1,6,0,5.0,0.0,0.0,0.0 +Icalendar,0.411178925029687,3.9130953915899,-0.513041815715152,https://salsa.debian.org/horde-team/php-horde-icalendar, https://github.com/horde/Icalendar.git,5159.372430555555,2,18,0,9.0,3.0,0.0,0.0 +Image,0.861625622312404,3.84661135149808,-0.192976466940603,https://salsa.debian.org/horde-team/php-horde-image, https://github.com/horde/Image.git,5265.799756944444,5,20,0,14.0,5.0,0.0,0.0 +Imap_Client,0.0159896158795933,2.45672857559943,-0.594186089846477,https://salsa.debian.org/horde-team/php-horde-imap-client, https://github.com/horde/Imap_Client.git,5506.481261574074,14,23,0,22.0,21.0,0.0,0.0 +imp,-0.387264654144177,1.28922363095689,-0.857146627686056,https://salsa.debian.org/horde-team/php-horde-imp, https://github.com/horde/imp.git,5305.90525462963,15,26,0,24.0,15.0,0.0,0.0 +ingo,-0.738291040308077,0.443103494356446,-0.947574171352426,https://salsa.debian.org/horde-team/php-horde-ingo, https://github.com/horde/ingo.git,4403.567083333333,10,21,0,17.0,4.0,0.0,0.0 +JavascriptMinify_Jsmin,-1.31533346419952,2.29216057565816,-2.4364015778352,https://salsa.debian.org/horde-team/php-horde-javascriptminify-jsmin, https://github.com/horde/JavascriptMinify_Jsmin.git,3603.589363425926,2,12,0,6.0,1.0,0.0,0.0 +kronolith,-0.166253261321685,1.87236583137514,-0.795113908579552,https://salsa.debian.org/horde-team/php-horde-kronolith, https://github.com/horde/kronolith.git,4413.8611458333335,19,29,0,22.0,6.0,0.0,0.0 +ListHeaders,0.496037656791296,4.18984525323947,-0.503645341941662,https://salsa.debian.org/horde-team/php-horde-listheaders, https://github.com/horde/ListHeaders.git,4255.579930555556,2,10,0,6.0,1.0,0.0,0.0 +Mail,-0.363916444363985,1.13321039067331,-0.626998217232575,https://salsa.debian.org/horde-team/php-horde-mail, https://github.com/horde/Mail.git,4915.307268518519,7,13,0,11.0,9.0,0.0,0.0 +Mapi,-0.0661710251511498,2.58767980448231,-0.618532739220528,https://salsa.debian.org/horde-team/php-horde-mapi, https://github.com/horde/Mapi.git,2259.7966087962964,1,5,0,5.0,3.0,0.0,0.0 +Memcache,0.0040161630453602,2.72211667023621,-0.602899602198373,https://salsa.debian.org/horde-team/php-horde-memcache, https://github.com/horde/Memcache.git,4490.554363425926,3,7,0,6.0,1.0,0.0,0.0 +Mime,0.312598091998098,3.61990381078814,-0.539292025154763,https://salsa.debian.org/horde-team/php-horde-mime, https://github.com/horde/Mime.git,5432.603287037037,7,18,0,12.0,8.0,0.0,0.0 +Mime_Viewer,-0.114949450873328,1.94240763174753,-0.601643281374749,https://salsa.debian.org/horde-team/php-horde-mime-viewer, https://github.com/horde/Mime_Viewer.git,4839.7695138888885,2,13,0,7.0,0.0,0.0,0.0 +mnemo,-0.620782744288486,0.974790302662827,-0.892064866876727,https://salsa.debian.org/horde-team/php-horde-mnemo, https://github.com/horde/mnemo.git,4989.44556712963,5,17,0,11.0,4.0,0.0,0.0 +Mongo,0.91677132679345,5.42989372433676,-0.479383727697856,https://salsa.debian.org/horde-team/php-horde-mongo, https://github.com/horde/Mongo.git,3839.649965277778,0,8,0,5.0,0.0,0.0,0.0 +Pack,0.214272562492599,3.19453329251686,-0.549560368021634,https://salsa.debian.org/horde-team/php-horde-pack, https://github.com/horde/Pack.git,3648.4273842592593,1,11,0,5.0,0.0,0.0,0.0 +passwd,-0.961211522570345,1.47321790709633,-1.6779013899252,https://salsa.debian.org/horde-team/php-horde-passwd, https://github.com/horde/passwd.git,4947.638958333333,4,19,0,12.0,5.0,0.0,0.0 +Role,-0.44794183208143,1.17290206026408,-0.767030268859667,https://salsa.debian.org/horde-team/php-horde-role, https://github.com/horde/Role.git,4810.131111111111,0,8,0,5.0,0.0,0.0,0.0 +sesha,-1.16215640136414,1.54504444921965,-1.99219940889212,https://salsa.debian.org/horde-team/php-horde-sesha, https://github.com/horde/sesha.git,2802.3719791666667,3,8,0,7.0,1.0,0.0,0.0 +Test,-0.238823004013114,1.87884049237919,-0.641514352188213,https://salsa.debian.org/horde-team/php-horde-test, https://github.com/horde/Test.git,5359.615,2,15,0,7.0,3.0,0.0,0.0 +Text_Filter,-0.143714547390321,1.07686967436859,-0.555585014115903,https://salsa.debian.org/horde-team/php-horde-text-filter, https://github.com/horde/Text_Filter.git,5251.306493055556,3,17,0,9.0,6.0,0.0,0.0 +Text_Filter_Jsmin,-1.31240451781138,2.12226153886276,-2.42195535802247,https://salsa.debian.org/horde-team/php-horde-text-filter-jsmin, https://github.com/horde/Text_Filter_Jsmin.git,2314.732372685185,0,4,0,5.0,1.0,0.0,0.0 +trean,-0.305868272713468,1.97802468726843,-0.878929578804094,https://salsa.debian.org/horde-team/php-horde-trean, https://github.com/horde/trean.git,3562.835347222222,2,9,0,7.0,2.0,0.0,0.0 +turba,-0.457965055258577,1.31178896235939,-0.885930477256157,https://salsa.debian.org/horde-team/php-horde-turba, https://github.com/horde/turba.git,4857.3907407407405,15,22,0,21.0,16.0,0.0,0.0 +webmail,-0.405335363366864,1.79623636367251,-1.01222555094498,https://salsa.debian.org/horde-team/php-horde-webmail, https://github.com/horde/webmail.git,2950.8800810185185,2,6,0,6.0,2.0,0.0,0.0 +whups,-1.06542308450506,1.99933178965644,-1.89562708427228,https://salsa.debian.org/horde-team/php-horde-whups, https://github.com/horde/whups.git,3431.486701388889,4,18,0,11.0,0.0,0.0,0.0 +wicked,-1.07494338366801,1.99451637104157,-1.89217524542563,https://salsa.debian.org/horde-team/php-horde-wicked, https://github.com/horde/wicked.git,4893.998171296296,5,14,0,9.0,5.0,0.0,0.0 +php-invoker,-0.290512786061908,1.95959461381953,-0.889933414880879,https://salsa.debian.org/php-team/pear/php-invoker, https://github.com/sebastianbergmann/php-invoker,4657.89662037037,2,7,0,5.0,14.0,0.0,0.0 +Mail_Mime,0.0757330812547995,0.668749696907802,-0.124991113420402,https://salsa.debian.org/php-team/pear/php-mail-mime, https://github.com/pear/Mail_Mime.git,5740.767650462963,4,21,0,21.0,26.0,0.0,0.0 +Net_LDAP2,0.639885318257764,2.49018646004348,-0.0984745451090751,https://salsa.debian.org/php-team/pear/php-net-ldap2, https://github.com/pear/Net_LDAP2.git,3594.485416666667,3,10,0,6.0,8.0,0.0,0.0 +Net_Sieve,0.52860867987332,2.55133255454418,-0.107103554773453,https://salsa.debian.org/php-team/pear/php-net-sieve, https://github.com/pear/Net_Sieve.git,4982.018912037037,1,17,0,14.0,13.0,0.0,0.0 +Net_SMTP,0.612479398529543,2.48356959222482,0.0048970818145977,https://salsa.debian.org/php-team/pear/php-net-smtp, https://github.com/pear/Net_SMTP.git,5742.501909722222,6,20,0,18.0,56.0,0.0,0.0 +Net_Socket,0.907994996745038,3.04058139061094,0.117819562938565,https://salsa.debian.org/php-team/pear/php-net-socket, https://github.com/pear/Net_Socket.git,3345.463252314815,1,15,0,13.0,12.0,0.0,0.0 +manifest,0.0385459704976402,2.44553072576695,-0.417874197026899,https://salsa.debian.org/php-team/pear/php-phar-io-manifest, https://github.com/phar-io/manifest.git,2379.9058680555554,3,9,0,9.0,17.0,0.0,0.0 +ReflectionCommon,0.0165590904002181,2.28668639714466,-0.412435710798256,https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-common, https://github.com/phpDocumentor/ReflectionCommon,2836.508460648148,10,9,0,12.0,17.0,0.0,0.0 +proxy-manager-lts,-0.469657562496154,1.74429330828993,-0.900080734206303,https://salsa.debian.org/php-team/pear/php-proxy-manager, https://github.com/FriendsOfPHP/proxy-manager-lts.git,3717.899050925926,21,47,0,55.0,26.0,0.0,0.0 +cache,0.944765666055755,4.16922910379261,-0.0612099303670947,https://salsa.debian.org/php-team/pear/php-psr-cache, https://github.com/php-fig/cache.git,2530.1591435185187,8,10,0,14.0,1.0,0.0,0.0 +http-message,-0.0680426390312836,3.3445895376759,-1.03124991562073,https://salsa.debian.org/php-team/pear/php-psr-http-message, https://github.com/php-fig/http-message,3219.452534722222,3,24,0,21.0,3.0,0.0,0.0 +Base,-0.0522904131714493,2.75253811313558,-0.974338110629934,https://salsa.debian.org/php-team/pear/php-zeta-base, https://github.com/zetacomponents/Base.git,5395.174872685186,0,15,0,9.0,11.0,0.0,0.0 +ConsoleTools,-0.0924800072217611,2.73874415667246,-0.997572383151449,https://salsa.debian.org/php-team/pear/php-zeta-console-tools, https://github.com/zetacomponents/ConsoleTools,5321.850185185185,2,14,0,12.0,14.0,0.0,0.0 +motranslator,0.387530807701854,2.86773161614253,-0.265429509953545,https://salsa.debian.org/phpmyadmin-team/motranslator, https://github.com/phpmyadmin/motranslator,2762.962835648148,6,14,2,15.0,27.0,0.0,0.0 +global-state,0.247922924982528,2.37332354693648,-0.316637866460641,https://salsa.debian.org/php-team/pear/phpunit-global-state, https://github.com/sebastianbergmann/global-state,3396.3039351851853,9,7,0,12.0,28.0,0.0,0.0 +object-enumerator,0.254325420628901,2.97955180600844,-0.337224691437077,https://salsa.debian.org/php-team/pear/phpunit-object-enumerator, https://github.com/sebastianbergmann/object-enumerator,2872.263252314815,6,4,0,8.0,11.0,0.0,0.0 +pkg-pick,0.155165736371546,3.38878984699403,-0.755115262487176,https://github.com/eavgerinos/pkg-pick,https://github.com/eavgerinos/pkg-pick,1591.7380671296296,0,2,0,1.0,0.0,0.0,0.0 +pickleshare,0.371750047160967,2.42431399615297,-0.0927808248876728,https://salsa.debian.org/python-team/packages/pickleshare, https://github.com/pickleshare/pickleshare,3583.9321875,1,14,0,11.0,33.0,0.0,0.0 +picocom,0.716218773749993,2.57220547679763,0.0257322881730791,https://salsa.debian.org/debian/picocom, https://github.com/npat-efault/picocom,2876.49875,2,13,0,11.0,34.0,0.0,0.0 +plexus-interactivity,0.283151966694231,2.33305401763242,-0.173915333794921,https://salsa.debian.org/java-team/plexus-interactivity-api, https://github.com/codehaus-plexus/plexus-interactivity.git,2997.8996759259257,5,11,0,10.0,10.0,0.0,0.0 +plotnetcfg,-1.02202717844307,1.32237398630487,-1.45608020794805,https://salsa.debian.org/debian/plotnetcfg, https://github.com/jbenc/plotnetcfg.git,2530.945150462963,2,3,0,3.0,11.0,0.0,0.0 +pmailq,-0.344401861175758,2.26936376380763,-1.13677995418968,https://salsa.debian.org/kolter/pmailq, https://github.com/k0lter/pmailq,3215.899363425926,0,2,0,1.0,0.0,0.0,0.0 +pmemkv,-2.56665635042394,-0.187433663300834,-3.01323085854248,https://github.com/kilobyte/pmemkv/tree/debian,https://github.com/kilobyte/pmemkv,2071.5010185185183,11,29,0,21.0,1.0,0.0,0.0 +pnscan,0.047464548494991,1.17591376502643,-0.337696201463,https://salsa.debian.org/pkg-security-team/pnscan, https://github.com/ptrrkssn/pnscan,1864.9276967592596,1,4,0,2.0,6.0,0.0,0.0 +podcastparser,0.110247366439153,2.4024478230949,-0.341238094638426,https://salsa.debian.org/debian/podcastparser, https://github.com/gpodder/podcastparser.git,3885.408865740741,6,16,0,18.0,26.0,0.0,0.0 +podget,0.0442858046342972,1.25920981629234,-0.458457840240292,https://salsa.debian.org/debian/podget, https://github.com/dvehrs/podget.git,2945.994837962963,1,10,0,8.0,35.0,0.0,1.0 +policyd-rate-limit,-1.54838919382906,0.860310983855883,-1.98558249586634,https://salsa.debian.org/python-team/packages/policyd-rate-limit, https://github.com/nitmir/policyd-rate-limit.git,2604.465451388889,1,4,0,4.0,24.0,0.0,0.0 +pps-tools,0.747248796270144,4.48143059549159,-0.437477846254583,https://github.com/bzed/pps-tools,https://github.com/bzed/pps-tools,3767.043414351852,3,10,0,5.0,2.0,0.0,0.0 +prads,0.259994196999911,3.8326314267203,-1.03394544781072,https://salsa.debian.org/debian/prads, https://github.com/gamelinux/prads.git,4237.008263888889,2,39,0,11.0,30.0,0.0,2.0 +prefix,-1.1387443889012,1.47053143024996,-2.00977064468329,https://github.com/dimitri/prefix,https://github.com/dimitri/prefix,5681.206678240741,1,10,0,7.0,23.0,0.0,0.0 +preggy,-2.92285552628942,-1.0464425404911,-3.31867365029399,https://salsa.debian.org/python-team/packages/preggy, https://github.com/heynemann/preggy,3206.047175925926,1,12,2,8.0,14.0,0.0,0.0 +preprepare,-2.22109058971355,-0.597730393683522,-2.59985701152518,https://github.com/dimitri/preprepare,https://github.com/dimitri/preprepare,5242.633761574074,0,4,0,2.0,5.0,0.0,0.0 +primus_vk,-0.421290841720463,2.921882742043,-1.23347524431008,https://salsa.debian.org/nvidia-team/primus-vk, https://github.com/felixdoerre/primus_vk,1911.529537037037,4,7,0,9.0,59.0,0.0,0.0 +princeprocessor,-1.26928375323949,1.07370924794994,-1.72101729931593,https://salsa.debian.org/pkg-security-team/princeprocessor, https://github.com/hashcat/princeprocessor.git,3216.904398148148,0,10,0,6.0,22.0,0.0,0.0 +proftpd-mod_case,-1.46464758728635,0.766272450426854,-2.02540924374874,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-case, https://github.com/Castaglia/proftpd-mod_case.git,4180.930405092593,0,4,0,1.0,5.0,0.0,0.0 +mod_clamav,-0.519950015667521,1.68042038048494,-1.29690193707197,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-clamav, https://github.com/jbenden/mod_clamav.git,3704.0200810185183,2,4,0,5.0,16.0,0.0,0.0 +proftpd-mod_counter,-3.90919577990779,-1.63110207351013,-4.3444753088454,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-counter, https://github.com/Castaglia/proftpd-mod_counter,4182.156412037037,0,3,0,1.0,3.0,0.0,0.0 +proftpd-mod_msg,-1.76107759555527,0.182162149210163,-2.28999652660185,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-msg, https://github.com/Castaglia/proftpd-mod_msg,1530.1719212962962,0,2,0,1.0,1.0,0.0,0.0 +proftpd-mod_tar,-1.01804643330443,1.41288647862948,-1.73531200480138,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-tar, https://github.com/Castaglia/proftpd-mod_tar.git,4180.905393518518,0,2,0,1.0,3.0,0.0,0.0 +proftpd-mod_vroot,1.59885423374212,4.02315278929942,0.568513066278763,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-vroot, https://github.com/Castaglia/proftpd-mod_vroot.git,3875.286851851852,0,5,0,3.0,23.0,0.0,0.0 +bind_exporter,-1.21912038403755,0.700315670038558,-1.66961737911248,https://salsa.debian.org/go-team/packages/prometheus-bind-exporter, https://github.com/prometheus-community/bind_exporter,2946.820011574074,21,14,0,25.0,30.0,0.0,1.0 +mailexporter,-1.46192629447316,0.835326558166831,-1.97088772748091,https://salsa.debian.org/go-team/packages/prometheus-mailexporter, https://github.com/cherti/mailexporter,2367.3820486111117,4,4,1,6.0,16.0,0.0,0.0 +pspg,-0.361050699895103,2.01300788415699,-0.820706513049175,https://salsa.debian.org/postgresql/pspg, https://github.com/okbob/pspg,2316.4040509259257,13,25,0,29.0,14.0,0.0,0.0 +Psychtoolbox-3,0.203352755626666,1.65292325757521,-0.37149262854368,https://github.com/neurodebian/Psychtoolbox-3/tree/debian,https://github.com/neurodebian/Psychtoolbox-3,5782.847916666667,14,56,0,38.0,2.0,0.0,0.0 +pt2-clone,-0.366824941788857,2.04424713341111,-0.870937555296044,https://salsa.debian.org/multimedia-team/pt2-clone, https://github.com/8bitbubsy/pt2-clone,1458.0896180555555,2,4,0,4.0,7.0,0.0,0.0 +PTable,-0.497756721895357,1.90297774222152,-1.03556077883777,https://salsa.debian.org/python-team/packages/ptable, https://github.com/kxxoling/PTable,3352.297199074074,2,16,0,9.0,45.0,0.0,0.0 +printer-driver-ptouch,2.94613939519945,6.82342804349508,1.51855611812132,https://salsa.debian.org/printing-team/ptouch-driver, https://github.com/philpem/printer-driver-ptouch.git,1342.562199074074,5,13,0,9.0,42.0,0.0,1.0 +puppetlabs-mysql,-1.08522694756704,0.911414696974354,-1.59455947848082,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-mysql, https://github.com/puppetlabs/puppetlabs-mysql,4577.2790046296295,89,362,0,277.0,0.0,0.0,0.0 +puppetlabs-xinetd,-1.72852091203077,0.76182363664486,-2.2296657542962,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-xinetd, https://github.com/puppetlabs/puppetlabs-xinetd,4771.07056712963,11,67,0,44.0,13.0,0.0,0.0 +purl,-1.34039029167924,0.909506171782387,-1.80754102822029,https://salsa.debian.org/python-team/packages/purl, https://github.com/codeinthehole/purl,3937.9855092592593,4,18,0,13.0,36.0,0.0,0.0 +pwgen,1.35395625158755,2.29147539327698,0.785581725914606,https://github.com/tytso/pwgen,https://github.com/tytso/pwgen,1771.036550925926,6,3,0,5.0,16.0,0.0,0.0 +project--perl-webget,-0.453062875836316,1.9572713674887,-1.06289151188951,https://salsa.debian.org/debian/pwget, https://github.com/jaalto/project--perl-webget,3883.396423611111,0,1,0,1.0,0.0,0.0,0.0 +pydl,-0.495608365400541,0.324022984738779,-0.642218824002594,https://salsa.debian.org/debian-astro-team/pydl, https://github.com/weaverba137/pydl,4774.052777777778,1,11,1,10.0,23.0,0.0,0.0 +pyepr,-0.939183997293192,0.138948768520847,-1.21878766996311,https://salsa.debian.org/debian-gis-team/pyepr, https://github.com/avalentino/pyepr.git,4620.466585648148,0,3,0,1.0,7.0,0.0,0.0 +pyfribidi,-1.31114373633633,-0.446986286180443,-1.58984842922395,https://salsa.debian.org/python-team/packages/pyfribidi, https://github.com/pediapress/pyfribidi.git,2842.49849537037,1,5,0,3.0,14.0,0.0,0.0 +PyGnuplot,-0.309281142371387,1.99710083681855,-0.816765547990162,https://salsa.debian.org/python-team/packages/pygnuplot, https://github.com/benschneider/PyGnuplot,2586.319305555556,0,7,0,3.0,14.0,0.0,0.0 +PyGreSQL,0.654635033502717,1.7130047409937,0.0882104426891017,https://salsa.debian.org/debian/pygresql, https://github.com/PyGreSQL/PyGreSQL,5390.1054513888885,4,4,4,8.0,32.0,0.0,0.0 +pygtail,-0.539020118992098,3.13292925607172,-1.61790882828562,https://salsa.debian.org/python-team/packages/pygtail, https://github.com/bgreenlee/pygtail,4147.394780092593,7,19,0,17.0,74.0,0.0,0.0 +pygtkspellcheck,0.7257355054143,2.61661141477408,0.0292934831785931,https://salsa.debian.org/python-team/packages/pygtkspellcheck, https://github.com/koehlma/pygtkspellcheck,4478.330185185185,2,11,1,6.0,23.0,0.0,0.0 +python-pass,-0.884700482124453,1.92189763510546,-1.62068355154731,https://salsa.debian.org/python-team/packages/pypass, https://github.com/ReAzem/python-pass.git,1834.5500810185183,3,11,0,9.0,16.0,0.0,1.0 +pypdf,0.336313629449464,1.87848467629318,-0.115518185475218,https://salsa.debian.org/debian/pypdf, https://github.com/py-pdf/pypdf,4367.592175925926,137,91,3,200.0,0.0,0.0,0.0 +python-pypeg2-debian,0.0855915398578102,2.25455245287497,-0.34580517821732,https://github.com/fiete201/python-pypeg2-debian,https://github.com/fiete201/python-pypeg2-debian,825.4394097222222,0,2,0,1.0,1.0,0.0,0.0 +Pyphen,-0.518895103853741,1.80200106239471,-0.977778682317542,https://salsa.debian.org/python-team/packages/pyphen, https://github.com/Kozea/Pyphen,3769.922326388889,0,13,0,5.0,56.0,0.0,0.0 +pyqso,-0.307095303624084,2.50750144517562,-0.977767231233681,https://salsa.debian.org/debian-hamradio-team/pyqso, https://github.com/ctjacobs/pyqso,2213.788564814815,2,9,5,5.0,25.0,0.0,0.0 +PyQwt3D,-0.397059011512334,0.744059748268288,-0.945141313476562,https://salsa.debian.org/python-team/packages/pyqwt3d, https://github.com/GauiStori/PyQwt3D,1540.4164930555555,0,3,0,1.0,1.0,0.0,0.0 +pyRFC3339,0.237519356434784,1.61668134856796,-0.0819212233808752,https://salsa.debian.org/python-team/packages/pyrfc3339, https://github.com/kurtraschke/pyRFC3339,3552.201458333333,1,7,0,7.0,14.0,0.0,0.0 +pysmi,0.239327018456762,2.21183034668648,-0.184147894622264,https://salsa.debian.org/python-team/packages/pysmi, https://github.com/etingof/pysmi,1806.330601851852,5,7,0,9.0,59.0,0.0,0.0 +pytest-runner,0.461573642872439,3.29481787102451,-0.472145598518505,https://salsa.debian.org/python-team/packages/pytest-runner, https://github.com/pytest-dev/pytest-runner.git,4387.118969907408,16,10,0,24.0,56.0,0.0,0.0 +pytest-tornado,-1.66103426456241,0.234670332900345,-2.05941203679703,https://salsa.debian.org/python-team/packages/pytest-tornado, https://github.com/eugeniy/pytest-tornado,2043.2375578703704,2,15,0,12.0,44.0,0.0,0.0 +activipy,-2.42311325952415,-0.815642979245098,-2.77879137707984,https://salsa.debian.org/python-team/packages/python-activipy, https://github.com/w3c-social/activipy,294.98199074074074,0,1,0,1.0,9.0,0.0,0.0 +python-admesh,-0.127588953243687,1.1910011407174,-0.482386520004136,https://salsa.debian.org/science-team/python-admesh, https://github.com/admesh/python-admesh,1607.8702662037035,1,1,0,2.0,9.0,0.0,0.0 +alignlib,-4.63939723072567,-1.91125987527709,-5.39874876509306,https://salsa.debian.org/med-team/python-alignlib, https://github.com/marcelm/alignlib.git,1738.8239930555555,1,3,0,2.0,2.0,0.0,0.0 +altgraph,-0.177664161225728,2.0796554316984,-0.617563094232779,https://salsa.debian.org/python-team/packages/python-altgraph, https://github.com/ronaldoussoren/altgraph,5013.400891203703,1,6,0,4.0,5.0,0.0,0.0 +arpy,-0.754590286423082,2.54869807999372,-1.72984202812202,https://salsa.debian.org/python-team/packages/python-arpy, https://github.com/viraptor/arpy.git,4328.123113425926,1,9,0,8.0,14.0,0.0,0.0 +asttokens,0.33408103626771,3.01141836548719,-0.288701326396789,https://salsa.debian.org/python-team/packages/python-asttokens, https://github.com/gristlabs/asttokens.git,2518.985543981481,9,8,0,14.0,30.0,0.0,0.0 +python-caja,0.0214160855011559,0.73959956688193,-0.20850701844582,https://salsa.debian.org/debian-mate-team/python-caja, https://github.com/mate-desktop/python-caja.git,4326.721134259259,10,21,0,18.0,39.0,0.0,0.0 +python-driver,-0.806275424657523,1.60416839197922,-1.74809489846118,https://salsa.debian.org/python-team/packages/python-cassandra-driver, https://github.com/datastax/python-driver.git,3941.7978935185183,43,186,0,129.0,3.0,0.0,0.0 +changelog,-1.70448054473229,-0.290367732987352,-2.05024305940995,https://salsa.debian.org/python-team/packages/python-changelog, https://github.com/sqlalchemyorg/changelog,3951.474050925926,6,7,0,5.0,7.0,0.0,0.0 +cheroot,0.218476662586452,2.57903897032906,-0.256634445307027,https://salsa.debian.org/python-team/packages/python-cheroot, https://github.com/cherrypy/cheroot.git,5771.299189814815,32,151,0,116.0,6.0,0.0,0.0 +click-plugins,0.183596650265385,2.50943745506862,-0.299339191325406,https://salsa.debian.org/debian-gis-team/python-click-plugins/, https://github.com/click-contrib/click-plugins.git,1359.290763888889,1,8,0,5.0,25.0,0.0,0.0 +cligj,0.0110381728393001,2.59955084654331,-0.499940708010805,https://salsa.debian.org/debian-gis-team/python-cligj, https://github.com/mapbox/cligj.git,2777.891469907408,2,10,0,5.0,17.0,0.0,0.0 +python-debianbts,0.513538471152521,1.02516058932949,0.231444231527959,https://github.com/venthur/python-debianbts,https://github.com/venthur/python-debianbts,5257.841331018519,2,16,0,12.0,20.0,0.0,0.0 +deeptools_intervals,-2.87716276513662,-0.609615947334158,-3.32264967911522,https://salsa.debian.org/med-team/python-deeptoolsintervals, https://github.com/deeptools/deeptools_intervals,1246.0450694444444,0,4,0,1.0,4.0,0.0,0.0 +demjson,-0.237038961472229,1.8179175851506,-0.80137511432811,https://salsa.debian.org/python-team/packages/python-demjson, https://github.com/dmeranda/demjson,1291.8414699074074,0,1,0,1.0,3.0,0.0,2.0 +deprecated,0.1196653299471,2.25977882516032,-0.308485560349962,https://salsa.debian.org/debian-gis-team/python-deprecated, https://github.com/tantale/deprecated.git,2057.2850694444446,18,4,0,17.0,55.0,0.0,0.0 +diaspy,-2.17458679876553,0.0535067340264225,-2.61656088683794,https://salsa.debian.org/python-team/packages/python-diaspy, https://github.com/marekjm/diaspy,3779.169131944445,4,18,0,10.0,31.0,0.0,0.0 +diff-match-patch,0.584603381464553,3.09865562984525,-0.11840201957185,https://salsa.debian.org/debian/python-diff-match-patch, https://github.com/diff-match-patch-python/diff-match-patch,1729.880428240741,3,2,0,3.0,3.0,0.0,0.0 +django-contact-form,-1.10973337045037,0.628121817228084,-1.64359729736289,https://salsa.debian.org/python-team/packages/python-django-contact-form, https://github.com/ubernostrum/django-contact-form,5539.237071759259,2,14,0,13.0,45.0,0.0,0.0 +django-etcd-settings,-0.989663267400494,2.25757908219037,-1.99197669528536,https://salsa.debian.org/python-team/packages/python-django-etcd-settings, https://github.com/kpn-digital/django-etcd-settings,2402.9784375,6,17,0,10.0,16.0,0.0,0.0 +django-gravatar,-0.663578474021825,1.16790467668008,-1.12793880314674,https://salsa.debian.org/python-team/packages/python-django-gravatar2, https://github.com/twaddington/django-gravatar,3121.693310185185,1,16,0,12.0,30.0,0.0,0.0 +django-jsonfield,-1.07142073551277,-0.0546197295612257,-1.30935796121876,https://salsa.debian.org/python-team/modules/python-django-jsonfield, https://github.com/adamchainz/django-jsonfield,3841.3997222222224,3,25,0,23.0,14.0,0.0,0.0 +django-libsass,-4.81731968936922,-2.39116751884945,-5.43841554832882,https://salsa.debian.org/python-team/packages/python-django-libsass, https://github.com/torchbox/django-libsass.git,3571.005949074074,10,9,0,14.0,47.0,0.0,1.0 +python-ecdsa,0.142739523061463,1.73012905576179,-0.155058972185504,https://salsa.debian.org/python-team/packages/python-ecdsa, https://github.com/warner/python-ecdsa.git,4921.863113425926,21,34,0,44.0,13.0,0.0,0.0 +python-epc,-0.66793387469914,1.8418923245079,-1.20975615875128,https://salsa.debian.org/python-team/packages/python-epc, https://github.com/tkf/python-epc,2413.0286574074075,1,4,0,3.0,7.0,0.0,0.0 +esmre,-2.00641566770589,0.202087281970367,-2.47557808240015,https://salsa.debian.org/debian/python-esmre, https://github.com/wharris/esmre.git,5681.62130787037,0,3,0,1.0,15.0,0.0,0.0 +python-ethtool,0.274962230630451,1.82732927092968,-0.303521557345908,https://salsa.debian.org/python-team/packages/python-ethtool, https://github.com/fedora-python/python-ethtool/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +python-fastimport,0.105277518376507,1.74571167550912,-0.262427062540309,https://salsa.debian.org/python-team/packages/python-fastimport, https://github.com/jelmer/python-fastimport,5680.5950578703705,13,39,0,27.0,14.0,0.0,0.0 +fisx,-0.0903144327544692,1.77973202904558,-0.598324937708201,https://salsa.debian.org/python-team/packages/python-fisx, https://github.com/vasole/fisx,3592.9752777777776,0,12,0,5.0,12.0,0.0,1.0 +fluids,-0.442121628110571,2.75067751986968,-1.36605828580339,https://salsa.debian.org/science-team/python-fluids, https://github.com/CalebBell/fluids/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +python-frozendict,0.190688469714448,2.63554997407049,-0.323798030236354,https://salsa.debian.org/openstack-team/python/python-frozendict, https://github.com/slezica/python-frozendict.git,1398.647986111111,1,9,0,6.0,48.0,0.0,0.0 +hiredis-py,-0.312418511802299,1.27521108325703,-0.637769777281603,https://salsa.debian.org/python-team/packages/python-hiredis, https://github.com/redis/hiredis-py.git,4704.111354166666,26,23,0,38.0,10.0,0.0,0.0 +python-hl7,-0.762637824258724,0.998810639328154,-1.37292815400799,https://salsa.debian.org/med-team/python-hl7, https://github.com/johnpaulett/python-hl7.git,5098.842939814815,5,6,0,7.0,54.0,0.0,0.0 +hupper,-0.481148407943983,1.32993114752913,-0.841903899936861,https://salsa.debian.org/python-team/packages/python-hupper, https://github.com/Pylons/hupper,2605.995127314815,4,15,0,12.0,35.0,0.0,0.0 +imagesize_py,0.781267179885099,3.74389761248769,-0.0426186256974488,https://salsa.debian.org/python-team/packages/python-imagesize, https://github.com/shibukawa/imagesize_py,2343.1267013888887,9,9,0,15.0,45.0,0.0,0.0 +python-Levenshtein,0.478340127269014,1.97183499968665,-0.0580315974395737,https://salsa.debian.org/python-team/packages/python-levenshtein, https://github.com/maxbachmann/python-Levenshtein,378.9515509259259,1,2,0,1.0,9.0,0.0,0.0 +python-libdiscid,0.0391061082183303,1.61241328517297,-0.245844028624214,https://salsa.debian.org/multimedia-team/python-libdiscid, https://github.com/sebastinas/python-libdiscid.git,3900.179664351852,3,5,0,6.0,8.0,0.0,0.0 +python-librtmp-debian,0.131603385368324,2.93701148551824,-0.638817933748588,https://github.com/breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian,409.9315625,0,1,0,1.0,0.0,0.0,0.0 +python-louvain,-2.26857793652823,1.49624956815603,-3.43397611373349,https://salsa.debian.org/python-team/packages/python-louvain, https://github.com/taynaud/python-louvain/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +lti,-1.90835919350364,0.69954791219436,-2.57019941298813,https://salsa.debian.org/python-team/packages/python-lti, https://github.com/pylti/lti.git,2862.783125,11,19,0,21.0,32.0,0.0,0.0 +macholib,-0.206576166886516,2.1953061241244,-0.642201103391397,https://salsa.debian.org/python-team/packages/python-macholib, https://github.com/ronaldoussoren/macholib,5321.569525462963,1,18,0,12.0,8.0,0.0,0.0 +py-magcode-core,-0.779498833646851,2.22540891243802,-1.70932232165662,https://github.com/grantma/py-magcode-core,https://github.com/grantma/py-magcode-core,2649.7967939814816,0,2,0,1.0,0.0,0.0,0.0 +markdown,-0.0672775300791168,0.0633658208868313,-0.111548497257213,https://salsa.debian.org/python-team/packages/python-markdown, https://github.com/Python-Markdown/markdown,5779.595196759259,101,82,0,147.0,24.0,0.0,96.0 +multipletau,-0.698793350853376,0.580682166099663,-0.952694230547463,https://salsa.debian.org/python-team/packages/python-multipletau, https://github.com/FCS-analysis/multipletau,3692.017893518519,2,10,0,4.0,7.0,0.0,0.0 +murmurhash,-0.58127674801198,1.75990723485695,-1.19189657790225,https://salsa.debian.org/python-team/packages/python-murmurhash, https://github.com/explosion/murmurhash,3382.167962962963,3,8,0,7.0,24.0,0.0,0.0 +netaddr,0.0168867872693013,0.327224619050915,-0.100935347206142,https://salsa.debian.org/python-team/packages/python-netaddr, https://github.com/netaddr/netaddr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +python-netfilter,-1.08310976523274,1.38196587053344,-1.63548798026612,https://salsa.debian.org/python-team/modules/python-netfilter, https://github.com/jlaine/python-netfilter.git,1238.4928935185185,0,1,0,1.0,5.0,0.0,0.0 +python-netsyslog,-3.06992829438534,-0.740837479176508,-3.69315077090514,https://github.com/dpocock/python-netsyslog,https://github.com/dpocock/python-netsyslog,1856.5705092592596,0,2,0,2.0,0.0,0.0,0.0 +python-neuroshare,-1.42361732199392,1.76808972514215,-2.45296799073677,http://github.com/G-Node/python-neuroshare,http://github.com/G-Node/python-neuroshare,2028.2039583333333,0,10,1,,,, +nine,-0.878473290743389,1.57494000575467,-1.43568582097605,https://salsa.debian.org/python-team/packages/python-nine, https://github.com/nandoflorestan/nine,2401.457627314815,0,3,0,2.0,5.0,0.0,0.0 +noise,-3.72258433828724,-1.09656757088233,-4.31836753726866,https://salsa.debian.org/python-team/packages/python-noise, https://github.com/caseman/noise.git,2101.5036111111112,1,8,0,6.0,49.0,0.0,0.0 +nose-random,-2.00635313840334,0.327071205424812,-2.47233597734095,https://salsa.debian.org/science-team/python-nose-random, https://github.com/fzumstein/nose-random,352.6133101851852,0,1,0,1.0,3.0,0.0,0.0 +numpysane,-0.426753720380055,1.99735017173568,-0.990334351077537,https://salsa.debian.org/python-team/packages/python-numpysane, https://github.com/dkogan/numpysane,2696.173819444444,0,2,0,1.0,3.0,0.0,0.0 +padme,-0.807368858178929,2.18164851479759,-1.67722938704724,https://salsa.debian.org/python-team/packages/python-padme, https://github.com/zyga/padme,2875.002002314815,1,3,1,1.0,3.0,0.0,0.0 +pkgconfig,0.158913783243231,2.43014435448495,-0.323957092475887,https://salsa.debian.org/python-team/packages/python-pkgconfig, https://github.com/matze/pkgconfig,2902.3845370370373,4,12,0,14.0,42.0,0.0,0.0 +plaster,-0.28046488532538,2.12671527314619,-0.830604831317031,https://salsa.debian.org/python-team/packages/python-plaster, https://github.com/pylons/plaster,2744.118136574074,7,5,0,7.0,13.0,0.0,0.0 +plaster_pastedeploy,-0.297532929904677,2.16739236372152,-0.838126274262991,https://salsa.debian.org/python-team/packages/python-plaster-pastedeploy, https://github.com/Pylons/plaster_pastedeploy.git,2741.5056365740743,4,5,0,7.0,13.0,0.0,0.0 +pluginbase,-0.281288105677501,2.05902343817203,-0.755162297381444,https://salsa.debian.org/python-team/packages/python-pluginbase, https://github.com/mitsuhiko/pluginbase.git,2511.806851851852,1,9,0,7.0,38.0,0.0,1.0 +python-popcon,-0.233533172692655,2.01834476808691,-1.10989243947417,https://github.com/venthur/python-popcon,https://github.com/venthur/python-popcon,4753.601365740741,3,5,0,5.0,7.0,0.0,0.0 +python-poppler-qt5,0.120227608181113,2.36806867916472,-0.307671387096747,https://salsa.debian.org/python-team/packages/python-poppler-qt5, https://github.com/frescobaldi/python-poppler-qt5,3161.795023148148,7,7,1,11.0,89.0,0.0,1.0 +python_portpicker,-0.837808490409931,1.85984811558886,-1.55217004389884,https://salsa.debian.org/debian/python-portpicker, https://github.com/google/python_portpicker,3069.126921296296,11,7,0,10.0,15.0,0.0,0.0 +pure-python-otr,-0.0437206443273251,2.06552258562387,-0.649967564210067,https://salsa.debian.org/python-team/packages/python-potr, https://github.com/python-otr/pure-python-otr,3956.961863425926,0,15,3,8.0,52.0,0.0,2.0 +pretend,-0.70611645616128,2.31978236912502,-1.54656086123652,https://salsa.debian.org/python-team/packages/python-pretend, https://github.com/alex/pretend,3941.031435185185,2,9,0,9.0,19.0,0.0,0.0 +python-progressbar,0.375928112638566,2.28927458164417,-0.10832906736111,https://salsa.debian.org/python-team/packages/python-progressbar, https://github.com/niltonvolpato/python-progressbar,3503.7755555555555,3,12,0,8.0,61.0,0.0,0.0 +python-protobix,-3.1476883564443,-0.737272162144816,-3.7253868496053,https://salsa.debian.org/python-team/packages/python-protobix, https://github.com/jbfavre/python-protobix,3133.4746064814813,0,14,1,0.0,16.0,0.0,0.0 +pulp,0.182500411245243,2.27684155817235,-0.324952232261522,https://salsa.debian.org/math-team/python-pulp, https://github.com/coin-or/pulp/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +Pweave,0.197417767147146,3.62156992562426,-0.817514701813823,https://salsa.debian.org/science-team/python-pweave, https://github.com/mpastell/Pweave/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +pybadges,-3.41889357670687,0.0271868395953201,-4.27670065562116,https://salsa.debian.org/python-team/packages/python-pybadges, https://github.com/google/pybadges.git,1932.0270833333332,2,14,0,12.0,29.0,0.0,0.0 +pyqrencode,0.0034268603989844,1.69508098326997,-0.479407408878227,https://salsa.debian.org/debian/python-qrencode, https://github.com/Arachnid/pyqrencode.git,3791.5353703703695,0,6,0,5.0,22.0,0.0,0.0 +ratelimiter,-0.171495457684264,2.60726329369438,-0.926691348490788,https://salsa.debian.org/python-team/packages/python-ratelimiter, https://github.com/RazerM/ratelimiter,1781.4938425925925,1,5,0,3.0,29.0,0.0,0.0 +rebulk,-0.199957442626573,2.09078115484313,-0.827926769967044,https://salsa.debian.org/python-team/packages/python-rebulk, https://github.com/Toilal/rebulk,3019.412083333333,1,7,2,4.0,15.0,0.0,0.0 +rencode,0.372370761725989,3.00606925555497,-0.203905085747617,https://salsa.debian.org/debian/python-rencode, https://github.com/aresch/rencode.git,4103.173449074074,4,4,0,5.0,18.0,0.0,0.0 +repoze.sphinx.autointerface,-1.33677679024419,1.51292073187974,-2.18306957920284,https://salsa.debian.org/python-team/packages/python-repoze.sphinx.autointerface, https://github.com/repoze/repoze.sphinx.autointerface/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +repoze.tm2,-0.795011465957878,1.87588325558157,-1.60021846702694,https://salsa.debian.org/python-team/packages/python-repoze.tm2, https://github.com/repoze/repoze.tm2.git,5299.01369212963,0,6,0,3.0,8.0,0.0,0.0 +roman,0.426696904629987,1.94576678841437,-0.004429812291283,https://salsa.debian.org/python-team/packages/python-roman, https://github.com/zopefoundation/roman,5054.666666666667,3,8,0,8.0,15.0,0.0,0.0 +python-signedjson,-0.497204194088698,1.13529372326294,-0.781360544229561,https://salsa.debian.org/matrix-team/python-signedjson, https://github.com/matrix-org/python-signedjson.git,2409.117025462963,5,10,0,10.0,14.0,0.0,0.0 +python-slip,0.677155208606448,2.96500652427271,-0.0680375926831711,https://salsa.debian.org/debian/python-slip, https://github.com/nphilipp/python-slip.git,4760.842418981481,5,3,0,4.0,10.0,0.0,0.0 +smmap,0.0842345215307417,1.88621678974191,-0.302978641987737,https://salsa.debian.org/python-team/packages/python-smmap, https://github.com/gitpython-developers/smmap,4570.872037037037,4,18,0,16.0,38.0,0.0,0.0 +snuggs,-0.408982970308193,1.09199090186983,-0.671578605438675,https://salsa.debian.org/debian-gis-team/python-snuggs, https://github.com/mapbox/snuggs.git,1698.5099305555557,2,7,0,5.0,16.0,0.0,0.0 +socketpool,-0.433473062983163,1.9120698535229,-1.13495382815167,https://salsa.debian.org/python-team/packages/python-socketpool, https://github.com/benoitc/socketpool,2141.460520833333,0,17,0,11.0,31.0,0.0,0.0 +PySocksipyChain,-0.0678442589337398,2.05760510014944,-0.759328322171604,https://salsa.debian.org/freedombox-team/python-socksipychain, https://github.com/pagekite/PySocksipyChain.git,3262.118356481481,1,7,0,4.0,12.0,0.0,0.0 +pysrp,-0.265559878899912,2.09013502967791,-0.982879076984504,https://salsa.debian.org/python-team/packages/python-srp, https://github.com/cocagne/pysrp,4536.790277777778,2,26,0,14.0,45.0,0.0,0.0 +python-ssdeep,-1.67537832759011,-0.74574244391935,-1.8662568074836,https://salsa.debian.org/python-team/packages/python-ssdeep, https://github.com/DinoTools/python-ssdeep/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +static3,-2.14843505088176,0.782465955060936,-2.9204988940802,https://salsa.debian.org/debian/python-static3, https://github.com/rmohr/static3,1017.1397800925926,0,5,0,4.0,21.0,0.0,0.0 +stopit,-1.43823587585002,1.06403731109994,-2.3707053283558,https://salsa.debian.org/python-team/packages/python-stopit, https://github.com/glenfant/stopit,2025.0025810185184,3,4,0,7.0,38.0,0.0,0.0 +python-subprocess32,0.809721278974293,3.72694427273729,-0.0005664333773078,https://salsa.debian.org/python-team/modules/python-subprocess32, https://github.com/google/python-subprocess32,2769.808622685185,4,6,0,6.0,75.0,0.0,0.0 +python-sunlight,-0.43867879309139,3.66501197270729,-1.75991518689505,https://salsa.debian.org/python-team/modules/python-sunlight, https://github.com/sunlightlabs/python-sunlight,1218.870300925926,0,11,0,8.0,23.0,0.0,0.0 +python-tblib,-0.735304953887994,0.99902203688589,-1.14834021510951,https://salsa.debian.org/python-team/packages/python-tblib, https://github.com/ionelmc/python-tblib,3634.65974537037,5,11,0,12.0,50.0,0.0,0.0 +urlobject,-1.40320671016874,1.06451213117112,-1.96821824826788,https://salsa.debian.org/python-team/packages/python-urlobject, https://github.com/zacharyvoase/urlobject,3098.5456481481483,4,10,0,8.0,31.0,0.0,0.0 +urwidtrees,0.49164707570108,4.05583346547568,-0.527566091824406,https://salsa.debian.org/python-team/packages/python-urwidtrees, https://github.com/pazz/urwidtrees/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +python-sdk,-2.10640744546277,0.16311365872766,-2.60808326998445,https://salsa.debian.org/pkg-security-team/python-vulndb, https://github.com/vulndb/python-sdk,1623.0260300925927,0,3,0,2.0,5.0,0.0,0.0 +word_cloud,-2.35331346174834,-0.117333832983561,-2.78629950056682,https://salsa.debian.org/python-team/packages/python-wordcloud, https://github.com/amueller/word_cloud,4051.627384259259,33,54,0,65.0,30.0,0.0,1.0 +wsproto,0.0162269703159469,2.30900597311392,-0.424997115440944,https://salsa.debian.org/python-team/packages/python-wsproto, https://github.com/python-hyper/wsproto/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +python3-xapp,0.49666595674701,2.79349323910243,-0.0692386083512058,https://salsa.debian.org/cinnamon-team/python-xapp, https://github.com/linuxmint/python3-xapp.git,2312.6997685185183,5,4,0,7.0,13.0,0.0,0.0 +python-xeddsa,-1.16332522343934,1.38192923762938,-1.73952285353788,https://salsa.debian.org/python-team/packages/python-xeddsa, https://github.com/Syndace/python-xeddsa,1709.0088425925926,1,4,0,1.0,2.0,0.0,0.0 +xlrd3,0.241972254568355,1.69211137481998,-0.1509001313547,https://salsa.debian.org/python-team/packages/python-xlrd, https://github.com/Dragon2fly/xlrd3.git,4601.110509259259,9,44,0,35.0,8.0,0.0,0.0 +xmltodict,0.598106375906509,3.24389400228836,-0.105452656302643,https://salsa.debian.org/debian/python-xmltodict, https://github.com/martinblech/xmltodict.git,3981.198715277778,26,29,0,41.0,54.0,0.0,1.0 +xopen,-0.343505378513926,1.77018483910553,-0.778780724351105,https://salsa.debian.org/python-team/packages/python-xopen, https://github.com/marcelm/xopen/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +pyzor,0.917153249995446,1.93354643620565,0.349438253264623,https://salsa.debian.org/python-team/packages/pyzor, https://github.com/SpamExperts/pyzor,5279.209606481481,6,19,1,17.0,10.0,0.0,0.0 +q2templates,-5.04822470147624,-2.79645563356912,-5.47695119278791,https://salsa.debian.org/med-team/q2templates, https://github.com/qiime2/q2templates.git,2619.239039351852,9,8,0,13.0,13.0,0.0,0.0 +q4wine-debian,-0.151109482514516,0.0770464396985054,-0.212005952160212,https://github.com/tehnick/q4wine-debian,https://github.com/tehnick/q4wine-debian,4144.328611111111,0,1,0,1.0,0.0,0.0,0.0 +qconf,-0.381126862235206,1.65952171214213,-0.776284747822689,https://salsa.debian.org/qt-kde-team/extras/qconf, https://github.com/psi-im/qconf.git,5624.674074074074,1,15,0,7.0,13.0,0.0,0.0 +qdacco,-1.66627266278956,-0.461010424623743,-2.02170746236854,https://salsa.debian.org/debian/qdacco, https://github.com/cpina/qdacco.git,5691.2413541666665,1,6,0,1.0,5.0,0.0,0.0 +qemuctl,1.34741220588033,3.3653108214152,0.38180684788945,https://github.com/operatornormal/qemuctl,https://github.com/operatornormal/qemuctl,627.1595486111111,3,2,0,1.0,0.0,0.0,0.0 +qjoypad,0.852979411367937,3.26126360321818,-0.082285001087447,https://github.com/kilobyte/qjoypad/tree/debian,https://github.com/kilobyte/qjoypad,4422.66300925926,2,12,0,10.0,1.0,0.0,0.0 +qmenu,0.241659682896114,3.60622507126729,-0.930556672453206,https://github.com/teopost/qmenu,https://github.com/teopost/qmenu,3121.65625,0,12,2,5.0,5.0,0.0,0.0 +qmidiarp,0.106088445314257,2.40937724812331,-0.446213354807418,https://salsa.debian.org/multimedia-team/qmidiarp, https://github.com/emuse/qmidiarp.git,5041.995520833333,2,10,0,5.0,12.0,0.0,0.0 +qmidinet,0.398763456279576,2.32725848534935,-0.291999256478784,https://salsa.debian.org/multimedia-team/qmidinet, https://github.com/rncbc/qmidinet.git,4992.050914351852,1,11,0,4.0,10.0,0.0,0.0 +qsampler,0.223065509983869,2.85391743017592,-0.50460196253652,https://salsa.debian.org/multimedia-team/qsampler, https://github.com/rncbc/qsampler.git,5737.996284722222,3,14,0,5.0,5.0,0.0,0.0 +qsynth,0.142531257871529,0.734317141704349,-0.106451074489768,https://salsa.debian.org/multimedia-team/qsynth, https://github.com/rncbc/qsynth.git,5674.9236458333335,3,19,0,7.0,24.0,0.0,0.0 +qtads,0.510849025186864,2.48407375358686,-0.339333860899677,https://salsa.debian.org/games-team/qtads, https://github.com/realnc/qtads.git,4788.683958333333,5,7,0,10.0,20.0,0.0,0.0 +qterm,-0.915597814791724,-0.402411230077987,-1.15254555265034,https://salsa.debian.org/chinese-team/qterm, https://github.com/qterm/qterm,4614.841238425926,1,8,0,4.0,17.0,0.0,1.0 +ChemmineR,-4.94787230565056,-2.4634770090152,-5.4701350553375,https://salsa.debian.org/r-pkg-team/r-bioc-chemminer, https://github.com/girke-lab/ChemmineR.git,5502.031747685185,2,22,0,10.0,19.0,0.0,0.0 +GenomicAlignments,-0.0620075073178533,2.29521680721513,-0.607948833110456,https://salsa.debian.org/r-pkg-team/r-bioc-genomicalignments, https://github.com/Bioconductor/GenomicAlignments.git,3637.766828703704,1,21,0,13.0,35.0,0.0,0.0 +GenomicRanges,-0.321603880147761,1.26237806892299,-0.601362470296257,https://salsa.debian.org/r-pkg-team/r-bioc-genomicranges, https://github.com/Bioconductor/GenomicRanges.git,4977.821712962963,4,35,0,17.0,53.0,0.0,0.0 +IRanges,-0.27329287373832,0.949506903471562,-0.572231786000705,https://salsa.debian.org/r-pkg-team/r-bioc-iranges, https://github.com/Bioconductor/IRanges.git,5556.738645833333,4,26,0,13.0,28.0,0.0,0.0 +preprocessCore,-0.573267543238156,1.61478989249381,-1.00920667331152,https://salsa.debian.org/r-pkg-team/r-bioc-preprocesscore, https://github.com/bmbolstad/preprocessCore.git,2983.7131828703705,0,24,0,9.0,24.0,0.0,0.0 +Rsamtools,-0.231011334154971,1.69007695254721,-0.615853606276047,https://salsa.debian.org/r-pkg-team/r-bioc-rsamtools, https://github.com/Bioconductor/Rsamtools.git,5200.049756944444,3,23,0,13.0,61.0,0.0,1.0 +S4Vectors,-0.0375813239135875,2.25254876618357,-0.598221258836135,https://salsa.debian.org/r-pkg-team/r-bioc-s4vectors, https://github.com/Bioconductor/S4Vectors/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +XVector,-0.148843541155455,2.13084874475655,-0.590227591448767,https://salsa.debian.org/r-pkg-team/r-bioc-xvector, https://github.com/Bioconductor/XVector.git,3819.2003935185194,0,10,0,5.0,3.0,0.0,0.0 +animation,-0.351598376462637,2.17793457228778,-0.919308029944393,https://salsa.debian.org/r-pkg-team/r-cran-animation, https://github.com/yihui/animation/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +arm,-0.215773425657779,1.52696528966208,-0.505327966595903,https://salsa.debian.org/r-pkg-team/r-cran-arm, https://github.com/suyusung/arm.git,2199.2741898148147,0,4,0,2.0,20.0,0.0,0.0 +av,-3.30692253997357,-1.06640295657248,-3.74994428874166,https://salsa.debian.org/r-pkg-team/r-cran-av, https://github.com/ropensci/av.git,1927.068576388889,2,3,0,3.0,37.0,0.0,0.0 +BBmisc,-0.0791867315459242,2.21030674261295,-0.523919328228636,https://salsa.debian.org/r-pkg-team/r-cran-bbmisc, https://github.com/berndbischl/BBmisc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +R-bitops,0.181219634804237,2.50818857434793,-0.263616719662195,https://salsa.debian.org/r-pkg-team/r-cran-bitops, https://github.com/mmaechler/R-bitops/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +bold,-0.358994134257074,1.88301949027378,-0.798415526071617,https://salsa.debian.org/r-pkg-team/r-cran-bold, https://github.com/ropensci/bold/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +crayon,0.258544899098523,2.47118895253696,-0.189845714510451,https://salsa.debian.org/r-pkg-team/r-cran-crayon, https://github.com/r-lib/crayon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +data.table,0.213671162669981,2.38186731707818,-0.220586384511007,https://salsa.debian.org/r-pkg-team/r-cran-data.table, https://github.com/Rdatatable/data.table/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +lwgeom,0.0058180918358632,2.418862989244,-0.73279450060674,https://salsa.debian.org/r-pkg-team/r-cran-lwgeom, https://github.com/r-spatial/lwgeom/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +matrixcalc,0.635479198008871,4.34642689538589,-0.34635588919514,https://salsa.debian.org/r-pkg-team/r-cran-matrixcalc, https://github.com/TomKellyGenetics/matrixcalc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +mcmc,0.154255269868176,2.73686021243522,-0.451309831621471,https://salsa.debian.org/r-pkg-team/r-cran-mcmc, https://github.com/cjgeyer/mcmc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +mice,-1.17032289359888,1.17001151051615,-1.58977910544957,https://salsa.debian.org/r-pkg-team/r-cran-mice, https://github.com/amices/mice/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +MNP,-0.0051235592631867,2.14399295642153,-0.440021030596504,https://salsa.debian.org/r-pkg-team/r-cran-mnp, https://github.com/kosukeimai/MNP/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +nozzle,-2.88548615874538,-0.597801788868084,-3.3250463836713,https://salsa.debian.org/r-pkg-team/r-cran-nozzle.r1, https://github.com/parklab/nozzle.git,926.0286111111112,0,1,0,1.0,13.0,0.0,0.0 +r-optparse,-0.207092761715519,2.02410277822028,-0.642202256736068,https://salsa.debian.org/r-pkg-team/r-cran-optparse, https://github.com/trevorld/r-optparse.git,3364.6461689814814,0,11,0,2.0,23.0,0.0,0.0 +pbdZMQ,0.189171368145159,3.49264335571965,-0.747517249539651,https://salsa.debian.org/r-pkg-team/r-cran-pbdzmq, https://github.com/snoweye/pbdZMQ/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +plyr,0.239691644485985,2.33977395447903,-0.192006137627096,https://salsa.debian.org/r-pkg-team/r-cran-plyr, https://github.com/hadley/plyr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ps,0.103587778708658,2.54927834438308,-0.34668451191656,https://salsa.debian.org/r-pkg-team/r-cran-ps, https://github.com/r-lib/ps/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +pscl,0.74280746678348,3.44738765449344,-0.155435064248443,https://salsa.debian.org/r-pkg-team/r-cran-pscl, https://github.com/atahk/pscl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rcmdcheck,0.214672699056145,2.68950202767157,-0.398818851753629,https://salsa.debian.org/r-pkg-team/r-cran-rcmdcheck, https://github.com/r-Lib/rcmdcheck/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rgenoud,-0.34888007130644,2.08744919287088,-0.911719429299625,https://salsa.debian.org/r-pkg-team/r-cran-rgenoud, https://github.com/JasjeetSekhon/rgenoud/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ritis,-0.299376176431199,1.95347342057625,-0.798006459910535,https://salsa.debian.org/r-pkg-team/r-cran-ritis, https://github.com/ropensci/ritis.git,3983.026666666666,1,4,0,3.0,12.0,0.0,0.0 +rncl,-0.337131945422757,1.91037356037586,-0.787455321570332,https://salsa.debian.org/r-pkg-team/r-cran-rncl, https://github.com/fmichonneau/rncl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +RPostgreSQL,0.105524003481434,2.61284189918854,-0.485387128530082,https://salsa.debian.org/r-pkg-team/r-cran-rpostgresql, https://github.com/tomoakin/RPostgreSQL/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rprotobuf,-0.636635231772753,1.62336210163628,-1.07827539002261,https://salsa.debian.org/r-pkg-team/r-cran-rprotobuf, https://github.com/eddelbuettel/rprotobuf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rredlist,-0.293858463463729,2.02268340231916,-0.79431406831363,https://salsa.debian.org/r-pkg-team/r-cran-rredlist, https://github.com/ropensci/rredlist/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +truncnorm,-0.0250364198134987,2.0343035584221,-0.466805583628948,https://salsa.debian.org/r-pkg-team/r-cran-truncnorm, https://github.com/olafmersmann/truncnorm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +r-utf8,0.429272788305781,3.08213820278364,-0.177641356425825,https://salsa.debian.org/r-pkg-team/r-cran-utf8, https://github.com/patperry/r-utf8/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +vcdExtra,-0.135967502704198,2.07328533632195,-0.564516556795123,https://salsa.debian.org/r-pkg-team/r-cran-vcdextra, https://github.com/friendly/vcdExtra.git,5383.465752314814,0,9,0,3.0,12.0,0.0,0.0 +vioplot,-0.511768817330579,1.7541359689658,-0.941240899930404,https://salsa.debian.org/r-pkg-team/r-cran-vioplot, https://github.com/TomKellyGenetics/vioplot,2457.873391203704,2,6,0,3.0,10.0,0.0,0.0 +worrms,-0.599709034098878,1.14191147472859,-0.933477012696884,https://salsa.debian.org/r-pkg-team/r-cran-worrms, https://github.com/ropensci/worrms/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +Zelig,0.723417938548561,3.51362617841635,-0.195430979660789,https://salsa.debian.org/r-pkg-team/r-cran-zelig, https://github.com/IQSS/Zelig/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +radare2,-0.0018354829994594,0.290941294023341,-0.173753601786813,https://salsa.debian.org/pkg-security-team/radare2, https://github.com/radareorg/radare2/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +radcli,0.807789146444719,3.02842685283086,0.0485018399862098,https://salsa.debian.org/debian/radcli, https://github.com/radcli/radcli,0.0082986111111111,10,25,0,19.0,27.0,0.0,0.0 +radium_compressor,0.13559721945274,2.85723734513179,-0.724362607294689,https://salsa.debian.org/multimedia-team/radium-compressor, https://github.com/kmatheussen/radium_compressor.git,2426.0817361111112,0,1,0,1.0,4.0,0.0,0.0 +rainbow,-2.23151500380419,-0.964997212722147,-2.48128831395204,https://salsa.debian.org/js-team/rainbow.js, https://github.com/ccampbell/rainbow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rake-compiler,-0.176590582755423,1.96809623096246,-0.899105552782092,https://salsa.debian.org/ruby-team/rake-compiler, https://github.com/rake-compiler/rake-compiler/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rapache,-1.9452855914647,-0.262638801188501,-2.42187532102225,https://salsa.debian.org/r-pkg-team/rapache, https://github.com/jeffreyhorner/rapache.git,4155.59349537037,1,13,0,6.0,35.0,0.0,0.0 +raphael,0.640627513769505,3.7045765254699,-0.250783438820433,https://salsa.debian.org/debian/raphael, https://github.com/DmitryBaranovskiy/raphael/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +redmine_local_avatars,-1.45727275612402,1.48273077875676,-2.26016283524095,https://salsa.debian.org/debian/redmine-plugin-local-avatars, https://github.com/ncoders/redmine_local_avatars,3991.558761574074,3,11,0,9.0,47.0,0.0,0.0 +ree,0.455206433998999,2.71266505432586,-0.294302160663744,https://salsa.debian.org/debian/ree, https://github.com/alexmyczko/ree,1112.039074074074,3,1,0,2.0,2.0,0.0,0.0 +remaster-iso,-2.04735169290534,0.120221137207675,-2.47701014149201,https://github.com/unixabg/remaster-iso,https://github.com/unixabg/remaster-iso,251.80447916666665,1,3,0,3.0,5.0,0.0,0.0 +python-requests-aws,-0.761720487886986,2.82521722934703,-1.72794352693126,https://salsa.debian.org/python-team/packages/requests-aws, https://github.com/tax/python-requests-aws,1319.2575,2,12,1,8.0,18.0,0.0,0.0 +rerun,-0.43146128537555,3.31527544807476,-1.49876771113085,https://salsa.debian.org/ruby-team/rerun, https://github.com/alexch/rerun/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +resvg,-0.870696566167526,2.54291794214447,-1.70329165714545,https://salsa.debian.org/debian/resvg, https://github.com/RazrFalcon/resvg.git,2182.7898726851854,46,8,0,47.0,30.0,0.0,0.0 +rexical,-1.84147501924003,0.989505278765736,-2.75203863256459,https://salsa.debian.org/ruby-team/rexical, https://github.com/tenderlove/rexical,5447.083912037037,2,10,0,9.0,23.0,0.0,2.0 +ripe-atlas-cousteau,-0.976494488206626,1.39248633136781,-1.47029913144958,https://salsa.debian.org/python-team/packages/ripe-atlas-cousteau, https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,3286.994594907407,5,15,0,13.0,37.0,0.0,0.0 +robocut,-0.282415143852063,2.37545743524338,-1.09231955050152,https://github.com/alpharesearch/robocut,https://github.com/alpharesearch/robocut,831.4363194444444,0,6,0,3.0,0.0,0.0,0.0 +robotfindskitten-pkg-debian,0.0179376982386653,1.30782764538948,-0.485626997000214,https://github.com/rfinnie/robotfindskitten-pkg-debian,https://github.com/rfinnie/robotfindskitten-pkg-debian,1629.5291319444443,3,1,0,3.0,0.0,0.0,0.0 +rolo,-0.0498132258582514,2.13300277923018,-0.821682806617574,https://salsa.debian.org/debian/rolo, https://github.com/libvc/rolo,1738.299363425926,2,2,0,2.0,2.0,0.0,0.0 +rospack,-0.241466259153462,1.06888539413166,-0.555351711731847,https://salsa.debian.org/science-team/ros-rospack, https://github.com/ros/rospack.git,3438.9073958333333,20,26,0,26.0,22.0,0.0,0.0 +rospkg,-0.0548646672144724,1.85803058546746,-0.500827790629517,https://salsa.debian.org/science-team/ros-rospkg, https://github.com/ros-infrastructure/rospkg.git,4295.652986111111,33,59,0,64.0,29.0,0.0,0.0 +std_msgs,-0.0206690342262183,2.38616687298903,-0.574705971669571,https://salsa.debian.org/science-team/ros-std-msgs, https://github.com/ros/std_msgs.git,3274.7244560185186,3,17,0,9.0,19.0,0.0,0.0 +rsh-redone,0.243457992558058,2.47658433239746,-0.712551626094643,https://salsa.debian.org/debian/rsh-redone, https://github.com/gsliepen/rsh-redone,3762.4461458333335,1,2,0,2.0,0.0,0.0,0.0 +rt-extension-repeatticket,-1.27134555252742,2.44805775497717,-2.22060058578856,https://salsa.debian.org/request-tracker-team/rt-extension-repeatticket, https://github.com/bestpractical/rt-extension-repeatticket,4204.330740740741,0,5,0,4.0,3.0,0.0,0.0 +rtkit,1.59149349390773,3.47533416976839,0.681858358341844,https://salsa.debian.org/multimedia-team/rtkit, https://github.com/heftig/rtkit,3958.74318287037,18,3,0,13.0,43.0,0.0,0.0 +actionpack-action_caching,-0.0195395792540849,2.02091975178512,-0.460855136539671,https://salsa.debian.org/ruby-team/ruby-actionpack-action-caching, https://github.com/rails/actionpack-action_caching/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +actionpack-page_caching,-2.09797722824779,1.06298687158989,-2.91708784448414,https://salsa.debian.org/ruby-team/ruby-actionpack-page-caching, https://github.com/rails/actionpack-page_caching/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +bacon,-1.49976971760681,0.698754739950412,-2.0358441624846,https://salsa.debian.org/ruby-team/ruby-bacon, https://github.com/leahneukirchen/bacon,5364.076365740741,3,17,0,13.0,38.0,0.0,0.0 +base62,-3.20078907627974,-0.571029493725026,-3.74084774166395,https://salsa.debian.org/ruby-team/ruby-base62, https://github.com/jtzemp/base62.git,1973.689722222222,1,5,0,3.0,13.0,0.0,1.0 +batch-loader,-1.39118114002807,1.05190753100969,-1.96584211908986,https://salsa.debian.org/ruby-team/ruby-batch-loader, https://github.com/exAspArk/batch-loader/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +bcrypt-ruby,-0.167036620741686,2.54858136586283,-0.784053430268986,https://salsa.debian.org/ruby-team/ruby-bcrypt, https://github.com/bcrypt-ruby/bcrypt-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby-beautify,-1.81793959236556,0.57235446169444,-2.42882213338449,https://salsa.debian.org/ruby-team/ruby-beautify.git, https://github.com/erniebrodeur/ruby-beautify,2708.080983796296,1,19,0,16.0,45.0,0.0,0.0 +bogus,-2.9701186800126,-1.153602326818,-3.32426310073135,https://salsa.debian.org/ruby-team/ruby-bogus, https://github.com/psyho/bogus/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +bootsnap,0.496944658091214,4.04676993751869,-0.445365548074637,https://salsa.debian.org/ruby-team/ruby-bootsnap, https://github.com/Shopify/bootsnap/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +mongo-ruby-driver,-0.487645620629625,1.8841260261786,-1.11700567263908,https://salsa.debian.org/ruby-team/ruby-bson, https://github.com/mongodb/mongo-ruby-driver/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +buff-config,-2.04061314286557,-0.580236765253771,-2.34695094555252,https://salsa.debian.org/ruby-team/ruby-buff-config, https://github.com/berkshelf/buff-config/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +buff-extensions,-1.70013143313874,0.696134058330696,-2.14799551246605,https://salsa.debian.org/ruby-team/ruby-buff-extensions, https://github.com/RiotGames/buff-extensions,1162.522685185185,0,5,0,3.0,12.0,0.0,0.0 +builder,0.289179051437074,2.05675505807205,-0.148349001721914,https://salsa.debian.org/ruby-team/ruby-builder, https://github.com/tenderlove/builder/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +byebug,0.118055396727265,2.30017116728878,-0.322097786269314,https://salsa.debian.org/ruby-team/ruby-byebug, https://github.com/deivid-rodriguez/byebug/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +capture-output,-2.89222629340586,-0.734271306130561,-3.32218789305711,https://salsa.debian.org/ruby-team/ruby-capture-output, https://github.com/jpastuszek/capture-output,0.0173611111111111,0,1,0,1.0,1.0,0.0,0.0 +capybara,0.24969906287306,2.43034290169591,-0.428255976860718,https://salsa.debian.org/ruby-team/ruby-capybara, https://github.com/teamcapybara/capybara/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +cassiopee,-1.58515180287739,1.32712442607504,-2.36640774840569,https://salsa.debian.org/ruby-team/ruby-cassiopee, https://github.com/osallou/cassiopee/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +celluloid,0.0913806587248057,1.18656118865903,-0.289219256918553,https://salsa.debian.org/ruby-team/ruby-celluloid, https://github.com/celluloid/celluloid/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +certificate_authority,-2.00186704801149,0.461863199935484,-2.70393120071328,https://salsa.debian.org/ruby-team/ruby-certificate-authority, https://github.com/cchandler/certificate_authority/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +cmdparse,0.678256473084961,4.50712040785227,-0.416431912985683,https://salsa.debian.org/ruby-team/ruby-cmdparse, https://github.com/gettalong/cmdparse/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +color,-1.65949307627129,0.788139710366515,-2.22037033574251,https://salsa.debian.org/ruby-team/ruby-color, https://github.com/halostatue/color,4994.146018518519,1,11,1,4.0,30.0,0.0,0.0 +colorator,0.175629970047575,2.30243477808403,-0.263725524247246,https://salsa.debian.org/ruby-team/ruby-colorator, https://github.com/octopress/colorator/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +combustion,-2.70776268644904,-0.507021984239335,-3.28146702867829,https://salsa.debian.org/ruby-team/ruby-combustion, https://github.com/pat/combustion/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +commander,-0.354431334090354,2.55244637453894,-1.09106526796515,https://salsa.debian.org/ruby-team/ruby-commander, https://github.com/commander-rb/commander/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +connection_pool,-0.107782788984787,2.76083163019692,-0.90838986837342,https://salsa.debian.org/ruby-team/ruby-connection-pool, https://github.com/mperham/connection_pool/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +coveralls-ruby,-1.06398429249964,0.688688365743175,-1.62146319312924,https://salsa.debian.org/ruby-team/ruby-coveralls, https://github.com/lemurheavy/coveralls-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +crb-blast,-0.696750147622397,1.56368796434261,-1.48542851447807,https://salsa.debian.org/ruby-team/ruby-crb-blast, https://github.com/cboursnell/crb-blast,1070.1020717592592,0,5,0,2.0,15.0,0.0,0.0 +css_parser,0.470298843201986,3.07318375118842,-0.226276662018377,https://salsa.debian.org/ruby-team/ruby-css-parser, https://github.com/premailer/css_parser/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +curb,-0.951993628573659,0.5852000442618,-1.37029978991923,https://salsa.debian.org/ruby-team/ruby-curb, https://github.com/taf2/curb/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +dalli,-0.749352215094772,1.73458354649505,-1.48489533094825,https://salsa.debian.org/ruby-team/ruby-dalli, https://github.com/petergoldstein/dalli/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +eim_xml,-0.714678234659335,2.40949988120359,-1.5508131873095,https://salsa.debian.org/ruby-team/ruby-eim-xml, https://github.com/hirakuro/eim_xml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +em-http-request,-0.182257018001517,2.14321979325515,-1.01105313498018,https://salsa.debian.org/ruby-team/ruby-em-http-request, https://github.com/igrigorik/em-http-request/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +em-redis,-2.43222753138059,0.322025242223316,-3.23835955419271,https://salsa.debian.org/ruby-team/ruby-em-redis, https://github.com/libc/em-redis,3058.305810185185,3,10,0,6.0,7.0,0.0,0.0 +encryptor,0.4811221705223,4.05605298671928,-0.745539049132522,https://salsa.debian.org/ruby-team/ruby-encryptor, https://github.com/attr-encrypted/encryptor,2635.9583564814816,1,9,0,5.0,53.0,0.0,0.0 +entypo-rails,0.53910177861472,4.35300017839131,-0.514820639301322,https://salsa.debian.org/ruby-team/ruby-entypo-rails, https://github.com/lwe/entypo-rails,1757.4358333333332,1,10,0,7.0,20.0,0.0,0.0 +enumerize,-3.5842960195173,-1.06007577005636,-4.26311507615177,https://salsa.debian.org/ruby-team/ruby-enumerize, https://github.com/brainspec/enumerize/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +escape_utils,-0.352072358197853,1.32045383709062,-0.803022834602165,https://salsa.debian.org/ruby-team/ruby-escape-utils, https://github.com/brianmario/escape_utils.git,4731.6076041666665,5,24,0,25.0,33.0,0.0,0.0 +espeak-ruby,-0.728675124699545,2.03520786367694,-1.48742188719036,https://salsa.debian.org/ruby-team/ruby-espeak, https://github.com/dejan/espeak-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ethon,-0.0042860534022934,2.23013091505627,-0.563387695078941,https://salsa.debian.org/ruby-team/ruby-ethon, https://github.com/typhoeus/ethon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +excon,0.324164795050424,2.11616601443465,-0.182728422506557,https://salsa.debian.org/ruby-team/ruby-excon, https://github.com/excon/excon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +execjs,0.812895928343861,3.68763630539758,-0.0541606598301758,https://salsa.debian.org/ruby-team/ruby-execjs, https://github.com/rails/execjs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +factory_bot,-2.80311103852854,-0.753937488732488,-3.29655624488076,https://salsa.debian.org/ruby-team/ruby-factory-bot, https://github.com/thoughtbot/factory_bot/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +factory_bot_rails,-4.33627538423677,-1.18492514059182,-5.29644821746184,https://salsa.debian.org/ruby-team/ruby-factory-bot-rails, https://github.com/thoughtbot/factory_bot_rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +faker,-2.04326808399287,0.455823211180947,-2.72605456068932,https://salsa.debian.org/ruby-team/ruby-faker, https://github.com/faker-ruby/faker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby-fcgi-ng,0.30050437468813,2.21535271819044,-0.345605661846562,https://salsa.debian.org/ruby-team/ruby-fcgi, https://github.com/alphallc/ruby-fcgi-ng,3559.922268518518,1,6,0,5.0,7.0,0.0,0.0 +ferret,-1.15248219703875,0.980270687393673,-1.83774544566306,https://salsa.debian.org/ruby-team/ruby-ferret, https://github.com/dbalmain/ferret/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ffaker,-2.54897143551112,0.502835365193304,-3.5038139593458,https://salsa.debian.org/ruby-team/ruby-ffaker, https://github.com/ffaker/ffaker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ffi,0.750741192878868,2.07867676362597,0.167784286080403,https://salsa.debian.org/ruby-team/ruby-ffi, https://github.com/ffi/ffi/wiki/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ffi-rzmq,-1.7723964357575,0.107292611880037,-2.43194679695625,https://salsa.debian.org/ruby-team/ruby-ffi-rzmq, https://github.com/chuckremes/ffi-rzmq,3424.713391203704,1,37,0,26.0,23.0,0.0,0.0 +filepath,-2.30534812675825,0.140990396146128,-2.95104915686477,https://salsa.debian.org/ruby-team/ruby-filepath, https://github.com/gioele/filepath/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +fission,-1.65620957430192,0.838811530614959,-2.21924811710672,https://salsa.debian.org/ruby-team/ruby-fission, https://github.com/thbishop/fission,876.3192708333333,0,10,0,7.0,20.0,0.0,0.0 +flexmock,-0.34548783673236,2.57111292603163,-1.07191829387234,https://salsa.debian.org/ruby-team/ruby-flexmock, https://github.com/doudou/flexmock/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +fog-core,0.609150673420472,3.44790091720947,-0.153332087984738,https://salsa.debian.org/ruby-team/ruby-fog-core, https://github.com/fog/fog-core/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +fog-local,-0.560496887059474,1.94240758554345,-1.17254102052718,https://salsa.debian.org/ruby-team/ruby-fog-local, https://github.com/fog/fog-local,5023.447175925926,4,29,0,20.0,20.0,0.0,0.0 +graffiti,-1.48469353838555,1.55033799294536,-2.39301056583199,https://salsa.debian.org/ruby-team/ruby-graffiti, https://github.com/angdraug/graffiti,3536.2679166666667,0,3,0,1.0,2.0,0.0,0.0 +grape,-0.435041529529147,1.40064199170097,-1.07062958903344,https://salsa.debian.org/ruby-team/ruby-grape, https://github.com/ruby-grape/grape/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +Ruby-Graphviz,-0.281553724005688,2.15242607228157,-1.12674606922721,https://salsa.debian.org/ruby-team/ruby-graphviz, https://github.com/glejeune/Ruby-Graphviz/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rb-gsl,-0.323076670655221,0.701457516977852,-0.74646383331037,https://salsa.debian.org/ruby-team/ruby-gsl, https://github.com/SciRuby/rb-gsl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +haml,-0.228856011070315,0.778998558187712,-0.558541396829887,https://salsa.debian.org/ruby-team/ruby-haml, https://github.com/haml/haml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +haml-rails,-1.79867361767118,0.276940048357399,-2.40107154206579,https://salsa.debian.org/ruby-team/ruby-haml-rails, https://github.com/haml/haml-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +hamster,0.191010877071582,2.65680223865782,-0.360802440419047,https://salsa.debian.org/ruby-team/ruby-hamster, https://github.com/hamstergem/hamster/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +hangouts-chat,-1.2144339097396,0.481810852436541,-1.56375669183369,https://salsa.debian.org/ruby-team/ruby-hangouts-chat, https://github.com/enzinia/hangouts-chat,1065.9778472222222,3,4,0,3.0,4.0,0.0,0.0 +hashie,0.572255045721982,3.40853235744765,-0.235541161791668,https://salsa.debian.org/ruby-team/ruby-hashie, https://github.com/hashie/hashie/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +highline,0.245316704669275,2.4988399297125,-0.223584690391328,https://salsa.debian.org/ruby-team/ruby-highline, https://github.com/JEG2/highline/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +hitimes,0.106810087584044,2.6613098356851,-0.447701454992152,https://salsa.debian.org/ruby-team/ruby-hitimes, https://github.com/copiousfreetime/hitimes/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +html-pipeline,-0.378214180646391,2.49992590428495,-1.14702469076061,https://salsa.debian.org/ruby-team/ruby-html-pipeline, https://github.com/jch/html-pipeline,4034.77693287037,33,88,0,93.0,41.0,0.0,0.0 +html2haml,-0.284722491017832,1.17087715522143,-0.644912982664216,https://salsa.debian.org/ruby-team/ruby-html2haml, https://github.com/haml/html2haml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +httparty,-0.229631929392527,1.81011336926819,-0.82172007971742,https://salsa.debian.org/ruby-team/ruby-httparty, https://github.com/jnunemaker/httparty/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +i18n,0.815241575738999,2.76960840689102,0.10314134149848,https://salsa.debian.org/ruby-team/ruby-i18n, https://github.com/ruby-i18n/i18n/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +i18n-inflector-rails,-3.61019103915543,-1.20359084861927,-4.2660614395271,https://salsa.debian.org/ruby-team/ruby-i18n-inflector-rails, https://github.com/siefca/i18n-inflector-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +icalendar,-0.996770381111859,1.76166143807078,-1.71330455920203,https://salsa.debian.org/ruby-team/ruby-icalendar, https://github.com/icalendar/icalendar/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ice_cube,-2.94478508305423,0.324568903500346,-3.69671581096293,https://salsa.debian.org/ruby-team/ruby-ice-cube, http://seejohnrun.github.com/ice_cube/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +image_science,-0.610985542772413,1.33569112628339,-1.2647438357866,https://salsa.debian.org/ruby-team/ruby-image-science, https://github.com/seattlerb/image_science/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +influxdb-ruby,0.0573197432450962,3.22712043301564,-0.969059483860832,https://salsa.debian.org/ruby-team/ruby-influxdb, https://github.com/InfluxCommunity/influxdb-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +inherited_resources,-4.48052443954816,-1.61258213545085,-5.32369698201447,https://salsa.debian.org/ruby-team/ruby-inherited-resources, https://github.com/activeadmin/inherited_resources/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rubyinline,-0.54884630779506,1.5864609290271,-1.15399526279571,https://salsa.debian.org/ruby-team/ruby-inline, https://github.com/seattlerb/rubyinline.git,5600.426180555555,0,4,0,3.0,40.0,0.0,0.0 +innertube,-0.886990320114069,1.6021467976891,-1.65441585233883,https://salsa.debian.org/ruby-team/ruby-innertube, https://github.com/basho/innertube.git,1008.2290162037036,0,4,0,4.0,8.0,0.0,0.0 +ipaddress,0.378587410138154,3.19339794313925,-0.219616169183229,https://salsa.debian.org/ruby-team/ruby-ipaddress, https://github.com/bluemonk/ipaddress/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +jar-dependencies,0.0460603945775547,2.81731177676538,-0.740787607467543,https://salsa.debian.org/ruby-team/ruby-jar-dependencies, https://github.com/mkristian/jar-dependencies,3114.244027777778,4,15,0,15.0,42.0,0.0,1.0 +jekyll-commonmark,-3.90576114957025,-1.6518132292317,-4.34337050456475,https://salsa.debian.org/ruby-team/ruby-jekyll-commonmark, https://github.com/jekyll/jekyll-commonmark/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +jekyll-feed,0.16757711349694,2.24946846719559,-0.262725953864251,https://salsa.debian.org/ruby-team/ruby-jekyll-feed, https://github.com/jekyll/jekyll-feed/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +joiner,-0.89957338803928,2.13297414652465,-1.70307717319651,https://salsa.debian.org/ruby-team/ruby-joiner, https://github.com/pat/joiner/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +jquery-atwho-rails,-0.74233755165034,1.49807671963935,-1.28419117733237,https://salsa.debian.org/ruby-team/ruby-jquery-atwho-rails, https://github.com/ichord/jquery-atwho-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +locale,0.380380223126928,1.52427631900364,-0.0365821888585531,https://salsa.debian.org/ruby-team/ruby-locale, https://github.com/ruby-gettext/locale/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +magic,-0.136206368002505,2.21068559500228,-0.795703621059015,https://salsa.debian.org/ruby-team/ruby-magic, https://github.com/qoobaa/magic,2808.462199074074,0,9,0,5.0,8.0,0.0,0.0 +mail-gpg,-0.940901595184913,1.98535203535049,-1.67524625904703,https://salsa.debian.org/ruby-team/ruby-mail-gpg, https://github.com/jkraemer/mail-gpg,4267.955972222222,18,136,0,11.0,30.0,0.0,0.0 +markdown-it-html5-embed,-2.86486474479113,0.594360286756556,-3.6881215540136,https://salsa.debian.org/ruby-team/ruby-markdown-it-html5-embed, https://github.com/cmrd-senya/markdown-it-html5-embed,2489.0705555555555,3,10,0,7.0,15.0,0.0,0.0 +maxitest,-2.35074630913767,0.201116804343594,-2.98216649465015,https://salsa.debian.org/ruby-team/ruby-maxitest, https://github.com/grosser/maxitest,3302.378009259259,0,10,0,6.0,20.0,0.0,0.0 +method_source,0.396769088701388,3.23180240512107,-0.291360508747447,https://salsa.debian.org/ruby-team/ruby-method-source, https://github.com/banister/method_source,3988.609039351852,4,19,0,20.0,55.0,0.0,0.0 +ruby-mime-types,0.371762936483795,2.68786545390583,-0.130086496626921,https://salsa.debian.org/ruby-team/ruby-mime-types, https://github.com/mime-types/ruby-mime-types/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +minimagick,-1.0439670842072,0.215784061195154,-1.39971451925144,https://salsa.debian.org/ruby-team/ruby-mini-magick, https://github.com/minimagick/minimagick/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +minitar,-0.0660695837931518,1.75541674831937,-0.563916374141107,https://salsa.debian.org/ruby-team/ruby-minitar, https://github.com/halostatue/minitar,5658.657685185185,8,6,1,8.0,33.0,0.0,0.0 +minitest,0.629154319712798,3.25304256882526,0.0059259645248308,https://salsa.debian.org/ruby-team/ruby-minitest, https://github.com/seattlerb/minitest/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +minitest-around,-1.76980687764466,0.751078811392686,-2.51140545626551,https://salsa.debian.org/ruby-team/ruby-minitest-around, https://github.com/splattael/minitest-around,2552.446770833333,2,14,0,7.0,17.0,0.0,0.0 +minitest-shared_description,-3.20574342894966,-0.753679344617953,-3.73552024295197,https://salsa.debian.org/ruby-team/ruby-minitest-shared-description, https://github.com/jeremyevans/minitest-shared_description,2605.2266666666665,0,2,0,2.0,2.0,0.0,0.0 +mixlib-install,-0.638529832096739,2.18892079534196,-1.48474483611124,https://salsa.debian.org/ruby-team/ruby-mixlib-install, https://github.com/chef/mixlib-install/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +mocha,-0.0854006270884438,1.53284165567993,-0.586575378706611,https://salsa.debian.org/ruby-team/ruby-mocha, https://github.com/freerange/mocha/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +mousetrap-rails,-0.541447339095833,2.29951150532759,-1.30228887386486,https://salsa.debian.org/ruby-team/ruby-mousetrap-rails, https://github.com/kugaevsky/mousetrap-rails,2627.8625810185185,0,4,0,3.0,14.0,0.0,2.0 +mustache,0.386389823638064,2.98197077093261,-0.405227461396917,https://salsa.debian.org/ruby-team/ruby-mustache, https://github.com/defunkt/mustache,4729.490868055555,23,58,1,62.0,26.0,0.0,0.0 +mysql2,0.313451297472591,1.47310324925672,-0.133008215537017,https://salsa.debian.org/ruby-team/ruby-mysql2, https://github.com/brianmario/mysql2,4877.841319444445,60,107,4,128.0,39.0,0.0,0.0 +net-sftp,0.512822572952379,2.64276927064739,-0.120075758301409,https://salsa.debian.org/ruby-team/ruby-net-sftp, https://github.com/net-ssh/net-sftp/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +net-ssh,0.342371248269138,1.57085056316473,-0.0962002824518287,https://salsa.debian.org/ruby-team/ruby-net-ssh, https://github.com/net-ssh/net-ssh/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +net-ssh-gateway,0.0949247840517942,2.40618794880946,-0.388358293282975,https://salsa.debian.org/ruby-team/ruby-net-ssh-gateway, https://github.com/net-ssh/net-ssh-gateway/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +netrc,0.668940426764325,3.56001631169099,-0.123759768859117,https://salsa.debian.org/ruby-team/ruby-netrc, https://github.com/heroku/netrc,3633.5661342592593,0,30,0,18.0,43.0,0.0,0.0 +nokogiri,0.0984970577234731,0.746815474857061,-0.106324428267698,https://salsa.debian.org/ruby-team/ruby-nokogiri, https://github.com/sparklemotion/nokogiri/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rubyntlm,-0.0624150923196188,2.58623929509879,-0.720512222861156,https://salsa.debian.org/ruby-team/ruby-ntlm, https://github.com/winrb/rubyntlm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +oauth-ruby,0.0832778896486886,2.84531471759718,-0.592601217275356,https://salsa.debian.org/ruby-team/ruby-oauth, https://github.com/oauth-xx/oauth-ruby,5341.079664351852,47,77,3,86.0,0.0,0.0,0.0 +oauth2,-0.165607622047308,2.31959119320538,-0.900513508845379,https://salsa.debian.org/ruby-team/ruby-oauth2, https://github.com/intridea/oauth2,4856.243298611111,41,112,2,108.0,0.0,0.0,0.0 +oily_png,0.145318381586283,3.15074053383197,-0.713115473924132,https://salsa.debian.org/ruby-team/ruby-oily-png, https://github.com/wvanbergen/oily_png/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +oj,0.200960134409374,1.56482055224045,-0.138033863850096,https://salsa.debian.org/ruby-team/ruby-oj, https://github.com/ohler55/oj/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby-ole,-0.662169216695503,1.43035765378809,-1.30551794649748,https://salsa.debian.org/ruby-team/ruby-ole, https://github.com/aquasync/ruby-ole/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +omniauth-cas3,-0.595254702805624,1.82175762271394,-1.2467001517361,https://salsa.debian.org/ruby-team/ruby-omniauth-cas3, https://github.com/tduehr/omniauth-cas3,3904.238402777778,7,20,0,16.0,5.0,0.0,0.0 +omniauth_crowd,-0.539391002340597,2.01960410227116,-1.23274022351139,https://salsa.debian.org/ruby-team/ruby-omniauth-crowd, https://github.com/robdimarco/omniauth_crowd,3405.9749189814816,0,18,0,7.0,22.0,0.0,1.0 +pdf-core,0.490430148718243,3.03857743093467,-0.172093655493011,https://salsa.debian.org/ruby-team/ruby-pdf-core, https://github.com/prawnpdf/pdf-core,3635.723391203704,6,16,0,15.0,46.0,0.0,0.0 +ruby-pgplot,-2.63639643317991,-2.16809943853412,-2.77777035296684,https://salsa.debian.org/ruby-team/ruby-pgplot, https://github.com/masa16/ruby-pgplot,1430.3931597222222,0,3,0,2.0,0.0,0.0,0.0 +pkg-config,0.398895663512402,1.83858881682792,-0.0542821557497998,https://salsa.debian.org/ruby-team/ruby-pkg-config, https://github.com/ruby-gnome/pkg-config/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +powerpack,-0.193408494365459,2.13396410068404,-0.895456644971313,https://salsa.debian.org/ruby-team/ruby-powerpack, https://github.com/bbatsov/powerpack.git,2684.7776041666666,4,14,0,13.0,29.0,0.0,0.0 +premailer,-0.517330437525135,2.18816634119045,-1.16789176830498,https://salsa.debian.org/ruby-team/ruby-premailer, https://github.com/premailer/premailer,5001.079988425926,26,100,0,91.0,2.0,0.0,19.0 +ruby-progressbar,0.849508504091254,3.82843133452004,-0.158369708372988,https://salsa.debian.org/ruby-team/ruby-progressbar, https://github.com/jfelchner/ruby-progressbar/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +psych,0.135690557163489,2.48138994706061,-0.628764755678332,https://salsa.debian.org/ruby-team/ruby-psych, https://github.com/ruby/psych/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +puppet-syntax,-1.42749295138573,0.597721472999949,-2.00502749928488,https://salsa.debian.org/ruby-team/ruby-puppet-syntax, https://github.com/voxpupuli/puppet-syntax/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +puppetlabs_spec_helper,-1.70744568853256,0.801746812877152,-2.38468119727799,https://salsa.debian.org/ruby-team/ruby-puppetlabs-spec-helper, https://github.com/puppetlabs/puppetlabs_spec_helper/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rabl-rails,-0.911642608019443,0.595751159646387,-1.27771761831235,https://salsa.debian.org/ruby-team/ruby-rabl-rails, https://github.com/ccocchi/rabl-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rack-google-analytics,-2.186121538552,0.639272713225041,-2.93501367725167,https://salsa.debian.org/ruby-team/ruby-rack-google-analytics, https://github.com/kangguru/rack-google-analytics,1720.554363425926,2,20,0,17.0,54.0,0.0,0.0 +rack-oauth2,-0.499811172924045,2.35249704569695,-1.20893692451136,https://salsa.debian.org/ruby-team/ruby-rack-oauth2, https://github.com/nov/rack-oauth2/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rack-test,0.185980391868275,2.38630751083892,-0.251554735743938,https://salsa.debian.org/ruby-team/ruby-rack-test, https://github.com/rack/rack-test/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +highlightjs,-1.77605765301384,0.676887866951787,-2.56920388232996,https://salsa.debian.org/ruby-team/ruby-rails-assets-highlightjs, https://github.com/components/highlightjs,2389.9739467592594,1,13,0,13.0,40.0,0.0,0.0 +jquery.fullscreen,-0.306966371654775,3.42597380601137,-1.50239049779986,https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery-fullscreen-plugin, https://github.com/private-face/jquery.fullscreen,928.6241898148148,0,10,3,5.0,39.0,0.0,0.0 +rails-deprecated_sanitizer,0.511323456994779,3.27093476289413,-0.223223312521469,https://salsa.debian.org/ruby-team/ruby-rails-deprecated-sanitizer, https://github.com/rails/rails-deprecated_sanitizer/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +retryable,-0.609141916709646,3.24709459340838,-1.74685338816936,https://salsa.debian.org/ruby-team/ruby-retryable, https://github.com/nfedyashev/retryable/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +riddle,-0.221356873126463,2.81907925283096,-1.30225364602043,https://salsa.debian.org/ruby-team/ruby-riddle, https://github.com/pat/riddle/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +riot,-2.0988502372572,0.6683400663378,-2.91861417783192,https://salsa.debian.org/ruby-team/ruby-riot, https://github.com/thumblemonks/riot.git,3321.7834953703705,13,21,0,20.0,33.0,0.0,7.0 +rmagick,1.10270334226407,3.17854217199385,0.188185337272069,https://salsa.debian.org/ruby-team/ruby-rmagick, https://github.com/rmagick/rmagick/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +roadie,-0.196136661447594,1.23963174601796,-0.568233738832736,https://salsa.debian.org/ruby-team/ruby-roadie, https://github.com/Mange/roadie/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +roadie-rails,0.247471914364286,3.18990024514054,-0.527731502637486,https://salsa.debian.org/ruby-team/ruby-roadie-rails, https://github.com/Mange/roadie-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +roxml,-2.58394727436343,-1.4732125607397,-2.79337602661121,https://salsa.debian.org/ruby-team/ruby-roxml, https://github.com/Empact/roxml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rr,-1.12124169103743,1.65404016022481,-1.898861260476,https://salsa.debian.org/ruby-team/ruby-rr, https://github.com/rr/rr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rspec-its,0.317141675558321,3.0292623368928,-0.387267448243735,https://salsa.debian.org/ruby-team/ruby-rspec-its, https://github.com/rspec/rspec-its/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rspec-puppet,-1.57505518556354,-0.127794468656788,-2.10326137554857,https://salsa.debian.org/ruby-team/ruby-rspec-puppet, https://github.com/rodjek/rspec-puppet/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rspec-rails,-1.58440384321345,-0.160683101917334,-1.95387603820538,https://salsa.debian.org/ruby-team/ruby-rspec-rails, https://github.com/rspec/rspec-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rspec-retry,-2.31420707826412,-0.36166807127741,-2.77250568174112,https://salsa.debian.org/ruby-team/ruby-rspec-retry, https://github.com/NoRedInk/rspec-retry/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby2ruby,-1.2632583004141,0.512210389222625,-1.76094548187908,https://salsa.debian.org/ruby-team/ruby-ruby2ruby, https://github.com/seattlerb/ruby2ruby.git,5438.858877314815,0,3,0,3.0,34.0,0.0,0.0 +rmail,0.76374705741195,3.39467995148873,-0.079811093830679,https://salsa.debian.org/ruby-team/ruby-rubymail, https://github.com/terceiro/rmail/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rufus-scheduler,-0.692929260878617,1.25020621762948,-1.09554363072272,https://salsa.debian.org/ruby-team/ruby-rufus-scheduler, https://github.com/jmettraux/rufus-scheduler/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rugged,0.173885888133108,1.97474689592367,-0.302862283028749,https://salsa.debian.org/ruby-team/ruby-rugged, https://github.com/libgit2/rugged/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +safe_yaml,0.49233724538536,2.43802121884063,-0.0762986290888922,https://salsa.debian.org/ruby-team/ruby-safe-yaml, https://github.com/dtao/safe_yaml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby-saml,-0.6292373352364,1.48886905334193,-1.21526779391873,https://salsa.debian.org/ruby-team/ruby-saml, https://github.com/onelogin/ruby-saml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sanitize,0.11421111327246,2.75983627261209,-0.676703611506086,https://salsa.debian.org/ruby-team/ruby-sanitize, https://github.com/rgrove/sanitize/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sassc-rails,-1.88958934755349,0.65430313583962,-2.54586936612922,https://salsa.debian.org/ruby-team/ruby-sassc-rails, https://github.com/sass/sassc-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sdoc,0.206619457601786,2.53526253676117,-0.281999051202586,https://salsa.debian.org/ruby-team/ruby-sdoc, https://github.com/zzak/sdoc.git,5126.572337962963,22,57,0,56.0,0.0,0.0,0.0 +seamless_database_pool,-2.16431076750987,0.22602989853285,-2.61189474943737,https://salsa.debian.org/ruby-team/ruby-seamless-database-pool, https://github.com/bdurand/seamless_database_pool/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +selenium,-0.208956862864649,1.54894059732864,-0.537375409127303,https://salsa.debian.org/ruby-team/ruby-selenium-webdriver, https://github.com/SeleniumHQ/selenium/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +semantic_puppet,-0.622981461654574,0.856370005823135,-0.97652036226948,https://salsa.debian.org/puppet-team/ruby-semantic-puppet, https://github.com/puppetlabs/semantic_puppet/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sequel_pg,0.61910876073865,3.8061270046357,-0.298153083726076,https://salsa.debian.org/ruby-team/ruby-sequel-pg, https://github.com/jeremyevans/sequel_pg.git,4773.662638888889,4,7,0,9.0,45.0,0.0,0.0 +sexp_processor,0.254209462924838,3.03881786138173,-0.48296332880923,https://salsa.debian.org/ruby-team/ruby-sexp-processor, https://github.com/seattlerb/sexp_processor,5341.417743055556,0,2,0,1.0,26.0,0.0,0.0 +ruby-shadow,0.216126739015528,1.48901314525892,-0.115481619574996,https://salsa.debian.org/ruby-team/ruby-shadow, https://github.com/apalmblad/ruby-shadow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sham_rack,-2.16081892166218,0.0182643743943309,-2.86088546215481,https://salsa.debian.org/ruby-team/ruby-sham-rack, https://github.com/mdub/sham_rack,3267.7854166666666,2,5,0,3.0,12.0,0.0,0.0 +simplecov,-0.3160772042202,2.20072149987644,-1.00263445115797,https://salsa.debian.org/ruby-team/ruby-simplecov, https://github.com/simplecov-ruby/simplecov/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +slim,-0.391808708834569,1.09130623995818,-0.838495340833001,https://salsa.debian.org/ruby-team/ruby-slim, http://github.com/slim-template/slim//issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +soap4r-noeticpenguin,0.47567443978011,2.10032916991295,-0.0796726267762576,https://salsa.debian.org/ruby-team/ruby-soap4r, https://github.com/noeticpenguin/soap4r-noeticpenguin/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +spring,0.188968431861753,2.25824597474887,-0.275538878260492,https://salsa.debian.org/ruby-team/ruby-spring, https://github.com/rails/spring/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sprockets-rails,0.627283901804314,2.93965546190262,-0.107048604332743,https://salsa.debian.org/ruby-team/ruby-sprockets-rails, https://github.com/rails/sprockets-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +tins,-0.0184774494990259,2.34427565267072,-0.499428299338752,https://salsa.debian.org/ruby-team/ruby-tins, https://github.com/flori/tins.git,5186.447789351852,2,5,0,6.0,19.0,0.0,0.0 +toml,0.545045010262784,3.0277601671675,-0.165994328608493,https://salsa.debian.org/ruby-team/ruby-toml, https://github.com/jm/toml,3202.477673611111,3,24,1,21.0,69.0,0.0,0.0 +treetop,0.232585615110506,1.72460397874322,-0.167533812678352,https://salsa.debian.org/ruby-team/ruby-treetop, https://github.com/cjheath/treetop/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +truncato,-0.892450421035401,1.07478492285798,-1.30787209149427,https://salsa.debian.org/ruby-team/ruby-truncato, https://github.com/jorgemanrubia/truncato,3523.929363425926,2,13,0,10.0,27.0,0.0,0.0 +twitter,-0.668262390127512,1.32590765847916,-1.14707438099745,https://salsa.debian.org/ruby-team/ruby-twitter, https://github.com/sferik/twitter,5668.765474537037,66,150,0,172.0,52.0,0.0,171.0 +twitter-stream,-0.499229118792877,2.32714869625143,-1.28245675345462,https://salsa.debian.org/ruby-team/ruby-twitter-stream, http://github.com/voloko/twitter-stream/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +typed-array,-0.706178513933386,1.6402446002796,-1.14450212576801,https://salsa.debian.org/ruby-team/ruby-typed-array, https://github.com/yaauie/typed-array,63.58849537037037,0,2,0,2.0,2.0,0.0,0.0 +typhoeus,-0.1128851980755,2.35063206689134,-0.736261529106404,https://salsa.debian.org/ruby-team/ruby-typhoeus, https://github.com/typhoeus/typhoeus/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +issues,-0.183546315225275,-0.104369110443271,-0.204307169523358,https://salsa.debian.org/ruby-team/ruby-tzinfo, https://tzinfo.github.io/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +url_safe_base64,-1.0899769047182,2.78886544763424,-2.22028031017707,https://salsa.debian.org/ruby-team/ruby-url-safe-base64, https://github.com/joenoon/url_safe_base64,1866.2862384259256,0,2,0,2.0,2.0,0.0,0.0 +uuid,-0.141865507977082,3.1821978286278,-1.0595825239825,https://salsa.debian.org/ruby-team/ruby-uuid, https://github.com/assaf/uuid,4250.514537037037,5,18,0,13.0,78.0,0.0,1.0 +uuidtools,0.0082132863147748,1.78603683848367,-0.37982910828391,https://salsa.debian.org/ruby-team/ruby-uuidtools, https://github.com/sporkmonger/uuidtools,4302.551608796296,4,20,0,12.0,66.0,0.0,3.0 +validates_email,-1.57819224366837,0.748029997407314,-2.18342643578818,https://salsa.debian.org/ruby-team/ruby-validate-email, https://github.com/perfectline/validates_email.git,4596.211886574074,2,8,0,4.0,9.0,0.0,0.0 +validates_hostname,-1.24152951224297,1.22111659694041,-1.75109192355112,https://salsa.debian.org/ruby-team/ruby-validates-hostname, https://github.com/KimNorgaard/validates_hostname,4293.845972222222,0,12,0,5.0,18.0,0.0,0.0 +varia_model,-1.86788049739169,-0.0930481581669085,-2.2356906542746,https://salsa.debian.org/ruby-team/ruby-varia-model, https://github.com/berkshelf/varia_model/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +version_sorter,-0.895569228615223,1.31342488445887,-1.33338118944042,https://salsa.debian.org/ruby-team/ruby-version-sorter, https://github.com/github/version_sorter,5346.812303240741,4,15,0,12.0,21.0,0.0,0.0 +versionomy,-1.98756333781549,1.03654453818039,-2.7207117206547,https://salsa.debian.org/ruby-team/ruby-versionomy, https://github.com/dazuma/versionomy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +Voight-Kampff,-3.61221384180333,-1.18418687316036,-4.27474499320882,https://salsa.debian.org/ruby-team/ruby-voight-kampff, https://github.com/biola/Voight-Kampff/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +web-console,0.14043153449785,2.52112176327952,-0.323355623656487,https://salsa.debian.org/ruby-team/ruby-web-console, https://github.com/rails/web-console/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +webmock,-0.872299603112153,1.42277934779794,-1.58056532672046,https://salsa.debian.org/ruby-team/ruby-webmock, https://github.com/bblimke/webmock/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +websocket-ruby,-2.03022349548899,1.07639611677377,-2.89337064744319,https://salsa.debian.org/ruby-team/ruby-websocket, https://github.com/imanel/websocket-ruby.git,4172.19943287037,3,14,0,15.0,38.0,0.0,0.0 +xml-simple,0.281052711517463,2.94125522096609,-0.565082780205221,https://salsa.debian.org/ruby-team/ruby-xml-simple, https://github.com/maik/xml-simple,3655.019247685185,4,12,0,12.0,31.0,0.0,0.0 +scalpel,1.92355741339931,5.78891027054134,0.609139098428338,https://salsa.debian.org/pkg-security-team/scalpel, https://github.com/sleuthkit/scalpel.git,2828.853888888889,1,11,0,5.0,69.0,0.0,0.0 +scanlogd,1.02651720217611,3.31791709149868,-0.0529925024440523,https://salsa.debian.org/debian/scanlogd/, https://github.com/openwall/scanlogd.git,3573.359328703704,0,2,0,1.0,4.0,0.0,0.0 +scapy,0.857455882356376,1.87059600299798,0.304032557463684,https://salsa.debian.org/pkg-security-team/scapy, https://github.com/secdev/scapy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +maeparser,-0.124025493624707,2.1383222642137,-0.755579689485537,https://salsa.debian.org/debichem-team/schroedinger-maeparser, https://github.com/schrodinger/maeparser.git,2087.134328703704,12,14,0,15.0,15.0,0.0,0.0 +science.js,-1.57916624719579,1.65342676602646,-2.47331359854044,https://salsa.debian.org/js-team/science.js/, https://github.com/jasondavies/science.js.git,2725.1817592592597,1,8,0,6.0,30.0,0.0,0.0 +scim,1.88005980071016,2.60669412693665,1.36187838590137,https://github.com/leggewie-DM/scim,https://github.com/leggewie-DM/scim,3009.7372800925928,4,5,0,6.0,2.0,0.0,0.0 +scim-anthy,0.0022937940399169,1.4287101867256,-0.657872343124407,https://github.com/leggewie-DM/scim-anthy,https://github.com/leggewie-DM/scim-anthy,1414.2472685185185,5,3,0,5.0,1.0,0.0,0.0 +scim-chewing,1.4542811690526,3.37154795427499,0.506177197770884,https://salsa.debian.org/debian/scim-chewing, https://github.com/chewing/scim-chewing.git,2973.61300925926,0,11,0,4.0,6.0,0.0,0.0 +scim-pinyin,1.31247157570846,3.37757775327056,0.22807324086839,https://salsa.debian.org/input-method-team/scim-pinyin, https://github.com/scim-im/scim-pinyin/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +scim-tables,0.935953021546993,2.24878515261399,0.255989102713328,https://github.com/leggewie-DM/scim-tables,https://github.com/leggewie-DM/scim-tables,793.6947685185186,3,3,0,3.0,1.0,0.0,0.0 +sct-deb,0.114819975990264,2.83095535042819,-0.590823447371552,https://github.com/Tookmund/sct-deb,https://github.com/Tookmund/sct-deb,125.86403935185186,0,1,0,1.0,0.0,0.0,0.0 +setuptools_scm,0.0218119152735271,1.07629001969169,-0.306073018102014,https://salsa.debian.org/python-team/packages/setuptools-scm, https://github.com/pypa/setuptools_scm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +setuptools_scm_git_archive,-1.12887485264727,1.43097061577832,-1.72452512462335,https://salsa.debian.org/python-team/packages/setuptools-scm-git-archive, https://github.com/Changaco/setuptools_scm_git_archive,2852.8371759259257,5,5,0,7.0,22.0,0.0,0.0 +sexplib,-1.57198934052884,-0.308694772986967,-1.99075888375216,https://salsa.debian.org/ocaml-team/sexplib310, https://github.com/janestreet/sexplib.git,3950.764444444445,1,18,0,12.0,43.0,0.0,0.0 +sgabios-debian,0.624843362504609,3.34479227724154,-0.100639314596397,https://github.com/ymc/sgabios-debian,https://github.com/ymc/sgabios-debian,1409.8465509259258,1,3,0,3.0,2.0,0.0,0.0 +shine,0.54493172140872,2.55858833775417,0.0206552893723799,https://salsa.debian.org/multimedia-team/shine, https://github.com/savonet/shine/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +showq,0.498024130459386,2.63844948678141,-0.299488158296805,https://salsa.debian.org/multimedia-team/showq, https://github.com/evandelisle/showq.git,4589.697418981482,2,9,0,4.0,11.0,0.0,1.0 +shutdown-qapps,0.0832292459848511,2.57545743116058,-0.646790906977106,https://github.com/hakaishi/shutdown-qapps,https://github.com/hakaishi/shutdown-qapps,4242.518321759259,1,5,0,2.0,4.0,0.0,0.0 +sidedoor,-1.20700835985188,0.905385237011351,-1.64427757076298,https://github.com/daradib/sidedoor,https://github.com/daradib/sidedoor,1283.144525462963,0,2,0,2.0,5.0,0.0,0.0 +siege,0.975479779976296,2.03353006708065,0.360323000471227,https://salsa.debian.org/debian/siege, https://github.com/JoeDog/siege/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sight,-2.41423003373991,-1.19235152673398,-2.62469605752248,https://salsa.debian.org/med-team/sight, https://github.com/IRCAD/sight,5195.7820833333335,18,189,0,40.0,13.0,0.0,0.0 +signify,-0.429147729969375,1.99324872793013,-0.900265517104248,https://salsa.debian.org/debian/signify-openbsd, https://github.com/aperezdc/signify.git,3467.3640972222224,11,5,0,8.0,28.0,0.0,0.0 +sigscheme,0.0095840913034005,0.541181577533474,-0.176656140782611,https://salsa.debian.org/debian/sigscheme, https://github.com/uim/sigscheme.git,4570.484421296296,0,12,0,4.0,6.0,0.0,0.0 +silver-platter,-2.12374390745825,-0.880478310171427,-2.3543625093061,https://salsa.debian.org/jelmer/silver-platter, https://github.com/jelmer/silver-platter/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +timeline,0.400768755793622,3.01545677890177,-0.484924713118073,https://salsa.debian.org/js-team/simile-timeline, https://github.com/simile-widgets/timeline/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +simple-image-reducer,0.173679013568053,2.60637622016956,-0.642372972620522,https://salsa.debian.org/python-team/packages/simple-image-reducer, https://github.com/henrythasler/simple-image-reducer,3392.719583333333,3,5,0,5.0,11.0,0.0,0.0 +sklearn-pandas,-0.184681427254363,2.40603523310898,-0.975232330516116,https://salsa.debian.org/debian/sklearn-pandas, https://github.com/scikit-learn-contrib/sklearn-pandas/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +SkyPat,-3.66221900907517,-1.25524656033434,-4.29019297580951,https://salsa.debian.org/debian/skypat, https://github.com/skymizer/SkyPat,1330.085451388889,4,12,0,7.0,15.0,0.0,1.0 +slick-greeter,0.230041087987972,2.48835166094265,-0.403804259040225,https://github.com/UbuntuBudgie/slick-greeter/tree/debian,https://github.com/UbuntuBudgie/slick-greeter,2438.314976851852,27,9,0,9.0,3.0,0.0,0.0 +smarty-gettext,-0.117276402086362,0.921326595853675,-0.430887242301544,https://salsa.debian.org/debian/smarty-gettext/, https://github.com/smarty-gettext/smarty-gettext.git,3367.1055439814813,3,7,0,6.0,31.0,0.0,0.0 +smarty-lexer,-2.17711730583163,0.822422051478566,-2.93396050046646,https://salsa.debian.org/debian/smarty-lexer/, https://github.com/smarty-php/smarty-lexer.git,2967.1062731481484,1,5,0,2.0,3.0,0.0,0.0 +smash,-1.60214483830597,1.0169317150364,-2.20705530835649,https://salsa.debian.org/js-team/smash, https://github.com/mbostock/smash.git,1268.6711921296296,0,6,0,5.0,23.0,0.0,4.0 +smbldap-tools,4.09921699231862,6.29737661623347,2.97789673101773,https://salsa.debian.org/debian/smbldap-tools, https://github.com/fumiyas/smbldap-tools,3527.4513194444444,0,4,0,1.0,2.0,0.0,0.0 +snake4.debian,0.0951486980326435,1.36969174716035,-0.412056003147892,https://github.com/alexdantas/snake4.debian,https://github.com/alexdantas/snake4.debian,10.477638888888889,5,4,0,0.0,2.0,0.0,0.0 +sndfile-tools,0.744383715115666,2.92719004320123,0.0039892841037656,https://salsa.debian.org/multimedia-team/sndfile-tools, https://github.com/libsndfile/sndfile-tools.git,5283.239212962963,10,6,0,14.0,26.0,0.0,0.0 +debian-snetz,-0.193517133858685,3.29048219747402,-1.22643639819588,https://github.com/paniagua-gustavo/debian-snetz,https://github.com/paniagua-gustavo/debian-snetz,0.188125,0,2,0,1.0,0.0,0.0,0.0 +sord,0.619629004721592,2.45030284792165,0.0661140315984046,https://salsa.debian.org/multimedia-team/sord, https://github.com/drobilla/sord.git ,4651.040289351852,0,1,0,1.0,9.0,0.0,0.0 +python-sortedcollections,0.0282138035236776,2.56305714012386,-0.456352007786175,https://salsa.debian.org/python-team/packages/sortedcollections, https://github.com/grantjenks/python-sortedcollections,2101.492488425926,2,4,0,4.0,19.0,0.0,0.0 +sosi2osm,-0.0665032677422347,2.74148881026682,-0.739957807362317,https://salsa.debian.org/debian-gis-team/sosi2osm, https://github.com/Gnonthgol/sosi2osm.git,3689.8328125,3,10,0,6.0,9.0,0.0,0.0 +soundconverter,0.454074081616164,1.01430049712361,0.117664664998543,https://salsa.debian.org/multimedia-team/soundconverter, https://github.com/kassoulet/soundconverter/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +spacefm,0.0215364284786288,0.701913588830265,-0.280297613289711,https://github.com/mati75/spacefm.git,https://github.com/mati75/spacefm.git,3876.4630671296295,0,4,0,2.0,1.0,0.0,0.0 +SparkleShare,0.916751869868698,2.53495974704413,0.0535700536046131,https://salsa.debian.org/debian/sparkleshare, https://github.com/hbons/SparkleShare,4856.867974537037,90,134,3,141.0,8.0,0.0,73.0 +speechd-up,-1.27896077062787,1.29297055271201,-2.07753108381263,https://salsa.debian.org/a11y-team/speechd-up, https://github.com/williamh/speechd-up.git,1059.327372685185,1,4,0,2.0,3.0,0.0,0.0 +speedpad-debian,-0.391190230068984,0.972185266047026,-0.693933608767308,https://github.com/ltworf/speedpad-debian,https://github.com/ltworf/speedpad-debian,829.1033101851851,0,2,0,1.0,0.0,0.0,0.0 +sphinx-argparse,-0.754937349353123,1.00889449330127,-1.21699686553265,https://salsa.debian.org/python-team/packages/sphinx-argparse, https://github.com/ribozz/sphinx-argparse,2938.517141203704,2,31,0,22.0,35.0,0.0,0.0 +sphinx-astropy,-1.42712350122077,-0.78677703713293,-1.54218456988202,https://salsa.debian.org/debian-astro-team/sphinx-astropy, https://github.com/astropy/sphinx-astropy,4334.915173611111,3,25,1,17.0,25.0,0.0,1.0 +sphinx-autorun,-1.09177585256997,1.72685500319585,-1.80454006267331,https://salsa.debian.org/python-team/packages/sphinx-autorun, https://github.com/hobarrera/sphinx-autorun,4960.184594907408,3,8,0,6.0,17.0,0.0,0.0 +sphinx_celery,-1.29378276863836,0.493807507851888,-1.99514716111722,https://salsa.debian.org/python-team/packages/sphinx-celery, https://github.com/celery/sphinx_celery,2803.725,12,7,1,15.0,21.0,0.0,0.0 +sphinx-paramlinks,-1.16822532351043,0.386873444258785,-1.56849327813973,https://salsa.debian.org/python-team/packages/sphinx-paramlinks, https://github.com/sqlalchemyorg/sphinx-paramlinks,3511.552777777778,5,5,0,7.0,18.0,0.0,0.0 +autoprogram,-1.45604526149334,-0.259677294646666,-1.66121422064934,https://salsa.debian.org/python-team/packages/sphinxcontrib-autoprogram, https://github.com/sphinx-contrib/autoprogram.git,3291.9937962962963,8,16,0,20.0,46.0,0.0,0.0 +sratom,0.540164976123721,2.85121389532424,0.0136305168021881,https://salsa.debian.org/multimedia-team/sratom, https://github.com/lv2/sratom.git ,4263.558912037037,3,1,0,4.0,5.0,0.0,0.0 +python-sshpubkeys,-1.91211407478949,-0.189481850931877,-2.33126292007642,https://salsa.debian.org/python-team/packages/sshpubkeys, https://github.com/ojarva/python-sshpubkeys.git,3267.352175925926,3,17,0,14.0,29.0,0.0,0.0 +sslsniff,0.722916790176053,2.75912507773281,-0.184867548032003,https://salsa.debian.org/pkg-security-team/sslsniff, https://github.com/moxie0/sslsniff.git,177.08484953703703,0,2,0,1.0,0.0,0.0,1.0 +st,-1.79056507667605,0.676950554514186,-2.33256709726343,https://salsa.debian.org/debian/st-console, https://github.com/nferraz/st,3551.6255439814813,0,6,0,4.0,35.0,0.0,0.0 +starfighter,1.13150563626708,2.44836061787832,0.407142053639967,https://salsa.debian.org/fmneto-guest/starfighter, https://github.com/pr-starfighter/starfighter,4492.057523148148,7,18,0,11.0,15.0,0.0,0.0 +starjava,-0.548485425839103,1.02382155067597,-0.839890616479756,https://salsa.debian.org/debian-astro-team/starjava-topcat, https://github.com/Starlink/starjava/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +starjava,-0.697556190670108,0.0612089874444767,-0.830940236181544,https://salsa.debian.org/debian-astro-team/starjava-ttools, https://github.com/Starlink/starjava/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +starjava,-0.57242176224608,0.51679215541116,-0.789078068589272,https://salsa.debian.org/debian-astro-team/starjava-util, https://github.com/Starlink/starjava,5785.07400462963,2,26,0,10.0,26.0,0.0,0.0 +Starman,-0.416737047926963,0.488737231083704,-0.575547278316765,https://salsa.debian.org/perl-team/modules/packages/starman, https://github.com/miyagawa/Starman/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +staticsite,-0.455044516827622,2.62595341392491,-1.40040151763546,https://salsa.debian.org/enrico/staticsite, https://github.com/spanezz/staticsite,2745.097152777778,0,7,1,5.0,10.0,0.0,0.0 +stex,-4.06683154544822,-2.49549281009036,-4.34962454010856,https://salsa.debian.org/debian/stex, https://github.com/dybvig/stex,1828.8861226851848,1,7,0,3.0,5.0,0.0,0.0 +stlink,0.233057864230876,3.04988378479478,-0.467680219154583,https://github.com/bluca/stlink,https://github.com/bluca/stlink,4380.028472222222,78,192,0,121.0,3.0,0.0,0.0 +stress,0.779179494126401,3.53680266613907,-0.0279634009643242,https://salsa.debian.org/debian/stress, https://github.com/resurrecting-open-source-projects/stress,489.8052893518519,0,3,0,2.0,7.0,0.0,0.0 +subdownloader,0.257673813794888,1.41620806504126,-0.267795596118916,https://salsa.debian.org/python-team/packages/subdownloader, https://github.com/subdownloader/subdownloader,4731.676956018519,4,22,3,10.0,23.0,0.0,0.0 +subtitleeditor,0.471518900266572,1.21730778912594,0.0459581289668194,https://salsa.debian.org/debian/subtitleeditor, https://github.com/kitone/subtitleeditor,5679.7465856481485,2,6,0,6.0,54.0,0.0,1.0 +pkg-subtle,-0.105745634673122,2.62918443450635,-1.126139338849,http://github.com/formorer/pkg-subtle,http://github.com/formorer/pkg-subtle,305.3167708333333,0,1,0,0.0,0.0,0.0,0.0 +subvertpy,-0.0856463378556415,0.91749868593295,-0.528150646670691,https://salsa.debian.org/python-team/packages/subvertpy, https://github.com/jelmer/subvertpy,3827.0174421296297,14,36,0,29.0,16.0,0.0,0.0 +suil,0.666624473070575,2.94988240352733,0.0198598554375319,https://salsa.debian.org/multimedia-team/suil, https://github.com/lv2/suil.git ,4625.665625,6,1,0,7.0,14.0,0.0,0.0 +sway,-0.0003144280673106,1.82114971457078,-0.460273981510936,https://salsa.debian.org/swaywm-team/sway, https://github.com/swaywm/sway/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +lv2,0.0271485834407405,2.31968936226794,-0.405826923040319,https://salsa.debian.org/multimedia-team/swh-lv2, https://github.com/swh/lv2,4769.927280092593,1,14,0,7.0,17.0,0.0,1.0 +ladspa,0.708394962150775,1.45205716079245,0.284208147622619,https://salsa.debian.org/multimedia-team/swh-plugins, https://github.com/swh/ladspa.git,5572.583993055556,1,25,0,15.0,58.0,0.0,0.0 +swift-bench,-3.69716188934169,-0.973889151522176,-4.31149029277086,https://salsa.debian.org/openstack-team/services/swift-bench, https://github.com/openstack/swift-bench.git,4746.026828703703,8,47,0,37.0,2.0,0.0,0.0 +swupdate,-4.13804202084003,-0.376504653524451,-5.241034960621,https://salsa.debian.org/debian/swupdate, https://github.com/sbabic/swupdate,3657.108321759259,179,6,0,128.0,0.0,0.0,1.0 +sxid,0.33831696615764,2.49407650395556,-0.642779212415897,https://salsa.debian.org/debian/sxid, https://github.com/taem/sxid,1429.029386574074,0,1,0,1.0,2.0,0.0,0.0 +synthv1,0.0241434868220623,1.37409351486715,-0.399365925014397,https://salsa.debian.org/multimedia-team/synthv1, https://github.com/rncbc/synthv1.git,4117.136076388889,0,14,0,3.0,15.0,0.0,0.0 +syrep,-0.384041012701151,1.56637993826751,-1.15004967985139,https://github.com/JonathonReinhart/syrep,https://github.com/JonathonReinhart/syrep,0.0023611111111111,1,1,0,1.0,2.0,0.0,0.0 +sysfsutils,1.46049393185949,2.50439380675384,0.820289131218092,https://git.hadrons.org/cgit/debian/pkgs/sysfsutils.git, https://github.com/linux-ras/sysfsutils/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +syslog-ng-debian,0.336088055168891,0.511763417260577,0.185971407157619,https://github.com/gcsideal/syslog-ng-debian,https://github.com/gcsideal/syslog-ng-debian,4178.44738425926,0,12,0,6.0,7.0,0.0,0.0 +ocaml-syslog,-0.996657340852441,1.25417313172268,-1.73225700632424,https://salsa.debian.org/ocaml-team/syslog-ocaml, https://github.com/geneanet/ocaml-syslog.git,690.8139351851852,1,3,0,2.0,3.0,0.0,0.0 +system-config-printer,2.35534728653651,3.32976112957796,1.71704345034686,https://salsa.debian.org/gnome-team/system-config-printer, https://github.com/OpenPrinting/system-config-printer/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +systemd-bootchart,0.0589352376469859,2.49482197170593,-0.521736994773931,https://salsa.debian.org/systemd-team/systemd-bootchart, https://github.com/systemd/systemd-bootchart,2813.8079282407407,13,11,0,15.0,41.0,0.0,0.0 +systemd-cron,0.243571307309259,1.06731842162835,-0.191790932788304,https://salsa.debian.org/systemd-team/systemd-cron, https://github.com/systemd-cron/systemd-cron.git,3852.632291666667,2,17,0,15.0,36.0,0.0,0.0 +systemfixtures,-2.62932315078521,-0.936424704435129,-3.00582436909892,https://salsa.debian.org/python-team/modules/systemfixtures, https://github.com/testing-cabal/systemfixtures.git,2181.133263888889,4,4,0,5.0,9.0,0.0,0.0 +systray-mdstat,-0.49343389370703,2.37286975016287,-1.23916904427602,https://github.com/xtaran/systray-mdstat,https://github.com/xtaran/systray-mdstat,1731.202361111111,1,1,0,2.0,1.0,0.0,0.0 +systune,-0.265542267936075,0.938801310175914,-0.701848845741014,https://github.com/sudipm-mukherjee/systune.git,https://github.com/sudipm-mukherjee/systune.git,176.0601736111111,1,4,0,2.0,3.0,0.0,0.0 +sysvinit,1.52035499816916,1.68724376899493,1.3661977311182,https://salsa.debian.org/debian/sysvinit, https://github.com/slicer69/sysvinit,5198.300694444444,2,8,0,4.0,17.0,0.0,0.0 +PEGTL,-2.20048020847375,0.225180617239842,-2.76338788823184,https://salsa.debian.org/birger/tao-pegtl, https://github.com/taocpp/PEGTL/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +tap-plugins,0.092380640002778,1.31045924107168,-0.180216737924224,https://salsa.debian.org/multimedia-team/tap-plugins, https://github.com/tomszilagyi/tap-plugins.git,5078.916828703704,3,8,0,0.0,2.0,0.0,0.0 +tclsignal,0.119740533015725,2.23718684079051,-0.307511467566214,https://salsa.debian.org/tcltk-team/tcl-signal, https://github.com/wjoye/tclsignal,2449.858275462963,1,4,0,3.0,4.0,0.0,0.0 +terminaltables,0.412492960577376,3.39801290706263,-0.31829907429068,https://git.progress-linux.org/users/daniel.baumann/debian/packages/terminaltables, https://github.com/matthewdeanmartin/terminaltables,2707.668125,1,11,0,9.0,4.0,0.0,0.0 +termrec,-0.546232522023779,1.72389988124453,-0.995923304197279,https://github.com/kilobyte/termrec/tree/debian,https://github.com/kilobyte/termrec,5312.953356481482,0,2,0,1.0,8.0,0.0,0.0 +tesseract-lang-debian,0.323928139030608,1.22799953306579,-0.0238272915900919,https://github.com/AlexanderP/tesseract-lang-debian,https://github.com/AlexanderP/tesseract-lang-debian,1566.6614814814816,0,5,0,3.0,2.0,0.0,0.0 +test-kitchen,-0.921041438391563,1.3276246051366,-1.60155632242379,https://salsa.debian.org/ruby-team/test-kitchen, https://github.com/test-kitchen/test-kitchen/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +testpath,0.178377175042217,1.42515771828427,-0.146798279917223,https://salsa.debian.org/python-team/packages/testpath, https://github.com/jupyter/testpath.git,2578.920949074074,1,9,0,7.0,23.0,0.0,0.0 +brev-cls,-0.904214842582474,0.898660783815827,-1.49145773466644,https://salsa.debian.org/debian/tetex-brev, https://github.com/asgeirn/brev-cls.git,3127.5767708333333,2,4,0,3.0,3.0,0.0,0.0 +tex-common,0.151231889587086,0.257676560878312,0.0745875584946667,https://github.com/debian-tex/tex-common,https://github.com/debian-tex/tex-common,5410.6258333333335,2,8,0,3.0,1.0,0.0,0.0 +tex-gyre,1.31087093839402,3.21344168406271,0.456727081656784,https://github.com/debian-tex/tex-gyre,https://github.com/debian-tex/tex-gyre,5218.649583333333,2,7,0,3.0,2.0,0.0,0.0 +texext,-0.496601277128136,2.46929449464641,-1.38146468438323,https://salsa.debian.org/python-team/packages/texext, https://github.com/matthew-brett/texext.git,2951.808113425926,0,5,0,4.0,11.0,0.0,0.0 +texinfo,1.23808351862705,1.59441210728978,0.965763802542942,https://github.com/debian-tex/texinfo,https://github.com/debian-tex/texinfo,5779.881342592593,3,9,0,5.0,6.0,0.0,0.0 +texlive-nonbin,1.15679629415715,1.362961610764,0.982152268763239,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-base,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0,6.0,2.0,0.0,0.0 +texlive-bin,0.977654238974201,1.26012038506653,0.750619670908532,https://github.com/debian-tex/texlive-bin,https://github.com/debian-tex/texlive-bin,4308.437662037037,3,11,0,5.0,3.0,0.0,0.0 +texlive-nonbin,0.870329898620217,1.0658084365154,0.708117771164046,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-extra,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0,6.0,2.0,0.0,0.0 +texlive-nonbin,0.729614425561058,1.07882617316548,0.459375405894902,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-lang,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0,6.0,2.0,0.0,0.0 +texworks,0.345795577570427,1.30764122490873,-0.065304430583538,https://github.com/debian-tex/texworks,https://github.com/debian-tex/texworks,4991.678958333333,1,9,0,5.0,2.0,0.0,0.0 +texworks-manual,0.198739884732124,2.59400351517298,-0.321228007138928,https://github.com/debian-tex/texworks-manual,https://github.com/debian-tex/texworks-manual,1933.1899652777777,2,5,0,3.0,1.0,0.0,0.0 +thaixfonts,0.128162461196804,0.871921859343836,-0.225691647646668,https://salsa.debian.org/debian/thaixfonts, https://github.com/tlwg/thaixfonts/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +three.js,0.115890084847779,1.68070508341261,-0.311409633612736,https://salsa.debian.org/js-team/three.js, https://github.com/mrdoob/three.js/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +thunar-dropbox,0.115455536805288,2.18322066671253,-0.418052724678524,https://salsa.debian.org/xfce-extras-team/thunar-dropbox-plugin, https://github.com/jeinzi/thunar-dropbox.git,3052.1741319444445,2,6,0,4.0,6.0,0.0,0.0 +timbl,-0.401299298516659,1.39172224209644,-0.920665446876481,https://salsa.debian.org/science-team/timbl, https://github.com/LanguageMachines/timbl.git,2913.2087384259257,0,8,0,2.0,8.0,0.0,0.0 +tinyssh,-1.47329206501662,0.864916972832623,-1.9165265439908,https://salsa.debian.org/debian/tinyssh, https://github.com/janmojzis/tinyssh.git,3264.9232175925927,1,18,0,10.0,66.0,0.0,0.0 +tp_smapi,0.844323368615497,2.0576796453675,0.253870626454108,https://salsa.debian.org/debian/tp-smapi, https://github.com/linux-thinkpad/tp_smapi,4476.696655092593,6,7,0,5.0,90.0,0.0,2.0 +tpm2-initramfs-tool,-1.40359125078696,1.80411121152826,-2.1934256166983,https://github.com/timchen119/tpm2-initramfs-tool,https://github.com/timchen119/tpm2-initramfs-tool,486.0112962962963,0,2,0,0.0,6.0,0.0,0.0 +trace-cmd,0.0998974636845,1.39787995621575,-0.354648084428709,https://github.com/sudipm-mukherjee/trace-cmd.git,https://github.com/sudipm-mukherjee/trace-cmd.git,1314.92875,139,17,0,90.0,1.0,0.0,0.0 +trackballs,0.245048124076464,1.03475591552092,-0.184206184392696,https://salsa.debian.org/games-team/trackballs, https://github.com/trackballs/trackballs.git,2063.1770717592594,6,7,0,7.0,20.0,0.0,0.0 +tran,-0.550748882886256,1.93788478921821,-1.09138120074128,https://github.com/kilobyte/tran/tree/debian,https://github.com/kilobyte/tran,4999.450173611112,0,1,0,1.0,3.0,0.0,0.0 +trayer-srg,0.796093545331843,2.23608521534984,0.122409527381704,https://salsa.debian.org/skangas/trayer, https://github.com/sargon/trayer-srg/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +triangle,-0.171188651604536,3.13081859065391,-1.21547208500806,https://salsa.debian.org/science-team/triangle, https://github.com/libigl/triangle.git,2528.1501736111118,2,7,0,5.0,8.0,0.0,0.0 +triggerhappy,1.59828841578579,4.48320777881722,0.389062407879172,https://github.com/wertarbyte/triggerhappy,https://github.com/wertarbyte/triggerhappy,2171.064270833333,5,5,0,7.0,41.0,0.0,0.0 +Trimage,1.25538527576544,3.95852084110596,0.188688872097325,https://salsa.debian.org/debian-phototools-team/trimage, https://github.com/Kilian/Trimage,4077.911770833333,2,17,0,9.0,64.0,0.0,0.0 +trinityrnaseq,-0.365244617454952,1.41599664321691,-0.974531329622039,https://salsa.debian.org/med-team/trinityrnaseq, https://github.com/trinityrnaseq/trinityrnaseq/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +trivial-features,0.263794991500852,3.27674805866799,-0.566814757036491,https://salsa.debian.org/common-lisp-team/trivial-features, https://github.com/trivial-features/trivial-features,5548.67386574074,11,9,0,15.0,24.0,0.0,0.0 +trivial-gray-streams,-0.0499196074540647,1.94778085709933,-0.505259566151993,https://salsa.debian.org/common-lisp-team/trivial-gray-streams, https://github.com/trivial-gray-streams/trivial-gray-streams/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +trocla,-1.12829437521708,1.85491509198581,-2.12969666349766,https://salsa.debian.org/ruby-team/trocla, https://github.com/duritong/trocla,4222.934444444444,2,25,0,16.0,33.0,0.0,0.0 +trollsift,-2.02827138272072,0.319975343977958,-2.47830426860654,https://salsa.debian.org/debian-gis-team/trollsift, https://github.com/pytroll/trollsift,3470.9592824074075,4,15,0,12.0,21.0,0.0,0.0 +tslib-debian,0.13367892889746,0.999475000069537,-0.0934739230140975,https://github.com/merge/tslib-debian,https://github.com/merge/tslib-debian,1295.9506018518518,2,3,0,1.0,1.0,0.0,0.0 +tty-clock,-0.284505416950156,0.457570258657673,-0.496718793185656,https://github.com/anarcat/tty-clock/tree/debian,https://github.com/anarcat/tty-clock,3142.182175925926,0,24,0,13.0,1.0,0.0,0.0 +tweepy,0.301492933185993,2.33320263624835,-0.527470147647839,https://salsa.debian.org/python-team/packages/tweepy, https://github.com/tweepy/tweepy.git,5164.931319444445,72,189,0,197.0,21.0,0.0,0.0 +Twiggy,0.310050801803201,4.08800007368902,-0.852782604445895,https://salsa.debian.org/perl-team/modules/packages/twiggy, https://github.com/miyagawa/Twiggy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +twms,-0.592208155086867,1.2383570593868,-1.19721999610909,https://salsa.debian.org/debian/twms, https://github.com/Komzpa/twms.git,2177.2821875,3,11,0,4.0,5.0,0.0,0.0 +uhub-debian,-0.27968382255561,3.57423958905093,-1.58079944499814,https://github.com/tehnick/uhub-debian,https://github.com/tehnick/uhub-debian,4037.202314814815,0,1,0,1.0,1.0,0.0,0.0 +uim-chewing,-2.52130439285198,-0.41609696498638,-2.98686680003963,https://salsa.debian.org/debian/uim-chewing, https://github.com/uim/uim-chewing,1095.720023148148,0,1,0,0.0,0.0,0.0,0.0 +ukui-biometric-auth,-1.23108430429401,0.753704918102481,-1.67406120474206,https://github.com/ukui/ukui-biometric-auth,https://github.com/ukui/ukui-biometric-auth,1260.5815625,5,11,0,8.0,6.0,0.0,0.0 +ukui-control-center,-2.2036628317433,0.051194460625857,-2.89319770376583,https://github.com/ukui/ukui-control-center,https://github.com/ukui/ukui-control-center,1921.8410069444444,76,81,0,41.0,13.0,0.0,0.0 +ukui-indicators,-1.37780459404033,1.21578496384178,-2.1158896015095,https://github.com/ukui/ukui-indicators,https://github.com/ukui/ukui-indicators,1239.8214814814814,3,9,0,5.0,4.0,0.0,0.0 +ukui-power-manager,-0.319097885609131,2.91285397358237,-1.12198117515138,https://github.com/ukui/ukui-power-manager,https://github.com/ukui/ukui-power-manager,1544.224537037037,3,19,0,9.0,9.0,0.0,0.0 +ukui-settings-daemon,0.121987577432568,3.29765073714863,-0.681836487667349,https://github.com/ukui/ukui-settings-daemon,https://github.com/ukui/ukui-settings-daemon,1595.2230439814814,10,31,0,10.0,21.0,0.0,0.0 +ukui-themes,-0.582696295183059,2.23845690954184,-1.29864612966744,https://github.com/ukui/ukui-themes,https://github.com/ukui/ukui-themes,1509.1822916666667,6,9,0,8.0,12.0,0.0,0.0 +umoci,-1.50497977737253,0.580898676945254,-2.03066533438468,https://salsa.debian.org/go-team/packages/umoci, https://github.com/opencontainers/umoci/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +unburden-home-dir,-0.501169022978581,0.195057165010135,-0.761338470340196,https://github.com/xtaran/unburden-home-dir,https://github.com/xtaran/unburden-home-dir,4201.546134259259,1,10,2,6.0,17.0,0.0,0.0 +underscore,0.557720287676854,2.16700341091088,0.0619794848914645,https://salsa.debian.org/js-team/underscore, https://github.com/jashkenas/underscore.git,5084.80931712963,25,336,0,261.0,27.0,0.0,52.0 +Unhide,1.70613888194707,3.87428749747735,0.737630650604256,https://salsa.debian.org/pkg-security-team/unhide, https://github.com/YJesus/Unhide.git,991.7221296296296,2,5,0,5.0,6.0,0.0,0.0 +unorm,-1.31301044062931,0.898128280891819,-1.84441568418253,https://salsa.debian.org/js-team/unorm.js, https://github.com/walling/unorm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +unrar-nonfree,1.84732656052625,3.19890630535861,1.05955884452828,https://github.com/debian-calibre/unrar-nonfree,https://github.com/debian-calibre/unrar-nonfree,1876.6905902777776,7,5,0,5.0,3.0,0.0,0.0 +unrardll,-0.796002188822737,0.588836210457293,-1.10593812498378,https://github.com/debian-calibre/unrardll,https://github.com/debian-calibre/unrardll,1864.002291666667,0,4,0,3.0,1.0,0.0,0.0 +vagalume,-1.45112742374597,-0.973288060828436,-1.54241323016244,https://salsa.debian.org/berto/vagalume, https://github.com/bertogg/vagalume,2090.3450578703705,26,3,0,19.0,0.0,0.0,0.0 +vagrant,0.229961961813965,0.628466998668734,0.001311443146378,https://salsa.debian.org/ruby-team/vagrant, https://github.com/hashicorp/vagrant/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +valabind,-1.2435397352149,-0.342890743894002,-1.60879507868754,https://salsa.debian.org/debian/valabind, https://github.com/radare/valabind,4839.981956018519,6,19,0,15.0,41.0,0.0,0.0 +valinor,-2.93685056919402,-1.10201026487098,-3.31937216080382,https://salsa.debian.org/python-team/packages/valinor, https://github.com/ARMmbed/valinor.git,1839.1786805555555,3,12,0,9.0,17.0,0.0,0.0 +variantslib,-2.09869686456814,0.447590858023176,-2.61031478335289,https://salsa.debian.org/ocaml-team/variantslib, https://github.com/janestreet/variantslib.git,3865.55619212963,0,7,0,5.0,3.0,0.0,0.0 +vcversioner,0.242716431004721,2.83146614743386,-0.333260856679997,https://salsa.debian.org/python-team/packages/vcversioner, https://github.com/habnabit/vcversioner,1010.450914351852,0,4,0,2.0,18.0,0.0,0.0 +vfu-deb,0.750219213886093,2.41948171192405,-0.0549697237600978,https://github.com/bbonev/vfu-deb,https://github.com/bbonev/vfu-deb,1063.877025462963,0,1,0,1.0,0.0,0.0,0.0 +vim-autopep8,0.209865572834708,3.15312296708815,-0.559265887690645,https://salsa.debian.org/python-team/packages/vim-autopep8, https://github.com/tell-k/vim-autopep8.git,1821.7416782407408,1,10,0,7.0,52.0,0.0,0.0 +command-t,-0.281217186974149,1.71193634099862,-0.803496041507535,https://github.com/yrro/command-t,https://github.com/yrro/command-t,4589.54300925926,66,14,0,60.0,1.0,0.0,0.0 +volumeicon-debian,0.558223917947211,2.41170540163238,-0.117654542782822,https://github.com/mati75/volumeicon-debian.git,https://github.com/mati75/volumeicon-debian.git,4377.010659722222,0,5,0,3.0,1.0,0.0,0.0 +csg,-1.30159847034668,-0.129194673619744,-1.72369219754747,https://salsa.debian.org/debichem-team/votca-csg, https://github.com/votca/csg/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +tools,-1.88532927951672,-0.419758602929591,-2.30942517278951,https://salsa.debian.org/debichem-team/votca-tools, https://github.com/votca/tools/tools/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +vowpal_wabbit,1.6051587851371,4.78797055533608,0.325894581710917,http://github.com/yarikoptic/vowpal_wabbit,http://github.com/yarikoptic/vowpal_wabbit,3692.406203703704,66,280,0,0.0,0.0,0.0,0.0 +vows,-1.39394977454617,0.332424711359999,-1.79508445414443,https://salsa.debian.org/js-team/vows, https://github.com/cloudhead/vows/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +vpcs,0.571960277380983,3.99052141997529,-0.298703196291969,https://github.com/dlintott/vpcs,https://github.com/dlintott/vpcs,302.5271875,0,2,0,2.0,1.0,0.0,0.0 +vpnc,0.755213249612064,1.24264527072147,0.417631646673197,https://salsa.debian.org/debian/vpnc, https://github.com/streambinder/vpnc,5629.841388888889,11,17,0,19.0,26.0,0.0,0.0 +vue-router,-2.72398920690915,-0.137337360960268,-3.30687614930778,https://salsa.debian.org/js-team/vue-router.js, https://github.com/vuejs/vue-router/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +vue,-1.09313560921421,1.01866826845148,-1.534333901562,https://salsa.debian.org/js-team/vue.js, https://github.com/vuejs/vue/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +link-checker,1.07790841418658,3.05629720278721,0.115115099366742,https://salsa.debian.org/perl-team/modules/packages/w3c-linkchecker, https://github.com/w3c/link-checker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +emacs-w3m,-0.0316215167236012,0.794577588043076,-0.429835318014074,https://salsa.debian.org/debian/w3m-el-snapshot, https://github.com/emacs-w3m/emacs-w3m,5732.875613425926,8,17,0,19.0,38.0,0.0,2.0 +wadc,-1.31141977817888,1.14881536763015,-1.89429215614748,https://github.com/jmtd/wadc,https://github.com/jmtd/wadc,2669.3253125,2,7,0,3.0,5.0,0.0,0.0 +wajig,-0.256364093339026,-0.204128093171791,-0.289877150989966,https://github.com/gjwgit/wajig/wajig,https://github.com/gjwgit/wajig,4746.4752546296295,1,8,0,5.0,1.0,0.0,0.0 +wakeonlan,0.53477622990398,2.39817694826765,-0.0392961396375341,https://salsa.debian.org/debian/wakeonlan, https://github.com/jpoliv/wakeonlan/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +wavbreaker,-0.304369264568198,1.30801973333578,-0.643451840201979,https://salsa.debian.org/multimedia-team/wavbreaker, https://github.com/thp/wavbreaker.git,5680.2477546296295,3,6,0,9.0,15.0,12.0,0.0 +wbar,0.720696362158809,2.63631785035618,-0.164067610906573,https://salsa.debian.org/debian/wbar, https://github.com/rodolf0/wbar,1881.7045949074077,0,2,0,1.0,2.0,0.0,0.0 +wcc,-2.42817416014247,-0.918288734536828,-2.92054697879028,https://salsa.debian.org/pkg-security-team/wcc, https://github.com/endrazine/wcc.git,2370.653888888889,7,12,0,16.0,41.0,0.0,4.0 +whysynth,1.62738774661893,4.79450236358576,0.384049585785024,https://salsa.debian.org/multimedia-team/whysynth, https://github.com/smbolton/whysynth.git,2132.1219444444446,2,3,0,3.0,12.0,0.0,0.0 +wifite2,0.0691397747010047,1.35966478862449,-0.282196589925993,https://salsa.debian.org/pkg-security-team/wifite, https://github.com/kimocoder/wifite2.git,3100.78755787037,19,31,0,35.0,28.0,0.0,0.0 +wiki2beamer,0.107248403941003,2.96800339008793,-0.787443662742097,https://salsa.debian.org/debian/wiki2beamer, https://github.com/wiki2beamer/wiki2beamer/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +wildmidi,1.12204490028689,2.8689328624495,0.393110689266044,https://salsa.debian.org/games-team/WildMIDI, https://github.com/psi29a/wildmidi.git,5284.747372685185,7,25,0,19.0,8.0,0.0,2.0 +Willow,-0.305002642062236,2.68374602924338,-1.20068142812313,https://salsa.debian.org/python-team/packages/willow, https://github.com/torchbox/Willow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +win-iconv,-0.125318004334775,3.36110345064577,-1.27848577768421,https://salsa.debian.org/debian/win-iconv, https://github.com/win-iconv/win-iconv,2428.4399189814817,1,14,0,10.0,21.0,0.0,0.0 +winregfs,0.150543294603686,2.56636307415316,-0.37925542532309,https://salsa.debian.org/pkg-security-team/winregfs, https://github.com/jbruchon/winregfs,3358.8025694444445,0,4,0,1.0,4.0,0.0,0.0 +wipe,0.0654274281112602,0.50992895708129,-0.121010634033988,https://salsa.debian.org/pkg-security-team/wipe, https://github.com/berke/wipe,5088.825243055556,3,5,0,3.0,11.0,0.0,0.0 +wiimms-iso-tools,-0.0137410527501382,2.25940176956232,-0.629581281765023,https://salsa.debian.org/debian/wit, https://github.com/Wiimm/wiimms-iso-tools,764.4320717592593,0,4,0,1.0,29.0,0.0,0.0 +with-simulated-input,-1.61364195339851,0.654279163527695,-2.0643984033587,https://salsa.debian.org/emacsen-team/with-simulated-input-el, https://github.com/DarwinAwardWinner/with-simulated-input.git,1593.3461921296296,0,2,0,2.0,10.0,0.0,0.0 +wmaker,3.03181698153232,3.50497056467286,2.63335757483099,https://salsa.debian.org/wmaker-team/wmaker, https://github.com/window-maker/wmaker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +wmbubble,0.33133404478108,2.05515118058065,-0.500405698814647,https://salsa.debian.org/wmaker-team/wmbubble, https://github.com/rnjacobs/wmbubble.git,3203.159814814815,0,5,0,2.0,5.0,0.0,0.0 +wmcoincoin,-1.11204703091166,0.942829877288574,-1.81265921816841,https://salsa.debian.org/wmaker-team/wmcoincoin, https://github.com/seeschloss/wmcoincoin/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +wmfrog,-0.619500859159663,0.736280260241296,-1.1251650057348,https://salsa.debian.org/wmaker-team/wmfrog, https://github.com/tcolar/wmfrog,4191.395277777778,0,7,0,2.0,2.0,0.0,0.0 +dockapps,0.221022686233518,1.75296584947562,-0.371862750927289,https://salsa.debian.org/wmaker-team/wmhdplop, https://github.com/window-maker/dockapps/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +wmpinboard,0.329930821019795,2.24815642539236,-0.583398239841013,https://salsa.debian.org/wmaker-team/wmpinboard, https://github.com/bbidulock/wmpinboard.git,274.6021412037037,0,3,0,2.0,2.0,0.0,0.0 +wmsysmon,3.68197866191118,6.94971947808117,2.22226845024141,https://salsa.debian.org/wmaker-team/wmsysmon, https://github.com/voyageur/wmsysmon.git,1940.3190625,0,3,0,2.0,3.0,0.0,0.0 +wokkel,-0.749441424580256,1.59602118915274,-1.35876773271944,https://salsa.debian.org/python-team/packages/wokkel, https://github.com/ralphm/wokkel.git,4842.8803125,0,5,0,5.0,26.0,0.0,0.0 +wondershaper,2.14935921040786,4.17917526317013,1.07231548122752,https://github.com/leggewie-DM/wondershaper,https://github.com/leggewie-DM/wondershaper,3187.669826388889,2,1,0,2.0,2.0,0.0,0.0 +wreport,-0.179477642280507,1.61430545559584,-0.817271994381948,https://github.com/ARPA-SIMC/wreport,https://github.com/ARPA-SIMC/wreport,4700.94625,2,14,0,5.0,11.0,0.0,0.0 +wslay,-0.323350583910332,2.00965793039539,-1.03163971198034,https://salsa.debian.org/debian/wslay, https://github.com/tatsuhiro-t/wslay,2229.7935185185183,3,18,1,17.0,70.0,0.0,0.0 +wtf-peewee,-1.19339204512468,1.30187625249524,-1.74169433804412,https://salsa.debian.org/python-team/packages/wtf-peewee, https://github.com/coleifer/wtf-peewee,4437.079965277778,3,18,0,15.0,46.0,0.0,0.0 +wxAstroCapture,0.372735406937906,3.17349120443399,-0.408012519061559,https://salsa.debian.org/science-team/wxastrocapture, https://github.com/wxAstro/wxAstroCapture,45.059583333333336,0,3,0,2.0,2.0,0.0,0.0 +wxGlade,-0.233526737230989,0.123389374689724,-0.423359705550465,https://salsa.debian.org/georgesk/wxglade, https://github.com/wxGlade/wxGlade/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +x11-touchscreen-calibrator,-0.115498330161782,2.67222001368271,-0.787537421198142,https://github.com/fourdollars/x11-touchscreen-calibrator,https://github.com/fourdollars/x11-touchscreen-calibrator,2225.1995717592595,0,4,0,2.0,5.0,0.0,0.0 +x42-plugins,-0.152619050161196,0.59903751721685,-0.384890653970823,https://salsa.debian.org/multimedia-team/x42-plugins, https://github.com/x42/x42-plugins,3642.239502314815,0,1,0,1.0,0.0,0.0,0.0 +xandikos,-1.70088935399086,-1.39473122815796,-1.76872834016456,https://salsa.debian.org/jelmer/xandikos, https://github.com/jelmer/xandikos/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +xbomb.debian,2.51679318751402,5.65106973361442,1.16673977834059,https://github.com/alexdantas/xbomb.debian,https://github.com/alexdantas/xbomb.debian,472.1825347222222,1,2,0,0.0,3.0,0.0,0.0 +xindy,0.182376395384361,0.882284251450977,-0.127451421745251,https://github.com/debian-tex/xindy,https://github.com/debian-tex/xindy,2719.8550694444443,2,6,0,4.0,1.0,0.0,0.0 +xlsx2csv,0.199802940957209,2.30482551068513,-0.394629471061364,https://salsa.debian.org/science-team/xlsx2csv, https://github.com/dilshod/xlsx2csv/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +xml-light,-0.359272413549481,1.18964691141487,-0.777231494285517,https://salsa.debian.org/ocaml-team/xml-light, https://github.com/ncannasse/xml-light.git,3963.0315046296296,3,8,0,8.0,13.0,0.0,0.0 +xmountains,-0.647359812157378,-0.40806180429333,-0.698514940296116,https://salsa.debian.org/debian/xmountains, https://github.com/spbooth/xmountains/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +xnec2c,-0.243374577624682,0.791984406418207,-0.488906462737154,https://salsa.debian.org/debian-hamradio-team/xnec2c, https://github.com/KJ7LNW/xnec2c.git,5761.788194444444,5,7,0,8.0,22.0,0.0,0.0 +xplc,0.0651190779681454,1.58040935945994,-0.544187636272128,https://salsa.debian.org/debian/xplc, https://github.com/xplc/xplc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +pkg-xppaut,0.480332333017225,2.58739616444371,-0.461526976933745,https://github.com/neurodebian/pkg-xppaut,https://github.com/neurodebian/pkg-xppaut,171.36234953703703,6,2,0,3.0,0.0,0.0,0.0 +xprintidle,-0.142218839242467,0.624978745265832,-0.351898973864155,https://salsa.debian.org/debian/xprintidle, https://github.com/g0hl1n/xprintidle,3448.917986111111,2,6,2,2.0,15.0,0.0,0.0 +xsecurelock,-0.468159823630411,2.89008236417399,-1.35174511233414,https://github.com/google/xsecurelock/tree/debian,https://github.com/google/xsecurelock,3375.8872453703702,17,12,2,18.0,50.0,0.0,0.0 +xtermcontrol,-0.0117403008079696,1.58585456229801,-0.456954847845528,https://salsa.debian.org/debian/xtermcontrol, https://github.com/JessThrysoee/xtermcontrol.git,3429.399525462963,0,2,0,1.0,17.0,0.0,0.0 +xtl,-4.70407895592082,-1.58562060725813,-5.43056132857938,https://github.com/quantstack-debian/xtl,https://github.com/quantstack-debian/xtl,1473.7952662037037,0,3,0,2.0,1.0,0.0,0.0 +xttitle,0.893907750684752,4.27065681385221,-0.38194406923119,https://salsa.debian.org/debian/xttitle, https://github.com/mojotx/xttitle,2181.591273148148,2,3,0,2.0,2.0,0.0,0.0 +xwax,-0.56366293338678,0.727141420530347,-0.949811830305735,https://salsa.debian.org/multimedia-team/xwax, https://github.com/xwax/xwax.git,5550.865671296297,5,3,0,3.0,9.0,0.0,0.0 +xxdiff,0.906100417502369,1.65106472605105,0.441369015329754,https://salsa.debian.org/debian/xxdiff, https://github.com/blais/xxdiff.git,5451.028113425926,4,11,0,8.0,19.0,0.0,0.0 +xylib,0.696281579106391,3.86842676602693,-0.279699139750226,https://salsa.debian.org/science-team/xylib, https://github.com/wojdyr/xylib,5291.045370370371,4,4,0,3.0,17.0,0.0,0.0 +yafc,-0.0272314962318525,0.491639132124011,-0.325366651173439,https://salsa.debian.org/debian/yafc, https://github.com/sebastinas/yafc.git,4536.171655092593,4,14,0,13.0,27.0,0.0,0.0 +yagf-debian,1.25648180449157,3.63195061091952,0.257748371556789,https://github.com/tehnick/yagf-debian,https://github.com/tehnick/yagf-debian,2966.796875,2,1,0,2.0,3.0,0.0,0.0 +yagv,-0.249310969091996,1.68054515280102,-0.758268769007919,https://salsa.debian.org/3dprinting-team/yagv, https://github.com/jonathanwin/yagv.git,1848.8749421296293,0,6,0,2.0,24.0,0.0,0.0 +yajl,0.143691094254928,0.815541964652964,-0.0099540163070501,https://github.com/jstamp/yajl,https://github.com/jstamp/yajl,5069.733125,7,28,0,22.0,4.0,0.0,0.0 +yubikey-personalization-gui-dpkg,1.06602144433083,4.62142525692704,-0.0477907414072675,https://github.com/Yubico/yubikey-personalization-gui-dpkg,https://github.com/Yubico/yubikey-personalization-gui-dpkg,1527.8557986111111,0,2,0,2.0,5.0,0.0,0.0 +yubikey-val-dpkg,-1.57967588205519,0.523057944462277,-2.22388558507811,https://github.com/Yubico/yubikey-val-dpkg,https://github.com/Yubico/yubikey-val-dpkg,2518.499560185185,1,7,0,6.0,3.0,0.0,0.0 +jay-yydebug,-2.4807565790966,0.0572661246944069,-3.00168517708945,https://salsa.debian.org/java-team/yydebug, https://github.com/jruby/jay-yydebug,0.0429513888888888,0,1,0,1.0,2.0,0.0,0.0 +zc.lockfile,-0.0210256384171079,1.53795996465463,-0.455036022488046,https://salsa.debian.org/python-team/packages/zc-lockfile, https://github.com/zopefoundation/zc.lockfile,5245.597430555556,1,13,0,10.0,19.0,0.0,0.0 +zed,-0.763678522134998,-0.058695494498501,-1.01526923636153,https://salsa.debian.org/ocaml-team/zed, https://github.com/ocaml-community/zed.git,4544.756469907407,9,14,0,17.0,38.0,0.0,0.0 +ice-debian-packaging,-0.224627038585425,-0.0796274634500833,-0.317814944379456,https://github.com/zeroc-ice/ice-debian-packaging.git,https://github.com/zeroc-ice/ice-debian-packaging.git,2730.299004629629,3,11,0,8.0,6.0,0.0,0.0 +0install-debian,-0.179017330883015,0.237341498461442,-0.353118964825079,https://github.com/0install/0install-debian,https://github.com/0install/0install-debian,5324.679594907408,19,12,0,3.0,0.0,0.0,0.0 +zfSnap,0.477233621433431,3.14948254064277,-0.443372693502268,https://github.com/jgoerzen/zfSnap,https://github.com/jgoerzen/zfSnap,4429.328888888889,1,13,0,2.0,1.0,0.0,0.0 +zktop,-1.68344813592465,1.4483848388377,-2.50797629530837,https://salsa.debian.org/python-team/packages/zktop, https://github.com/phunt/zktop.git,4096.610011574074,1,12,0,7.0,20.0,0.0,0.0 +zope.deprecation,-0.400292316060671,1.29506945384903,-0.802284920023947,https://salsa.debian.org/python-team/packages/zope.deprecation, https://github.com/zopefoundation/zope.deprecation.git,5564.896354166666,6,19,0,22.0,15.0,0.0,0.0 +zope.event,0.480126030029771,2.4451618464987,-0.0440353102755944,https://salsa.debian.org/debian/zope.event, https://github.com/zopefoundation/zope.event,5503.514363425926,6,21,0,23.0,14.0,0.0,0.0 +zope.i18nmessageid,-0.504779274215239,1.17571582300164,-1.00381597667681,https://salsa.debian.org/detiste-guest/zope.i18nmessageid, https://github.com/zopefoundation/zope.i18nmessageid,5530.727175925926,3,23,0,23.0,15.0,0.0,0.0 +zope.schema,-0.671127716306772,0.589860256267245,-1.03264000145762,https://salsa.debian.org/python-team/packages/zope.schema, https://github.com/zopefoundation/zope.schema,5503.583645833333,8,46,0,42.0,30.0,0.0,0.0 +zope.testing,-0.804639803803595,0.193231787220047,-1.16008686093468,https://salsa.debian.org/python-team/packages/zope.testing, https://github.com/zopefoundation/zope.testing,5685.868263888889,3,42,0,37.0,13.0,0.0,0.0 +zope.testrunner,-1.51782142309299,-0.947942576480612,-1.65561505690836,https://salsa.debian.org/python-team/packages/zope.testrunner, https://github.com/zopefoundation/zope.testrunner,4988.321666666667,11,30,0,30.0,32.0,0.0,0.0 +zpb-ttf,-0.540008259656094,2.49952861999287,-1.59014470949942,https://salsa.debian.org/debian/zpb-ttf, https://github.com/xach/zpb-ttf,4273.146041666667,0,6,0,4.0,14.0,0.0,0.0 +7kaa,0.873343914137606,3.76518932259787,-0.0927531105574549,https://salsa.debian.org/games-team/7kaa, https://github.com/the3dfxdude/7kaa,5126.709664351852,24,23,0,27.0,66.0,0.0,0.0 +acmetool,0.621943486643402,2.68754503210466,-0.233690566178644,https://salsa.debian.org/go-team/packages/acmetool, https://github.com/hlandau/acmetool,2727.716875,7,20,1,21.0,258.0,0.0,5.0 +actiona,0.268592127615787,2.38984495856638,-0.565826782279516,https://salsa.debian.org/debian/actiona, https://github.com/Jmgr/actiona,4932.320543981482,3,17,0,3.0,94.0,0.0,0.0 +activemq,-0.707743978986649,-0.252194710986131,-0.929017813983153,https://salsa.debian.org/java-team/activemq, https://github.com/apache/activemq,5739.122835648148,56,141,2,130.0,160.0,0.0,0.0 +allegro5,-0.476268621868809,-0.215392434276398,-0.53112698022826,https://salsa.debian.org/games-team/allegro5, https://github.com/liballeg/allegro5.git,5772.815868055555,110,47,0,79.0,223.0,0.0,5.0 +ariba,-0.724970866684118,0.74972388381556,-1.17899230516215,https://salsa.debian.org/med-team/ariba, https://github.com/sanger-pathogens/ariba,3026.196354166667,10,22,0,16.0,112.0,0.0,8.0 +asn1crypto,0.974072984185648,4.18530240052276,0.0865816737110871,https://salsa.debian.org/python-team/packages/asn1crypto, https://github.com/wbond/asn1crypto.git,3074.7355092592597,14,27,0,32.0,181.0,0.0,0.0 +asymptote,0.239690066392947,0.586126158419268,0.0399132445427328,https://github.com/debian-tex/asymptote,https://github.com/debian-tex/asymptote,4223.671516203704,6,28,0,5.0,4.0,0.0,0.0 +aranym800-debian,0.243826287478213,1.41118489077422,-0.322307451233891,https://github.com/bobek/aranym800-debian,https://github.com/bobek/aranym800-debian,4083.298877314815,1,3,0,2.0,2.0,0.0,0.0 +atril,0.520773237862205,1.2869272542963,0.152212133447902,https://salsa.debian.org/debian-mate-team/atril, https://github.com/mate-desktop/atril.git,4392.879976851852,62,42,0,70.0,244.0,0.0,0.0 +audacity,2.05957609206705,2.58790400303534,1.65289331150704,https://salsa.debian.org/multimedia-team/audacity, https://github.com/audacity/audacity.git,5069.8878125,215,104,0,197.0,438.0,0.0,8.0 +audioread,0.479072623695549,2.83797236644546,-0.236304332359752,https://salsa.debian.org/python-team/packages/audioread, https://github.com/sampsyo/audioread.git,4407.000694444445,7,21,0,23.0,126.0,0.0,0.0 +autorandr,-0.352715216459273,0.317126284596361,-0.518389331026041,https://salsa.debian.org/debian/autorandr, https://github.com/phillipberndt/autorandr.git,4779.707673611111,55,58,0,90.0,351.0,0.0,0.0 +autosuspend,-1.92504584282084,0.627810995762547,-2.46727081114522,https://salsa.debian.org/python-team/packages/autosuspend, https://github.com/languitar/autosuspend.git,3337.596284722222,6,9,0,13.0,40.0,0.0,0.0 +backuppc,0.439136867980086,0.738905733012293,0.213344842665476,https://salsa.debian.org/debian/backuppc, https://github.com/backuppc/backuppc,4883.167430555555,21,39,0,40.0,225.0,0.0,31.0 +rsync-bpc,-2.95372652468636,0.233635531780002,-3.70623050600404,https://salsa.debian.org/debian/backuppc-rsync, https://github.com/backuppc/rsync-bpc,2751.321203703704,2,9,0,6.0,43.0,0.0,0.0 +bambam,0.307093285057578,2.50759581723654,-0.341358645189873,https://github.com/porridge/bambam,https://github.com/porridge/bambam,5711.297395833333,24,13,0,23.0,24.0,0.0,1.0 +barclay,0.185180158756398,3.0141581767608,-0.602042434550918,https://salsa.debian.org/java-team/barclay, https://github.com/broadinstitute/barclay.git,2356.7614351851853,7,7,0,8.0,27.0,0.0,1.0 +bart,-0.177815138036834,2.12543736420799,-0.637214556515039,https://salsa.debian.org/med-team/bart, https://github.com/mrirecon/bart,3390.8110185185187,61,30,0,41.0,83.0,0.0,0.0 +bd,-0.570931406738078,1.76397108549389,-1.07177359635631,https://salsa.debian.org/debian/bd, https://github.com/vigneshwaranr/bd.git,3272.779247685185,3,12,0,10.0,56.0,0.0,0.0 +Bear,-0.390018594071918,0.59549299969754,-0.597099729997488,https://salsa.debian.org/sramacher/bear, https://github.com/rizsotto/Bear,3987.655787037037,44,19,0,53.0,142.0,0.0,2.0 +beginend,-0.98120544742392,1.14756440927161,-1.47907570035627,https://salsa.debian.org/emacsen-team/beginend-el, https://github.com/DamienCassou/beginend.git,3077.310520833333,8,12,0,15.0,21.0,0.0,0.0 +benchmark,-0.400741955214662,1.92211502933559,-1.20406228025166,https://salsa.debian.org/science-team/benchmark, https://github.com/google/benchmark,3640.584953703704,257,68,3,283.0,68.0,0.0,0.0 +abc,-0.0691799172862805,1.15264186353368,-0.392688063221375,https://salsa.debian.org/science-team/berkeley-abc, https://github.com/berkeley-abc/abc.git,5782.911666666667,8,47,0,40.0,75.0,0.0,0.0 +bernhard,-3.82491382291294,-1.43294657373251,-4.33451811997754,https://salsa.debian.org/python-team/packages/bernhard, https://github.com/b20n/bernhard.git,2059.4699652777776,0,14,0,11.0,32.0,0.0,0.0 +betamax,-2.61867595034709,-1.71115444654894,-2.79296471637611,https://salsa.debian.org/python-team/packages/betamax, https://github.com/sigmavirus24/betamax,3448.4558796296296,7,33,2,31.0,93.0,0.0,0.0 +bfs,-1.11648899748412,-0.549895573103613,-1.19909841251411,https://salsa.debian.org/lamby/pkg-bfs, https://github.com/tavianator/bfs.git,2311.762627314815,11,10,0,19.0,35.0,0.0,0.0 +birdfont,0.15392158176408,1.52070719937222,-0.397131029435017,https://salsa.debian.org/fonts-team/birdfont, https://github.com/johanmattssonm/birdfont.git,4158.827222222222,6,15,0,15.0,135.0,0.0,0.0 +bitlbee,0.610414917036669,1.13341797451246,0.239033610311326,https://github.com/bitlbee/bitlbee,https://github.com/bitlbee/bitlbee,5775.524282407408,54,55,0,72.0,85.0,0.0,0.0 +black,-0.259858316466697,0.652655580647794,-0.48358049834747,https://salsa.debian.org/python-team/packages/black, https://github.com/psf/black.git,2098.4397453703705,441,11,0,416.0,699.0,0.0,0.0 +BOSSA,0.0893999445646042,1.66122635928921,-0.416352452488754,https://salsa.debian.org/science-team/bossa, https://github.com/shumatech/BOSSA.git,3233.4649537037035,7,26,0,19.0,214.0,0.0,0.0 +bowtie2,-0.41732141777028,-0.233072452009442,-0.469307515926621,https://salsa.debian.org/med-team/bowtie2, https://github.com/BenLangmead/bowtie2,4656.630277777777,6,51,0,28.0,425.0,0.0,1.0 +boxbackup,-0.837110011505577,0.0115481537928637,-1.326464815788,https://salsa.debian.org/debian/boxbackup, https://github.com/boxbackup/boxbackup.git,5737.3015625,2,18,0,6.0,16.0,0.0,3.0 +breathe,-0.991213500820718,-0.830938973718159,-1.0391354826844,https://salsa.debian.org/python-team/packages/breathe, https://github.com/michaeljones/breathe.git,5375.564594907408,34,85,0,91.0,286.0,0.0,0.0 +brewtarget,0.484432121012412,2.85702008142999,-0.42658381895285,https://salsa.debian.org/debian/brewtarget, https://github.com/Brewtarget/brewtarget.git,5451.5742129629625,13,84,0,55.0,134.0,0.0,15.0 +brise,-0.308044257748576,1.03574501060784,-0.687368349200967,https://salsa.debian.org/debian/brise, https://github.com/rime/brise,2544.886261574074,5,23,0,12.0,45.0,0.0,0.0 +brlaser,0.40724322632136,2.15415528750924,-0.0102827942670847,https://salsa.debian.org/printing-team/brlaser, https://github.com/pdewacht/brlaser,3342.205983796296,4,11,0,13.0,27.0,0.0,3.0 +brotli,0.1260775006741,0.545442605177154,-0.008359961475277,https://salsa.debian.org/debian/brotli, https://github.com/google/brotli,3713.0230555555554,77,45,0,97.0,42.0,0.0,5.0 +bruteforce-luks,0.450685726895421,3.93090609242965,-0.344105736549171,https://salsa.debian.org/pkg-security-team/bruteforce-luks, https://github.com/glv2/bruteforce-luks,1977.6153125,2,8,0,3.0,38.0,0.0,0.0 +brutespray,-0.0085744736996972,2.06226511956974,-0.445603786021027,https://salsa.debian.org/pkg-security-team/brutespray, https://github.com/x90skysn3k/brutespray,2174.873599537037,7,10,0,8.0,19.0,0.0,0.0 +bump2version,-0.660171191852264,1.36514343303696,-1.14636377768418,https://salsa.debian.org/debian/bumpversion, https://github.com/c4urself/bump2version,3866.5811574074073,20,43,3,48.0,254.0,0.0,0.0 +bundler,0.575011714962617,1.53924818982463,0.101033766915076,https://salsa.debian.org/ruby-team/bundler, https://github.com/carlhuda/bundler,4417.961099537037,292,766,15,370.0,17.0,0.0,0.0 +bzflag,0.831912962618451,1.43007016887885,0.417821043007712,https://salsa.debian.org/games-team/bzflag, https://github.com/BZFlag-Dev/bzflag.git,5782.5434259259255,11,63,0,19.0,30.0,0.0,4.0 +c-ares,0.344129878059456,1.19164062844342,0.0308943147661174,https://salsa.debian.org/debian/c-ares, https://github.com/c-ares/c-ares.git,5778.617222222222,133,22,0,136.0,66.0,0.0,0.0 +caja,1.05706265403582,1.80903098756041,0.557893576640636,https://salsa.debian.org/debian-mate-team/caja, https://github.com/mate-desktop/caja.git,4392.040092592592,58,63,0,86.0,70.0,0.0,0.0 +caja-actions,0.19646613345428,2.0196315904513,-0.364011463949712,https://salsa.debian.org/debian-mate-team/caja-actions, https://github.com/mate-desktop/caja-actions,4195.368599537037,3,13,0,7.0,3.0,0.0,0.0 +caja-admin,0.340286316524602,2.91734447906536,-0.236688444902846,https://salsa.debian.org/debian-mate-team/caja-admin, https://github.com/infirit/caja-admin,2910.0051851851854,15,12,0,17.0,15.0,0.0,0.0 +caja-dropbox,1.41937986846204,4.6529613874587,0.236638033902288,https://salsa.debian.org/debian-mate-team/caja-dropbox, https://github.com/mate-desktop/caja-dropbox.git,4038.019699074074,13,26,0,25.0,33.0,0.0,0.0 +caja-extensions,0.991186000270137,3.12942899642606,0.149650662325303,https://salsa.debian.org/debian-mate-team/caja-extensions, https://github.com/mate-desktop/caja-extensions.git,3680.0453125,11,27,0,20.0,70.0,0.0,0.0 +caja-mediainfo-tab,-0.634642768575629,1.49194857331788,-1.21697512170523,https://salsa.debian.org/debian-mate-team/caja-mediainfo, https://github.com/linux-man/caja-mediainfo-tab,1186.626701388889,1,3,0,1.0,4.0,0.0,0.0 +caja-rename,0.339533668061403,2.98506598246458,-0.243378943435302,https://salsa.debian.org/debian-mate-team/caja-rename, https://github.com/tari01/caja-rename,1145.7519328703704,25,4,0,19.0,9.0,0.0,0.0 +camlp4,0.171118733427445,1.42770838037044,-0.154556831791696,https://salsa.debian.org/ocaml-team/camlp4, https://github.com/ocaml/camlp4.git,5404.400219907408,6,40,0,37.0,92.0,0.0,7.0 +Camomile,-0.17496474143281,0.504631671983068,-0.411654885699695,https://salsa.debian.org/ocaml-team/camomile, https://github.com/yoriyuki/Camomile.git,3699.9040972222224,2,16,0,11.0,42.0,0.0,0.0 +camp,-0.0635736975894291,2.24226464768133,-0.867818518898671,https://salsa.debian.org/med-team/camp, https://github.com/IRCAD/camp.git,3917.821412037037,2,16,0,8.0,2.0,0.0,0.0 +can-utils,-0.315181842714809,1.05248108419277,-0.612842689675788,https://salsa.debian.org/debian/can-utils, https://github.com/linux-can/can-utils.git,5750.457291666667,42,46,0,66.0,298.0,0.0,0.0 +cftime,-0.0539845669987312,2.13515685027106,-0.472688008644887,https://salsa.debian.org/debian-gis-team/cftime/, https://github.com/Unidata/cftime,5698.250347222222,7,40,1,25.0,111.0,0.0,0.0 +Charm,-0.44413841179052,1.22308120427527,-0.879682995740352,https://salsa.debian.org/qt-kde-team/extras/charmtimetracker, https://github.com/KDAB/Charm,5169.286909722222,10,73,1,44.0,89.0,0.0,0.0 +chaussette,-2.39731325848858,0.107928752910017,-3.33529053776444,https://github.com/circus-tent/chaussette,https://github.com/circus-tent/chaussette,1782.677476851852,1,42,0,30.0,80.0,0.0,0.0 +selinux,-0.0767985152455945,0.185810291123362,-0.173362009900664,https://salsa.debian.org/selinux-team/checkpolicy, https://github.com/SELinuxProject/selinux,5592.836342592593,179,30,0,124.0,83.0,0.0,12.0 +CheeseCutter,-0.890992243560917,1.83461474605832,-1.50149644324579,https://salsa.debian.org/multimedia-team/cheesecutter, https://github.com/theyamo/CheeseCutter,2936.816782407408,4,11,0,7.0,20.0,0.0,0.0 +cheetah3,0.258075495611624,1.20984349450528,-0.0894485619358363,https://salsa.debian.org/python-team/packages/cheetah, https://github.com/CheetahTemplate3/cheetah3.git,5732.775115740741,17,23,0,34.0,45.0,0.0,0.0 +chemical-mime,0.933446796932344,3.30646333026514,0.103786539245329,https://salsa.debian.org/debichem-team/chemical-mime-data, https://github.com/dleidert/chemical-mime,3567.674583333333,0,2,0,1.0,4.0,0.0,0.0 +CheMPS2,-1.03313848481112,-0.197981076201515,-1.31119061519628,https://salsa.debian.org/debichem-team/chemps2, https://github.com/SebWouters/CheMPS2,3010.6861342592592,0,9,0,4.0,35.0,0.0,0.0 +chromaprint,0.36003246255044,1.39366830627116,0.0316097074812693,https://salsa.debian.org/multimedia-team/chromaprint, https://github.com/acoustid/chromaprint,4607.495162037037,12,19,3,25.0,78.0,0.0,3.0 +chuck,1.06294006468148,3.5097730621169,-0.0355368922700332,https://salsa.debian.org/debian/chuck, https://github.com/ccrma/chuck,4777.866030092592,19,55,0,45.0,92.0,0.0,1.0 +CiderWebmail,-0.695259428174782,1.43904473196048,-1.4225189002861,https://salsa.debian.org/perl-team/modules/packages/ciderwebmail, https://github.com/CiderWebmail/CiderWebmail.git,5148.957199074074,1,13,0,5.0,11.0,0.0,0.0 +CiftiLib,-2.23371141055036,-0.584429452977969,-2.60098026330442,https://salsa.debian.org/med-team/ciftilib, https://github.com/Washington-University/CiftiLib,3498.0756944444443,2,7,0,5.0,8.0,0.0,0.0 +CImg,-0.3086549748001,0.468251660623174,-0.689796512746111,https://salsa.debian.org/science-team/cimg, https://github.com/GreycLab/CImg.git,3104.373148148148,1,34,0,11.0,150.0,0.0,2.0 +cinnamon-session,0.201972621088915,0.700320404303364,-0.0198993963271878,https://salsa.debian.org/cinnamon-team/cinnamon-session, https://github.com/linuxmint/cinnamon-session.git,3830.8484259259258,16,29,0,34.0,77.0,0.0,0.0 +citeproc-py,0.265073410877372,3.20040303204286,-0.537999364872632,https://salsa.debian.org/python-team/packages/citeproc-py, https://github.com/brechtm/citeproc-py,4168.381087962963,3,13,0,14.0,52.0,0.0,0.0 +cJSON,-0.637830330419933,1.1377366915515,-1.08242956726138,https://salsa.debian.org/debian/cjson, https://github.com/DaveGamble/cJSON.git,4334.9435300925925,37,63,0,76.0,105.0,0.0,0.0 +clasp,-0.300603783553555,-0.114725055374722,-0.342818063611809,https://salsa.debian.org/science-team/clasp, https://github.com/potassco/clasp,3296.926284722222,3,6,0,2.0,37.0,0.0,0.0 +classified-ads,-2.29836993425634,-0.0320591619046945,-2.77962788609786,https://github.com/operatornormal/classified-ads,https://github.com/operatornormal/classified-ads,3053.9196180555555,5,9,0,8.0,10.0,0.0,0.0 +cld2,0.604398126757303,3.03994564463887,-0.148179080166288,https://salsa.debian.org/debian/cld2, https://github.com/CLD2Owners/cld2,808.2021875,0,8,0,2.0,41.0,0.0,1.0 +clinfo,0.337264542210885,1.68911881776674,-0.140056084180369,https://salsa.debian.org/opencl-team/clinfo, https://github.com/Oblomov/clinfo,3809.378923611111,7,13,0,14.0,92.0,0.0,0.0 +ClipIt,1.49373928648145,3.43802835503106,0.607149544476265,https://salsa.debian.org/debian/clipit, https://github.com/CristianHenzel/ClipIt.git,3780.827673611111,15,24,0,21.0,246.0,0.0,0.0 +cloc,0.340719361849104,2.10591359477787,-0.184265895088211,https://salsa.debian.org/debian/cloc, https://github.com/AlDanial/cloc.git,3014.510428240741,24,101,0,108.0,550.0,0.0,2.0 +cm-super,0.509609811477283,1.56194645540575,0.0498213871364351,https://github.com/debian-tex/cm-super,https://github.com/debian-tex/cm-super,5018.368796296297,2,6,0,3.0,1.0,0.0,0.0 +cmatrix,1.28236875791916,3.31539364949091,0.380501438269664,https://salsa.debian.org/debian/cmatrix, https://github.com/abishekvashok/cmatrix.git,2359.866400462963,20,18,0,32.0,137.0,0.0,2.0 +colmap,-0.720678658268056,0.641272659768354,-1.21456089554561,https://salsa.debian.org/tar/colmap, https://github.com/colmap/colmap,2802.2067824074074,103,16,0,103.0,432.0,0.0,0.0 +comitup,-1.5220075039517,0.0892141487341842,-1.94802108454074,https://github.com/davesteele/comitup,https://github.com/davesteele/comitup,2830.005011574074,9,13,0,8.0,73.0,0.0,1.0 +cool-retro-term,-0.163806591736315,2.23383718279083,-0.670026222009651,https://salsa.debian.org/tar/cool-retro-term, https://github.com/Swordfish90/cool-retro-term,3050.803217592593,23,53,0,57.0,1087.0,0.0,26.0 +coq,1.01124400636481,1.89922326666951,0.454048170432472,https://salsa.debian.org/ocaml-team/coq, https://github.com/coq/coq,5785.277534722222,56,228,4,231.0,16.0,0.0,362.0 +CppAD,-0.303003841456757,2.07759445361593,-0.851490117040843,https://salsa.debian.org/science-team/cppad, https://github.com/coin-or/CppAD,5756.998877314815,3,15,0,12.0,46.0,0.0,0.0 +cppo,-1.45624805146255,0.684153218765423,-1.96141831417266,https://salsa.debian.org/ocaml-team/cppo, https://github.com/mjambon/cppo.git,1459.7919444444444,3,28,0,18.0,53.0,0.0,0.0 +cppreference-doc-debian,0.717486383735466,3.97515888375713,-0.311471505511598,https://github.com/p12tic/cppreference-doc-debian,https://github.com/p12tic/cppreference-doc-debian,3405.681574074074,2,6,0,5.0,7.0,0.0,0.0 +CPU-X,-0.183135151306391,2.26627747463429,-0.71776951866988,https://salsa.debian.org/debian/cpu-x, https://github.com/X0rg/CPU-X.git,2770.4909606481483,196,13,0,145.0,32.0,0.0,3.0 +cqrlib,-0.141136172388075,1.45445698339661,-0.426704083747725,https://salsa.debian.org/science-team/cqrlib, https://github.com/yayahjb/cqrlib.git,2926.9641203703704,0,1,0,1.0,3.0,0.0,0.0 +critcl,0.168505042318547,4.74258824649327,-1.27354780604049,https://salsa.debian.org/tcltk-team/critcl, https://github.com/andreas-kupries/critcl,5635.58400462963,1,15,2,12.0,40.0,0.0,0.0 +CsoundQt,-0.414726718044123,0.495747209798159,-0.610187321807381,https://salsa.debian.org/multimedia-team/csoundqt, https://github.com/CsoundQt/CsoundQt,5612.117222222222,7,49,3,16.0,87.0,0.0,7.0 +ctemplate,0.225479085493309,1.27546962151228,-0.153307681876484,https://salsa.debian.org/qt-kde-team/3rdparty/ctemplate, https://github.com/OlafvdSpek/ctemplate.git,5604.690648148148,3,11,0,8.0,43.0,0.0,0.0 +CubicSDR,0.101846162483396,2.33889934118029,-0.498684536928727,https://salsa.debian.org/debian-hamradio-team/cubicsdr, https://github.com/cjcliffe/CubicSDR.git,3287.520497685185,11,22,0,0.0,330.0,0.0,18.0 +custodia,-1.67512136212989,-0.0779781476120226,-2.22663354215109,https://salsa.debian.org/freeipa-team/custodia, https://github.com/latchset/custodia.git,2105.203113425926,10,5,0,11.0,30.0,0.0,0.0 +cvxopt,0.254425729557614,0.905978352626164,-0.0500804801056423,https://salsa.debian.org/science-team/cvxopt, https://github.com/cvxopt/cvxopt,3827.9446875,7,5,0,7.0,228.0,0.0,0.0 +cyrus-sasl,1.16770787467679,1.45679841902819,0.928724560915129,https://salsa.debian.org/debian/cyrus-sasl2, https://github.com/cyrusimap/cyrus-sasl.git,5510.163460648148,61,36,0,68.0,147.0,0.0,0.0 +dashel,-0.50706032069486,1.85560356606662,-1.05878944311749,https://salsa.debian.org/science-team/dashel.git, https://github.com/aseba-community/dashel.git,4686.226770833333,3,17,0,11.0,13.0,0.0,0.0 +dbab,-1.99036509960834,-0.461747515428254,-2.50993560525614,https://salsa.debian.org/debian/dbab, https://github.com/suntong/dbab.git,3490.721203703704,1,6,0,4.0,7.0,0.0,1.0 +dcfldd,0.243299675963987,1.51287155968922,-0.174203511671299,https://salsa.debian.org/debian/dcfldd, https://github.com/resurrecting-open-source-projects/dcfldd,1555.038217592593,1,5,0,4.0,11.0,0.0,0.0 +dcmstack,-0.217906400328808,2.38437246160482,-1.15430745193441,https://salsa.debian.org/med-team/dcmstack, https://github.com/moloney/dcmstack.git,4236.057650462963,2,11,0,8.0,50.0,0.0,0.0 +ddccontrol-db,0.537589927797963,3.04066639796367,-0.204049559847869,https://salsa.debian.org/debian/ddccontrol-db, https://github.com/ddccontrol/ddccontrol-db,5706.421354166667,83,21,0,89.0,218.0,0.0,0.0 +ddclient,2.2300979216872,3.00923862374744,1.66577565310454,https://salsa.debian.org/debian/ddclient, https://github.com/ddclient/ddclient.git,5769.115798611111,45,69,0,89.0,144.0,0.0,7.0 +debiman,-2.02050232319927,-0.369136826197118,-2.35298541633783,https://salsa.debian.org/go-team/packages/debiman, https://github.com/Debian/debiman.git,2469.621458333333,11,3,0,12.0,58.0,0.0,0.0 +deepdiff,-0.600320759967683,1.99437730222334,-1.1853796170927,https://salsa.debian.org/python-team/packages/deepdiff, https://github.com/seperman/deepdiff.git,3349.8121875,21,67,0,59.0,387.0,0.0,0.0 +dehydrated-hook-ddns-tsig,-1.14986881772355,0.323406778688977,-1.4723938377688,https://salsa.debian.org/letsencrypt-team/dehydrated-hook-ddns-tsig, https://github.com/eferdman/dehydrated-hook-ddns-tsig.git,613.6095601851852,3,7,0,5.0,13.0,0.0,0.0 +deken,-0.177399338159046,1.8798950336865,-0.612794853339411,https://salsa.debian.org/multimedia-team/pd/deken, https://github.com/pure-data/deken,3169.7776041666666,5,17,1,9.0,50.0,0.0,0.0 +derpconf,-2.16326613351292,-0.247952996571128,-2.7160545081398,https://salsa.debian.org/python-team/packages/derpconf, https://github.com/globocom/derpconf,4088.185949074074,0,19,0,10.0,21.0,0.0,0.0 +detachtty,0.728666866066461,3.79962020714491,-0.466342425704968,https://salsa.debian.org/debian/detachtty, https://github.com/cosmos72/detachtty.git,5063.038217592592,2,3,0,4.0,4.0,0.0,0.0 +detox,0.0760137718782932,1.24446097714097,-0.236573077041424,https://salsa.debian.org/debian/detox, https://github.com/dharple/detox,2472.584930555556,3,6,0,5.0,44.0,0.0,0.0 +devtodo,-0.0964373600662017,0.523133728296973,-0.466757561707856,https://salsa.debian.org/debian/devtodo, https://github.com/alecthomas/devtodo,4517.700439814815,2,2,0,1.0,5.0,0.0,0.0 +dfc,0.624948273307755,2.69232463778837,-0.106015439650167,https://salsa.debian.org/debian/dfc, https://github.com/rolinh/dfc,3944.702615740741,10,7,0,15.0,23.0,0.0,0.0 +dhcpcd-dbus,0.116885125991865,3.40899498109848,-0.793298493254465,https://salsa.debian.org/debian/dhcpcd-dbus, https://github.com/kobolabs/dhcpcd-dbus.git,4098.256655092592,2,6,0,3.0,0.0,0.0,0.0 +dhcpcd-ui,-0.012287241418141,2.56952838581004,-0.83673457548482,https://salsa.debian.org/debian/dhcpcd-ui, https://github.com/NetworkConfiguration/dhcpcd-ui,5203.8271875,4,2,0,5.0,0.0,0.0,0.0 +dhcpcd,0.681585222663153,1.53741080004815,0.19698542490146,https://salsa.debian.org/debian/dhcpcd, https://github.com/NetworkConfiguration/dhcpcd.git,5784.385694444444,64,17,0,56.0,18.0,0.0,0.0 +dhcpdump,1.44907504119257,4.14563319111402,0.387240643786827,https://github.com/bbonev/dhcpdump,https://github.com/bbonev/dhcpdump,112.99480324074074,0,3,0,2.0,3.0,0.0,0.0 +DHCPig,-0.987243531635154,1.33241621278506,-1.52050387661082,https://salsa.debian.org/pkg-security-team/dhcpig, https://github.com/kamorin/DHCPig,1930.9329398148147,0,7,0,7.0,22.0,0.0,0.0 +dhewm3,-0.290320314444538,1.91617380958565,-0.786358195850442,https://salsa.debian.org/games-team/dhewm3, https://github.com/dhewm/dhewm3.git,4378.332974537037,36,21,0,41.0,120.0,0.0,7.0 +diffuse,0.656999192761575,3.18252659255885,-0.125842285938798,https://salsa.debian.org/debian/diffuse, https://github.com/MightyCreak/diffuse.git,2779.093622685185,15,12,0,21.0,61.0,0.0,0.0 +dill,-0.0692957122056967,2.35942112767302,-0.50148903624562,https://salsa.debian.org/python-team/packages/dill, https://github.com/uqfoundation/dill,5216.862048611111,22,27,2,41.0,513.0,0.0,0.0 +direwolf,-0.143021690088079,1.37074306350961,-0.620027965556624,https://salsa.debian.org/debian-hamradio-team/direwolf, https://github.com/wb2osz/direwolf,2351.941261574074,7,18,1,0.0,251.0,0.0,1.0 +django-auth-ldap,-0.735111360473221,0.589742958950815,-1.16200594701723,https://salsa.debian.org/python-team/packages/django-auth-ldap, https://github.com/django-auth-ldap/django-auth-ldap.git,5095.451655092593,18,22,0,24.0,215.0,0.0,0.0 +django-classy-tags,-0.74018416345453,0.984861954708653,-1.39805318666733,https://salsa.debian.org/python-team/packages/django-classy-tags, https://github.com/django-cms/django-classy-tags,4877.167789351852,15,16,2,22.0,70.0,0.0,0.0 +django-countries,-0.534708448628788,1.3547470964221,-1.2788572174765,https://salsa.debian.org/python-team/packages/django-countries, https://github.com/SmileyChris/django-countries,4972.680625,16,45,0,50.0,303.0,0.0,0.0 +django-fsm,-1.24559240491123,1.76848237769161,-1.95084265080011,https://salsa.debian.org/python-team/packages/django-fsm, https://github.com/viewflow/django-fsm,4622.176076388889,28,45,0,58.0,257.0,0.0,0.0 +django-haystack,-0.366884596648278,1.45152548418967,-0.93180960897156,https://salsa.debian.org/python-team/packages/django-haystack, https://github.com/django-haystack/django-haystack,5440.265138888889,100,135,5,183.0,156.0,0.0,0.0 +pkg-django-hijack,-2.16222701756782,0.0257030994861546,-2.86575859572282,https://github.com/Linaro/pkg-django-hijack.git,https://github.com/Linaro/pkg-django-hijack.git,1013.9897106481482,0,2,0,1.0,0.0,0.0,0.0 +django-housekeeping,-0.869454572028372,1.94809022404127,-1.61534625748549,https://salsa.debian.org/python-team/packages/django-housekeeping, https://github.com/spanezz/django-housekeeping.git,2311.206608796296,0,4,0,3.0,4.0,0.0,0.0 +django-ipware,-0.186701026958641,3.47752777867521,-1.13641403705194,https://salsa.debian.org/python-team/packages/django-ipware, https://github.com/un33k/django-ipware,3876.755532407408,23,8,0,26.0,86.0,0.0,1.0 +django-modeltranslation,-1.51333832692817,0.633284428887195,-2.21363375908789,https://salsa.debian.org/python-team/packages/django-modeltranslation, https://github.com/deschler/django-modeltranslation.git,5393.6289004629625,39,78,0,93.0,559.0,0.0,1.0 +django-polymorphic,-0.986272527855104,0.726107765686916,-1.62148578748082,https://salsa.debian.org/python-team/packages/django-polymorphic, https://github.com/django-polymorphic/django-polymorphic,5078.609699074074,41,80,1,100.0,253.0,0.0,0.0 +django-prometheus,-2.26031605728522,-0.438134197353793,-2.74225273043366,https://salsa.debian.org/python-team/packages/django-prometheus, https://github.com/korfuri/django-prometheus,3173.3548148148147,32,30,0,50.0,294.0,0.0,0.0 +django-python3-ldap,-1.22069524101443,0.981610841910008,-1.71041484839619,https://salsa.debian.org/python-team/packages/django-python3-ldap, https://github.com/etianen/django-python3-ldap,3090.708425925926,4,28,0,25.0,204.0,0.0,0.0 +django-sitetree,-1.19701098610627,0.380527052172248,-1.67880198000405,https://salsa.debian.org/python-team/packages/django-sitetree, https://github.com/idlesign/django-sitetree,4549.666712962963,6,42,0,36.0,185.0,0.0,0.0 +django-sortedm2m,-2.34571982424945,-0.0825384392000747,-2.78657171549833,https://salsa.debian.org/python-team/packages/django-sortedm2m, https://github.com/jazzband/django-sortedm2m.git,4988.086828703704,13,51,0,48.0,177.0,0.0,0.0 +dma,0.925589785708236,2.13111206922311,0.261836560891848,https://salsa.debian.org/debian/dma, https://github.com/corecode/dma.git,4350.283657407407,26,18,0,30.0,98.0,0.0,0.0 +dmrconfig,-4.41802982189972,-0.910639434214132,-5.37370027542711,https://salsa.debian.org/debian-hamradio-team/dmrconfig, https://github.com/OpenRTX/dmrconfig.git,1907.596412037037,5,9,0,11.0,74.0,0.0,2.0 +dnspython,1.12750584981084,2.67426057070666,0.415853170864823,https://salsa.debian.org/python-team/packages/dnspython, https://github.com/rthalley/dnspython.git,5665.3041087962965,41,93,0,107.0,427.0,0.0,2.0 +dnsruby,-0.234176424021243,1.53908289021424,-0.678414813136556,https://salsa.debian.org/ruby-team/ruby-dnsruby, https://github.com/alexdalitz/dnsruby.git,5594.131446759259,4,31,0,23.0,77.0,0.0,3.0 +Doris,-3.25146304156637,-2.75605148438427,-3.33298159978531,https://salsa.debian.org/debian-gis-team/doris, https://github.com/TUDelftGeodesy/Doris,371.94388888888886,0,6,0,3.0,31.0,0.0,0.0 +dosage,-0.786662315573154,0.161458147523314,-1.13139321583021,https://salsa.debian.org/debian/dosage, https://github.com/webcomics/dosage,4186.696018518519,22,40,1,51.0,112.0,0.0,0.0 +dosfstools,0.957669982874941,1.44642545416954,0.617023777334025,https://salsa.debian.org/debian/dosfstools, https://github.com/dosfstools/dosfstools.git,3911.408310185185,49,15,0,39.0,137.0,0.0,0.0 +dpmb,-0.669189830637777,1.51487679633521,-1.16595597871383,https://github.com/dpmb/dpmb,https://github.com/dpmb/dpmb,3025.1458101851854,5,11,1,7.0,14.0,0.0,0.0 +dq,-0.183429315399927,2.1580450192287,-0.749959267578792,https://salsa.debian.org/debian/dq, https://github.com/janmojzis/dq.git,2922.0256712962964,0,7,0,1.0,3.0,0.0,0.0 +drf-extensions,-1.57110742706504,0.582669345959193,-2.23342657631871,https://salsa.debian.org/python-team/packages/drf-extensions, https://github.com/chibisov/drf-extensions.git,3758.308101851852,37,33,0,52.0,293.0,0.0,0.0 +drf-generators,-1.07918415610289,1.91085359378585,-1.80155076486193,https://salsa.debian.org/python-team/packages/drf-generators, https://github.com/brobin/drf-generators,1981.457962962963,4,10,0,9.0,39.0,0.0,0.0 +driftnet,-0.302144137704238,0.458279698148053,-0.616098152418851,https://github.com/deiv/driftnet,https://github.com/deiv/driftnet,3936.065972222222,4,6,0,5.0,58.0,0.0,0.0 +drmaa-python,-0.922986928228606,0.89435172791439,-1.53889233573297,https://salsa.debian.org/med-team/drmaa, https://github.com/pygridtools/drmaa-python,3564.105462962963,9,12,0,13.0,58.0,0.0,4.0 +drmips,-0.919047649267425,1.66859066241566,-1.64121232677346,https://github.com/brunonova/drmips/tree/debian,https://github.com/brunonova/drmips,3165.66125,3,3,0,4.0,0.0,0.0,0.0 +dropbear,0.48121755141985,0.975457664318655,0.154035465817107,https://salsa.debian.org/debian/dropbear, https://github.com/mkj/dropbear,5772.037037037037,39,54,0,67.0,213.0,0.0,0.0 +dropwatch,-1.19912626039836,1.52507087369756,-1.82854069407043,https://salsa.debian.org/debian/dropwatch, https://github.com/nhorman/dropwatch,5326.14962962963,3,24,0,17.0,70.0,0.0,0.0 +dunst,0.366998316293135,1.16378226146977,0.0070676604483869,https://salsa.debian.org/debian/dunst, https://github.com/dunst-project/dunst,4447.004560185185,43,111,1,126.0,562.0,0.0,26.0 +DustRacing2D,0.173033014337768,3.12190825679454,-0.64114853157353,https://salsa.debian.org/pino/dustrac, https://github.com/juzzlin/DustRacing2D.git,4428.422685185185,8,9,0,11.0,36.0,0.0,1.0 +e2guardian,-0.496204603349068,0.855927944909435,-0.884815036633468,https://salsa.debian.org/debian-edu-pkg-team/e2guardian, https://github.com/e2guardian/e2guardian,3743.851041666667,10,60,4,20.0,68.0,0.0,4.0 +editorconfig-core-c,1.58872816623417,4.60751801532545,0.480343298429884,https://salsa.debian.org/debian/editorconfig-core, https://github.com/editorconfig/editorconfig-core-c.git,4345.140486111111,23,19,0,32.0,52.0,0.0,2.0 +editra,-0.263335934885057,1.18599592584657,-0.739439848910042,https://github.com/mogaal/editra,https://github.com/mogaal/editra,1762.9254398148148,0,2,0,1.0,2.0,0.0,0.0 +efivar,1.23954728474232,3.14090846486121,0.436649078146059,https://salsa.debian.org/efi-team/efivar, https://github.com/rhinstaller/efivar.git,3854.906863425926,62,9,0,62.0,181.0,0.0,0.0 +eggdrop-debian,0.690268776996146,1.69667660089826,0.0747126473210248,https://github.com/yastupin/eggdrop-debian,https://github.com/yastupin/eggdrop-debian,1023.9554166666668,0,1,0,1.0,2.0,0.0,0.0 +egl-wayland,0.0316178932027656,1.81596484490241,-0.353852698854025,https://salsa.debian.org/debian/egl-wayland, https://github.com/NVIDIA/egl-wayland.git,2464.5272800925927,13,9,0,14.0,170.0,0.0,0.0 +eiciel,-0.391393491150218,0.284553120568024,-0.622503649693577,https://salsa.debian.org/debian/eiciel, https://github.com/rofirrim/eiciel,4391.8161689814815,58,10,0,42.0,13.0,0.0,0.0 +eiskaltdcpp-debian,0.450565010716283,2.09734901934217,-0.288679308824885,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,3513.924236111111,0,2,0,2.0,3.0,0.0,0.0 +eja,-2.79252373942421,1.01540476237612,-3.99129208423818,https://github.com/ubaldus/eja,https://github.com/ubaldus/eja,3036.769629629629,0,5,0,3.0,3.0,0.0,0.0 +elastalert,-2.74905221526943,-1.03824771626253,-3.25310775303483,https://salsa.debian.org/debian/elastalert, https://github.com/Yelp/elastalert.git,2822.080949074074,46,241,0,181.0,234.0,0.0,4.0 +emacs-git-messenger,-0.739411095707097,1.34402556647165,-1.17594534115372,https://salsa.debian.org/emacsen-team/emacs-git-messenger, https://github.com/syohex/emacs-git-messenger.git,3062.6,2,8,0,7.0,23.0,0.0,0.0 +git-modes,-0.509569109537016,1.88187470906829,-0.945070825244811,https://salsa.debian.org/emacsen-team/emacs-git-modes, https://github.com/magit/git-modes.git,4898.459803240741,8,34,0,39.0,64.0,0.0,0.0 +emacs-jedi,-0.592556432624472,1.66859689627327,-1.06268041591691,https://salsa.debian.org/emacsen-team/emacs-jedi, https://github.com/tkf/emacs-jedi.git,3462.841145833333,5,28,0,30.0,288.0,0.0,2.0 +emacspeak,-0.3098123338625,0.154967146047551,-0.60639494426453,https://salsa.debian.org/a11y-team/emacspeak, https://github.com/tvraman/emacspeak.git,5784.515497685185,1,16,0,7.0,53.0,0.0,0.0 +enchant,0.467123270126367,2.61384891691575,-0.0641062096631408,https://salsa.debian.org/gnome-team/enchant-2/, https://github.com/AbiWord/enchant.git,5773.218333333333,7,27,0,26.0,105.0,0.0,1.0 +engrampa,0.336470722537852,1.20098013726039,-0.0018104828228633,https://salsa.debian.org/debian-mate-team/engrampa, https://github.com/mate-desktop/engrampa.git,4345.101631944444,27,39,0,38.0,189.0,0.0,0.0 +erlware_commons,-1.87440958189652,0.878602384616867,-2.6652549431966,https://salsa.debian.org/erlang-team/packages/erlang-erlware-commons, https://github.com/erlware/erlware_commons.git,4657.953206018518,8,37,0,28.0,72.0,0.0,0.0 +folsom,-1.80038604201176,0.51813893541771,-2.33186478870304,https://salsa.debian.org/erlang-team/packages/erlang-folsom, https://github.com/boundary/folsom.git,1470.0027777777775,3,37,0,30.0,72.0,0.0,0.0 +jiffy,0.16685012027072,2.42553819307624,-0.375839419075433,https://salsa.debian.org/erlang-team/packages/erlang-jiffy, https://github.com/davisp/jiffy.git,3978.804988425926,23,14,0,27.0,227.0,0.0,0.0 +erlang-jose,-0.0923635531212964,2.33278579929421,-0.570549312467372,https://salsa.debian.org/ejabberd-packaging-team/erlang-jose, https://github.com/potatosalad/erlang-jose.git,3054.6266782407406,10,30,0,29.0,125.0,0.0,0.0 +lager,0.133025795806357,2.17059930408403,-0.38214359591097,https://salsa.debian.org/ejabberd-packaging-team/erlang-lager, https://github.com/erlang-lager/lager.git,4513.831643518519,17,130,0,101.0,372.0,0.0,1.0 +meck,-1.78476224853465,-0.628802298383138,-2.05903919755242,https://salsa.debian.org/erlang-team/packages/erlang-meck, https://github.com/eproxus/meck.git,4901.985833333333,34,45,0,52.0,158.0,0.0,9.0 +fast_tls,-0.157152572959326,1.10952151950504,-0.410660716524691,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-tls, https://github.com/processone/fast_tls.git,3904.2279282407408,5,26,0,18.0,52.0,0.0,0.0 +eredis,-0.985788696555104,1.21206138643424,-1.43124443697926,https://salsa.debian.org/ejabberd-packaging-team/erlang-redis-client, https://github.com/wooga/eredis.git,2851.9773842592595,2,48,0,34.0,122.0,0.0,0.0 +eshell-git-prompt,-0.960941172080987,1.69591949338281,-1.54240206821766,https://salsa.debian.org/emacsen-team/eshell-git-prompt, https://github.com/xuchunyang/eshell-git-prompt.git,2545.743356481481,1,11,0,6.0,11.0,0.0,0.0 +espeakup,-0.506078169625807,0.017914626037391,-0.74937633111245,https://salsa.debian.org/a11y-team/espeakup, https://github.com/williamh/espeakup,4725.758113425926,2,6,0,4.0,0.0,0.0,0.0 +ettercap,0.351699731807671,0.960477024162828,0.0054542920172974,https://salsa.debian.org/pkg-security-team/ettercap, https://github.com/Ettercap/ettercap.git,4364.942071759259,13,80,0,48.0,36.0,0.0,12.0 +evilwm,0.105835074907099,1.77091415019833,-0.588761379539172,https://github.com/mati75/evilwm.git,https://github.com/mati75/evilwm.git,3558.3624189814814,0,7,0,4.0,4.0,0.0,0.0 +evqueue-core,-3.80089043066106,0.0055401803756153,-5.03108949833089,https://github.com/coldsource/evqueue-core,https://github.com/coldsource/evqueue-core,3176.9503935185185,0,23,0,4.0,7.0,0.0,1.0 +exabgp,-0.566149632308673,0.414366627765843,-0.952971500024496,https://github.com/Exa-Networks/exabgp/tree/debian/sid,https://github.com/Exa-Networks/exabgp,5211.732222222222,28,135,5,103.0,93.0,0.0,40.0 +f3,0.267941562478646,2.65348696062886,-0.29233767654254,https://salsa.debian.org/debian/f3, https://github.com/AltraMayor/f3.git,4281.923391203703,11,29,0,36.0,202.0,0.0,0.0 +fabric,0.2361201884431,1.12244522648531,-0.239560475635602,https://salsa.debian.org/python-team/packages/fabric, https://github.com/fabric/fabric.git,5703.025219907408,79,121,0,17.0,660.0,0.0,0.0 +fastkml,-1.15123918868783,1.63854293239259,-1.93659466695944,https://salsa.debian.org/python-team/packages/fastkml, https://github.com/cleder/fastkml,4190.952314814815,13,36,2,36.0,109.0,0.0,0.0 +fceux,3.13669420554879,8.47034613818339,1.47580172912887,https://salsa.debian.org/games-team/fceux, https://github.com/TASEmulators/fceux.git,5697.892361111111,20,74,0,39.0,179.0,0.0,0.0 +fence-agents,-0.0526755775352836,0.730696078493805,-0.341365408236932,https://salsa.debian.org/ha-team/fence-agents, https://github.com/ClusterLabs/fence-agents,5742.975972222223,67,106,0,112.0,160.0,0.0,0.0 +pkg-ferm,1.17557917057853,1.91549490133415,0.694476014070476,https://github.com/formorer/pkg-ferm,https://github.com/formorer/pkg-ferm,1766.192164351852,3,2,0,3.0,7.0,0.0,0.0 +ffindex,-0.384194745848032,0.784874680619157,-0.725631771709728,https://salsa.debian.org/med-team/ffindex, https://github.com/ahcm/ffindex.git,4107.537777777778,1,9,0,2.0,4.0,0.0,1.0 +ffmpegthumbnailer,0.621833900023643,1.70260395310542,0.129933472915708,https://salsa.debian.org/multimedia-team/ffmpegthumbnailer, https://github.com/dirkvdb/ffmpegthumbnailer,5750.985289351852,2,26,0,21.0,32.0,0.0,0.0 +fftw3,0.560695784836072,1.05702599503968,0.264284079595815,https://salsa.debian.org/science-team/fftw3, https://github.com/FFTW/fftw3.git,5716.0486458333335,17,23,0,31.0,333.0,0.0,2.0 +FileTea,-1.48802911677377,-0.597610494268726,-1.68694265471388,https://salsa.debian.org/berto/filetea, https://github.com/elima/FileTea,2414.458611111111,4,1,0,2.0,17.0,0.0,0.0 +filtergen,-1.49005930206133,-0.252717041402296,-2.01618164947352,https://github.com/jaqx0r/filtergen/tree/debian,https://github.com/jaqx0r/filtergen,4988.9503125,3,6,0,2.0,5.0,0.0,0.0 +findimagedupes,0.157139725705101,1.01413071404843,-0.242838384248759,https://salsa.debian.org/science-team/findimagedupes, https://github.com/jhnc/findimagedupes.git,5609.298483796297,0,1,0,0.0,16.0,0.0,0.0 +Fiona,-0.45182954892962,0.0316996688928317,-0.548290247008744,https://salsa.debian.org/debian-gis-team/fiona, https://github.com/Toblerity/Fiona.git,2732.0256712962964,42,33,0,64.0,34.0,0.0,1.0 +firehol,0.233747372311373,0.6567606394306,-0.0568826658718426,https://salsa.debian.org/debian/firehol, https://github.com/firehol/firehol,5475.348032407407,8,33,1,24.0,278.0,0.0,16.0 +flask-mongoengine,-1.28471432731324,1.67557096243642,-2.06784858010474,https://salsa.debian.org/python-team/packages/flask-mongoengine, https://github.com/mongoengine/flask-mongoengine,4513.283807870371,18,81,5,71.0,356.0,0.0,0.0 +flask-openid,0.228453383029625,2.65976098851716,-0.321308488807341,https://salsa.debian.org/python-team/packages/flask-openid, https://github.com/mitsuhiko/flask-openid.git,4219.235648148148,6,12,0,12.0,96.0,0.0,0.0 +flask-restful,0.347911319970928,1.67126298027459,-0.0854278524850452,https://salsa.debian.org/python-team/packages/flask-restful, https://github.com/flask-restful/flask-restful,3867.9860763888887,52,124,0,135.0,573.0,0.0,0.0 +flatbuffers,-1.16044505695917,0.911266021231737,-1.58198853197473,https://salsa.debian.org/debian/flatbuffers, https://github.com/google/flatbuffers.git,3592.7395138888887,597,121,0,431.0,19.0,0.0,6.0 +flim,0.76669612853376,1.95910735043277,0.161178758307351,https://salsa.debian.org/debian/flim, https://github.com/wanderlust/flim,5370.129212962963,4,13,0,8.0,10.0,0.0,0.0 +arb,0.282849253055976,2.10640155716289,-0.265290145933072,https://salsa.debian.org/math-team/flint-arb, https://github.com/fredrik-johansson/arb,4241.291886574074,4,42,0,34.0,106.0,0.0,1.0 +FlintQS,0.870532560714621,4.21844088759712,-0.122986381463619,https://salsa.debian.org/science-team/flintqs, https://github.com/sagemath/FlintQS,2671.360636574074,0,2,0,2.0,2.0,0.0,0.0 +flite,0.374408141316315,0.81572235949216,0.14041837283627,https://salsa.debian.org/a11y-team/flite, https://github.com/festvox/flite.git,1668.0555208333333,9,16,0,21.0,106.0,0.0,0.0 +fmit,1.02888922507472,2.99656825420793,0.134553772804875,https://salsa.debian.org/debian/fmit, https://github.com/gillesdegottex/fmit.git,2966.091516203704,22,10,0,21.0,45.0,0.0,0.0 +fntsample,-1.2332590184019,-0.596975610055257,-1.35617600598223,https://salsa.debian.org/debian/fntsample, https://github.com/eugmes/fntsample.git,4121.078946759259,2,4,0,4.0,10.0,0.0,0.0 +master,0.501895495470448,1.598726148213,0.0085779358785148,https://salsa.debian.org/fonts-team/font-manager, https://github.com/FontManager/master,5185.326875,55,11,1,48.0,170.0,0.0,0.0 +Hack,0.346570504509775,2.20819204870402,-0.0730912242677469,https://salsa.debian.org/fonts-team/fonts-hack, https://github.com/source-foundry/Hack,1976.7616666666668,7,26,5,23.0,227.0,0.0,0.0 +amiri,0.044894207599157,0.920180884246057,-0.130257972073322,https://salsa.debian.org/fonts-team/fonts-hosny-amiri, https://github.com/alif-type/amiri.git,5474.357893518519,5,10,0,8.0,97.0,0.0,0.0 +inter,0.0129835005388798,2.78580269899559,-0.656555460285987,https://salsa.debian.org/fonts-team/fonts-inter, https://github.com/rsms/inter,2281.2912847222224,23,7,3,20.0,124.0,0.0,0.0 +frogatto,0.231694633466328,1.76546888112621,-0.392777994560545,https://salsa.debian.org/games-team/frogatto, https://github.com/frogatto/frogatto.git,5646.032511574074,6,89,0,29.0,83.0,0.0,17.0 +Frozen-Flask,-1.50524768055034,0.568186183807635,-1.96775331364021,https://github.com/SimonSapin/Frozen-Flask/,https://github.com/SimonSapin/Frozen-Flask,4711.306712962963,2,29,0,26.0,105.0,0.0,1.0 +fsvs,-0.0088293975748938,2.35669331826595,-1.04677265942023,https://salsa.debian.org/debian/fsvs, https://github.com/phmarek/fsvs.git,2690.684097222222,8,4,0,3.0,6.0,0.0,0.0 +fswatch,0.0801114642346626,1.67664914848401,-0.571025077188002,https://salsa.debian.org/debian/fswatch, https://github.com/emcrisostomo/fswatch.git,4816.560706018518,6,27,0,22.0,362.0,0.0,6.0 +ftgl,1.21435994058272,2.19643555055912,0.619951290464078,https://salsa.debian.org/ftgl-team/ftgl, https://github.com/frankheckenbach/ftgl,5371.300497685185,3,17,0,10.0,18.0,0.0,0.0 +funcoeszz,1.01417730099499,3.12023393144998,0.102845799606955,https://salsa.debian.org/debian/funcoeszz, https://github.com//funcoeszz/funcoeszz,5372.299097222222,4,52,0,0.0,0.0,0.0,6.0 +fusioninventory-agent,0.412742159377425,1.27566924157171,0.0042753937604711,https://salsa.debian.org/perl-team/modules/packages/fusioninventory-agent, https://github.com/fusioninventory/fusioninventory-agent.git,5660.849953703703,88,75,0,69.0,277.0,0.0,0.0 +fuzzylite,0.0236301475067224,2.05851568499672,-0.649107545131671,https://salsa.debian.org/debian/fuzzylite, https://github.com/fuzzylite/fuzzylite,3931.516064814815,3,20,0,8.0,30.0,0.0,0.0 +fuzzywuzzy,-0.439985822168461,1.32062263274672,-0.857053766838676,https://salsa.debian.org/python-team/packages/fuzzywuzzy, https://github.com/seatgeek/fuzzywuzzy,3716.0564236111113,14,64,0,61.0,347.0,0.0,2.0 +fvwm2-debian,0.30915260290702,0.469889524583975,0.181176490360975,https://github.com/somiaj/fvwm2-debian,https://github.com/somiaj/fvwm2-debian,699.9356018518519,1,3,0,1.0,0.0,0.0,0.0 +sight,-0.173178577808159,1.26196025038516,-0.82118654463665,https://salsa.debian.org/med-team/fw4spl, https://github.com/IRCAD/sight,5192.848726851852,18,189,0,40.0,13.0,0.0,0.0 +fwupdate,-0.0344756086035051,2.19669315710317,-0.471064343713256,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365740743,21,5,0,15.0,40.0,0.0,3.0 +fzy,-0.37620883355709,1.93997150653768,-0.864045944434253,https://salsa.debian.org/debian/fzy, https://github.com/jhawthorn/fzy,2752.1003125,14,25,0,30.0,165.0,0.0,3.0 +g810-led,-0.884187428718168,0.579034937278941,-1.15033330711202,https://salsa.debian.org/debian/g810-led, https://github.com/MatMoul/g810-led.git,2361.9422453703705,17,31,0,31.0,369.0,0.0,2.0 +monitor-core,1.94185942894961,3.11018706796909,1.22721752482509,https://salsa.debian.org/debian/ganglia, https://github.com/ganglia/monitor-core.git,5029.40037037037,5,128,0,60.0,190.0,0.0,20.0 +ganglia-web,2.98676770007383,5.9425493751254,1.6513889403306,https://salsa.debian.org/debian/ganglia-web, https://github.com/ganglia/ganglia-web,3989.746516203704,9,91,0,54.0,144.0,0.0,10.0 +garglk,0.349460027567795,1.57547869667954,-0.215202136183368,https://salsa.debian.org/games-team/gargoyle-free, https://github.com/garglk/garglk.git,5517.475613425926,6,35,0,30.0,137.0,0.0,4.0 +gaupol,0.450726842944742,1.41943890830119,0.0001075777337481,https://salsa.debian.org/python-team/packages/gaupol, https://github.com/otsaloma/gaupol,5574.441469907408,17,10,0,13.0,96.0,0.0,0.0 +geographiclib,-0.270868261674655,0.421004430509194,-0.518838067735011,https://salsa.debian.org/debian-gis-team/geographiclib, https://github.com/geographiclib/geographiclib.git,5589.128333333333,0,17,0,9.0,0.0,0.0,0.0 +geoipupdate,0.0025717487788364,1.65000549432166,-0.358124043038636,https://salsa.debian.org/debian/geoipupdate, https://github.com/maxmind/geoipupdate,3751.811261574074,25,42,0,34.0,57.0,0.0,0.0 +geolinks,-0.181262940992832,2.45502440287708,-0.744547490613071,https://salsa.debian.org/debian-gis-team/geolinks, https://github.com/geopython/geolinks.git,3405.864236111111,2,3,0,4.0,8.0,0.0,0.0 +geophar,-0.9414930320306,-0.217719553563348,-1.13124696774661,https://salsa.debian.org/georgesk/geophar, https://github.com/wxgeo/geophar,4439.426018518519,0,6,0,3.0,5.0,0.0,0.0 +geopy,-0.198770964070923,1.33128282112022,-0.531297788298444,https://salsa.debian.org/python-team/packages/geopy, https://github.com/geopy/geopy,5485.118125,94,49,3,101.0,381.0,0.0,0.0 +gerbv,0.706574178653507,1.7421159159697,0.174017888639695,https://salsa.debian.org/electronics-team/gerbv, https://github.com/gerbv/gerbv.git,5724.390185185185,29,11,0,24.0,49.0,0.0,0.0 +ghp-import,-0.492974177402071,2.51337960666601,-1.27412233096087,https://salsa.debian.org/python-team/packages/ghp-import, https://github.com/c-w/ghp-import.git,4494.870509259259,15,11,0,21.0,78.0,0.0,0.0 +git-big-picture,0.351838790739633,3.3166834133231,-0.485341298936446,https://salsa.debian.org/python-team/packages/git-big-picture, https://github.com/git-big-picture/git-big-picture.git,5024.306909722222,14,10,0,14.0,46.0,0.0,0.0 +git-ftp,-0.178802712121011,1.74356040176882,-0.697392620849105,https://salsa.debian.org/debian/git-ftp, https://github.com/git-ftp/git-ftp,4532.203599537037,24,92,3,82.0,432.0,0.0,0.0 +gitinspector,-0.540048109578866,0.210511755956547,-0.701223929521075,https://salsa.debian.org/python-team/packages/gitinspector, https://github.com/ejwa/gitinspector,3089.988923611111,14,6,3,18.0,213.0,0.0,0.0 +gitsome,-1.58676027107593,-1.19301285444769,-1.66240230042816,https://salsa.debian.org/debian/gitsome, https://github.com/donnemartin/gitsome,1294.222638888889,14,16,0,27.0,199.0,0.0,0.0 +givaro,0.511786564623252,1.62586507469076,-0.0135088130914325,https://salsa.debian.org/math-team/givaro, https://github.com/linbox-team/givaro,5710.734074074074,9,44,0,21.0,43.0,0.0,0.0 +lieer,-1.75202814614574,0.654977795002581,-2.40631413024426,https://salsa.debian.org/debian/lieer, https://github.com/gauteh/lieer,2464.2436689814813,23,14,0,29.0,147.0,0.0,7.0 +gmrender-resurrect,-0.688555560408279,0.43888123573676,-0.988624359104825,https://salsa.debian.org/debian/gmrender-resurrect, https://github.com/hzeller/gmrender-resurrect.git,3933.240740740741,9,14,0,17.0,244.0,0.0,41.0 +gnome-gmail,0.115256384051709,1.23775141318434,-0.313706832831908,https://github.com/davesteele/gnome-gmail/tree/debian,https://github.com/davesteele/gnome-gmail,5107.056574074074,6,30,0,8.0,52.0,0.0,0.0 +gnome-hwp-support,-0.152703941450815,2.63301641635732,-0.863606387086791,https://salsa.debian.org/l10n-korean-team/gnome-hwp-support, https://github.com/changwoo/gnome-hwp-support.git,4275.414629629629,1,2,0,1.0,2.0,0.0,0.0 +gnome-keysign,-0.631973154339824,0.867856441279995,-0.908545604568914,https://salsa.debian.org/debian/gnome-keysign, https://github.com/gnome-keysign/gnome-keysign,3520.800335648148,42,26,0,52.0,24.0,0.0,0.0 +gnome-mastermind,0.189663114172519,2.12499155712816,-0.40647331653126,https://salsa.debian.org/debian/gnome-mastermind, https://github.com/fargiolas/gnome-mastermind,5420.939548611111,1,6,0,3.0,2.0,0.0,0.0 +googler,-0.368643140239746,0.628358092372874,-0.554272536420051,https://salsa.debian.org/debian/googler, https://github.com/jarun/googler.git,4778.910706018519,15,26,0,29.0,68.0,0.0,6.0 +GPaste,-0.306042916386565,-0.251366894090626,-0.323026045119372,https://salsa.debian.org/debian/gpaste, https://github.com/Keruspe/GPaste,4709.643009259259,65,21,2,60.0,352.0,0.0,0.0 +gpick,0.328724414189861,1.92683494766077,-0.166165345925134,https://salsa.debian.org/elias/gpick, https://github.com/thezbyg/gpick.git,5237.0590625,5,6,0,8.0,64.0,0.0,1.0 +grabserial,-0.534268648960191,2.39024691399638,-1.29672446472184,https://salsa.debian.org/debian/grabserial, https://github.com/tbird20d/grabserial,3634.0012152777776,11,19,0,17.0,53.0,0.0,1.0 +grantlee,0.885091712187427,2.98199434735736,0.150645430522859,https://salsa.debian.org/qt-kde-team/extras/grantlee, https://github.com/steveire/grantlee.git,4939.975648148148,29,11,0,23.0,19.0,0.0,1.0 +graphite,0.373380772575111,1.17793952421994,0.0796158428735937,https://salsa.debian.org/libreoffice-team/graphite2, https://github.com/silnrsi/graphite.git,4797.779131944444,6,20,0,12.0,63.0,0.0,0.0 +gravit,0.604558095656893,3.20290781714388,-0.299169242521338,https://salsa.debian.org/debian-astro-team/gravit, https://github.com/gak/gravit,4467.977326388889,1,15,2,3.0,13.0,0.0,0.0 +grcompiler,-0.203373151447185,1.65148057513329,-0.960443545697963,https://salsa.debian.org/fonts-team/grcompiler, https://github.com/silnrsi/grcompiler.git,4870.000092592592,3,20,0,10.0,14.0,0.0,0.0 +gsa,0.417412477041899,2.96196815616776,-0.465679759760679,https://salsa.debian.org/pkg-security-team/greenbone-security-assistant, https://github.com/greenbone/gsa,5193.735740740741,22,54,0,37.0,36.0,0.0,0.0 +grepcidr-pkg-debian,-0.0005121379541858,1.82310742256517,-0.469333182443001,https://github.com/rfinnie/grepcidr-pkg-debian,https://github.com/rfinnie/grepcidr-pkg-debian,3175.8474652777777,0,1,0,1.0,0.0,0.0,0.0 +grok,0.755503612433081,3.25495771392926,-0.294994865709912,https://salsa.debian.org/debian/grok, https://github.com/jordansissel/grok,2851.822326388889,0,12,0,5.0,47.0,0.0,0.0 +gromit-mpx,-0.136839263207372,2.39610826055996,-0.723685631624861,https://salsa.debian.org/debian/gromit-mpx, https://github.com/bk138/gromit-mpx.git,5287.537638888889,14,15,0,22.0,52.0,0.0,0.0 +grun,3.43147374519148,6.99143969921208,1.95124560287428,https://salsa.debian.org/debian/grun, https://github.com/lrgc/grun.git,1780.0517708333334,1,4,0,2.0,2.0,0.0,0.0 +textfsm,-1.95927685598995,0.499811995849378,-2.46717998261428,https://salsa.debian.org/python-team/packages/gtextfsm, https://github.com/google/textfsm.git,4331.1065625,11,7,0,12.0,114.0,0.0,11.0 +gtimelog,-0.313150301149958,0.419592854220189,-0.646939699895798,https://salsa.debian.org/python-team/packages/gtimelog, https://github.com/gtimelog/gtimelog,5699.091412037037,18,41,2,31.0,102.0,0.0,0.0 +gtkhash,-0.04705497683068,0.381309166862997,-0.19595314429291,https://salsa.debian.org/debian/gtkhash, https://github.com/tristanheaven/gtkhash,4558.980844907407,79,10,0,62.0,43.0,0.0,0.0 +guessit,0.50924339420609,2.43396963084859,-0.279203918651371,https://salsa.debian.org/python-team/packages/guessit, https://github.com/guessit-io/guessit.git,2993.2388078703702,14,29,0,17.0,232.0,0.0,0.0 +guidata,0.22694372404459,2.76607965507246,-0.444547265017286,https://salsa.debian.org/science-team/guidata, https://github.com/Codra-Ingenierie-Informatique/guidata,4839.075289351852,0,24,0,9.0,22.0,0.0,0.0 +guile-json,-0.447679014039198,2.31759801122916,-1.12840490687817,https://salsa.debian.org/debian/guile-json, https://github.com/aconchillo/guile-json.git,3764.830532407407,3,17,0,14.0,43.0,0.0,0.0 +harminv,-0.263332768167581,0.795999387871074,-0.562157638785097,https://salsa.debian.org/alteholz/harminv, https://github.com/NanoComp/harminv,2906.473171296296,1,5,0,4.0,15.0,0.0,0.0 +harvid,0.17245635503244,1.30378830652142,-0.173411649919732,https://salsa.debian.org/multimedia-team/harvid, https://github.com/x42/harvid.git,3621.9749189814816,0,4,0,4.0,14.0,0.0,0.0 +hashcat,0.656809925938578,2.91932732878813,-0.068868315364857,https://salsa.debian.org/pkg-security-team/hashcat, https://github.com/hashcat/hashcat.git,2915.0251851851854,48,153,0,135.0,297.0,0.0,0.0 +haveged,0.960876909230577,1.92990048404984,0.423990452854281,https://salsa.debian.org/debian/haveged, https://github.com/jirka-h/haveged,1886.382650462963,9,23,0,22.0,68.0,0.0,1.0 +haxe-debian,-0.520121199828189,0.291656629232862,-0.854365100683561,https://github.com/HaxeFoundation/haxe-debian,https://github.com/HaxeFoundation/haxe-debian,5039.159791666667,3,5,0,5.0,4.0,0.0,0.0 +hcxdumptool,0.111902239230355,3.64101561712374,-0.745534899889469,https://salsa.debian.org/pkg-security-team/hcxdumptool, https://github.com/ZerBea/hcxdumptool,2117.010613425926,10,18,0,22.0,84.0,0.0,7.0 +hdapsd,0.653899629129175,2.69423511493553,-0.123119309607183,https://salsa.debian.org/debian/hdapsd, https://github.com/evgeni/hdapsd.git,2619.501041666667,2,5,0,5.0,12.0,0.0,0.0 +HDMI2USB-mode-switch,-0.197998979551778,2.89423307436124,-1.00134107846442,https://salsa.debian.org/debian/hdmi2usb-mode-switch, https://github.com/timvideos/HDMI2USB-mode-switch.git,1539.4512152777777,3,11,0,8.0,15.0,0.0,0.0 +hesiod,1.35207987719541,2.88204109904546,0.569829979549406,https://github.com/achernya/hesiod,https://github.com/achernya/hesiod,2444.8183564814813,0,5,0,6.0,15.0,0.0,0.0 +hexchat,0.411346363504554,1.07632257559057,0.0766285754645626,https://salsa.debian.org/debian/hexchat, https://github.com/hexchat/hexchat,4968.658645833333,146,71,1,160.0,5.0,0.0,0.0 +hg-git,0.321128458005959,1.27013962899525,-0.189558695284581,https://salsa.debian.org/python-team/packages/hg-git, https://github.com/schacon/hg-git.git,2615.4964467592595,1,76,0,52.0,117.0,0.0,4.0 +hidapi,0.225542388999172,1.7475434274015,-0.111910545723205,https://salsa.debian.org/debian/hidapi, https://github.com/libusb/hidapi.git,4972.58207175926,120,14,0,103.0,49.0,0.0,4.0 +hippomocks,-1.88997873368073,1.96945665171523,-3.0475420798528,https://salsa.debian.org/debian-iot-team/hippomocks, https://github.com/dascandy/hippomocks,3806.118483796297,0,35,0,21.0,73.0,0.0,1.0 +hitch,-0.528891278833222,2.18475913059215,-1.44385683941196,https://salsa.debian.org/debian/hitch, https://github.com/varnish/hitch,4466.179224537037,30,59,0,59.0,215.0,0.0,20.0 +hol-light,0.674020845527557,3.32279514521599,-0.29139697731138,https://salsa.debian.org/ocaml-team/hol-light, https://github.com/jrh13/hol-light.git,2937.7842708333333,2,18,0,10.0,39.0,0.0,0.0 +htmldoc,0.75711657223212,1.64239469489179,0.276846482719605,https://salsa.debian.org/haava/htmldoc, https://github.com/michaelrsweet/htmldoc.git,5679.761041666667,3,12,0,7.0,61.0,0.0,0.0 +htmlmin,0.374983932562282,3.80096487960747,-0.406198962884855,https://salsa.debian.org/python-team/packages/htmlmin, https://github.com/mankyd/htmlmin,1758.145405092593,0,22,0,16.0,60.0,0.0,0.0 +htpdate,-0.444541263600008,1.61940455160078,-0.918880230012669,https://salsa.debian.org/debian/htpdate, https://github.com/twekkel/htpdate,706.8257407407407,6,5,0,5.0,17.0,0.0,0.0 +hubicfuse,-0.674391068352074,0.4155398958399,-0.970849683167389,https://salsa.debian.org/debian/hubicfuse, https://github.com/TurboGit/hubicfuse,4598.808229166667,5,42,0,32.0,165.0,0.0,1.0 +hunspell-kk,0.169979278904401,2.56860566866465,-0.353993453076674,http://github.com/taem/hunspell-kk/tree/master,http://github.com/taem/hunspell-kk,1009.254050925926,0,1,0,0.0,0.0,0.0,0.0 +hw-probe,-0.270539130885328,2.13663486623563,-0.803635087763185,https://salsa.debian.org/debian/hw-probe, https://github.com/linuxhw/hw-probe,2812.820763888889,5,13,0,14.0,115.0,0.0,0.0 +hwdata,0.249721813598503,0.867330973589817,-0.003392666298492,https://salsa.debian.org/pino/hwdata, https://github.com/vcrhonek/hwdata.git,5761.123148148148,4,18,0,12.0,14.0,0.0,0.0 +hwinfo,1.03525834114766,1.87035720757828,0.528823536083506,https://salsa.debian.org/debian/hwinfo, https://github.com/openSUSE/hwinfo,5630.010034722222,11,25,0,19.0,74.0,0.0,0.0 +hwloc,0.0348531640399339,0.307399279262583,-0.0657896516031377,https://salsa.debian.org/debian/hwloc, https://github.com/open-mpi/hwloc.git,5420.947349537037,40,25,0,39.0,173.0,0.0,7.0 +hyperlink,0.844118140951546,3.90404712001316,0.0109391917079671,https://salsa.debian.org/python-team/packages/hyperlink, https://github.com/python-hyper/hyperlink,1636.1480324074073,8,24,0,21.0,47.0,0.0,0.0 +hyperscan,-0.19399067963967,1.13231955266701,-0.506900136755405,https://salsa.debian.org/debian/hyperscan, https://github.com/intel/hyperscan.git,2738.472962962963,25,11,0,26.0,361.0,0.0,0.0 +ibus-libpinyin,0.0745339719016965,1.49656855213419,-0.455214923387231,https://salsa.debian.org/debian/ibus-libpinyin, https://github.com/libpinyin/ibus-libpinyin,5637.836423611111,33,12,0,32.0,417.0,0.0,2.0 +icdiff,-0.143815292235167,1.93698232874315,-0.574052024000204,https://salsa.debian.org/debian/icdiff, https://github.com/jeffkaufman/icdiff.git,4767.043599537037,37,19,0,47.0,225.0,0.0,0.0 +icecream,0.306464283919501,1.12950175815159,-0.157389879894607,https://salsa.debian.org/qt-kde-team/extras/icecc, https://github.com/icecc/icecream,5413.471793981482,34,86,1,89.0,308.0,0.0,0.0 +ifcplusplus,-4.71402050298953,-1.54668049295895,-5.44302502170614,https://salsa.debian.org/science-team/ifcplusplus, https://github.com/ifcquery/ifcplusplus,3159.9779050925927,3,29,0,17.0,119.0,0.0,1.0 +ign-cmake,-0.0672943202505403,2.4451918145376,-0.721188055934817,https://salsa.debian.org/science-team/ignition-cmake, https://github.com/ignitionrobotics/ign-cmake.git,2275.004699074074,21,38,0,34.0,52.0,0.0,0.0 +imexam,-0.529120494597259,0.569301322069021,-0.771921667508731,https://salsa.debian.org/debian-astro-team/imexam, https://github.com/spacetelescope/imexam,3485.938622685185,6,15,1,15.0,95.0,0.0,0.0 +imgp,-0.654831104674298,1.57229390630509,-1.08879484852796,https://salsa.debian.org/debian/imgp, https://github.com/jarun/imgp.git,2588.449178240741,7,6,0,8.0,44.0,0.0,2.0 +indicator-sensors,-0.55856548471668,1.87063137701197,-1.16667247934645,https://salsa.debian.org/debian/indicator-sensors, https://github.com/alexmurray/indicator-sensors.git,4448.051828703704,1,8,0,6.0,33.0,0.0,1.0 +influxdb-python,0.5184399777117,1.9994055881846,-0.0609733667770676,https://salsa.debian.org/python-team/packages/influxdb-python, https://github.com/influxdata/influxdb-python,3542.085324074074,64,90,1,124.0,596.0,0.0,0.0 +infnoise,-0.804300160334278,2.01021630793909,-1.78957995953479,https://salsa.debian.org/debian/infnoise, https://github.com/13-37-org/infnoise.git,3061.3638078703702,9,32,0,27.0,33.0,0.0,1.0 +inkscape-open-symbols,0.139916102322669,2.394699430087,-0.296432735971966,https://salsa.debian.org/felix-guest/inkscape-open-symbols, https://github.com/Xaviju/inkscape-open-symbols,2971.3217939814813,9,20,0,20.0,58.0,0.0,2.0 +compute-runtime,-0.335348828556532,2.5434327002209,-1.03806312411679,https://salsa.debian.org/opencl-team/intel-compute-runtime, https://github.com/intel/compute-runtime,2183.6453703703705,160,87,0,159.0,86.0,0.0,0.0 +intelhex,-0.718117487216948,1.53031949737623,-1.15580284325034,https://salsa.debian.org/python-team/packages/intelhex, https://github.com/bialix/intelhex.git,2882.7775578703704,4,21,0,12.0,61.0,0.0,0.0 +invesalius3,-0.365553699037616,0.412659254993687,-0.658514878405484,https://salsa.debian.org/med-team/invesalius, https://github.com/invesalius/invesalius3.git,5269.8872106481485,20,33,0,28.0,105.0,0.0,9.0 +ioq3,0.245752954100319,0.962699744636256,-0.0891553792241897,https://salsa.debian.org/games-team/ioquake3, https://github.com/ioquake/ioq3,5764.21568287037,42,58,0,65.0,301.0,0.0,0.0 +iortcw,-0.360913772214862,1.75407371724815,-0.899955248117116,https://salsa.debian.org/games-team/iortcw, https://github.com/iortcw/iortcw.git,3601.873576388889,5,20,0,13.0,129.0,0.0,0.0 +irssi,1.7592941850151,2.36258966284256,1.30521497990524,https://salsa.debian.org/rhonda/irssi, https://github.com/irssi/irssi.git,5749.014467592592,36,142,0,114.0,230.0,0.0,5.0 +irssi-xmpp,0.603569160068662,1.55579725815672,0.0980337917936148,https://salsa.debian.org/debian/irssi-plugin-xmpp, https://github.com/cdidier/irssi-xmpp,4266.862395833334,7,12,0,12.0,44.0,0.0,0.0 +irstlm,-0.569999834591859,2.5734688358658,-1.36212813878329,https://salsa.debian.org/science-team/irstlm, https://github.com/irstlm-team/irstlm.git,1268.8947337962964,1,9,0,3.0,31.0,0.0,0.0 +islamic-menus,-0.836040345722433,1.89276666455391,-1.52080141050059,https://salsa.debian.org/islamic-team/islamic-menus, https://github.com/ojuba-org/islamic-menus,1447.6479050925925,0,9,0,5.0,1.0,0.0,0.0 +ismrmrd,-0.421137503350785,0.87197185510192,-0.79291907700435,https://salsa.debian.org/med-team/ismrmrd, https://github.com/ismrmrd/ismrmrd.git,4121.918738425926,23,44,0,33.0,72.0,0.0,1.0 +flags,1.04760743471767,4.84454262395884,0.0451502018135834,https://salsa.debian.org/cinnamon-team/iso-flags-svg, https://github.com/linuxmint/flags.git,563.1795833333333,0,2,0,1.0,0.0,0.0,0.0 +isodate,0.784410787167294,3.68595001694045,-0.0654948522770899,https://salsa.debian.org/python-team/packages/isodate, https://github.com/gweis/isodate,4815.188715277778,2,29,0,18.0,81.0,0.0,0.0 +ivtools,0.398801166895553,1.09231866511694,-0.0474693288687548,https://salsa.debian.org/debian/ivtools, https://github.com/vectaport/ivtools,4623.96693287037,2,10,0,4.0,7.0,0.0,1.0 +include-what-you-use,0.293647013502257,1.77561586069386,-0.325605483422213,https://salsa.debian.org/pkg-llvm-team/iwyu, https://github.com/include-what-you-use/include-what-you-use,4692.870405092593,67,17,1,60.0,285.0,0.0,1.0 +jabberd2,-0.0340967947001949,0.912457651446875,-0.575441570052838,https://salsa.debian.org/xmpp-team/jabberd2, https://github.com/jabberd2/jabberd2,3913.918449074074,17,25,0,26.0,119.0,0.0,5.0 +jansson,0.140702818261444,0.668384438014213,-0.0027799649827509,https://salsa.debian.org/debian/jansson, https://github.com/akheron/jansson.git,5159.4155902777775,29,84,0,80.0,127.0,0.0,3.0 +janus-gateway,-1.05337244986624,0.874433528925773,-1.67902934759249,https://salsa.debian.org/pkg-voip-team/janus, https://github.com/meetecho/janus-gateway,3591.8742708333334,192,158,0,273.0,152.0,0.0,0.0 +jimtcl,0.0276014570725816,0.470906450097132,-0.0432191952512908,https://salsa.debian.org/debian/jimtcl, https://github.com/msteveb/jimtcl.git,5640.229108796297,31,13,0,32.0,66.0,0.0,2.0 +Jool,-2.14357301313893,-0.0424378708533689,-2.61291193745228,https://github.com/NICMx/Jool,https://github.com/NICMx/Jool,4435.210405092593,8,57,3,37.0,162.0,0.0,6.0 +jopt-simple,-0.255772200758675,1.10927309648234,-0.521059676282444,https://salsa.debian.org/java-team/joptsimple, https://github.com/jopt-simple/jopt-simple.git,3771.223796296296,2,25,0,24.0,63.0,0.0,0.0 +jpy,-0.233504770598713,1.55857120737112,-0.692158017596744,https://salsa.debian.org/python-team/packages/jpy, https://github.com/jpy-consortium/jpy,3656.235856481481,16,28,3,25.0,27.0,0.0,0.0 +jpylyzer,-1.21847664304169,-0.429898584565786,-1.47171391073223,https://salsa.debian.org/python-team/packages/jpylyzer, https://github.com/openpreserve/jpylyzer.git,3586.5846064814814,2,28,0,16.0,31.0,0.0,2.0 +jq,0.907507756724108,2.07725813469889,0.337854602387109,https://salsa.debian.org/debian/jq, https://github.com/jqlang/jq,4164.99587962963,128,79,5,168.0,233.0,0.0,76.0 +jquery-i18n-properties,-0.842986287747477,1.00253012903002,-1.16109014727073,https://salsa.debian.org/js-team/jquery-i18n-properties/, https://github.com/jquery-i18n-properties/jquery-i18n-properties.git,2244.4631597222224,1,17,0,13.0,101.0,0.0,3.0 +JSJaC,-0.326591238398014,2.00496391218346,-1.15078662173429,https://salsa.debian.org/xmpp-team/jsjac, https://github.com/sstrigler/JSJaC.git,3682.6423958333335,1,21,0,12.0,56.0,0.0,0.0 +json-c,0.700023851880608,1.56841814860177,0.249756089878765,https://salsa.debian.org/debian/json-c, https://github.com/json-c/json-c,5592.294965277778,18,150,0,130.0,463.0,0.0,13.0 +JSON-js,0.635854100922927,3.17069139656986,-0.086277690728619,https://salsa.debian.org/js-team/json-js, https://github.com/douglascrockford/JSON-js,4556.196423611111,1,4,0,2.0,14.0,0.0,0.0 +jsonlint,0.128379119258446,1.61363476419091,-0.161527963105581,https://salsa.debian.org/php-team/pear/jsonlint, https://github.com/Seldaek/jsonlint,4166.938888888889,11,28,0,34.0,62.0,0.0,0.0 +jsonpickle,-0.0589038511288834,1.65494774848196,-0.628847446436696,https://salsa.debian.org/python-team/packages/jsonpickle, https://github.com/jsonpickle/jsonpickle,5737.107546296296,18,67,1,58.0,346.0,0.0,5.0 +jsusfx,-0.481841545934975,1.46744712046148,-0.881581232912669,https://salsa.debian.org/multimedia-team/pd/jsusfx, https://github.com/asb2m10/jsusfx.git,2697.364976851852,1,8,0,4.0,11.0,0.0,1.0 +keepassxc,0.0775001359902233,0.766226275880649,-0.134443237606771,https://salsa.debian.org/debian/keepassxc, https://github.com/keepassxreboot/keepassxc.git,4876.4075,354,94,0,352.0,4.0,0.0,6.0 +keras,0.599945436863796,3.42323994413066,-0.32687543402159,https://salsa.debian.org/science-team/keras, https://github.com/keras-team/keras,3182.841226851852,1036,333,0,411.0,453.0,0.0,19.0 +klaus,-1.79637508963943,-1.14251823386389,-1.92444117218851,https://salsa.debian.org/jelmer/klaus, https://github.com/jonashaag/klaus,4576.86707175926,13,28,0,23.0,110.0,0.0,20.0 +klystrack,-0.577519653167149,1.43344468736358,-1.09269072292416,https://salsa.debian.org/multimedia-team/klystrack, https://github.com/kometbomb/klystrack,3882.798819444444,10,13,4,10.0,56.0,0.0,1.0 +pvr.dvbviewer,-0.261225505481806,1.73388352174729,-0.678503492892391,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-dvbviewer, https://github.com/kodi-pvr/pvr.dvbviewer.git,4026.1822916666665,9,44,0,32.0,52.0,0.0,0.0 +pvr.hdhomerun,0.566260134315537,3.97273055097904,-0.508973504123633,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-hdhomerun, https://github.com/kodi-pvr/pvr.hdhomerun.git,2925.247337962963,9,28,0,19.0,39.0,0.0,0.0 +pvr.iptvsimple,0.0810763451287061,2.1337559182885,-0.412242772110432,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-iptvsimple, https://github.com/kodi-pvr/pvr.iptvsimple.git,3805.758923611111,16,66,0,49.0,379.0,0.0,0.0 +pvr.njoy,-0.391946976625737,1.58828583512239,-0.794589893392134,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-njoy, https://github.com/kodi-pvr/pvr.njoy.git,4095.3650578703705,9,40,0,28.0,19.0,0.0,0.0 +pvr.vdr.vnsi,-0.27670881624424,1.16213179809073,-0.603691917778123,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-vdr-vnsi, https://github.com/kodi-pvr/pvr.vdr.vnsi.git,4099.290219907408,12,57,0,44.0,64.0,0.0,0.0 +KWStyle,-0.544368045908652,1.28865289872679,-0.997706727099012,https://salsa.debian.org/eikel/kwstyle, https://github.com/Kitware/KWStyle,2816.187662037037,4,44,0,30.0,32.0,0.0,0.0 +lablgtk,-0.551968323458823,1.02548296833125,-0.856650582909348,https://salsa.debian.org/ocaml-team/lablgtk3, https://github.com/garrigue/lablgtk.git,5750.371782407407,18,30,0,25.0,73.0,0.0,0.0 +lastpass-cli,-0.0433153424555133,1.34166224648235,-0.586004167665418,https://salsa.debian.org/lamby/pkg-lastpass-cli, https://github.com/lastpass/lastpass-cli,3306.008935185185,30,62,0,67.0,0.0,0.0,1.0 +python-lazy-object-proxy,0.304361886266875,2.72331704069412,-0.170200544458025,https://salsa.debian.org/python-team/packages/lazy-object-proxy, https://github.com/ionelmc/python-lazy-object-proxy.git,3850.588252314815,8,10,0,14.0,87.0,0.0,0.0 +lcdproc,0.0416533252301885,0.598187026427743,-0.298289035087039,https://salsa.debian.org/debian/lcdproc, https://github.com/lcdproc/lcdproc,1977.3798148148148,39,20,0,41.0,113.0,0.0,0.0 +ldap-git-backup,-1.37378689802941,-0.356971386513325,-1.61718418357152,https://github.com/elmar/ldap-git-backup,https://github.com/elmar/ldap-git-backup,3900.949722222222,1,9,0,6.0,10.0,0.0,0.0 +ldap2dns,0.441066037920361,3.27303457513035,-0.818255810932132,https://salsa.debian.org/debian/ldap2dns, https://github.com/bklang/ldap2dns,1032.2710185185183,0,4,0,1.0,4.0,0.0,0.0 +ldapscripts,0.478946302626074,1.44486956614797,0.0155611926935095,https://github.com/gerasiov/ldapscripts,https://github.com/gerasiov/ldapscripts,4203.292164351852,3,5,0,3.0,2.0,0.0,0.0 +pkg-ledgersmb,-1.97689062412395,-1.2384100444554,-2.32818405996674,https://github.com/ledgersmb/pkg-ledgersmb,https://github.com/ledgersmb/pkg-ledgersmb,5388.182164351852,1,9,0,4.0,4.0,0.0,1.0 +ledmon,-0.0267359745780104,1.69720993287525,-0.578723343507587,https://salsa.debian.org/debian/ledmon, https://github.com/intel/ledmon,4704.50675925926,35,24,0,32.0,75.0,0.0,0.0 +legit,-1.3724471458847,-0.991411721847519,-1.47831608159445,https://salsa.debian.org/python-team/packages/legit, https://github.com/frostming/legit,4465.088402777777,8,56,0,47.0,233.0,0.0,2.0 +mod_auth_openidc,0.233689192834307,2.15367312392255,-0.53433440558404,https://salsa.debian.org/debian/libapache2-mod-auth-openidc, https://github.com/zmartzone/mod_auth_openidc.git,3541.865763888889,12,50,0,46.0,138.0,0.0,41.0 +libappimage,-0.163205164932798,2.06577386190353,-0.665049391527397,https://salsa.debian.org/qt-kde-team/3rdparty/libappimage, https://github.com/AppImageCommunity/libappimage.git,1789.5842476851851,9,6,0,11.0,54.0,0.0,0.0 +attean,-1.31432812587104,1.04915138867636,-1.76050239939074,https://salsa.debian.org/perl-team/modules/packages/libattean-perl, https://github.com/kasei/attean.git,3387.9902314814813,2,10,0,9.0,20.0,0.0,0.0 +libcec,0.238272509353761,0.904107880102779,-0.0486730427124583,https://salsa.debian.org/debian/libcec, https://github.com/Pulse-Eight/libcec.git,3960.817928240741,30,52,0,62.0,729.0,0.0,2.0 +cereal,-1.00948931819713,-0.435064898922173,-1.16539003296708,https://salsa.debian.org/med-team/libcereal, https://github.com/USCiLab/cereal,3631.1027546296295,36,60,3,68.0,151.0,0.0,4.0 +CGI--Application--Dispatch,0.204830766029697,4.19690787325887,-0.984702295312001,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-dispatch-perl, https://github.com/markstos/CGI--Application--Dispatch.git,1893.6213773148147,0,9,0,8.0,9.0,0.0,0.0 +CGI-Application-Plugin-Session,-0.411967994731684,2.44107933184202,-1.16266299576573,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-plugin-session-perl, https://github.com/frioux/CGI-Application-Plugin-Session,1734.185208333333,2,2,0,2.0,1.0,0.0,0.0 +libcgroup,0.890563346465203,1.74091885188584,0.369255314773436,https://salsa.debian.org/debian/libcgroup, https://github.com/libcgroup/libcgroup,5745.328993055556,43,20,2,31.0,36.0,0.0,0.0 +libdnet,0.644763880424894,1.86458845362707,0.130309881524516,https://salsa.debian.org/debian/libdumbnet, https://github.com/ofalk/libdnet,3068.484803240741,6,20,0,16.0,42.0,0.0,0.0 +libebur128,0.40088008585891,2.50978233964462,-0.0483144637496186,https://salsa.debian.org/multimedia-team/libebur128, https://github.com/jiixyj/libebur128,3690.643993055556,1,22,0,19.0,70.0,0.0,0.0 +ejml,-1.614551829387,1.09368603757853,-2.21089769246366,https://salsa.debian.org/java-team/libejml-java, https://github.com/lessthanoptimal/ejml,5141.135856481482,14,15,0,17.0,85.0,0.0,0.0 +p5-encode,0.0933708638701565,1.25595256859913,-0.193781545898838,https://salsa.debian.org/perl-team/modules/packages/libencode-perl, https://github.com/dankogai/p5-encode.git,5752.78,4,51,0,42.0,88.0,0.0,0.0 +libepoxy,0.31005074551136,1.19263793455666,0.0363222284258477,https://salsa.debian.org/xorg-team/lib/libepoxy, https://github.com/anholt/libepoxy.git,3236.6618981481483,11,45,0,45.0,212.0,0.0,0.0 +liberasurecode,-0.483967518841599,1.19708723767758,-0.869480434759469,https://salsa.debian.org/openstack-team/libs/liberasurecode, https://github.com/openstack/liberasurecode.git,3370.559456018518,7,23,0,19.0,7.0,0.0,0.0 +perl-error.pm,1.25353236081262,3.33517180196268,0.439783519414469,https://salsa.debian.org/perl-team/modules/packages/liberror-perl, https://github.com/shlomif/perl-error.pm.git,4521.312569444444,0,3,0,2.0,3.0,0.0,0.0 +libesedb,-0.0038540303553472,1.3424306864521,-0.377785911088543,https://salsa.debian.org/pkg-security-team/libesedb, https://github.com/libyal/libesedb,2793.913912037037,0,1,0,1.0,61.0,0.0,2.0 +libesmtp,0.267762178156602,0.838808560887104,-0.0156401267251184,https://github.com/jbouse-debian/libesmtp,https://github.com/jbouse-debian/libesmtp,4730.760798611111,1,4,0,2.0,1.0,0.0,0.0 +libestr,0.258332628879804,1.27342555165452,0.0106705211624453,https://salsa.debian.org/debian/libestr, https://github.com/rsyslog/libestr.git,2916.183923611111,6,7,0,9.0,8.0,0.0,0.0 +libevent,0.767458330101706,1.67437273850519,0.314106765989667,https://salsa.debian.org/debian/libevent, https://github.com/libevent/libevent,5769.201643518519,214,125,1,240.0,0.0,0.0,6.0 +libgeotiff,0.396940251688871,2.10765394818867,-0.0842600623047565,https://salsa.debian.org/debian-gis-team/libgeotiff, https://github.com/OSGeo/libgeotiff.git,5753.8535763888885,6,17,0,21.0,54.0,0.0,0.0 +libglvnd,0.374276465436635,1.22328243606087,0.0505144955337469,https://salsa.debian.org/xorg-team/lib/libglvnd.git, https://github.com/NVIDIA/libglvnd.git,3760.105162037037,9,47,0,41.0,117.0,0.0,0.0 +libgroove,-0.571777135741541,0.938666961634202,-0.96571380352992,https://salsa.debian.org/multimedia-team/libgroove, https://github.com/andrewrk/libgroove,3739.910081018519,3,10,1,10.0,62.0,0.0,2.0 +hdf4,0.748239383063639,1.34197987839209,0.370485811228284,https://salsa.debian.org/debian-gis-team/hdf4, https://github.com/HDFGroup/hdf4.git,5770.081041666666,9,27,0,20.0,22.0,0.0,2.0 +libheif,0.775613399528957,3.75621067137824,0.0328408591685893,https://salsa.debian.org/multimedia-team/libheif, https://github.com/strukturag/libheif.git,2185.1827314814814,30,67,0,79.0,121.0,0.0,1.0 +hpptools,-2.87665838630104,-0.677760524729012,-3.31950647836083,https://salsa.debian.org/med-team/libhpptools, https://github.com/mateidavid/hpptools.git,498.7340625,0,2,0,2.0,3.0,0.0,0.0 +HTML-Clean,-0.102478302417404,1.25521046434256,-0.471169751009437,https://salsa.debian.org/perl-team/modules/packages/libhtml-clean-perl, https://github.com/poizon/HTML-Clean.git,1155.8983796296295,1,3,0,2.0,2.0,0.0,0.0 +p5-html-embedded-turtle,-2.17541433283968,0.112298262489958,-2.61526788273261,https://salsa.debian.org/perl-team/modules/packages/libhtml-embedded-turtle-perl, https://github.com/tobyink/p5-html-embedded-turtle,1183.7536805555555,0,1,0,1.0,0.0,0.0,0.0 +html-formhandler-model-dbic,-1.4203781466224,0.792742287387889,-1.85958552896419,https://salsa.debian.org/perl-team/modules/packages/libhtml-formhandler-model-dbic-perl, http://github.com/gshank/html-formhandler-model-dbic,1856.354710648148,2,11,0,0.0,0.0,0.0,0.0 +p5-html-html5-entities,-0.393461804149147,1.02420811720216,-0.653725064658302,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-entities-perl, https://github.com/tobyink/p5-html-html5-entities.git,1072.6158333333333,0,1,0,1.0,1.0,0.0,0.0 +p5-html-html5-parser,0.813759283796088,4.38318191495781,-0.351559014318549,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-parser-perl, https://github.com/tobyink/p5-html-html5-parser,4302.972141203703,1,7,0,5.0,9.0,0.0,0.0 +libhtp,0.266072693967969,2.57287542273396,-0.563805921662291,https://salsa.debian.org/pkg-suricata-team/pkg-libhtp, https://github.com/OISF/libhtp,5122.073622685185,15,26,2,25.0,31.0,0.0,0.0 +isa-l,-0.653394048788407,1.70112376762176,-1.06942987879745,https://salsa.debian.org/openstack-team/third-party/libisal, https://github.com/01org/isa-l.git,2846.483761574074,29,18,0,38.0,96.0,0.0,3.0 +libjpeg-turbo,0.820859482621495,1.66788641122997,0.371400398641128,https://salsa.debian.org/debian/libjpeg-turbo/, https://github.com/libjpeg-turbo/libjpeg-turbo,5541.39431712963,44,10,2,41.0,501.0,0.0,0.0 +p5-JSON-WebToken,-0.164458058090736,1.95655131027631,-0.587354272850704,https://salsa.debian.org/perl-team/modules/packages/libjson-webtoken-perl, https://github.com/xaicron/p5-JSON-WebToken.git,993.786898148148,0,6,0,2.0,16.0,0.0,0.0 +p5-kavorka,-1.11585996763189,1.8699475451297,-1.89199456930478,https://salsa.debian.org/perl-team/modules/packages/libkavorka-perl, https://github.com/tobyink/p5-kavorka,2218.7228703703704,0,8,0,5.0,29.0,0.0,0.0 +p5-latex-table,-0.702086297129157,0.799707357714388,-0.984846791567085,https://salsa.debian.org/perl-team/modules/packages/liblatex-table-perl, https://github.com/lima1/p5-latex-table.git,556.2399421296296,0,2,0,1.0,0.0,0.0,0.0 +liblbfgs,-0.145960614894419,2.02556666116268,-0.619470975215262,https://salsa.debian.org/science-team/liblbfgs, https://github.com/chokkan/liblbfgs,5534.061076388889,8,10,0,13.0,32.0,0.0,0.0 +p5-lexical-underscore,-0.120859387545148,2.79686256168409,-0.887693708969588,https://salsa.debian.org/perl-team/modules/packages/liblexical-underscore-perl, https://github.com/tobyink/p5-lexical-underscore,2933.2191203703705,0,1,0,1.0,4.0,0.0,0.0 +liblognorm,0.901258510213782,2.3010415095011,0.305197545078125,https://salsa.debian.org/debian/liblognorm, https://github.com/rsyslog/liblognorm.git,4686.832627314815,7,31,0,23.0,111.0,0.0,0.0 +libmateweather,0.128483049500496,0.843121277026433,-0.0753011191462626,https://salsa.debian.org/debian-mate-team/libmateweather, https://github.com/mate-desktop/libmateweather.git,4345.310983796297,19,32,0,32.0,92.0,0.0,0.0 +libmaxminddb,0.507537573132591,2.42545832102211,-0.0148146150229747,https://salsa.debian.org/debian/libmaxminddb, https://github.com/maxmind/libmaxminddb,3984.239363425926,21,43,0,49.0,64.0,0.0,0.0 +method-signatures,-1.14136491139725,1.16679643969596,-1.64399707809497,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-perl, https://github.com/evalEmpire/method-signatures.git,4206.615393518518,3,21,0,18.0,41.0,0.0,1.0 +miglayout,0.0140581374771789,1.09613156382052,-0.220031450088049,https://salsa.debian.org/java-team/libmiglayout-java, https://github.com/mikaelgrev/miglayout,3114.6859375,4,24,0,17.0,57.0,0.0,0.0 +libminc,-0.243119939861725,0.955874211783971,-0.587717590228797,https://salsa.debian.org/med-team/libminc, https://github.com/BIC-MNI/libminc.git,5746.54113425926,3,34,0,18.0,29.0,0.0,0.0 +libmodbus,0.408134893807505,2.01019673867031,-0.0931762570860086,https://salsa.debian.org/debian/libmodbus, https://github.com/stephane/libmodbus.git,5746.532118055556,58,15,0,55.0,615.0,0.0,25.0 +moosex-compiletime-traits,-1.56539634235995,0.993312289213515,-2.19979313657871,https://salsa.debian.org/perl-team/modules/packages/libmoosex-compiletime-traits-perl, https://github.com/nperez/moosex-compiletime-traits.git,0.0730787037037037,0,1,0,0.0,0.0,0.0,0.0 +MooseX-MultiInitArg,-1.07075403800779,1.08359021531156,-1.50429883320762,https://salsa.debian.org/perl-team/modules/packages/libmoosex-multiinitarg-perl, https://github.com/frodwith/MooseX-MultiInitArg.git,0.0628703703703703,0,1,0,1.0,0.0,0.0,0.0 +p5-moosex-mungehas,-1.70546876689832,0.655108435501916,-2.14891721186836,https://salsa.debian.org/perl-team/modules/packages/libmoosex-mungehas-perl, https://github.com/tobyink/p5-moosex-mungehas,2044.5397800925923,1,6,0,4.0,6.0,0.0,0.0 +MooseX-Runnable,-1.57702227549819,1.133906618023,-2.34984169515277,https://salsa.debian.org/perl-team/modules/packages/libmoosex-runnable-perl, https://github.com/moose/MooseX-Runnable,3541.979409722222,1,4,0,4.0,4.0,0.0,0.0 +p5-moosex-xsaccessor,-1.79699308442664,0.622199589416262,-2.23744643503494,https://salsa.debian.org/perl-team/modules/packages/libmoosex-xsaccessor-perl, https://github.com/tobyink/p5-moosex-xsaccessor,3461.6608333333334,0,1,0,1.0,1.0,0.0,0.0 +p5-moox-cmd,-1.7714724432288,0.738963510092576,-2.32872240205211,https://salsa.debian.org/perl-team/modules/packages/libmoox-cmd-perl, https://github.com/Getty/p5-moox-cmd,2141.9085532407407,4,4,0,7.0,9.0,0.0,0.0 +p5-moox-struct,1.10039987401157,4.72686382350317,0.0231138941776421,https://salsa.debian.org/perl-team/modules/packages/libmoox-struct-perl, https://github.com/tobyink/p5-moox-struct,3679.923703703704,1,2,0,2.0,4.0,0.0,0.0 +MooX-Types-MooseLike,0.218848728689155,2.42762361856221,-0.234182987751775,https://salsa.debian.org/perl-team/modules/packages/libmoox-types-mooselike-perl, https://github.com/mateu/MooX-Types-MooseLike.git,1382.058888888889,0,16,0,12.0,20.0,0.0,0.0 +p5-MouseX-NativeTraits,0.451797091997329,3.5585079183273,-0.263225295656509,https://salsa.debian.org/perl-team/modules/packages/libmousex-nativetraits-perl, https://github.com/gfx/p5-MouseX-NativeTraits.git,1010.1283101851852,1,4,0,2.0,2.0,0.0,0.0 +p5-mousex-types,-0.900205922839208,2.42810979063714,-1.61943954243828,https://salsa.debian.org/perl-team/modules/packages/libmousex-types-perl, https://github.com/yappo/p5-mousex-types.git,984.7711226851852,0,8,0,2.0,5.0,0.0,0.0 +libmpdclient,0.208556036170561,1.35645743401925,-0.117616723392847,https://salsa.debian.org/mpd-team/libmpdclient, https://github.com/MusicPlayerDaemon/libmpdclient,5726.394375,18,26,0,31.0,41.0,0.0,0.0 +libofx,0.203415025551932,0.653272225742778,-0.0343613081078379,https://salsa.debian.org/debian/libofx, https://github.com/libofx/libofx,5174.00625,8,16,0,16.0,48.0,0.0,0.0 +OpenHMD,0.112794501368179,1.85484744498208,-0.282535510006274,https://salsa.debian.org/debian/libopenhmd, https://github.com/OpenHMD/OpenHMD,3515.787395833333,18,41,1,36.0,258.0,0.0,18.0 +Pandoc-Elements,-1.21783057618553,1.30668908266884,-1.79049682798129,https://salsa.debian.org/perl-team/modules/packages/libpandoc-elements-perl, https://github.com/nichtich/Pandoc-Elements.git,2600.5557175925924,2,3,0,3.0,9.0,0.0,2.0 +Pandoc-Wrapper,-1.19135788130824,0.89729950689738,-1.72623996968284,https://salsa.debian.org/perl-team/modules/packages/libpandoc-wrapper-perl, https://github.com/nichtich/Pandoc-Wrapper.git,1879.241203703704,2,4,0,5.0,16.0,0.0,0.0 +params-callbackrequest,-1.31550870573202,0.99706337577361,-1.76036509087965,https://salsa.debian.org/perl-team/modules/packages/libparams-callbackrequest-perl, https://github.com/theory/params-callbackrequest.git,1199.2313657407408,0,2,0,1.0,0.0,0.0,0.0 +Params-Util,0.566955724813384,2.70954090245678,0.0183304164838642,https://salsa.debian.org/perl-team/modules/packages/libparams-util-perl, https://github.com/perl5-utils/Params-Util,4635.891793981482,2,6,0,2.0,5.0,0.0,0.0 +parse-cpan-packages,-1.31626232375911,0.055729797966772,-1.59309729542018,https://salsa.debian.org/perl-team/modules/packages/libparse-cpan-packages-perl, https://github.com/wchristian/parse-cpan-packages,2213.1126273148147,1,3,0,4.0,6.0,0.0,0.0 +Parse-Method-Signatures,-0.309867542069825,2.15208921006351,-0.785793049099757,https://salsa.debian.org/perl-team/modules/packages/libparse-method-signatures-perl, https://github.com/ashb/Parse-Method-Signatures.git,3028.8479166666666,2,10,0,8.0,5.0,0.0,0.0 +perl-Parse-Netstat,-1.29015063053148,0.970774796110696,-1.71793362412929,https://salsa.debian.org/perl-team/modules/packages/libparse-netstat-perl, https://github.com/perlancar/perl-Parse-Netstat.git,4083.673275462963,0,11,0,2.0,0.0,0.0,0.0 +Parse-RecDescent,-0.0286467306167016,0.222989520591922,-0.100758265549273,https://salsa.debian.org/perl-team/modules/packages/libparse-recdescent-perl, https://github.com/jtbraun/Parse-RecDescent.git,2082.355324074074,1,5,0,2.0,7.0,0.0,0.0 +perl-pdf-report,-1.14074757109425,-0.731778311715835,-1.23468142917503,https://salsa.debian.org/perl-team/modules/packages/libpdf-report-perl, https://github.com/hashbangperl/perl-pdf-report.git,159.71844907407407,0,1,0,1.0,2.0,0.0,0.0 +PDL-IO-Matlab,-1.81228967460159,0.355857099453331,-2.23707614220522,https://salsa.debian.org/perl-team/modules/packages/libpdl-io-matlab-perl, https://github.com/jlapeyre/PDL-IO-Matlab.git,3358.424490740741,1,2,0,2.0,4.0,0.0,0.0 +perl-Perinci-Sub-Normalize,-2.93277311063399,-0.9162267093382,-3.32015234012257,https://salsa.debian.org/perl-team/modules/packages/libperinci-sub-normalize-perl, https://github.com/perlancar/perl-Perinci-Sub-Normalize.git,3147.5333564814814,0,11,0,2.0,0.0,0.0,0.0 +p5-perlx-assert,-1.01934466047357,1.54250325326684,-1.83623953186436,https://salsa.debian.org/perl-team/modules/packages/libperlx-assert-perl, https://github.com/tobyink/p5-perlx-assert,1111.6440162037038,0,1,0,1.0,1.0,0.0,0.0 +p5-perlx-define,-2.16783373442172,0.0459215724713869,-2.61318748907828,https://salsa.debian.org/perl-team/modules/packages/libperlx-define-perl, https://github.com/tobyink/p5-perlx-define,0.0109259259259259,0,1,0,1.0,1.0,0.0,0.0 +libplist,0.289015166776717,0.775133036116656,0.068106780994937,https://salsa.debian.org/imobiledevice-team/libplist, https://github.com/libimobiledevice/libplist.git,5614.0678125,41,20,0,42.0,98.0,0.0,0.0 +libpng,0.167799069543427,0.425794845256693,0.0473446326901783,https://salsa.debian.org/debian/libpng1.6, https://github.com/glennrp/libpng,5354.109710648148,66,26,0,71.0,29.0,0.0,1.0 +quazip,0.214683832263677,0.928495304943016,-0.0650262980618335,https://salsa.debian.org/debian/libquazip, https://github.com/stachenov/quazip.git,5295.494409722222,19,25,0,36.0,147.0,0.0,0.0 +rabbitmq-c,0.593745062359984,2.32387036057243,-0.0094513192695831,https://salsa.debian.org/debian/librabbitmq, https://github.com/alanxz/rabbitmq-c.git,5294.536018518518,63,49,0,77.0,513.0,0.0,0.0 +librarian-puppet,-1.4485786469275,-0.125606368535378,-1.8632545720475,https://salsa.debian.org/ruby-team/librarian-puppet, https://github.com/voxpupuli/librarian-puppet.git,4114.136493055556,12,65,0,51.0,102.0,0.0,0.0 +p5-rdf-trinex-functions,-0.315431914346714,2.33788799662413,-0.970401834060701,https://salsa.debian.org/perl-team/modules/packages/librdf-trinex-functions-perl, https://github.com/tobyink/p5-rdf-trinex-functions,833.4788657407407,0,1,0,1.0,0.0,0.0,0.0 +p5-rdf-vcard,-1.15066512586346,1.24412369110821,-1.59125342283554,https://salsa.debian.org/perl-team/modules/packages/librdf-vcard-perl, https://github.com/tobyink/p5-rdf-vcard,1350.944537037037,0,1,0,1.0,3.0,0.0,0.0 +re-engine-RE2,0.0664274847396321,1.55193350010968,-0.198667675011369,https://salsa.debian.org/perl-team/modules/packages/libre-engine-re2-perl, https://github.com/dgl/re-engine-RE2.git,4711.615763888889,4,2,0,5.0,11.0,0.0,0.0 +Regexp-Assemble,0.195651968063539,1.19755563449001,-0.0657051087984686,https://salsa.debian.org/perl-team/modules/packages/libregexp-assemble-perl, https://github.com/ronsavage/Regexp-Assemble.git,3022.017534722222,1,7,0,6.0,10.0,0.0,0.0 +Regexp--Common,0.42540296397963,2.68468982073041,-0.0434398168509383,https://salsa.debian.org/perl-team/modules/packages/libregexp-common-perl, https://github.com/Abigail/Regexp--Common.git,2712.181608796296,4,1,0,3.0,10.0,0.0,0.0 +libregf,0.481511040301647,3.42738106553395,-0.319252191121083,https://salsa.debian.org/pkg-security-team/libregf, https://github.com/libyal/libregf,3351.514375,0,1,0,1.0,10.0,0.0,2.0 +librelp,0.331461248363428,2.04719168057569,-0.184877794774594,https://salsa.debian.org/debian/librelp, https://github.com/rsyslog/librelp,5591.54369212963,9,32,1,25.0,70.0,0.0,0.0 +libreswan,-0.468528979949208,0.17905881692428,-0.73359880118435,https://salsa.debian.org/debian/libreswan, https://github.com/libreswan/libreswan.git,5780.147326388889,145,62,0,96.0,291.0,0.0,0.0 +rose,-0.590179077630734,0.761308719744224,-0.8838877592536,https://salsa.debian.org/perl-team/modules/packages/librose-db-object-perl, https://github.com/siracusa/rose.git,5666.525416666666,1,13,0,5.0,15.0,0.0,1.0 +librsync,1.05364499118674,2.25312785926588,0.417288831582171,https://salsa.debian.org/wrar/librsync, https://github.com/librsync/librsync,3224.9778472222224,6,27,0,28.0,97.0,0.0,0.0 +libsamplerate,1.12937689080289,2.27007675196493,0.518954842209819,https://salsa.debian.org/multimedia-team/libsamplerate, https://github.com/libsndfile/libsamplerate,5747.222685185186,38,5,1,34.0,55.0,0.0,0.0 +libsass-python,-0.269652251690511,0.827170955232116,-0.602722913780549,https://salsa.debian.org/debian/libsass-python, https://github.com/dahlia/libsass-python.git,4268.975092592593,7,93,0,77.0,129.0,0.0,0.0 +libseccomp,0.138136934743396,0.416274215040392,0.0228352342733521,https://salsa.debian.org/debian/libseccomp, https://github.com/seccomp/libseccomp,4323.21394675926,71,4,2,57.0,206.0,0.0,1.0 +libserial,-1.10101782832275,1.68672096291128,-1.69819267118978,https://salsa.debian.org/debian/libserial, https://github.com/crayzeewulf/libserial.git,5587.681122685185,3,17,0,12.0,68.0,0.0,2.0 +libsigcplusplus,1.03968231597484,2.0456143836956,0.511724918345553,https://salsa.debian.org/gnome-team/libsigcplusplus, https://github.com/libsigcplusplus/libsigcplusplus.git,5770.937280092593,22,19,0,30.0,50.0,0.0,0.0 +smali,0.0513698279716944,1.85684354094995,-0.330648560215714,https://salsa.debian.org/android-tools-team/libsmali-java, https://github.com/JesusFreke/smali,4709.844421296296,28,24,0,34.0,365.0,0.0,10.0 +libsoundio,0.710235067583084,3.66504485327093,-0.205080147087698,https://salsa.debian.org/debian-hamradio-team/libsoundio, https://github.com/andrewrk/libsoundio.git,3080.119837962963,16,23,0,26.0,120.0,0.0,4.0 +libspiro,0.13157913198492,1.39927804826189,-0.190686667372893,https://salsa.debian.org/fonts-team/libspiro, https://github.com/fontforge/libspiro.git,4925.179953703704,1,10,0,7.0,21.0,0.0,0.0 +spreadsheet-parseexcel,0.039004450407711,0.809471237179452,-0.182726847126768,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-parseexcel-perl, https://github.com/runrig/spreadsheet-parseexcel.git,1902.0376851851847,1,6,0,6.0,33.0,0.0,0.0 +spreadsheet-writeexcel,-0.0847103731517616,0.31001256224266,-0.187134263215803,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-writeexcel-perl, https://github.com/jmcnamara/spreadsheet-writeexcel,5025.7453819444445,1,5,0,5.0,0.0,0.0,1.0 +libssh2,0.476244074845198,1.24659429011417,0.144224777926035,https://salsa.debian.org/debian/libssh2, https://github.com/libssh2/libssh2,5758.776932870371,166,33,1,147.0,60.0,0.0,1.0 +libStatGen,-0.975335451044937,0.482042938887889,-1.32090801317275,https://salsa.debian.org/med-team/libstatgen, https://github.com/statgen/libStatGen,3791.9891319444446,4,17,0,10.0,34.0,0.0,0.0 +statistics--basic,-0.339509547993508,1.39607587169907,-0.630362081510994,https://salsa.debian.org/perl-team/modules/packages/libstatistics-basic-perl, https://github.com/jettero/statistics--basic,2331.8967939814816,1,4,0,2.0,4.0,0.0,0.0 +stb,0.0260953724531321,0.614834906953147,-0.133211897146833,https://salsa.debian.org/yangfl-guest/stb, https://github.com/nothings/stb,3489.7656944444443,45,185,0,183.0,533.0,0.0,0.0 +p5-String-Diff,-1.34559518707804,1.09068337241926,-1.899896390879,https://salsa.debian.org/perl-team/modules/packages/libstring-diff-perl, https://github.com/yappo/p5-String-Diff.git,2495.2807060185187,0,3,0,2.0,16.0,0.0,0.0 +string-mkpasswd,-0.490179702199432,1.40583395094041,-0.857343824637964,https://salsa.debian.org/perl-team/modules/packages/libstring-mkpasswd-perl, https://github.com/sirhc/string-mkpasswd.git,1997.676805555556,0,4,0,2.0,7.0,0.0,0.0 +Switch,1.12202729103399,3.28760878753767,0.290994220711003,https://salsa.debian.org/perl-team/modules/packages/libswitch-perl, https://github.com/chorny/Switch.git,4065.2442592592593,3,4,0,4.0,3.0,0.0,0.0 +Sys-Filesystem,-1.11204170749058,0.37036832353233,-1.54934801292139,https://salsa.debian.org/perl-team/modules/packages/libsys-filesystem-perl, https://github.com/rehsack/Sys-Filesystem,4021.0829050925927,2,3,0,2.0,3.0,0.0,0.0 +CPAN-Sys-Info-Base,-1.16573546354465,0.246937597250091,-1.45478961359389,https://salsa.debian.org/perl-team/modules/packages/libsys-info-base-perl, https://github.com/burak/CPAN-Sys-Info-Base.git,4472.814664351852,0,2,0,1.0,2.0,0.0,0.0 +tabixpp,-0.560941827851746,1.56818648992766,-0.9903141087334,https://salsa.debian.org/med-team/libtabixpp, https://github.com/ekg/tabixpp.git,4263.766006944445,1,12,0,9.0,27.0,0.0,0.0 +libteam,0.314611539581196,1.31197435368163,0.0101461880627549,https://salsa.debian.org/debian/libteam, https://github.com/jpirko/libteam,4358.826863425926,40,5,0,31.0,78.0,0.0,3.0 +TermReadKey,0.64417573125593,1.67251344948729,0.175743137768552,https://salsa.debian.org/perl-team/modules/packages/libterm-readkey-perl, https://github.com/jonathanstowe/TermReadKey.git,4734.95707175926,8,17,0,18.0,40.0,0.0,0.0 +Term-Table,-0.950532737222555,1.40377640957523,-1.39063712096877,https://salsa.debian.org/perl-team/modules/packages/libterm-table-perl, https://github.com/exodist/Term-Table.git,2498.9135185185187,1,5,0,5.0,16.0,0.0,0.0 +Test-Harness,-1.5063742806525,-0.254147939098168,-1.8715013961377,https://salsa.debian.org/perl-team/modules/packages/libtest-harness-perl, https://github.com/Perl-Toolchain-Gang/Test-Harness.git,5734.110335648148,27,47,0,51.0,97.0,0.0,2.0 +URI,0.158952991942081,0.48321946010236,0.0298109636995746,https://salsa.debian.org/perl-team/modules/packages/liburi-perl, https://github.com/libwww-perl/URI.git,5620.904293981482,27,14,0,37.0,89.0,0.0,1.0 +libusbmuxd,0.728920628416698,2.70868070142804,0.107294524138199,https://salsa.debian.org/imobiledevice-team/libusbmuxd, https://github.com/libimobiledevice/libusbmuxd.git,3636.013275462963,9,9,0,14.0,171.0,0.0,0.0 +libvslvm,0.497213218161358,3.57527486868103,-0.306518703278772,https://salsa.debian.org/pkg-security-team/libvslvm, https://github.com/libyal/libvslvm,3338.937025462963,0,1,0,1.0,10.0,0.0,2.0 +p5-web-id,-1.7090564745837,0.894193684686225,-2.3119612886226,https://salsa.debian.org/perl-team/modules/packages/libweb-id-perl, https://github.com/tobyink/p5-web-id,743.3495023148148,0,1,0,1.0,1.0,0.0,0.0 +libwfut,-0.372293282701199,1.18246535899408,-1.03733165160998,https://salsa.debian.org/games-team/libwfut, https://github.com/worldforge/libwfut,5568.697824074074,0,9,0,6.0,3.0,0.0,0.0 +libwmf,1.63753191040568,2.69003305309751,0.986051196992878,https://salsa.debian.org/yangfl-guest/libwmf, https://github.com/caolanm/libwmf,1783.8275231481482,5,6,0,8.0,12.0,0.0,0.0 +perl-wfa,-1.3338913452864,0.342460716630254,-1.62814934844314,https://salsa.debian.org/perl-team/modules/packages/libwww-facebook-api-perl, https://github.com/unobe/perl-wfa.git,3078.4910185185186,2,7,0,4.0,7.0,0.0,0.0 +p5-www-finger,-1.96923567900972,0.395689920654101,-2.56874456647902,https://salsa.debian.org/perl-team/modules/packages/libwww-finger-perl, https://github.com/tobyink/p5-www-finger,1316.1418171296295,0,1,0,1.0,0.0,0.0,0.0 +www-google-calculator-perl,-1.99576703095823,-0.963482599047058,-2.15653356267234,https://salsa.debian.org/perl-team/modules/packages/libwww-google-calculator-perl, https://github.com/typester/www-google-calculator-perl.git,8.980289351851852,0,2,0,1.0,1.0,0.0,0.0 +libx86emu,0.288262171315658,2.15102947652694,-0.118770099396324,https://salsa.debian.org/debian/libx86emu, https://github.com/wfeldt/libx86emu,5028.251597222222,1,8,0,5.0,16.0,0.0,1.0 +libxcrypt,0.62943363014046,1.89179728992148,0.11007174185628,https://salsa.debian.org/md/libxcrypt, https://github.com/besser82/libxcrypt.git,2976.005405092593,9,14,0,21.0,95.0,0.0,0.0 +libxmlb,0.650849534492999,3.3286264453169,-0.0130638591028841,https://salsa.debian.org/efi-team/libxmlb, https://github.com/hughsie/libxmlb.git,1900.0449074074077,20,6,0,18.0,36.0,0.0,0.0 +libxsmm,-0.234662432578352,4.55837802448133,-1.79577149510859,https://salsa.debian.org/science-team/libxsmm, https://github.com/libxsmm/libxsmm,2814.5005324074077,23,91,3,47.0,120.0,0.0,3.0 +xstream,0.340048724522918,1.45089929987566,-0.0600865184240221,https://salsa.debian.org/java-team/libxstream-java, https://github.com/x-stream/xstream.git,5706.99619212963,29,7,0,35.0,375.0,0.0,0.0 +light,0.503298554569783,2.41968846307355,-0.311547499433087,https://salsa.debian.org/debian/light, https://github.com/haikarainen/light.git,3160.160011574074,4,28,0,25.0,51.0,0.0,0.0 +light-locker,2.03026908755181,3.66409652897077,1.14287825499577,https://salsa.debian.org/xfce-extras-team/light-locker, https://github.com/the-cavalry/light-locker,4227.149664351852,82,214,2,128.0,275.0,0.0,0.0 +lightdm,2.24439750372144,2.94460105712629,1.73977769640998,https://salsa.debian.org/xfce-extras-team/lightdm, https://github.com/canonical/lightdm.git,4834.544722222222,52,64,0,73.0,415.0,0.0,0.0 +linux-minidisc,-0.963187260401244,1.83871334132017,-1.63781202078042,https://github.com/glaubitz/linux-minidisc,https://github.com/glaubitz/linux-minidisc,4847.712349537037,36,17,0,20.0,3.0,0.0,0.0 +linux_logo,3.61684272086543,4.85023829471809,2.81240573249716,https://salsa.debian.org/debian/linuxlogo, https://github.com/deater/linux_logo.git,3761.554039351852,1,11,0,8.0,26.0,0.0,0.0 +LiTL,-1.91266501331196,-1.56715868838349,-1.99003495396425,https://salsa.debian.org/debian/litl, https://github.com/trahay/LiTL.git,3099.00931712963,0,7,0,3.0,1.0,0.0,0.0 +lksctp-tools,0.0452198517664519,0.369575017349271,-0.0618537573973216,https://salsa.debian.org/debian/lksctp-tools, https://github.com/sctp/lksctp-tools,5515.820891203704,27,6,1,22.0,37.0,0.0,1.0 +llgal,-0.387269262559881,0.415121675912753,-0.684317591398372,https://github.com/bgoglin/llgal,https://github.com/bgoglin/llgal,4534.944421296296,2,4,0,1.0,11.0,0.0,0.0 +lltag,0.0467559810024722,1.49042156652433,-0.450526954857352,https://github.com/bgoglin/lltag,https://github.com/bgoglin/lltag,4379.026932870371,3,3,0,2.0,9.0,0.0,0.0 +lmodern,0.188486638396719,0.551045642136008,0.018815822262696,https://github.com/debian-tex/lmodern,https://github.com/debian-tex/lmodern,5129.20318287037,1,7,0,2.0,1.0,0.0,0.0 +lnav,0.535366725615169,1.93420819992393,-0.0323395042149713,https://salsa.debian.org/carnil/lnav, https://github.com/tstack/lnav,5194.156064814815,17,59,0,51.0,384.0,0.0,4.0 +logging-log4cxx,0.434636355818473,1.60025020268066,-0.0917843487399783,https://salsa.debian.org/debian/log4cxx, https://github.com/apache/logging-log4cxx.git,3632.702222222222,22,27,0,28.0,7.0,0.0,0.0 +logbook,-0.489632469534676,1.33039798258088,-1.05130674142605,https://salsa.debian.org/debian/logbook, https://github.com/getlogbook/logbook.git,4893.891782407408,11,77,0,65.0,189.0,0.0,0.0 +logging_tree,-1.64142645592676,0.777789823714024,-2.28134788645632,https://salsa.debian.org/debian/python-logging-tree, https://github.com/brandon-rhodes/logging_tree.git,3349.126053240741,5,7,0,10.0,25.0,0.0,0.0 +redis-lua,-0.399556283887543,2.3401321655893,-1.06790409637091,https://salsa.debian.org/lua-team/lua-redis, https://github.com/nrk/redis-lua,2064.011689814815,2,10,0,8.0,80.0,0.0,0.0 +lxctl,1.45646558604501,5.0051312043978,0.180488606033576,https://salsa.debian.org/debian/lxctl, https://github.com/lxctl/lxctl,2540.4811342592598,0,29,1,12.0,21.0,0.0,5.0 +lxde-icon-theme,0.342003694645246,2.55208710000447,-0.0935522829292904,https://salsa.debian.org/lxde-team/lxde-icon-theme, https://github.com/lxde/lxde-icon-theme,1739.474375,0,4,0,3.0,0.0,0.0,0.0 +lxhotkey,1.14102919115354,4.81449105540165,0.0876782474082915,https://salsa.debian.org/lxde-team/lxhotkey, https://github.com/lxde/lxhotkey.git,2759.3632291666668,8,4,0,8.0,27.0,0.0,0.0 +lxinput,0.755510666725437,3.03386810336789,0.062981082023255,https://salsa.debian.org/lxde-team/lxinput, https://github.com/lxde/lxinput.git,5254.87707175926,78,26,0,55.0,0.0,0.0,0.0 +lxqt-globalkeys,0.234799198637964,1.82045556065656,-0.142166441910379,https://salsa.debian.org/lxqt-team/lxqt-globalkeys, https://github.com/lxqt/lxqt-globalkeys.git,4146.0372916666665,56,46,0,78.0,0.0,0.0,0.0 +lxqt-openssh-askpass,0.263970158559498,2.05588498205914,-0.140326344539553,https://salsa.debian.org/lxqt-team/lxqt-openssh-askpass, https://github.com/lxqt/lxqt-openssh-askpass.git,4154.121712962963,34,30,0,50.0,29.0,0.0,0.0 +lz4,0.214060043897775,0.695442545279082,0.0384684269486966,https://salsa.debian.org/debian/lz4, https://github.com/lz4/lz4,3549.313703703704,30,172,0,147.0,393.0,0.0,5.0 +mako,0.960719582397292,2.31529039889597,0.33001258469853,https://salsa.debian.org/python-team/packages/mako, https://github.com/sqlalchemy/mako,5744.8817476851855,23,45,7,53.0,64.0,0.0,6.0 +variant,0.159782488028084,3.73150235766917,-0.683023326646699,https://salsa.debian.org/debian-gis-team/mapbox-variant/, https://github.com/mapbox/variant.git,2484.921168981481,4,25,0,18.0,52.0,0.0,1.0 +mapcache,-0.684949705198006,1.47757934778588,-1.11970494702512,https://salsa.debian.org/debian-gis-team/mapcache, https://github.com/mapserver/mapcache.git,4429.841377314815,24,38,0,33.0,160.0,0.0,2.0 +mate-common,0.223678176507707,1.54414536153937,-0.293694110246264,https://salsa.debian.org/debian-mate-team/mate-common, https://github.com/mate-desktop/mate-common.git,4289.534803240741,4,19,0,14.0,26.0,0.0,0.0 +mate-control-center,0.442807421980527,1.12679136221291,0.0858727450082411,https://salsa.debian.org/debian-mate-team/mate-control-center, https://github.com/mate-desktop/mate-control-center.git,4382.2688194444445,31,51,0,48.0,319.0,0.0,0.0 +mate-desktop,1.44296788737532,2.80037997597155,0.70486245484052,https://salsa.debian.org/debian-mate-team/mate-desktop, https://github.com/mate-desktop/mate-desktop.git,4339.321481481482,30,45,0,44.0,57.0,0.0,0.0 +dock-applet,0.388198243486174,2.24017612378218,-0.168832256910442,https://salsa.debian.org/debian-mate-team/mate-dock-applet, https://github.com/robint99/dock-applet.git,2711.5333680555555,9,12,0,13.0,168.0,0.0,0.0 +mate-icon-theme,0.408788959650741,2.4988457725781,-0.0552126550202363,https://salsa.debian.org/debian-mate-team/mate-icon-theme, https://github.com/mate-desktop/mate-icon-theme.git,3997.7458217592593,7,25,0,19.0,36.0,0.0,0.0 +mate-icon-theme-faenza,0.514243119126678,2.382927977142,-0.0287099151335426,https://salsa.debian.org/debian-mate-team/mate-icon-theme-faenza, https://github.com/mate-desktop/mate-icon-theme-faenza.git,2081.9641898148147,2,15,0,10.0,19.0,0.0,0.0 +mate-netbook,-0.199073949842394,0.92545310996885,-0.554797791463361,https://salsa.debian.org/debian-mate-team/mate-netbook, https://github.com/mate-desktop/mate-netbook.git,4033.464398148148,4,20,0,14.0,35.0,0.0,0.0 +mate-notification-daemon,0.294431484031301,1.24436807189306,-0.0375475363387423,https://salsa.debian.org/debian-mate-team/mate-notification-daemon, https://github.com/mate-desktop/mate-notification-daemon.git,4376.807546296296,19,34,0,34.0,136.0,0.0,0.0 +mate-polkit,0.0844204987337219,0.713992810816739,-0.078912061978415,https://salsa.debian.org/debian-mate-team/mate-polkit, https://github.com/mate-desktop/mate-polkit.git,4293.10457175926,9,23,0,18.0,42.0,0.0,0.0 +mate-settings-daemon,0.181564698272329,0.720310989304527,-0.0328315734046171,https://salsa.debian.org/debian-mate-team/mate-settings-daemon, https://github.com/mate-desktop/mate-settings-daemon.git,4342.233842592593,28,45,0,46.0,189.0,0.0,0.0 +selinux,-1.91818820413407,-0.141660999188383,-2.3390148470373,https://salsa.debian.org/selinux-team/mcstrans, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 +mdbtools,0.616187103930455,1.18076583165645,0.230286418237037,https://salsa.debian.org/debian/mdbtools, https://github.com/mdbtools/mdbtools,4863.403715277777,30,60,0,60.0,195.0,0.0,0.0 +mdk4,-0.0590321421912508,2.24456697700196,-0.680856667184963,https://salsa.debian.org/pkg-security-team/mdk4, https://github.com/aircrack-ng/mdk4,1545.4045949074075,4,9,0,11.0,96.0,0.0,0.0 +metapixel,1.79702344778106,4.41782598994729,0.563322363384867,https://salsa.debian.org/debian/metapixel, https://github.com/schani/metapixel.git,3264.761817129629,2,6,0,4.0,25.0,0.0,0.0 +metastore,-0.459726172690202,0.646632395611397,-0.810779207195689,https://salsa.debian.org/rfrancoise/metastore, https://github.com/przemoc/metastore,5431.933668981482,7,2,1,8.0,30.0,0.0,2.0 +meteo-qt,0.869889977667463,3.6161721459482,0.0040074202395827,https://salsa.debian.org/lxqt-team/meteo-qt, https://github.com/dglent/meteo-qt.git,3275.9305092592595,3,17,0,16.0,53.0,0.0,0.0 +Mew,-0.487761537022205,-0.351401006093774,-0.554001035971023,https://salsa.debian.org/debian/mew, https://github.com/kazu-yamamoto/Mew,5007.02537037037,7,24,0,25.0,45.0,0.0,0.0 +Mew,-0.838883032339622,-0.126045926352852,-1.02709151030907,https://salsa.debian.org/debian/mew-beta, https://github.com/kazu-yamamoto/Mew,5007.02537037037,7,24,0,25.0,45.0,0.0,0.0 +mg,0.862684228253274,2.0640170713542,0.214871894355539,https://salsa.debian.org/debian/mg, https://github.com/hboetes/mg.git,2838.976851851852,3,9,0,3.0,25.0,0.0,0.0 +mhc,-0.88840004575251,-0.359527401389474,-1.1575003779866,https://salsa.debian.org/debian/mhc, https://github.com/yoshinari-nomura/mhc,4808.16199074074,0,12,0,8.0,12.0,0.0,0.0 +mhwaveedit,-0.0845847669306184,0.951786472716011,-0.420069015469674,https://salsa.debian.org/multimedia-team/mhwaveedit, https://github.com/magnush/mhwaveedit,4171.932430555556,3,7,0,6.0,15.0,0.0,0.0 +micro-httpd,-0.330007447411277,1.11607346113566,-0.930828308402008,https://github.com/sudipm-mukherjee/micro-httpd.git,https://github.com/sudipm-mukherjee/micro-httpd.git,4120.394328703704,0,4,0,1.0,1.0,0.0,0.0 +MilkyTracker,0.29279524758236,1.35912696404642,-0.166143774088807,https://salsa.debian.org/multimedia-team/milkytracker, https://github.com/milkytracker/MilkyTracker,5764.145347222222,35,32,1,44.0,68.0,0.0,5.0 +miller,-0.648596299880895,1.14533731304417,-1.02246180627076,https://salsa.debian.org/debian/miller, https://github.com/johnkerl/miller.git,3146.11875,32,28,0,52.0,128.0,0.0,1.0 +mimetic,-1.05697671413754,-0.895264369818561,-1.09637233893038,https://git.toastfreeware.priv.at/debian/mimetic.git, https://github.com/tat/mimetic.git,2612.777962962963,3,10,0,8.0,26.0,0.0,0.0 +Minder,-0.419716825135906,2.10055622351027,-0.963291941351267,https://salsa.debian.org/yangfl-guest/Minder, https://github.com/phase1geo/Minder.git,2148.0431712962964,20,27,0,36.0,96.0,0.0,1.0 +minimodem,-0.325041577254677,2.13601189316823,-0.85629761692059,https://github.com/kamalmostafa/minimodem,https://github.com/kamalmostafa/minimodem,3742.168703703704,10,6,0,12.0,71.0,0.0,0.0 +mininet,-0.586251106977904,1.26930234292827,-1.22593537457966,https://salsa.debian.org/debian/mininet, https://github.com/mininet/mininet,5029.987777777777,22,77,1,61.0,58.0,0.0,97.0 +mootools-core,0.74718931277172,2.85606058592291,0.0458469775404697,https://salsa.debian.org/js-team/mootools, https://github.com/mootools/mootools-core.git,2900.105266203704,27,88,0,63.0,54.0,0.0,136.0 +mopidy-internetarchive,-0.218733779096679,2.30887033545798,-0.80281001259213,https://salsa.debian.org/mopidy-team/mopidy-internetarchive, https://github.com/tkem/mopidy-internetarchive,2991.619317129629,0,3,1,2.0,13.0,0.0,0.0 +mopidy-mpris,-0.211044614538665,2.46194017804476,-1.11143451490839,https://salsa.debian.org/mopidy-team/mopidy-mpris, https://github.com/mopidy/mopidy-mpris.git,3543.9779050925927,2,7,0,6.0,34.0,0.0,0.0 +mopidy-podcast,-0.294157072620892,1.76901711844302,-0.738866927112524,https://salsa.debian.org/mopidy-team/mopidy-podcast, https://github.com/tkem/mopidy-podcast.git,2983.3689236111118,2,1,0,3.0,30.0,0.0,0.0 +mopidy-podcast-itunes,-0.246776717910268,2.45919376820864,-0.834541945985495,https://salsa.debian.org/mopidy-team/mopidy-podcast-itunes, https://github.com/tkem/mopidy-podcast-itunes,2949.681608796296,0,2,0,1.0,9.0,0.0,0.0 +mopidy-scrobbler,-0.251729996249238,2.13351567018423,-1.03254437833994,https://salsa.debian.org/mopidy-team/mopidy-scrobbler, https://github.com/mopidy/mopidy-scrobbler.git,3546.397002314815,0,2,0,1.0,49.0,0.0,0.0 +mopidy-somafm,-0.274632583510415,2.16098199184286,-0.85932466597646,https://salsa.debian.org/mopidy-team/mopidy-somafm, https://github.com/AlexandrePTJ/mopidy-somafm,2714.300787037037,0,6,2,4.0,27.0,0.0,0.0 +mopidy-soundcloud,-0.254657001124776,2.15589628850275,-0.945783660132605,https://salsa.debian.org/mopidy-team/mopidy-soundcloud, https://github.com/mopidy/mopidy-soundcloud,3733.279421296296,4,17,2,16.0,160.0,0.0,0.0 +mopidy-tunein,-0.323600289215913,2.62245315214456,-1.09052023264822,https://salsa.debian.org/mopidy-team/mopidy-tunein, https://github.com/kingosticks/mopidy-tunein,2521.253865740741,2,14,1,8.0,41.0,0.0,0.0 +mp3fs,0.916367840422269,4.57271740582271,-0.204729925617273,https://salsa.debian.org/multimedia-team/mp3fs, https://github.com/khenriks/mp3fs.git,5444.498784722222,4,13,0,8.0,77.0,0.0,1.0 +mpDris2,-0.98567157688571,-0.775496833571215,-1.02771064492816,https://salsa.debian.org/debian/mpdris2, https://github.com/eonpatapon/mpDris2.git,4512.103865740741,12,20,0,28.0,118.0,0.0,0.0 +mpv,0.53630425624984,0.862880227567894,0.310135898605756,https://salsa.debian.org/multimedia-team/mpv, https://github.com/mpv-player/mpv,5787.714236111111,512,145,0,277.0,26.0,0.0,383.0 +mrboom-libretro,-0.241313947963314,1.68105448738354,-0.733512143304964,https://salsa.debian.org/games-team/mrboom, https://github.com/Javanaise/mrboom-libretro,2489.062083333333,22,22,0,31.0,43.0,0.0,0.0 +msktutil,-0.166280390128719,1.24236519322128,-0.584188637656133,https://salsa.debian.org/debian/msktutil, https://github.com/msktutil/msktutil,4695.594930555556,8,21,2,11.0,34.0,0.0,1.0 +mtr,2.01790497280666,2.81581968670106,1.45255799095924,https://salsa.debian.org/debian/mtr, https://github.com/traviscross/mtr,3917.006064814815,16,90,0,75.0,432.0,0.0,0.0 +mupen64plus-ui-console,0.726411673166241,3.69950071654932,-0.167073486691435,https://salsa.debian.org/games-team/mupen64plus-ui-console, https://github.com/mupen64plus/mupen64plus-ui-console.git,4990.678877314815,5,31,0,19.0,34.0,0.0,0.0 +mupen64plus-video-glide64mk2,0.129338916523352,2.46374756312801,-0.319653882118895,https://salsa.debian.org/games-team/mupen64plus-video-glide64mk2, https://github.com/mupen64plus/mupen64plus-video-glide64mk2.git,4126.660902777778,7,35,0,24.0,59.0,0.0,0.0 +mupen64plus-video-rice,0.107184135188937,2.17662350668291,-0.314939883273864,https://salsa.debian.org/games-team/mupen64plus-video-rice, https://github.com/mupen64plus/mupen64plus-video-rice.git,4977.983148148148,5,34,0,21.0,49.0,0.0,0.0 +muse,0.351332356513888,0.892442038784953,0.0076925384805099,https://salsa.debian.org/multimedia-team/muse, https://github.com/muse-sequencer/muse.git,5773.049247685185,5,55,0,31.0,49.0,0.0,5.0 +python-musicbrainz-ngs,0.507667812148815,2.19691852220879,-0.005881406022075,https://salsa.debian.org/python-team/packages/musicbrainzngs, https://github.com/alastair/python-musicbrainz-ngs,3992.74300925926,1,28,3,24.0,83.0,0.0,3.0 +mypaint,0.348081542877204,1.0170198091666,-0.0287146791848877,https://salsa.debian.org/python-team/packages/mypaint, https://github.com/mypaint/mypaint,5559.767719907408,333,53,2,235.0,44.0,0.0,30.0 +mysecureshell,-0.484206977087021,1.86061310494511,-0.963705481830918,https://github.com/mysecureshell/mysecureshell,https://github.com/mysecureshell/mysecureshell,2575.567199074074,3,14,1,9.0,102.0,0.0,0.0 +MySQLTuner-perl,1.45008450329338,4.4623073775111,0.346475837679093,https://salsa.debian.org/debian/mysqltuner, https://github.com/major/MySQLTuner-perl,4651.953321759259,46,119,0,115.0,371.0,0.0,0.0 +n2n,0.154245039117666,2.84276728650776,-0.655319557026435,https://github.com/leggewie-DM/n2n,https://github.com/leggewie-DM/n2n,3071.956111111111,2,3,0,3.0,2.0,0.0,0.0 +nabi,-1.11816973546582,0.341187204635932,-1.50571883983408,https://salsa.debian.org/l10n-korean-team/nabi, https://github.com/libhangul/nabi.git,5305.17667824074,0,3,0,1.0,5.0,0.0,1.0 +nadoka,-4.02245162338258,-0.731092112124069,-5.12601068641538,https://salsa.debian.org/ruby-team/nadoka, https://github.com/nadoka/nadoka,4550.066435185186,0,9,0,8.0,6.0,0.0,4.0 +nagvis,0.201664984157249,1.21733150852904,-0.360039202536538,https://salsa.debian.org/nagios-team/nagvis, https://github.com/NagVis/nagvis,5779.626064814815,42,38,0,37.0,263.0,0.0,0.0 +ndppd,-0.529540730178872,1.60701552772874,-1.07669960594917,https://salsa.debian.org/debian/ndppd, https://github.com/DanielAdolfsson/ndppd,4471.594317129629,7,15,1,11.0,75.0,0.0,0.0 +netcdf-cxx4,-0.359140508034327,1.39575611605428,-0.791319508551213,https://salsa.debian.org/debian-gis-team/netcdf-cxx, https://github.com/Unidata/netcdf-cxx4.git,4438.941180555556,3,28,0,22.0,99.0,0.0,0.0 +netcdf-fortran,-0.14822580414833,0.751301517996878,-0.296296549911903,https://salsa.debian.org/debian/netcdf-fortran, https://github.com/Unidata/netcdf-fortran.git,4488.065011574074,7,39,0,30.0,150.0,0.0,0.0 +netdiscover,0.254165243322624,1.9765761262293,-0.211193952578629,https://salsa.debian.org/debian/netdiscover, https://github.com/netdiscover-scanner/netdiscover,5323.416608796297,1,5,0,3.0,24.0,0.0,0.0 +netplan,0.0413337825722798,1.54047847290476,-0.34865392721251,https://salsa.debian.org/debian/netplan.io, https://github.com/canonical/netplan/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +debian,0.173052258802551,2.4986742150936,-0.278390948333838,https://github.com/nm-l2tp/debian.git,https://github.com/nm-l2tp/debian.git,2347.114224537037,1,1,0,2.0,0.0,0.0,0.0 +NetworkManager-ssh,-0.008632079179096,1.14144337287233,-0.276180915789797,https://salsa.debian.org/lhw-guest/network-manager-ssh, https://github.com/danfruehauf/NetworkManager-ssh,3197.1808449074074,4,7,0,12.0,101.0,0.0,1.0 +nixnote2,-0.364727003208344,0.400296551211716,-0.490459150283337,https://salsa.debian.org/debian/nixnote2, https://github.com/robert7/nixnote2,4104.442858796297,11,48,0,37.0,124.0,0.0,4.0 +nmrpflash,-3.91179667431097,-1.83225458972691,-4.34355164695066,https://salsa.debian.org/debian/nmrpflash, https://github.com/jclehner/nmrpflash,2833.107476851852,10,8,0,14.0,32.0,0.0,0.0 +babel-plugin-add-module-exports,-1.41693253870261,1.54418374080048,-2.17009918780442,https://salsa.debian.org/js-team/node-babel-plugin-add-module-exports, https://github.com/59naga/babel-plugin-add-module-exports,2579.554618055556,2,7,0,4.0,98.0,0.0,0.0 +base64url,-1.88612467369204,0.890181623026984,-2.56777349159726,https://salsa.debian.org/js-team/node-base64url, https://github.com/brianloveswords/base64url.git,3614.487638888889,6,11,0,12.0,83.0,0.0,0.0 +node-bindings,-0.312428621187984,2.60571749703414,-1.01375701270411,https://salsa.debian.org/js-team/node-bindings, https://github.com/TooTallNate/node-bindings,2587.139594907408,4,8,0,8.0,5.0,0.0,0.0 +bluebird,0.0584203533242683,1.09378028887832,-0.134349249427407,https://salsa.debian.org/js-team/node-bluebird, https://github.com/petkaantonov/bluebird.git,3418.310659722222,121,152,0,212.0,654.0,0.0,64.0 +clean-css,0.188013900313509,2.7123268564266,-0.469678337835982,https://salsa.debian.org/js-team/node-clean-css, https://github.com/GoalSmashers/clean-css.git,4686.882453703704,63,58,0,89.0,14.0,0.0,9.0 +co,0.46010963765808,2.8630730352548,-0.100326972148371,https://salsa.debian.org/js-team/node-co, https://github.com/tj/co,1229.0172106481482,17,46,0,49.0,211.0,0.0,49.0 +code,-4.75516465588211,-1.4632937686164,-5.45457001879231,https://salsa.debian.org/js-team/node-code, https://github.com/hapijs/code.git,3316.1678125,19,23,0,28.0,93.0,0.0,0.0 +coffeeify,-1.4017605238932,1.46370767843051,-2.21599523453113,https://salsa.debian.org/js-team/node-coffeeify, https://github.com/jnordberg/coffeeify.git,1705.913773148148,1,13,0,10.0,64.0,0.0,0.0 +colormin,-3.50891647248573,-0.684002475369689,-4.26850059419203,https://salsa.debian.org/js-team/node-colormin, https://github.com/ben-eb/colormin,2228.6048148148147,0,6,0,2.0,15.0,0.0,0.0 +combine-source-map,-2.1067627582337,1.45108899699826,-3.14315422017884,https://salsa.debian.org/js-team/node-combine-source-map, https://github.com/thlorenz/combine-source-map.git,1465.4289583333334,4,5,0,8.0,33.0,0.0,0.0 +concat-stream,0.343582799296981,2.81067200894535,-0.124130821027336,https://salsa.debian.org/js-team/node-concat-stream, https://github.com/maxogden/concat-stream.git,2331.521458333333,5,21,0,18.0,3.0,0.0,0.0 +constants-browserify,-0.119402269999244,2.83435405957142,-0.919854661575445,https://salsa.debian.org/js-team/node-constants-browserify, https://github.com/juliangruber/constants-browserify,3669.6149189814814,0,3,0,1.0,5.0,0.0,0.0 +content-disposition,-0.149809142944842,2.32606021129267,-0.852025864437675,https://salsa.debian.org/js-team/node-content-disposition, https://github.com/jshttp/content-disposition.git,2639.744351851852,6,2,0,6.0,32.0,0.0,0.0 +convert-source-map,0.0871772545168336,2.7765163192641,-0.575679277361197,https://salsa.debian.org/js-team/node-convert-source-map, https://github.com/thlorenz/convert-source-map,3505.4009953703703,16,11,0,22.0,67.0,0.0,0.0 +node-cookie-signature,0.0990081923449821,2.82478127347864,-0.68455141487012,https://salsa.debian.org/js-team/node-cookie-signature, https://github.com/visionmedia/node-cookie-signature.git,3831.314548611111,2,13,0,7.0,47.0,0.0,0.0 +core-js,-0.0701104518260918,1.88603402045802,-0.429071568172392,https://salsa.debian.org/js-team/node-core-js, https://github.com/zloirock/core-js.git,3801.387199074074,67,73,0,121.0,289.0,0.0,0.0 +d3-dsv,-0.679293434240525,2.16133513307494,-1.3775271458354,https://salsa.debian.org/js-team/node-d3-dsv, https://github.com/d3/d3-dsv,3863.889201388889,14,6,0,17.0,65.0,0.0,0.0 +node-dateformat,-0.018659539996784,1.65065469123426,-0.432325195682282,https://salsa.debian.org/js-team/node-dateformat, https://github.com/felixge/node-dateformat,3995.859247685185,8,37,0,33.0,231.0,0.0,3.0 +execa,0.707996134565173,3.95514831745918,-0.0722137493386803,https://salsa.debian.org/js-team/node-execa, https://github.com/sindresorhus/execa,2926.695868055556,49,7,0,53.0,128.0,0.0,0.0 +node-expat,-0.408078145296881,2.35300290481543,-1.51502035336025,https://salsa.debian.org/js-team/node-expat, https://github.com/astro/node-expat,4931.300289351852,7,34,0,29.0,341.0,0.0,1.0 +node-formidable,-1.04783524111989,1.33296434240878,-1.63111238831959,https://salsa.debian.org/js-team/node-formidable, https://github.com/felixge/node-formidable.git,4861.668738425926,45,72,0,80.0,292.0,0.0,0.0 +fuzzaldrin-plus,-0.973958977723672,1.13657332196297,-1.45940190891157,https://salsa.debian.org/js-team/node-fuzzaldrin-plus, https://github.com/jeancroy/fuzzaldrin-plus,751.1080902777778,2,6,0,3.0,29.0,0.0,0.0 +grunt-babel,-2.35678960786465,-0.259582300741477,-2.78648060095402,https://salsa.debian.org/js-team/node-grunt-babel, https://github.com/babel/grunt-babel.git,3011.47462962963,8,12,0,13.0,152.0,0.0,0.0 +grunt-cli,1.21107109472389,4.49213329714159,4.42152270994788e-05,https://salsa.debian.org/js-team/node-grunt-cli, https://github.com/gruntjs/grunt-cli.git,3126.2931944444445,8,16,0,20.0,171.0,0.0,0.0 +gulp-babel,-1.67530372262357,0.724029805528159,-2.29292749706761,https://salsa.debian.org/js-team/node-gulp-babel, https://github.com/babel/gulp-babel.git,3018.443101851852,10,21,0,25.0,301.0,0.0,0.0 +gulp-flatten,-2.89436588696502,-0.811100922942588,-3.32195576503688,https://salsa.debian.org/js-team/node-gulp-flatten, https://github.com/armed/gulp-flatten,3247.6037152777776,2,7,0,6.0,17.0,0.0,1.0 +gulp-load-plugins,-1.27258883670201,2.28831541024772,-2.21510324962124,https://salsa.debian.org/js-team/node-gulp-load-plugins, https://github.com/jackfranklin/gulp-load-plugins,3321.845578703704,10,29,0,26.0,138.0,0.0,0.0 +node-gyp,0.037730511659275,0.62114580532967,-0.117324204212255,https://salsa.debian.org/js-team/node-gyp, https://github.com/nodejs/node-gyp.git,4297.548969907408,197,73,0,223.0,832.0,0.0,50.0 +has-flag,0.333474367552048,2.45921115621426,-0.119201405810834,https://salsa.debian.org/js-team/node-has-flag, https://github.com/sindresorhus/has-flag,2203.701111111111,6,2,0,7.0,17.0,0.0,0.0 +inline-source-map,-1.72537784785472,0.325671599655498,-2.1428170787699,https://salsa.debian.org/js-team/node-inline-source-map, https://github.com/thlorenz/inline-source-map.git,3126.5302314814817,5,5,0,9.0,25.0,0.0,0.0 +node-ip,0.547340220496077,3.07298742510266,-0.135752842080027,https://salsa.debian.org/js-team/node-ip, https://github.com/indutny/node-ip,3990.248819444445,6,20,0,17.0,172.0,0.0,0.0 +node-is-arrayish,-0.0113184630568466,2.48027041511655,-0.587863638216693,https://salsa.debian.org/js-team/node-is-arrayish, https://github.com/qix-/node-is-arrayish,1162.9688194444443,2,9,0,3.0,10.0,0.0,0.0 +is-glob,0.663837336901723,3.84456321063262,-0.2147279850304,https://salsa.debian.org/js-team/node-is-glob, https://github.com/jonschlinkert/is-glob,2500.303298611111,3,9,0,5.0,18.0,0.0,0.0 +iscroll,0.32364708981055,2.63348345340653,-0.154719762400236,https://salsa.debian.org/js-team/node-iscroll, https://github.com/cubiq/iscroll,2222.4944791666667,9,37,0,11.0,375.0,0.0,5.0 +jison,-2.87051910587459,-0.590486105342229,-3.32144974710982,https://salsa.debian.org/js-team/node-jison, https://github.com/zaach/jison,3961.697430555556,7,59,1,40.0,368.0,0.0,51.0 +jquery-mousewheel,0.268682115803879,2.6543019787233,-0.191121986553274,https://salsa.debian.org/js-team/node-jquery-mousewheel, https://github.com/jquery/jquery-mousewheel,5390.864629629629,6,15,1,14.0,292.0,0.0,0.0 +millstone,-1.4457365805558,1.0910699972912,-2.03873561212252,https://salsa.debian.org/js-team/node-millstone, https://github.com/mapbox/millstone,4176.2971875,3,21,0,13.0,36.0,0.0,0.0 +mqtt-packet,-2.19615920691419,0.0425211631269649,-2.61854332219364,https://salsa.debian.org/js-team/node-mqtt-packet, https://github.com/mqttjs/mqtt-packet,3391.8497337962963,19,27,0,34.0,71.0,0.0,0.0 +on-finished,0.0613223619439391,2.85317311422618,-0.691330534249103,https://salsa.debian.org/js-team/node-on-finished, https://github.com/jshttp/on-finished,3350.063425925926,5,3,0,7.0,4.0,0.0,0.0 +once,-0.122605388755357,-0.117139771528339,-0.123782183545841,https://salsa.debian.org/js-team/node-once, https://github.com/isaacs/once.git,4074.419212962963,2,6,0,6.0,15.0,0.0,0.0 +os-browserify,-0.326826200434881,2.32526819533929,-0.967178470137319,https://salsa.debian.org/js-team/node-os-browserify, https://github.com/CoderPuppy/os-browserify,1580.0713425925926,1,7,0,3.0,9.0,0.0,0.0 +parse-glob,0.684783388356342,3.86828257497172,-0.249053269580806,https://salsa.debian.org/js-team/node-parse-glob, https://github.com/micromatch/parse-glob,1589.2864351851852,1,5,0,3.0,6.0,0.0,0.0 +parseurl,0.275713726956604,3.62321423684549,-0.647348372427644,https://salsa.debian.org/js-team/node-parseurl, https://github.com/expressjs/parseurl.git,3251.1265972222222,2,3,0,5.0,12.0,0.0,0.0 +FlashPolicyFileServer,-0.951500274803389,1.78318256823556,-1.73652568359203,https://salsa.debian.org/js-team/node-policyfile, https://github.com/3rd-Eden/FlashPolicyFileServer,2142.833703703704,0,3,0,3.0,14.0,0.0,0.0 +react-audio-player,-4.81005834909922,-2.42985034735483,-5.42055822297954,https://salsa.debian.org/js-team/node-react-audio-player, https://github.com/justinmc/react-audio-player.git,2489.7878125,9,20,0,18.0,119.0,0.0,0.0 +regenerate-unicode-properties,-0.667486626670699,0.961835250203264,-1.0118784845417,https://salsa.debian.org/js-team/node-regenerate-unicode-properties, https://github.com/mathiasbynens/regenerate-unicode-properties,2664.765659722222,3,2,0,4.0,7.0,0.0,0.0 +regjsparser,-0.779840416348034,1.20033650627693,-1.19628205918665,https://salsa.debian.org/js-team/node-regjsparser, https://github.com/jviereck/regjsparser.git,3676.996875,2,16,0,12.0,27.0,0.0,0.0 +node-resolve,0.557566307269055,3.29841790440674,-0.140777177082836,https://salsa.debian.org/js-team/node-resolve, https://github.com/substack/node-resolve.git,4523.801516203704,39,26,0,50.0,258.0,0.0,0.0 +sprintf.js,0.401429060889419,3.15788560638359,-0.213299337279433,https://salsa.debian.org/js-team/node-sprintf-js, https://github.com/alexei/sprintf.js,3813.8363078703705,3,28,0,21.0,190.0,0.0,0.0 +static-module,-2.92950845621944,0.0141965632135324,-3.69193225519016,https://salsa.debian.org/js-team/node-static-module, https://github.com/substack/static-module.git,3102.503912037037,8,14,0,17.0,66.0,0.0,0.0 +node-stringprep,-1.25858700999564,1.42954085479859,-2.22272661766433,https://salsa.debian.org/js-team/node-stringprep, https://github.com/node-xmpp/node-stringprep,2104.009780092593,2,22,0,18.0,115.0,0.0,1.0 +tape,-1.35334562216163,0.823088709731211,-1.8448352116695,https://salsa.debian.org/js-team/node-tape, https://github.com/ljharb/tape.git,4022.1372916666655,54,62,0,96.0,488.0,0.0,0.0 +node-tar,0.100924009973991,1.15545696112116,-0.119495139934561,https://salsa.debian.org/js-team/node-tar, https://github.com/npm/node-tar,4544.303344907407,24,18,1,38.0,142.0,0.0,0.0 +node-temp,-0.899872573519337,2.40957987083396,-1.95345823682401,https://salsa.debian.org/js-team/node-temp, https://github.com/bruce/node-temp,4595.628541666667,2,39,2,31.0,105.0,0.0,0.0 +json-document,-4.95324562179892,-2.90193751949745,-5.45541673339559,https://salsa.debian.org/js-team/node-trust-json-document, https://github.com/anvilresearch/json-document.git,471.86045138888886,0,5,0,4.0,7.0,0.0,0.0 +tunnel-agent,1.17927850709519,4.96316326784085,0.111092480474075,https://salsa.debian.org/js-team/node-tunnel-agent, https://github.com/mikeal/tunnel-agent,1464.1568634259258,0,12,0,9.0,131.0,0.0,0.0 +type-check,-0.619856366958671,1.57198707442737,-1.05998760669897,https://salsa.debian.org/js-team/node-type-check, https://github.com/gkz/type-check.git,3579.125787037037,2,5,0,3.0,20.0,0.0,1.0 +ultron,-2.78131974187543,-0.475868280712011,-3.30701684526054,https://salsa.debian.org/js-team/node-ultron, https://github.com/unshiftio/ultron,2972.2796527777778,1,7,0,5.0,13.0,0.0,0.0 +node-unicode-data,-2.49868396613233,-1.5066066306956,-2.7694541364111,https://salsa.debian.org/js-team/node-unicode-data, https://github.com/mathiasbynens/node-unicode-data.git,3658.053796296296,6,3,0,7.0,29.0,0.0,0.0 +unicode-property-aliases,-2.12249657255468,0.505413648253651,-2.75088215035733,https://salsa.debian.org/js-team/node-unicode-property-aliases, https://github.com/mathiasbynens/unicode-property-aliases,2644.066365740741,2,1,0,3.0,4.0,0.0,0.0 +unicode-property-aliases-ecmascript,-0.493024144913837,2.13620802229314,-1.13713197185486,https://salsa.debian.org/js-team/node-unicode-property-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-aliases-ecmascript,1978.1429398148148,1,2,0,2.0,3.0,0.0,0.0 +unicode-property-value-aliases,-2.108074165012,0.545895780770114,-2.75118210058696,https://salsa.debian.org/js-team/node-unicode-property-value-aliases, https://github.com/mathiasbynens/unicode-property-value-aliases.git,2643.966689814815,2,2,0,3.0,3.0,0.0,0.0 +unicode-property-value-aliases-ecmascript,-2.64595253987012,-0.0300807748125525,-3.28446453060443,https://salsa.debian.org/js-team/node-unicode-property-value-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript,1977.9928009259256,0,1,0,1.0,0.0,0.0,0.0 +unicode-tr51,-2.89707993043163,-0.908759240234734,-3.31160089453127,https://salsa.debian.org/js-team/node-unicode-tr51, https://github.com/mathiasbynens/unicode-tr51,1619.1367939814816,1,1,0,2.0,6.0,0.0,0.0 +utilities,0.751024851378057,4.5416704470691,-0.567624344840985,https://salsa.debian.org/js-team/node-utilities, https://github.com/mde/utilities.git,3873.020138888889,1,19,0,12.0,22.0,0.0,0.0 +node-uuid,0.283624179006985,1.60495990443046,-0.0900742762397439,https://salsa.debian.org/js-team/node-uuid, https://github.com/kelektiv/node-uuid,4670.203680555555,41,41,2,59.0,325.0,0.0,0.0 +node-v8flags,0.119029118734221,2.50474784598512,-0.507082336173383,https://salsa.debian.org/js-team/node-v8flags, https://github.com/tkellen/node-v8flags.git,1721.1332407407408,15,3,0,11.0,73.0,0.0,0.0 +vhost,-1.65452634059536,0.68453701168403,-2.28784657793076,https://salsa.debian.org/js-team/node-vhost, https://github.com/expressjs/vhost.git,3246.905150462963,1,3,0,2.0,0.0,0.0,0.0 +vue-resource,-1.80456875167718,-0.385606923713162,-2.07059831607824,https://salsa.debian.org/js-team/node-vue-resource, https://github.com/pagekit/vue-resource,2754.411851851852,8,21,0,22.0,133.0,0.0,6.0 +webpack-merge,-3.84930720105508,-1.3808622270089,-4.33767609013551,https://salsa.debian.org/js-team/node-webpack-merge, https://github.com/survivejs/webpack-merge.git,3033.8957060185185,15,23,0,32.0,63.0,0.0,0.0 +node-ytdl-core,-0.124680044293024,2.45811938388727,-0.818351267515515,https://salsa.debian.org/js-team/node-ytdl-core, https://github.com/fent/node-ytdl-core.git,4096.004525462963,70,23,0,76.0,490.0,0.0,0.0 +ntirpc,-0.595167887289792,1.66581906071889,-1.2552045304986,https://salsa.debian.org/debian/libntirpc, https://github.com/nfs-ganesha/ntirpc.git,4521.189837962963,43,88,0,41.0,65.0,0.0,0.0 +Nuitka,-0.0866725521139052,0.705808351742953,-0.498808680116414,https://github.com/Nuitka/Nuitka,https://github.com/Nuitka/Nuitka,4857.776284722222,166,5,3,152.0,130.0,0.0,0.0 +nvidia-xconfig,0.973432024818542,2.44172726764876,0.294368659253463,https://salsa.debian.org/nvidia-team/nvidia-xconfig, https://github.com/NVIDIA/nvidia-xconfig,5775.908113425926,1,3,0,4.0,2.0,0.0,0.0 +nvpy,-0.314446707252604,2.89228615749629,-1.28529114472027,https://github.com/stefanv/nvpy/tree/debian,https://github.com/stefanv/nvpy,2724.198113425926,2,29,0,16.0,0.0,0.0,0.0 +O-Saft,-0.0182736193438765,2.19990444063162,-0.450421231744201,https://salsa.debian.org/pkg-security-team/o-saft, https://github.com/OWASP/O-Saft,4011.0202777777777,3,10,0,9.0,40.0,0.0,0.0 +oar,-1.46349459405756,-0.66068371910341,-1.78172910057842,https://github.com/oar-team/oar,https://github.com/oar-team/oar,5765.841585648148,5,46,5,15.0,43.0,0.0,0.0 +obconf-debian,0.747575573263091,1.78421646372965,0.220390431114968,https://github.com/mati75/obconf-debian.git,https://github.com/mati75/obconf-debian.git,3725.690393518519,0,5,0,3.0,2.0,0.0,0.0 +obs-studio,0.13129229188422,0.962234071955576,-0.123242143823789,https://salsa.debian.org/multimedia-team/obs-studio, https://github.com/jp9000/obs-studio.git,3726.9157986111113,426,253,0,412.0,244.0,0.0,264.0 +obus,-3.52524620113593,-1.66503896659688,-4.16321842129876,https://salsa.debian.org/ocaml-team/obus, https://github.com/ocaml-community/obus,5340.527511574074,3,16,1,12.0,20.0,0.0,0.0 +ocaml-alsa,-0.665124278231797,1.26537979889606,-1.03837535796002,https://salsa.debian.org/ocaml-team/ocaml-alsa, https://github.com/savonet/ocaml-alsa.git,460.5193634259259,2,8,0,5.0,4.0,0.0,0.0 +ocaml-duppy,-1.30549317346984,1.46644873845308,-2.09596198610175,https://salsa.debian.org/ocaml-team/ocaml-duppy, https://github.com/savonet/ocaml-duppy.git,5432.834733796296,2,8,0,6.0,6.0,0.0,0.0 +ocaml-expect,-1.12710325489819,2.79236608137763,-2.30651922663352,https://salsa.debian.org/ocaml-team/ocaml-expect, https://github.com/gildor478/ocaml-expect.git,3170.227523148148,0,3,0,1.0,2.0,0.0,0.0 +extunix,-2.18729171456941,-0.302814937809133,-2.60840668299499,https://salsa.debian.org/ocaml-team/ocaml-extunix, https://github.com/ygrek/extunix.git,4849.849606481482,10,12,0,18.0,30.0,0.0,0.0 +ocaml-ipaddr,-1.04460189937702,1.86220420428294,-1.78547586951581,https://salsa.debian.org/ocaml-team/ocaml-ipaddr, https://github.com/mirage/ocaml-ipaddr.git,3725.519247685185,9,20,0,22.0,40.0,0.0,0.0 +ocaml-re,-1.09504011532023,1.16854484829361,-1.53456321165651,https://salsa.debian.org/ocaml-team/ocaml-re, https://github.com/ocaml/ocaml-re,4365.659490740741,11,42,1,39.0,72.0,0.0,0.0 +sedlex,-2.79539950396161,0.612137734646107,-3.66356668364655,https://salsa.debian.org/ocaml-team/ocaml-sedlex, https://github.com/ocaml-community/sedlex,5659.057592592592,13,22,0,27.0,81.0,0.0,0.0 +ocamlbuild,0.833012950037744,3.60463350804861,-0.260670230330295,https://salsa.debian.org/ocaml-team/ocamlbuild, https://github.com/ocaml/ocamlbuild.git,5691.866099537037,18,45,0,44.0,121.0,0.0,0.0 +opencubicplayer,0.735336021595804,1.89947277671351,0.100194882624747,https://salsa.debian.org/multimedia-team/ocp, https://github.com/mywave82/opencubicplayer,4416.066331018518,9,13,0,12.0,37.0,0.0,0.0 +open-ath9k-htc-firmware,0.760314197282515,2.94266263205229,-0.0525201093797252,https://salsa.debian.org/debian/open-ath9k-htc-firmware, https://github.com/qca/open-ath9k-htc-firmware.git,3892.040439814815,5,21,0,17.0,37.0,0.0,4.0 +openbox-debian,0.35877083084497,0.569635577870166,0.200173859064958,https://github.com/mati75/openbox-debian,https://github.com/mati75/openbox-debian,3123.4283217592592,2,10,0,8.0,12.0,0.0,0.0 +openbox-menu,0.643129273781225,3.00887100555267,-0.138988018486117,https://github.com/mati75/openbox-menu.git,https://github.com/mati75/openbox-menu.git,2669.041875,1,4,0,4.0,3.0,0.0,0.0 +OpenCC,0.021909228852096,0.482422296283242,-0.161186166183118,https://salsa.debian.org/debian/opencc, https://github.com/BYVoid/OpenCC,3838.832743055556,56,72,0,83.0,474.0,0.0,3.0 +opendht,-1.50225361304097,-0.112442319707032,-1.92553614549029,https://salsa.debian.org/debian/opendht, https://github.com/savoirfairelinux/opendht.git,3308.872152777778,32,40,0,40.0,23.0,0.0,13.0 +orocos_kinematics_dynamics,-0.494555815193729,0.666910920716304,-0.754654156139584,https://salsa.debian.org/science-team/orocos-kdl, https://github.com/orocos/orocos_kinematics_dynamics.git,5760.238553240741,20,61,0,49.0,251.0,0.0,0.0 +osdlyrics,-1.01076524868585,2.54102753975829,-1.93642710707603,https://salsa.debian.org/debian/osdlyrics, https://github.com/osdlyrics/osdlyrics.git,5185.11837962963,14,35,0,23.0,0.0,0.0,1.0 +osm-gps-map,0.485239482198287,1.63156529786019,0.028871692887316,https://salsa.debian.org/debian-gis-team/osm-gps-map, https://github.com/nzjrs/osm-gps-map,5396.578356481482,12,33,1,30.0,59.0,0.0,0.0 +ossim,0.219420615909635,1.41012224206322,-0.309374107830384,https://salsa.debian.org/debian-gis-team/ossim, https://github.com/ossimlabs/ossim.git,2917.994282407408,12,49,0,31.0,11.0,0.0,1.0 +osslsigncode,0.169238483954773,2.90876424759937,-0.725862885957127,https://salsa.debian.org/debian/osslsigncode, https://github.com/mtrojnar/osslsigncode.git,3941.3454282407406,25,12,0,28.0,157.0,0.0,0.0 +ostinato,-0.156975688881461,1.83456394174619,-0.76457756156653,https://salsa.debian.org/debian/ostinato, https://github.com/pstavirs/ostinato,3046.754988425926,4,10,3,11.0,90.0,0.0,2.0 +othman,-1.27923059995522,0.901018381611301,-1.71931108968386,https://salsa.debian.org/islamic-team/othman, https://github.com/ojuba-org/othman.git,4827.982824074074,2,13,0,8.0,20.0,0.0,0.0 +ounit,-0.362741256164002,0.449711787060776,-0.619120319081785,https://salsa.debian.org/ocaml-team/ounit, https://github.com/gildor478/ounit.git,1284.2142476851852,12,7,0,14.0,26.0,0.0,0.0 +outguess,0.14978275487195,1.09749565786665,-0.226083672997015,https://salsa.debian.org/pkg-security-team/outguess, https://github.com/resurrecting-open-source-projects/outguess,1029.0813888888888,1,3,0,2.0,9.0,0.0,0.0 +overpass-api-python-wrapper,-0.0322169908290347,2.66354784788558,-0.727560338669457,https://salsa.debian.org/python-team/packages/overpass, https://github.com/mvexel/overpass-api-python-wrapper.git,2968.0383449074075,4,26,0,24.0,100.0,0.0,0.0 +papi,0.164874136696093,1.74949965993817,-0.347204527615739,https://salsa.debian.org/hpc-team/papi, https://github.com/icl-utk-edu/papi,5785.065613425926,65,102,1,48.0,33.0,0.0,13.0 +par2cmdline,0.200560850008367,0.946302393661034,-0.114418383974506,https://salsa.debian.org/jcfp/par2cmdline, https://github.com/Parchive/par2cmdline.git,4198.389097222223,9,27,0,27.0,115.0,0.0,0.0 +parsedatetime,1.19436693284144,3.37118485155232,0.337046843928615,https://salsa.debian.org/python-team/packages/parsedatetime, https://github.com/bear/parsedatetime,3739.247199074074,8,57,2,39.0,150.0,0.0,0.0 +patsy,0.267491786498725,1.41925731530505,-0.126148339679563,https://salsa.debian.org/med-team/patsy, https://github.com/pydata/patsy,4676.813194444445,3,15,0,17.0,197.0,0.0,0.0 +pavucontrol-qt,1.24644886245305,4.8736917607008,0.152912839496978,https://salsa.debian.org/lxqt-team/pavucontrol-qt, https://github.com/lxqt/pavucontrol-qt.git,5699.737418981482,142,57,0,110.0,74.0,0.0,0.0 +pbcopper,-1.38741598418141,-0.0972708878557045,-1.83645525098376,https://salsa.debian.org/med-team/pbcopper, https://github.com/PacificBiosciences/pbcopper.git,2608.9496875,0,25,0,9.0,5.0,0.0,0.0 +pcapfix,0.0933295762374161,2.13241654988334,-0.371290050399035,https://salsa.debian.org/debian/pcapfix, https://github.com/Rup0rt/pcapfix,3586.925,0,13,0,6.0,14.0,0.0,0.0 +pcapy,0.0349538124577532,1.25479928250535,-0.307556293496425,https://salsa.debian.org/python-team/packages/pcapy, https://github.com/CoreSecurity/pcapy.git,1937.232789351852,7,20,0,17.0,91.0,0.0,6.0 +pcl,-0.434415415199578,-0.18586657363712,-0.537636421314271,https://salsa.debian.org/science-team/pcl, https://github.com/PointCloudLibrary/pcl,4663.696782407407,183,548,3,326.0,69.0,0.0,19.0 +pcmanfm,0.910471152792046,1.31068264307585,0.609872304451939,https://salsa.debian.org/lxde-team/pcmanfm, https://github.com/lxde/pcmanfm,5014.954907407408,162,27,0,87.0,11.0,0.0,0.0 +flext,-0.0850254405392123,1.79955929698887,-0.691872893312516,https://salsa.debian.org/multimedia-team/pd/pd-flext, https://github.com/grrrr/flext.git,5601.788298611111,3,10,0,6.0,23.0,0.0,0.0 +ggee,0.213738133452602,2.10511371007261,-0.419276384857071,https://salsa.debian.org/multimedia-team/pd/pd-ggee, https://github.com/pd-externals/ggee,5602.669178240741,2,15,0,6.0,8.0,0.0,0.0 +pd-iemmatrix,-0.326792863942795,1.41622916264845,-0.702774565701274,https://salsa.debian.org/multimedia-team/pd/pd-iemmatrix, https://github.com/iem-projects/pd-iemmatrix,5648.038460648148,0,11,0,2.0,0.0,0.0,0.0 +pdfminer.six,0.0208023167964793,1.0139403963297,-0.25847023734503,https://salsa.debian.org/python-team/packages/pdfminer, https://github.com/pdfminer/pdfminer.six.git,5691.144791666667,73,66,0,116.0,635.0,0.0,0.0 +peek,0.221373178589643,2.28386653600158,-0.279046957327904,https://salsa.debian.org/debian/peek, https://github.com/phw/peek.git,2556.2171064814816,148,23,0,127.0,504.0,0.0,0.0 +perftest,-0.255066589970343,1.16247955467135,-0.648088089401375,https://salsa.debian.org/hpc-team/perftest, https://github.com/linux-rdma/perftest.git,5766.237222222222,45,67,0,63.0,139.0,0.0,1.0 +perl-cross-debian,0.544266159578039,4.51077365118303,-0.746210929605819,https://github.com/codehelp/perl-cross-debian,https://github.com/codehelp/perl-cross-debian,413.1343634259259,0,1,2,1.0,2.0,0.0,1.0 +project--perl-depends,-0.0980943950399754,2.69711137416204,-0.791618903105446,https://salsa.debian.org/perl-team/modules/packages/perl-depends, https://github.com/jaalto/project--perl-depends.git,2417.02125,0,1,0,1.0,0.0,0.0,0.0 +perl6-readline,0.233581275914633,2.63588830523579,-0.501520760452775,https://salsa.debian.org/perl6-team/modules/perl6-readline, https://github.com/drforr/perl6-readline.git,1710.428935185185,3,11,0,10.0,39.0,0.0,0.0 +zef,-0.158987933286221,1.62456160725648,-0.601563466885773,https://salsa.debian.org/perl6-team/modules/perl6-zef, https://github.com/ugexe/zef.git,3805.8422569444447,19,20,0,23.0,111.0,0.0,0.0 +persp-projectile,-0.639585184966139,3.28632343896646,-1.7735281376641,https://salsa.debian.org/emacsen-team/persp-projectile, https://github.com/bbatsov/persp-projectile.git,2006.7800810185183,9,2,0,10.0,40.0,0.0,0.0 +pev,0.326196959423477,2.60718167412258,-0.297393072805151,https://salsa.debian.org/debian/pev, https://github.com/merces/pev,0.0019791666666666,1,1,0,1.0,0.0,0.0,0.0 +pexpect,0.814121536373887,1.98889520715382,0.266774843345615,https://salsa.debian.org/python-team/packages/pexpect, https://github.com/pexpect/pexpect,5767.471574074074,21,92,0,85.0,558.0,0.0,0.0 +pg_checksums,-1.82134420236719,-0.13729698675695,-2.23031878481082,https://salsa.debian.org/postgresql/pg-checksums, https://github.com/credativ/pg_checksums.git,1977.03125,1,6,0,4.0,9.0,0.0,0.0 +pg_fact_loader,-1.84514999754585,1.7612439253021,-2.85576843286447,https://salsa.debian.org/postgresql/pg-fact-loader, https://github.com/enova/pg_fact_loader.git,1795.1245717592592,2,6,0,5.0,3.0,0.0,0.0 +pg8000,-0.425873307032282,2.47939255951003,-1.2002236195433,https://salsa.debian.org/python-team/packages/pg8000, https://github.com/mfenniak/pg8000,3962.2166666666662,11,25,0,20.0,142.0,0.0,0.0 +pgbadger,-0.315216750586259,1.89417835219122,-0.750043583624075,https://salsa.debian.org/postgresql/pgbadger, https://github.com/darold/pgbadger.git,4259.984722222222,12,88,0,68.0,205.0,0.0,7.0 +pgsql-ogr-fdw,-1.59721705299543,1.0989905750354,-2.20314319943185,https://salsa.debian.org/debian-gis-team/pgsql-ogr-fdw, https://github.com/pramsey/pgsql-ogr-fdw.git,3285.024895833333,8,10,0,9.0,59.0,0.0,0.0 +semver,0.409271212998555,2.86586850175265,-0.1464380119791,https://salsa.debian.org/php-team/pear/php-composer-semver, https://github.com/composer/semver,2969.092777777778,37,21,0,44.0,78.0,0.0,1.0 +Console_Table,-0.0495487944916377,1.78305117168249,-0.412769552291905,https://salsa.debian.org/php-team/pear/php-console-table, https://github.com/pear/Console_Table.git,2649.310555555556,1,12,0,9.0,14.0,0.0,0.0 +constant_time_encoding,-2.08345056258572,2.10571693862927,-3.3638483931456,https://salsa.debian.org/php-team/pear/php-constant-time, https://github.com/paragonie/constant_time_encoding,2771.7821296296297,7,11,0,13.0,33.0,0.0,0.0 +Crypt_GPG,0.921065803701291,4.32644785490778,-0.369679299393762,https://salsa.debian.org/php-team/pear/php-crypt-gpg, https://github.com/pear/Crypt_GPG.git,5743.496597222223,6,19,0,16.0,21.0,0.0,0.0 +DirectoryScanner,-0.449340208836042,1.85527006497102,-0.905098171654404,https://salsa.debian.org/php-team/pear/php-directory-scanner, https://github.com/theseer/DirectoryScanner.git,4264.154236111112,0,7,0,2.0,12.0,0.0,0.0 +link-util,-0.442538184706823,2.47460229459308,-1.26537149869149,https://salsa.debian.org/php-team/pear/php-fig-link-util, https://github.com/php-fig/link-util,1680.1398148148148,5,2,0,5.0,11.0,0.0,0.0 +php-file-iterator,0.311453315128483,2.11295874771565,-0.242017200503537,https://salsa.debian.org/php-team/pear/php-file-iterator, https://github.com/sebastianbergmann/php-file-iterator,5147.326273148148,9,12,0,16.0,79.0,0.0,0.0 +horde,-0.475481946151392,0.193672797634758,-0.728948802917928,https://salsa.debian.org/horde-team/php-horde, https://github.com/horde/horde.git,3269.665474537037,81,80,0,67.0,71.0,0.0,0.0 +ActiveSync,-0.0745412837503706,1.90299252156807,-0.59696941289219,https://salsa.debian.org/horde-team/php-horde-activesync, https://github.com/horde/ActiveSync.git,4982.044305555555,9,18,0,13.0,5.0,0.0,0.0 +html5-php,-0.320820055183681,2.12276497293667,-0.829847557102226,https://salsa.debian.org/php-team/pear/php-masterminds-html5, https://github.com/Masterminds/html5-php,3846.3884953703705,7,39,1,37.0,85.0,0.0,6.0 +vfsStream,-3.81468264008094,-1.31257229618589,-4.33563157951327,https://salsa.debian.org/php-team/pear/php-mikey179-vfsstream, https://github.com/bovigo/vfsStream,5683.637013888889,11,48,1,35.0,196.0,0.0,26.0 +monolog,0.505413594650869,3.17086810943634,-0.379310857818425,https://salsa.debian.org/php-team/pear/php-monolog, https://github.com/Seldaek/monolog,4676.6184375,183,372,3,397.0,405.0,0.0,63.0 +TypeResolver,0.0218360213936537,2.31253193880415,-0.41298883524215,https://salsa.debian.org/php-team/pear/php-phpdocumentor-type-resolver, https://github.com/phpDocumentor/TypeResolver,3092.0947569444443,18,31,1,40.0,91.0,0.0,0.0 +phpseclib,0.153021438243648,1.60110980796074,-0.114735272657912,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.23318287037,80,98,0,135.0,155.0,0.0,5.0 +sql-formatter,-0.407920410951981,2.27738498271881,-1.15300547005679,https://salsa.debian.org/php-team/pear/php-sql-formatter, https://github.com/doctrine/sql-formatter.git,4125.636030092593,10,31,0,25.0,28.0,0.0,0.0 +contracts,0.6071508907978,3.53076181825099,-0.188249023495799,https://salsa.debian.org/php-team/pear/php-symfony-contracts, https://github.com/symfony/contracts,1906.8477083333328,28,26,0,51.0,11.0,0.0,0.0 +polyfill,0.593613053162614,2.9045150589304,-0.100477405884853,https://salsa.debian.org/php-team/pear/php-symfony-polyfill, https://github.com/symfony/polyfill,2902.222094907408,100,47,0,117.0,227.0,0.0,0.0 +text_password,0.800386407625348,3.73544611045218,-0.265158245379795,https://salsa.debian.org/php-team/pear/php-text-password, https://github.com/pear/text_password.git,3427.7869097222224,0,13,0,7.0,6.0,0.0,0.0 +php-text-template,0.273515608300623,2.25774732371293,-0.264962638322587,https://salsa.debian.org/php-team/pear/php-text-template, https://github.com/sebastianbergmann/php-text-template,5133.045208333333,0,8,0,5.0,13.0,0.0,0.0 +CssToInlineStyles,-4.95810438237822,-2.56324795339309,-5.47013389217012,https://salsa.debian.org/php-team/pear/php-tijsverkoyen-css-to-inline-styles, https://github.com/tijsverkoyen/CssToInlineStyles,4791.660081018518,7,34,0,31.0,149.0,0.0,0.0 +php-timer,0.0545002781520511,1.73540299688516,-0.303412385183105,https://salsa.debian.org/php-team/pear/php-timer, https://github.com/sebastianbergmann/php-timer,4962.924282407407,4,10,0,11.0,38.0,0.0,0.0 +php-token-stream,-0.0775398449897543,1.03145743264247,-0.318473892612099,https://salsa.debian.org/php-team/pear/php-token-stream, https://github.com/sebastianbergmann/php-token-stream,4281.2169675925925,15,15,0,18.0,77.0,0.0,0.0 +phpdox,-1.09646797344632,0.606640775216526,-1.56648703386062,https://salsa.debian.org/php-team/pear/phpdox, https://github.com/theseer/phpdox,4604.837280092593,11,44,0,36.0,366.0,0.0,0.0 +phpLDAPadmin,0.953810641146157,1.60078462608577,0.503075144423528,https://salsa.debian.org/php-team/pear/phpldapadmin, https://github.com/leenooks/phpLDAPadmin,5264.4283796296295,42,25,0,26.0,189.0,0.0,1.0 +phploc,-0.674329415619346,1.1227196642677,-1.13285508973192,https://salsa.debian.org/php-team/pear/phploc, https://github.com/sebastianbergmann/phploc,5362.042534722223,18,31,0,38.0,226.0,0.0,0.0 +phpseclib,-0.0734036089505385,1.24832823214775,-0.316158985820838,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.23318287037,80,98,0,135.0,155.0,0.0,5.0 +comparator,0.101690878640192,2.33988895780117,-0.330151804512695,https://salsa.debian.org/php-team/pear/phpunit-comparator, https://github.com/sebastianbergmann/comparator,3686.3957291666666,20,9,0,25.0,105.0,0.0,0.0 +pidcat,-0.234817533073335,2.87451904471103,-1.06968806601924,https://salsa.debian.org/python-team/packages/pidcat, https://github.com/JakeWharton/pidcat.git,3155.524837962963,4,40,0,30.0,259.0,0.0,0.0 +Piexif,-0.804195689774663,1.63309323378366,-1.38441766025259,https://salsa.debian.org/python-team/packages/piexif, https://github.com/hMatoba/Piexif,3307.7984837962963,5,12,0,10.0,155.0,0.0,0.0 +pipewalker,0.502062773185375,3.1638761301447,-0.361305801860162,https://salsa.debian.org/debian/pipewalker, https://github.com/artemsen/pipewalker,2088.955266203704,1,4,0,3.0,6.0,0.0,0.0 +pipexec,-0.25527869738338,1.55231742744356,-0.688395809896546,https://salsa.debian.org/alteholz/pipexec, https://github.com/flonatel/pipexec.git,3308.5569560185186,0,11,0,6.0,12.0,0.0,0.0 +pk4,-1.80758651542235,0.200070534601031,-2.23077983239572,https://github.com/Debian/pk4,https://github.com/Debian/pk4,1044.0391203703705,0,1,0,1.0,4.0,0.0,0.0 +pkcs11-helper,1.21040326005582,4.07536636688302,0.246112919849419,https://salsa.debian.org/opensc-team/pkcs11-helper, https://github.com/OpenSC/pkcs11-helper,5754.408819444445,16,2,0,13.0,58.0,0.0,3.0 +pkgconf,-0.0511523263616914,0.620673588853219,-0.270334697261611,https://salsa.debian.org/debian/pkgconf, https://github.com/pkgconf/pkgconf,4516.657650462963,52,29,1,67.0,201.0,0.0,9.0 +pktstat,2.33387873947423,6.05028824026699,0.926044188042969,https://salsa.debian.org/debian/pktstat, https://github.com/dleonard0/pktstat,2938.7848958333334,0,4,0,2.0,5.0,0.0,0.0 +planetblupi,-0.279832678908296,2.33686368606251,-0.892136730966366,https://salsa.debian.org/games-team/planetblupi, https://github.com/blupi-games/planetblupi,2504.3208449074077,5,7,1,9.0,18.0,0.0,0.0 +gmailfeed,-0.907835046687276,1.53774343821795,-1.46042428853611,https://salsa.debian.org/qt-kde-team/extras/plasma-gmailfeed, https://github.com/anthon38/gmailfeed.git,2727.0607638888887,3,4,0,4.0,17.0,0.0,0.0 +plastex,0.243269547214912,2.61323124746283,-0.701164178072454,https://salsa.debian.org/python-team/packages/plastex, https://github.com/plastex/plastex,5539.2969907407405,17,19,1,19.0,79.0,0.0,1.0 +pngquant,0.599731548712399,2.71359056454755,-0.234142593418352,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.038333333333,23,38,0,41.0,383.0,0.0,0.0 +pngquant,0.753030091172879,2.4617924213456,0.0694002171362876,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.038333333333,23,38,0,41.0,383.0,0.0,0.0 +pocketsphinx,-0.132109296630766,0.47671061061309,-0.332206468839797,https://salsa.debian.org/a11y-team/pocketsphinx, https://github.com/cmusphinx/pocketsphinx,5652.478784722222,5,30,2,19.0,191.0,0.0,5.0 +pocl,0.0943083761808759,0.532768156178064,-0.131593338908955,https://salsa.debian.org/opencl-team/pocl, https://github.com/pocl/pocl,4689.650729166667,26,119,2,96.0,172.0,0.0,16.0 +popt,0.845774117920914,1.4698340744768,0.461614111963835,https://salsa.debian.org/debian/popt, https://github.com/rpm-software-management/popt.git,5739.674664351852,38,10,0,43.0,33.0,0.0,0.0 +portalocker,-0.676177569358075,1.22899794936804,-1.08190152048121,https://salsa.debian.org/python-team/packages/portalocker, https://github.com/WoLpH/portalocker,4590.855023148149,5,21,0,17.0,76.0,0.0,0.0 +postfixadmin,1.37185949679054,2.82255617244197,0.56261435096877,https://salsa.debian.org/debian/postfixadmin, https://github.com/postfixadmin/postfixadmin,5760.021805555555,53,77,1,94.0,124.0,0.0,0.0 +postgis-java,-0.22495117816695,0.620497208731479,-0.436839173209168,https://salsa.debian.org/debian-gis-team/postgis-java, https://github.com/postgis/postgis-java.git,5635.324131944444,8,12,0,15.0,32.0,0.0,1.0 +autodoc,0.494184087535717,2.04455463708516,-0.19325004547784,https://salsa.debian.org/debian/postgresql-autodoc, https://github.com/cbbrowne/autodoc.git,4575.885358796297,5,13,0,11.0,24.0,0.0,0.0 +pg_filedump,-0.611561194128062,1.23196187212564,-1.09741231143825,https://salsa.debian.org/postgresql/postgresql-filedump, https://github.com/df7cb/pg_filedump.git,4622.502986111111,3,6,0,6.0,19.0,0.0,0.0 +postgresql-hll,-1.55348166358091,0.6872065961349,-2.28816810183399,https://salsa.debian.org/postgresql/postgresql-hll, https://github.com/citusdata/postgresql-hll.git,3859.495925925926,23,21,0,27.0,124.0,0.0,0.0 +mysql_fdw,-1.26061749815957,0.322602152164847,-1.71760848584065,https://salsa.debian.org/postgresql/postgresql-mysql-fdw, https://github.com/EnterpriseDB/mysql_fdw.git,4475.722986111111,5,27,0,22.0,248.0,0.0,0.0 +postgresql-numeral,-1.51345223641763,1.62434313134593,-2.29370642200778,https://github.com/df7cb/postgresql-numeral,https://github.com/df7cb/postgresql-numeral,2361.1246527777776,0,4,0,2.0,3.0,0.0,0.0 +plsh,-1.60265597816638,-0.418572941215369,-1.90285363381829,https://salsa.debian.org/postgresql/postgresql-plsh, https://github.com/petere/plsh.git,3969.914502314815,1,1,0,2.0,23.0,0.0,0.0 +postgrey,0.416212581147819,0.800779561555294,0.167905090020999,https://salsa.debian.org/debian/postgrey, https://github.com/schweikert/postgrey.git,5469.949907407407,10,14,0,22.0,75.0,0.0,0.0 +postsrsd,0.103839949999788,2.01912742826071,-0.477325706236673,https://salsa.debian.org/debian/postsrsd, https://github.com/roehling/postsrsd.git,4014.208564814815,10,17,0,4.0,30.0,0.0,0.0 +potool,-0.581429440368266,0.0587787858281596,-0.834772414984138,https://github.com/porridge/potool/tree/debian,https://github.com/porridge/potool,4430.214988425926,2,3,0,2.0,1.0,0.0,0.0 +povray,0.958421674191704,1.69404497474083,0.489272470567281,https://salsa.debian.org/debian/povray, https://github.com/POV-Ray/povray,2833.074074074074,8,15,7,14.0,45.0,0.0,2.0 +powa-archivist,-1.33228927168661,0.627753550092333,-1.7515157781893,https://github.com/powa-team/powa-archivist,https://github.com/powa-team/powa-archivist,3471.930196759259,10,15,2,15.0,40.0,0.0,0.0 +powercap,-0.328432835901478,2.61690951082495,-1.12834560009672,https://github.com/connorimes/powercap/tree/debian,https://github.com/connorimes/powercap,2525.995891203704,0,4,0,2.0,2.0,0.0,0.0 +pqiv,-0.16388138950838,0.758558478781025,-0.454009218343847,https://salsa.debian.org/pberndt-guest/pqiv, https://github.com/phillipberndt/pqiv,5604.841550925926,11,12,0,15.0,127.0,0.0,0.0 +prboom-plus,0.978646620045482,1.88429855841624,0.432057514304468,https://salsa.debian.org/games-team/prboom-plus, https://github.com/coelckers/prboom-plus,5585.983912037037,42,11,1,41.0,53.0,0.0,1.0 +primus,0.272956909133763,1.24810733891137,-0.113453150804516,https://salsa.debian.org/nvidia-team/primus, https://github.com/amonakov/primus,937.9013425925926,3,6,0,6.0,216.0,0.0,0.0 +bird_exporter,-3.47717878603785,-0.0329330544143955,-4.28922020065143,https://salsa.debian.org/go-team/packages/prometheus-bird-exporter, https://github.com/czerwonk/bird_exporter,2542.462476851852,10,16,6,19.0,56.0,0.0,0.0 +haproxy_exporter,-3.86072133482528,-2.07005033512697,-4.31618946129776,https://salsa.debian.org/go-team/packages/prometheus-haproxy-exporter, https://github.com/prometheus/haproxy_exporter,3672.0941203703705,21,40,0,41.0,166.0,0.0,0.0 +postfix_exporter,-2.30901857902339,-0.0678780092573739,-2.93546754882129,https://salsa.debian.org/go-team/packages/prometheus-postfix-exporter, https://github.com/kumina/postfix_exporter,2274.256712962963,7,24,0,20.0,129.0,0.0,0.0 +pushgateway,-0.893739596824324,2.02652286692662,-1.59779185618246,https://salsa.debian.org/go-team/packages/prometheus-pushgateway, https://github.com/prometheus/pushgateway,3606.187337962963,18,76,1,58.0,280.0,0.0,0.0 +proot-debian,1.09201033638206,3.48942123712869,0.152618842166989,https://github.com/ivoire/proot-debian,https://github.com/ivoire/proot-debian,508.0834837962963,0,2,0,1.0,3.0,0.0,0.0 +prospector,-0.139641497323005,2.12375216035423,-0.970812703415105,https://salsa.debian.org/python-team/packages/prospector, https://github.com/PyCQA/prospector,3767.6942939814817,36,66,2,76.0,313.0,0.0,0.0 +ps2eps,1.53212079598281,4.56568976130553,0.449536184588045,https://salsa.debian.org/debian/ps2eps, https://github.com/roland-bless/ps2eps.git,0.1197453703703703,1,2,0,1.0,1.0,0.0,0.0 +psad,-0.157643283643823,0.280898009976798,-0.427371640969337,https://salsa.debian.org/debian/psad, https://github.com/mrash/psad/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +pudb,0.565287327131869,3.50358765199621,-0.382513763909001,https://salsa.debian.org/debian/pudb, https://github.com/inducer/pudb.git,5292.8559490740745,32,73,0,84.0,306.0,0.0,0.0 +puppetlabs-ntp,-1.60193298538769,0.084004899239364,-1.97661185622803,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-ntp, https://github.com/puppetlabs/puppetlabs-ntp.git,4661.505023148148,40,171,0,118.0,228.0,0.0,0.0 +py-lmdb,-0.0755155779526539,2.3670377587978,-0.95698152520613,https://salsa.debian.org/debian/py-lmdb, https://github.com/jnwatson/py-lmdb,3712.474189814815,18,23,0,26.0,205.0,0.0,0.0 +fe,0.0569254607300437,2.23859624498718,-0.740553419065291,https://salsa.debian.org/python-team/packages/py-postgresql, https://github.com/python-postgres/fe,5231.805671296296,1,11,0,5.0,69.0,0.0,0.0 +py-radix,-0.234715213098186,1.28491959688065,-0.668352956984802,https://salsa.debian.org/python-team/packages/py-radix, https://github.com/mjschultz/py-radix,1374.4915856481482,3,11,0,9.0,39.0,0.0,0.0 +py-ubjson,0.325868360627719,2.3051690362495,-0.192343512808427,https://salsa.debian.org/python-team/packages/py-ubjson, https://github.com/Iotic-Labs/py-ubjson,2987.1609027777777,3,4,0,5.0,12.0,0.0,0.0 +pycairo,1.86113532664531,3.05510498347914,1.1479506831671,https://salsa.debian.org/python-team/packages/pycairo, https://github.com/pygobject/pycairo,2389.8532175925925,13,23,2,28.0,234.0,0.0,0.0 +pychm,0.195977875238716,1.65043669670716,-0.184789798640271,https://salsa.debian.org/python-team/packages/pychm, https://github.com/dottedmag/pychm.git,3381.7747222222224,2,4,0,3.0,19.0,0.0,0.0 +pychromecast,0.0550333171653225,1.86450589733487,-0.358338165839646,https://salsa.debian.org/python-team/packages/pychromecast, https://github.com/home-assistant-libs/pychromecast.git,3717.1753935185184,57,30,0,74.0,318.0,0.0,0.0 +pycoast,-0.926408910154406,1.04456531405737,-1.32820698049502,https://salsa.debian.org/debian-gis-team/pycoast, https://github.com/pytroll/pycoast,3185.132662037037,7,21,0,12.0,29.0,0.0,0.0 +pydenticon,-0.865220641010434,1.85225816508171,-1.53672723253871,https://salsa.debian.org/python-team/packages/pydenticon, https://github.com/azaghal/pydenticon,1376.6938657407406,2,1,0,2.0,13.0,0.0,0.0 +pydicom,0.354373090837558,1.93975641897055,-0.187129201617951,https://salsa.debian.org/med-team/pydicom, https://github.com/pydicom/pydicom.git,5576.141643518518,69,58,0,87.0,155.0,0.0,4.0 +pydocstyle,0.55315807893233,3.88328161331387,-0.434312513993172,https://salsa.debian.org/python-team/packages/pydocstyle, https://github.com/PyCQA/pydocstyle.git,4295.427789351852,58,44,0,86.0,381.0,0.0,0.0 +PyHamcrest,0.477004406741494,2.02760917006511,-0.0667553804928372,https://salsa.debian.org/python-team/packages/pyhamcrest, https://github.com/hamcrest/PyHamcrest,5756.534722222223,18,36,0,32.0,112.0,0.0,0.0 +pylama,-0.168504324329241,2.31245615764542,-0.835820663474999,https://salsa.debian.org/python-team/packages/pylama, https://github.com/klen/pylama,3643.043888888889,6,46,0,37.0,127.0,0.0,0.0 +pylast,0.100776938759318,2.28996480473361,-0.379819550624563,https://salsa.debian.org/python-team/packages/pylast, https://github.com/pylast/pylast,5565.59855324074,8,38,2,32.0,125.0,0.0,0.0 +pylibtiff,0.0190555878881251,2.16444240744198,-0.769236079061491,https://salsa.debian.org/debian-gis-team/pylibtiff, https://github.com/pearu/pylibtiff.git,3040.1433796296296,10,20,0,22.0,100.0,0.0,1.0 +pymca,-0.415347689470358,-0.143704767485273,-0.501687293329833,https://salsa.debian.org/science-team/pymca, https://github.com/vasole/pymca,5785.805543981482,7,32,0,17.0,52.0,0.0,0.0 +pymediainfo,0.381332731349089,2.72322854270128,-0.311226839760821,https://salsa.debian.org/python-team/packages/pymediainfo, https://github.com/sbraz/pymediainfo,4970.751111111111,10,7,0,12.0,111.0,0.0,0.0 +pymodbus,0.0732799109217558,1.86466922646135,-0.584440179364302,https://salsa.debian.org/python-team/packages/pymodbus, https://github.com/pymodbus-dev/pymodbus.git,5499.738599537037,102,63,0,125.0,552.0,0.0,0.0 +pyopencl,0.178267753662958,0.865226366960079,-0.169445517354505,https://salsa.debian.org/opencl-team/python-pyopencl, https://github.com/inducer/pyopencl,5374.16875,28,83,0,77.0,238.0,0.0,0.0 +pyorbital,-0.83513626595963,1.1503801119106,-1.2127768903138,https://salsa.debian.org/debian-gis-team/pyorbital, https://github.com/pytroll/pyorbital.git,4467.573460648148,9,33,0,26.0,73.0,0.0,0.0 +pypuppetdb,-1.32940163604813,2.41852196708942,-2.4698360721368,https://salsa.debian.org/python-team/packages/pypuppetdb, https://github.com/voxpupuli/pypuppetdb,3781.8189814814814,18,46,2,46.0,103.0,0.0,0.0 +pyqi,-0.665905280844117,0.42673006565835,-0.906438910624248,https://salsa.debian.org/med-team/pyqi, https://github.com/biocore/pyqi,1051.0106481481482,0,13,1,7.0,17.0,0.0,0.0 +pyquery,0.253316020676959,2.14767227179502,-0.276904445045534,https://salsa.debian.org/python-team/packages/pyquery, https://github.com/gawel/pyquery.git,5354.174155092593,7,50,0,45.0,213.0,0.0,0.0 +pysodium,-0.92503426291004,1.63371609063095,-1.6304178321319,https://salsa.debian.org/python-team/packages/pysodium, https://github.com/stef/pysodium.git,3761.6783217592592,9,38,0,33.0,63.0,0.0,0.0 +python-soundfile,-0.425956303307578,1.98178094846684,-0.873346280044414,https://salsa.debian.org/multimedia-team/pysoundfile, https://github.com/bastibe/python-soundfile.git,3757.228148148148,8,31,0,27.0,287.0,0.0,0.0 +pysph,-0.19576508254274,0.8352828366819,-0.608555387307991,https://salsa.debian.org/science-team/pysph, https://github.com/pypr/pysph,3944.004282407408,12,53,0,27.0,60.0,0.0,0.0 +pysrs,-2.58656369634392,-0.246658326360389,-3.01401713358786,https://salsa.debian.org/python-team/packages/pysrs, https://github.com/sdgathman/pysrs.git,5232.037384259259,2,4,0,2.0,7.0,0.0,0.0 +pyssim,-1.44937824287342,1.58301898108993,-2.31985142308153,https://salsa.debian.org/python-team/packages/pyssim, https://github.com/jterrace/pyssim,4069.879375,2,12,0,7.0,3.0,0.0,0.0 +PyStaticConfiguration,-2.04721602988162,0.763049361836491,-2.72655556055587,https://salsa.debian.org/python-team/packages/pystaticconfiguration, https://github.com/dnephin/PyStaticConfiguration,3745.710266203704,3,26,2,20.0,44.0,0.0,0.0 +pysubnettree,-0.946147609704078,1.2999152117155,-1.53988131275596,https://salsa.debian.org/python-team/packages/pysubnettree, https://github.com/zeek/pysubnettree.git,4655.747858796296,1,18,0,11.0,28.0,0.0,0.0 +pytest-arraydiff,0.189844117515491,2.34162282632034,-0.239438695627217,https://salsa.debian.org/python-team/packages/pytest-arraydiff, https://github.com/astrofrog/pytest-arraydiff,2688.582349537037,5,12,0,11.0,0.0,0.0,0.0 +pytest-bdd,-3.42876811393756,-0.503945884651919,-4.23037855636789,https://salsa.debian.org/python-team/packages/pytest-bdd, https://github.com/pytest-dev/pytest-bdd.git,3909.559976851852,26,45,0,50.0,355.0,0.0,0.0 +pytest-expect,-1.41755856425502,1.76044338259236,-2.2515689023404,https://salsa.debian.org/python-team/packages/pytest-expect, https://github.com/gsnedders/pytest-expect,1755.9376273148148,2,3,0,2.0,13.0,0.0,0.0 +pytest-pylint,-0.832009640118479,0.153289022747533,-1.10063536083175,https://salsa.debian.org/python-team/packages/pytest-pylint, https://github.com/carsongee/pytest-pylint,3089.6046180555554,5,20,0,19.0,97.0,0.0,0.0 +pytest-remotedata,0.0301688429663763,1.64862812662434,-0.246615585231463,https://salsa.debian.org/python-team/packages/pytest-remotedata, https://github.com/astropy/pytest-remotedata,4372.856006944445,4,28,1,27.0,27.0,0.0,1.0 +pytest-sugar,-1.93438986636594,0.0895529374489846,-2.53361283285188,https://salsa.debian.org/python-team/packages/pytest-sugar, https://github.com/Teemu/pytest-sugar.git,3774.505706018519,13,48,0,45.0,191.0,0.0,0.0 +py-amqp,0.492792863895466,2.97803737108839,-0.103780130816662,https://salsa.debian.org/python-team/packages/python-amqp, https://github.com/celery/py-amqp.git,5725.564479166666,68,43,0,82.0,220.0,0.0,0.0 +argh,0.233903067417354,2.01591008993674,-0.26865087184235,https://salsa.debian.org/python-team/packages/python-argh, https://github.com/neithere/argh.git,4744.0471875,5,24,0,22.0,102.0,0.0,0.0 +asyncssh,-1.18270536885584,0.256243306256498,-1.64931965823354,https://salsa.debian.org/python-team/packages/python-asyncssh, https://github.com/ronf/asyncssh,3723.866863425926,18,9,0,23.0,71.0,0.0,0.0 +python-atomicwrites,0.80717474493993,3.93688839501037,-0.0360579534404471,https://salsa.debian.org/python-team/packages/python-atomicwrites, https://github.com/untitaker/python-atomicwrites,2718.0744907407407,9,8,0,15.0,53.0,0.0,0.0 +avro,-0.676407068396849,0.59419524502039,-0.970469266237255,https://salsa.debian.org/python-team/packages/python-avro, https://github.com/apache/avro,5362.563055555555,342,76,0,310.0,0.0,0.0,0.0 +aws-xray-sdk-python,-0.656567296113062,2.21861042285347,-1.38871874837233,https://salsa.debian.org/science-team/python-aws-xray-sdk, https://github.com/aws/aws-xray-sdk-python,2264.9942939814814,64,31,0,69.0,93.0,0.0,0.0 +azure-python-devtools,-1.8877692262182,1.0407212340933,-2.68977417741463,https://salsa.debian.org/python-team/packages/python-azure-devtools, https://github.com/Azure/azure-python-devtools,1688.8337962962962,6,14,0,12.0,28.0,0.0,0.0 +b2-sdk-python,-2.70912034958649,0.0195888217291228,-3.29858951161245,https://salsa.debian.org/python-team/packages/python-b2sdk, https://github.com/Backblaze/b2-sdk-python.git,2948.629490740741,24,86,0,77.0,61.0,0.0,0.0 +babel,0.457108626748347,1.12522241992856,0.114378343598591,https://salsa.debian.org/python-team/packages/python-babel, https://github.com/python-babel/babel,5776.72167824074,75,93,2,137.0,127.0,0.0,0.0 +base58,-0.638002541765872,1.88704322930212,-1.19487215124741,https://salsa.debian.org/python-team/packages/python-base58, https://github.com/keis/base58,3504.7240046296297,9,12,0,15.0,37.0,0.0,0.0 +bayespy,-0.413372685864473,2.29395432544691,-1.28090212529164,https://salsa.debian.org/science-team/python-bayespy, https://github.com/bayespy/bayespy,4227.605023148149,4,9,0,7.0,68.0,0.0,0.0 +bcrypt,0.720872399036504,2.43235241240946,0.08731543368218,https://salsa.debian.org/python-team/packages/python-bcrypt, https://github.com/pyca/bcrypt.git,3870.065208333333,26,10,0,30.0,196.0,0.0,0.0 +python-blosc,0.410479289294704,2.72099099009397,-0.240131424738422,https://salsa.debian.org/python-team/packages/python-blosc, https://github.com/Blosc/python-blosc.git,4736.291226851852,17,36,0,37.0,120.0,0.0,0.0 +boltons,-0.0997518598830524,2.67267318697583,-0.861415447699543,https://salsa.debian.org/python-team/packages/python-boltons, https://github.com/mahmoud/boltons,3938.248333333333,42,55,0,73.0,206.0,0.0,0.0 +bumps,-0.893536724559635,0.0933032097180597,-1.16053132053718,https://salsa.debian.org/science-team/python-bumps, https://github.com/bumps/bumps,4409.951157407408,1,19,0,10.0,22.0,0.0,0.0 +cachetools,0.522159771197376,3.37311857326325,-0.258914629166168,https://salsa.debian.org/python-team/packages/python-cachetools, https://github.com/tkem/cachetools,3511.0841203703703,2,11,0,11.0,206.0,0.0,0.0 +certbot,-2.27201429832193,0.115747776615057,-2.77590936298428,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-dnsimple, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 +certbot,-0.899819983906848,1.90897945576906,-1.57828050615347,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-google, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 +certbot,-0.281137746815331,1.82470849788128,-0.751436143873004,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 +certbot,-1.10006157064088,1.18347179422029,-1.67274459016725,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-route53, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 +cmarkgfm,-1.31501359328804,1.23194183099758,-1.895147952211,https://salsa.debian.org/python-team/packages/python-cmarkgfm, https://github.com/theacodes/cmarkgfm,1977.4600578703703,18,8,0,20.0,50.0,0.0,0.0 +colorama,0.778475484065202,2.48466274067031,0.147974243977739,https://salsa.debian.org/python-team/packages/python-colorama, https://github.com/tartley/colorama,3514.679652777778,15,42,0,45.0,341.0,0.0,1.0 +python-colorlog,0.0760601285628227,2.17624730096483,-0.417655581978487,https://salsa.debian.org/python-team/packages/python-colorlog, https://github.com/borntyping/python-colorlog.git,4104.955439814815,10,24,0,30.0,43.0,0.0,0.0 +colormap,-0.80798143374305,1.46883737800577,-1.38904142865958,https://salsa.debian.org/python-team/packages/python-colormap, https://github.com/cokelaer/colormap,3308.9144444444446,1,7,0,6.0,15.0,0.0,0.0 +pythonfutures,0.253069403039548,1.4926901749381,-0.0680161382409498,https://salsa.debian.org/python-team/modules/python-concurrent.futures, https://github.com/agronholm/pythonfutures.git,4929.174259259259,10,12,0,14.0,86.0,0.0,0.0 +ConfigArgParse,0.62387801737252,3.35110574592331,-0.0441913435369702,https://salsa.debian.org/python-team/packages/configargparse, https://github.com/bw2/ConfigArgParse,3315.65818287037,8,51,0,44.0,239.0,0.0,1.0 +css-parser,0.737520429234226,3.65253255454216,-0.0470738230267792,https://salsa.debian.org/python-team/packages/python-css-parser, https://github.com/ebook-utils/css-parser,1765.7022685185186,2,7,0,7.0,11.0,0.0,0.0 +cssselect,0.766389048615414,3.66623505696289,-0.021805051288149,https://salsa.debian.org/python-team/packages/python-cssselect, https://github.com/scrapy/cssselect,5713.5145601851855,8,23,0,24.0,65.0,0.0,1.0 +pycups,0.722928124090978,2.10651414160283,0.157924808524114,https://salsa.debian.org/python-team/packages/python-cups, https://github.com/OpenPrinting/pycups.git,5524.667384259259,4,9,0,9.0,62.0,0.0,1.0 +curtsies,0.316650190607577,2.60676539674931,-0.304611589024975,https://salsa.debian.org/sramacher/python-curtsies, https://github.com/bpython/curtsies,3799.8890277777778,15,32,1,35.0,70.0,0.0,0.0 +cycler,0.628383028079081,2.49687348471043,0.0195972628773569,https://salsa.debian.org/python-team/packages/python-cycler, https://github.com/matplotlib/cycler,2790.014108796296,6,19,2,21.0,28.0,0.0,0.0 +cytoolz,-0.358484799954006,2.35380987885035,-1.07583039408841,https://salsa.debian.org/python-team/packages/python-cytoolz, https://github.com/pytoolz/cytoolz,3395.421412037037,2,21,0,16.0,68.0,0.0,0.0 +python-darkslide,0.932044835084578,4.49541173906183,-0.288323175082102,https://salsa.debian.org/debian/darkslide, https://github.com/ionelmc/python-darkslide.git,4282.761226851852,4,56,0,42.0,23.0,0.0,0.0 +DartsPyLRU,-1.89274943343211,0.292233477200228,-2.3461638638224,https://salsa.debian.org/pkg-security-team/python-darts.lib.utils.lru, https://github.com/deterministic-arts/DartsPyLRU.git,362.9079398148148,0,2,0,1.0,5.0,0.0,0.0 +datrie,-0.506057889950513,1.38031883911671,-0.978482355229684,https://salsa.debian.org/python-team/packages/python-datrie, https://github.com/kmike/datrie.git,2978.6536226851854,7,11,0,14.0,90.0,0.0,2.0 +python-dbusmock,-0.627944787988481,0.300003823801882,-0.850570977338004,https://salsa.debian.org/python-team/packages/python-dbusmock, https://github.com/martinpitt/python-dbusmock,4100.772418981482,32,16,0,31.0,57.0,0.0,0.0 +decorator,0.470421256098476,1.79239570870011,0.0135959483939923,https://salsa.debian.org/python-team/packages/python-decorator, https://github.com/micheles/decorator.git,5376.399953703703,6,23,0,23.0,131.0,0.0,0.0 +django-braces,-1.25102734718929,0.340648918872544,-1.63881536863121,https://salsa.debian.org/python-team/packages/python-django-braces, https://github.com/brack3t/django-braces.git,4108.719386574074,10,79,0,65.0,196.0,0.0,0.0 +django-cas,-1.15343521211913,1.67191736328623,-2.06951776542578,https://salsa.debian.org/python-team/packages/python-django-casclient, https://github.com/kstateome/django-cas,2792.0546875,7,19,0,16.0,53.0,0.0,0.0 +django-extra-views,-1.25877137175236,1.08523071997228,-1.86622121321833,https://salsa.debian.org/python-team/packages/python-django-extra-views, https://github.com/AndrewIngram/django-extra-views,4072.4001041666666,12,61,1,51.0,205.0,0.0,0.0 +django-imagekit,-1.35102414855421,0.374985178913018,-1.78640342118342,https://salsa.debian.org/python-team/packages/python-django-imagekit, https://github.com/matthewwithanm/django-imagekit.git,5386.110393518518,18,69,0,65.0,458.0,0.0,0.0 +django-modelcluster,-3.9620317451107,-2.03442698957617,-4.34142664037654,https://salsa.debian.org/python-team/packages/python-django-modelcluster, https://github.com/wagtail/django-modelcluster.git,3534.2000347222224,21,13,0,29.0,118.0,0.0,0.0 +django-rest-framework-guardian,-3.32090751536405,-1.14641965177563,-3.75123607797988,https://salsa.debian.org/python-team/packages/python-django-rest-framework-guardian, https://github.com/rpkilby/django-rest-framework-guardian.git,626.7550231481481,2,4,0,4.0,14.0,0.0,0.0 +django-rest-hooks,-1.50508757244667,1.18697239489152,-2.19060255115359,https://salsa.debian.org/python-team/packages/python-django-rest-hooks, https://github.com/zapier/django-rest-hooks,2693.6027777777776,12,13,0,20.0,56.0,0.0,0.0 +django-split-settings,-2.78957511519186,-0.398784713274345,-3.31015157067725,https://salsa.debian.org/python-team/packages/python-django-split-settings, https://github.com/sobolevn/django-split-settings,3860.1584027777776,17,13,0,20.0,39.0,0.0,0.0 +django-storages,-3.13869786410601,-0.596777992266893,-3.7258638390182,https://salsa.debian.org/python-team/packages/python-django-storages, https://github.com/jschneier/django-storages.git,4486.111574074074,175,96,0,225.0,717.0,0.0,2.0 +django-treebeard,-1.44301346852683,-0.735165625821461,-1.68427416316081,https://salsa.debian.org/python-team/packages/python-django-treebeard, https://github.com/django-treebeard/django-treebeard.git,5493.911400462963,24,59,0,65.0,267.0,0.0,0.0 +python-dmidecode,0.696512755433002,2.37731861945678,-0.124434961309399,https://salsa.debian.org/python-team/packages/python-dmidecode, https://github.com/nima/python-dmidecode,5342.575833333333,10,17,0,11.0,26.0,0.0,0.0 +dnsq,-0.84937779216935,1.65138109321636,-1.41060216211315,https://salsa.debian.org/python-team/packages/python-dnsq, https://github.com/mailgun/dnsq.git,1028.904513888889,1,6,0,4.0,14.0,0.0,0.0 +python-dotenv,-0.0646647075317069,2.86166402780144,-0.97580266039008,https://salsa.debian.org/debian/python-dotenv, https://github.com/theskumar/python-dotenv.git,3676.079872685186,81,18,0,84.0,565.0,0.0,1.0 +dpkt,0.0196106670228997,2.47626960524388,-0.584888132841591,https://salsa.debian.org/python-team/packages/python-dpkt, https://github.com/kbandla/dpkt,3886.918368055556,36,43,1,56.0,220.0,0.0,1.0 +dropbox-sdk-python,-0.130181357773559,2.84521348805933,-0.865581993532946,https://salsa.debian.org/python-team/packages/python-dropbox, https://github.com/dropbox/dropbox-sdk-python,2984.077083333333,28,31,0,31.0,49.0,0.0,0.0 +python-dugong,-0.591471391126072,0.37617404681871,-0.825298609681828,https://salsa.debian.org/python-team/packages/python-dugong, https://github.com/python-dugong/python-dugong.git,3200.268854166666,4,5,0,7.0,9.0,0.0,0.0 +easydev,-1.06341865388081,0.409242130783886,-1.41712624396679,https://salsa.debian.org/python-team/packages/python-easydev, https://github.com/cokelaer/easydev.git,3717.344375,0,5,0,1.0,10.0,0.0,0.0 +easywebdav,-0.193448412041873,1.95905816981472,-0.63719103656544,https://salsa.debian.org/python-team/packages/python-easywebdav, https://github.com/amnong/easywebdav,813.3765625,1,13,0,8.0,75.0,0.0,0.0 +exif-py,0.0156493174686464,1.00360355884044,-0.248935024905801,https://salsa.debian.org/python-team/packages/python-exif, https://github.com/ianare/exif-py,3998.029189814815,34,23,0,51.0,195.0,0.0,0.0 +fabio,0.0104950221350668,1.21007586643528,-0.438051112560997,https://salsa.debian.org/science-team/python-fabio, https://github.com/silx-kit/fabio.git,5765.121435185185,18,45,0,33.0,54.0,0.0,0.0 +fakeredis,-1.84014849107297,0.71945353926365,-2.53506583901348,https://salsa.debian.org/python-team/packages/python-fakeredis, https://github.com/jamesls/fakeredis.git,3981.188900462963,20,88,0,78.0,257.0,0.0,1.0 +fitsio,-0.461055717385868,0.394057440700241,-0.637876906966945,https://salsa.debian.org/debian-astro-team/python-fitsio, https://github.com/esheldon/fitsio,4439.410567129629,4,32,0,25.0,107.0,0.0,0.0 +flaky,-0.823872670209293,2.08116067823733,-1.65266988307531,https://salsa.debian.org/python-team/packages/python-flaky, https://github.com/box/flaky.git,3089.6002083333333,11,23,0,21.0,145.0,0.0,0.0 +fysom,-0.75856033329708,1.38289183997405,-1.18582341091221,https://salsa.debian.org/debian/python-fysom, https://github.com/mriehl/fysom.git,3641.987696759259,3,22,0,13.0,39.0,0.0,0.0 +geneimpacts,-1.80691346228606,0.450815657475691,-2.23874771638693,https://salsa.debian.org/med-team/python-geneimpacts, https://github.com/brentp/geneimpacts/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +genty,-1.53124160455144,1.7202436983609,-2.37926007821001,https://salsa.debian.org/python-team/packages/python-genty, https://github.com/box/genty.git,701.8032986111111,0,10,0,5.0,15.0,0.0,0.0 +glad,-1.34572723088456,1.09346774896223,-1.90153790813123,https://salsa.debian.org/python-team/packages/glad, https://github.com/Dav1dde/glad.git,3530.153645833333,54,19,0,28.0,255.0,0.0,3.0 +python-gnupg,0.345891721396036,1.22086991696978,-0.0500617939527759,https://salsa.debian.org/python-team/packages/python-gnupg, https://github.com/vsajip/python-gnupg.git,3594.986377314815,6,12,0,14.0,52.0,0.0,0.0 +gnuplotlib,-0.554072309553074,1.99117745433607,-1.12257676230352,https://salsa.debian.org/python-team/packages/python-gnuplotlib, https://github.com/dkogan/gnuplotlib,3062.559849537037,1,2,0,2.0,29.0,0.0,0.0 +graphviz,-0.277526739497775,1.28892534990688,-0.650341505726255,https://salsa.debian.org/python-team/packages/python-graphviz, https://github.com/xflr6/graphviz,3612.632083333333,12,12,0,22.0,48.0,0.0,0.0 +greenlet,0.804761684310871,1.70610494232945,0.307046293468067,https://salsa.debian.org/python-team/packages/python-greenlet, https://github.com/python-greenlet/greenlet,5315.652916666667,21,53,1,60.0,350.0,0.0,0.0 +python-gssapi,0.328917976545445,2.35502552233121,-0.250048562660633,https://salsa.debian.org/python-team/packages/python-gssapi, https://github.com/pythongssapi/python-gssapi,3263.0338078703703,18,17,0,25.0,97.0,0.0,0.0 +h11,0.0628463609475429,2.52989033051234,-0.396624862666718,https://salsa.debian.org/python-team/packages/python-h11, https://github.com/python-hyper/h11.git,2700.4708217592597,21,14,0,28.0,99.0,0.0,0.0 +httplib2,0.522030133674165,1.52810048548846,0.118057712966429,https://salsa.debian.org/python-team/packages/python-httplib2, https://github.com/httplib2/httplib2.git,5422.7818402777775,50,36,0,58.0,150.0,0.0,9.0 +httptools,-1.01625723203708,1.52551903370403,-1.63068427305216,https://salsa.debian.org/python-team/packages/python-httptools, https://github.com/MagicStack/httptools.git,2908.9019444444443,11,7,0,15.0,96.0,0.0,0.0 +idna,0.428827323048246,2.39987330079786,0.0023232440778604,https://salsa.debian.org/python-team/packages/python-idna, https://github.com/kjd/idna,3836.199386574074,12,16,2,22.0,107.0,0.0,0.0 +ijson,-0.788249490701278,1.61835030318376,-1.34356782663573,https://salsa.debian.org/debian/python-ijson, https://github.com/ICRAR/ijson.git,4844.947118055556,7,21,0,19.0,91.0,0.0,0.0 +intervaltree-bio,-0.586493194699912,1.66489915213559,-1.1805901393989,https://salsa.debian.org/med-team/python-intervaltree-bio, https://github.com/konstantint/intervaltree-bio.git,961.9282638888888,0,5,0,4.0,7.0,0.0,0.0 +ipaddr-py,0.64339331440059,3.29037394437381,-0.0419910302280833,https://salsa.debian.org/python-team/modules/python-ipaddr, https://github.com/google/ipaddr-py/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ipaddress,0.612359222288563,3.19476907445456,-0.0003839015737789,https://salsa.debian.org/python-team/modules/python-ipaddress, https://github.com/phihag/ipaddress,2728.476099537037,1,7,0,6.0,56.0,0.0,0.0 +python-ipcalc,0.714101630753056,3.4398389903968,-0.255334424029229,https://github.com/craneworks/python-ipcalc,https://github.com/craneworks/python-ipcalc,756.8280324074074,1,1,0,0.0,1.0,0.0,0.0 +python-iptables,-1.37689457924715,-0.162014500732828,-1.59722989569024,https://salsa.debian.org/python-team/packages/python-iptables, https://github.com/ldx/python-iptables,4469.236423611111,3,51,0,40.0,238.0,0.0,0.0 +python-isc-dhcp-leases,-1.21441646761482,1.37237535723133,-1.7887539721601,https://salsa.debian.org/python-team/packages/python-isc-dhcp-leases, https://github.com/MartijnBraam/python-isc-dhcp-leases,3184.8126041666665,4,9,0,8.0,31.0,0.0,0.0 +itsdangerous,0.664230281928525,3.21691892161099,-0.0415160476537955,https://salsa.debian.org/python-team/packages/python-itsdangerous, https://github.com/pallets/itsdangerous,4546.929143518519,24,19,0,40.0,182.0,0.0,0.0 +jellyfish,0.0674101011583406,2.00512768356655,-0.420586978721513,https://salsa.debian.org/python-team/packages/python-jellyfish, https://github.com/jamesturk/jellyfish,4902.330810185185,15,24,0,27.0,148.0,0.0,0.0 +jira,-0.398082993767482,2.42317658300511,-1.04112088611181,https://salsa.debian.org/python-team/packages/python-jira, https://github.com/pycontribs/jira,4267.40125,111,155,3,195.0,572.0,0.0,0.0 +jmespath.py,0.362917294912316,2.06866453618359,-0.100383442475757,https://salsa.debian.org/python-team/packages/python-jmespath, https://github.com/jmespath/jmespath.py,3691.1897222222224,12,21,0,28.0,14.0,0.0,1.0 +josepy,0.351351117869537,2.29239636367554,-0.0869215968716407,https://salsa.debian.org/letsencrypt-team/certbot/josepy, https://github.com/certbot/josepy,4184.784768518519,104,276,0,285.0,46.0,0.0,0.0 +python-junit-xml,-0.487438449471786,3.24615767639063,-1.45803042909391,https://salsa.debian.org/python-team/packages/python-junit-xml, https://github.com/kyrus/python-junit-xml.git,2595.0297685185187,5,18,0,13.0,67.0,0.0,0.0 +kajiki,-2.35949509123373,-1.22994343139478,-2.61591574823484,https://salsa.debian.org/python-team/packages/python-kajiki, https://github.com/jackrosenthal/kajiki,4546.966851851852,3,22,0,18.0,30.0,0.0,0.0 +kaptan,-0.2383613889856,2.39640255249308,-0.806370710390245,https://salsa.debian.org/debian/python-kaptan, https://github.com/emre/kaptan.git,3814.6996064814816,6,17,0,16.0,32.0,0.0,0.0 +python-libarchive-c,0.208435529259664,1.88649211662683,-0.301184940168063,https://salsa.debian.org/debian/python-libarchive-c, https://github.com/Changaco/python-libarchive-c.git,3365.1853587962964,15,18,0,22.0,69.0,0.0,0.0 +libnacl,-0.574852514219853,1.05507549596557,-0.994477169229135,https://salsa.debian.org/python-team/packages/python-libnacl, https://github.com/saltstack/libnacl.git,3360.854479166667,4,45,0,34.0,71.0,0.0,0.0 +python-libusb1,0.226546258639299,3.57352952412115,-0.691131387277055,https://salsa.debian.org/python-team/packages/python-libusb1, https://github.com/vpelletier/python-libusb1.git,5022.308206018519,13,14,0,21.0,84.0,0.0,0.0 +python-lz4,0.282818911283454,1.80163047521988,-0.113842054778576,https://salsa.debian.org/python-team/packages/python-lz4, https://github.com/python-lz4/python-lz4.git,3988.215625,8,43,0,37.0,148.0,0.0,0.0 +python-lzo,0.645785242229208,3.62469176847773,-0.178816482313752,https://salsa.debian.org/python-team/packages/python-lzo, https://github.com/jd-boyd/python-lzo,4282.078425925926,2,13,0,10.0,69.0,0.0,0.0 +python-mapnik,-0.229461019965688,0.354970322404647,-0.441137684981998,https://salsa.debian.org/debian-gis-team/python-mapnik, https://github.com/mapnik/python-mapnik.git,5494.878263888889,10,101,0,63.0,101.0,0.0,0.0 +MechanicalSoup,-0.513942798071719,1.65462619837529,-1.00996758966548,https://salsa.debian.org/python-team/packages/python-mechanicalsoup, https://github.com/hickford/MechanicalSoup,3488.748657407408,39,28,0,46.0,149.0,0.0,0.0 +mechanize,0.558711844569591,1.52968011652335,0.109854317233808,https://salsa.debian.org/python-team/packages/python-mechanize, https://github.com/python-mechanize/mechanize.git,5735.6054513888885,5,12,0,14.0,81.0,0.0,0.0 +meld3,1.48080081615434,4.17117382179871,0.410052973838213,https://salsa.debian.org/python-team/packages/python-meld3, https://github.com/supervisor/meld3.git,4279.117650462963,0,8,0,7.0,27.0,0.0,0.0 +PyMemoize,-1.68771525590022,1.12030384879276,-2.40790936417297,https://salsa.debian.org/debian/python-memoize, https://github.com/mikeboers/PyMemoize,4629.862638888889,2,6,0,5.0,18.0,0.0,0.0 +memprof,-1.00554086528806,0.619577111707738,-1.55950990604571,https://salsa.debian.org/python-team/packages/python-memprof, https://github.com/jmdana/memprof,2110.1480324074078,1,8,0,5.0,18.0,0.0,0.0 +MIDIUtil,-0.45505193332883,2.09705788140006,-0.976010502748539,https://salsa.debian.org/multimedia-team/python-midiutil, https://github.com/MarkCWirt/MIDIUtil.git,532.2564583333333,2,4,0,2.0,47.0,0.0,0.0 +python-miio,-2.45351322179174,0.0572909826930906,-2.9975615852581,https://salsa.debian.org/python-team/packages/miio, https://github.com/rytilahti/python-miio.git,2467.253923611111,163,5,0,156.0,136.0,0.0,0.0 +python-mimeparse,0.63508767896753,2.36354127467912,-0.0635295991229227,https://salsa.debian.org/python-team/modules/python-mimeparse, https://github.com/dbtsai/python-mimeparse.git,3368.87212962963,9,11,0,12.0,20.0,0.0,0.0 +motor,-1.69055796538963,-0.111623697187181,-2.11723664098807,https://salsa.debian.org/python-team/packages/python-motor, https://github.com/mongodb/motor,3986.9431365740734,28,30,0,47.0,2.0,0.0,0.0 +pymox,-0.42399110071693,2.12147344904068,-1.1839102651754,https://salsa.debian.org/debian/python-mox, https://github.com/ivancrneto/pymox,3025.516585648148,3,7,0,5.0,8.0,0.0,0.0 +python-mpd2,-0.299073824682979,0.326678634389276,-0.42839288320167,https://salsa.debian.org/mpd-team/python-mpd, https://github.com/Mic92/python-mpd2,5765.543414351851,16,38,0,43.0,139.0,0.0,0.0 +mplexporter,-0.146420838933211,2.30643251806206,-0.918894410555408,https://salsa.debian.org/python-team/packages/python-mplexporter, https://github.com/mpld3/mplexporter,3220.593252314815,4,24,0,17.0,29.0,0.0,0.0 +pynacl,0.319402514296116,1.55808521965487,-0.0692227420611375,https://salsa.debian.org/python-team/packages/python-nacl, https://github.com/pyca/pynacl,3948.360462962963,44,26,1,61.0,44.0,0.0,0.0 +python-nameparser,-2.01236674816199,0.149903807220532,-2.47599140907381,https://salsa.debian.org/python-team/packages/python-nameparser, https://github.com/derek73/python-nameparser,4612.10912037037,9,18,1,23.0,121.0,0.0,0.0 +nest_asyncio,-3.32200877430784,0.265201322413396,-4.24298274039074,https://salsa.debian.org/python-team/packages/python-nest-asyncio, https://github.com/erdewit/nest_asyncio,1907.244074074074,4,10,0,12.0,92.0,0.0,0.0 +python-networkmanager,-0.329474073750244,1.47315347316823,-0.954369939916451,https://salsa.debian.org/python-team/packages/python-networkmanager, https://github.com/seveas/python-networkmanager,4090.319675925926,12,3,0,11.0,104.0,0.0,0.0 +oauthlib,0.388434485358995,2.23645148245914,-0.0809544138768979,https://salsa.debian.org/python-team/packages/python-oauthlib, https://github.com/oauthlib/oauthlib,4357.275405092592,51,167,2,168.0,249.0,0.0,0.0 +odfpy,-0.175261364398955,1.26653293995985,-0.467857181804133,https://salsa.debian.org/python-team/packages/python-odf, https://github.com/eea/odfpy,4744.619375,6,27,0,24.0,129.0,0.0,10.0 +python-pam,0.71946616188643,3.50926077559847,-0.0318286678033109,https://salsa.debian.org/python-team/packages/python-pampy, https://github.com/FirefighterBlu3/python-pam,2926.939490740741,2,10,0,8.0,42.0,0.0,0.0 +pandocfilters,0.432577173151416,2.97316489046529,-0.143677411686562,https://salsa.debian.org/python-team/packages/python-pandocfilters, https://github.com/jgm/pandocfilters,2924.061574074074,12,31,0,34.0,69.0,0.0,0.0 +parameterized,-0.0852476015951315,1.76346291587788,-0.473518930684393,https://salsa.debian.org/python-team/packages/python-parameterized, https://github.com/wolever/parameterized,4033.873125,6,29,0,26.0,199.0,0.0,0.0 +parse_type,-0.776689478455188,2.26573233056321,-1.60274719565093,https://salsa.debian.org/python-team/packages/python-parse-type, https://github.com/jenisys/parse_type,3544.349016203704,0,4,0,1.0,16.0,0.0,0.0 +periodictable,-1.06151881889309,0.0399913751431181,-1.34030530261269,https://salsa.debian.org/science-team/python-periodictable, https://github.com/pkienzle/periodictable.git,5457.176412037037,0,18,0,9.0,27.0,0.0,0.0 +pex,-0.747626762092592,1.46516914222358,-1.66854309907451,https://salsa.debian.org/python-team/packages/python-pex, https://github.com/pantsbuild/pex.git,3433.3294212962965,95,47,0,104.0,155.0,0.0,0.0 +python-pgpdump,-0.18793786024917,2.3259223776566,-0.770753980416854,https://salsa.debian.org/python-team/packages/python-pgpdump, https://github.com/toofishes/python-pgpdump,826.8067129629629,5,2,0,5.0,24.0,0.0,0.0 +PGPy,-0.243020190519095,2.40590682218298,-1.19788911397901,https://salsa.debian.org/debian/pgpy, https://github.com/SecurityInnovation/PGPy,3246.991145833333,11,33,2,35.0,91.0,0.0,1.0 +pgspecial,0.383068452251751,3.03336721267783,-0.389789037831525,https://salsa.debian.org/python-team/packages/python-pgspecial, https://github.com/dbcli/pgspecial,2959.9866319444445,21,33,0,38.0,60.0,0.0,0.0 +phply,-0.0136994366346983,0.838619626869934,-0.214614112499995,https://salsa.debian.org/debian/python-phply, https://github.com/viraptor/phply.git,4545.328414351852,2,13,0,9.0,35.0,0.0,0.0 +picklable-itertools,-1.90178551551163,0.0686564891464398,-2.33999489579228,https://salsa.debian.org/python-team/packages/python-picklable-itertools, https://github.com/mila-iqia/picklable-itertools,176.1980324074074,0,5,0,3.0,4.0,0.0,0.0 +pika,0.619444295085411,2.79202479295092,-0.129529118572213,https://salsa.debian.org/python-team/packages/python-pika, https://github.com/pika/pika,5099.34380787037,52,181,1,165.0,190.0,0.0,0.0 +pyftpdlib,-0.102896997295476,1.62718061385509,-0.706994831825187,https://salsa.debian.org/python-team/packages/python-pyftpdlib, https://github.com/giampaolo/pyftpdlib,5695.260231481481,16,22,1,30.0,82.0,0.0,0.0 +pymeasure,-0.0345798255187834,2.66268446904302,-0.706670141846425,https://salsa.debian.org/science-team/python-pymeasure, https://github.com/ralph-group/pymeasure/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +pynvim,0.179326212374558,2.01672596738411,-0.201491360332055,https://salsa.debian.org/python-team/packages/python-pynvim, https://github.com/neovim/pynvim,3504.5291782407407,26,35,0,55.0,243.0,0.0,0.0 +pyotp,-0.193648646264953,2.04392972704636,-0.774418029770972,https://salsa.debian.org/python-team/packages/python-pyotp, https://github.com/pyauth/pyotp.git,4631.612546296296,26,20,0,33.0,124.0,0.0,0.0 +pyperclip,0.520944025034176,2.1523556395884,-0.0782247034932544,https://salsa.debian.org/sramacher/python-pyperclip, https://github.com/asweigart/pyperclip,3772.0925925925926,7,31,0,31.0,330.0,0.0,0.0 +pyproj,-0.181404738604309,0.246170896887329,-0.257617837745339,https://salsa.debian.org/debian-gis-team/python-pyproj, https://github.com/pyproj4/pyproj.git,5681.238923611111,30,46,0,61.0,327.0,0.0,0.0 +pypubsub,-1.76374394900707,-0.0682506450035831,-2.06770927053707,https://salsa.debian.org/python-team/packages/python-pypubsub, https://github.com/schollii/pypubsub,1788.0433680555554,4,5,0,6.0,42.0,0.0,0.0 +pyramid_multiauth,-1.93412403144625,0.310005171658109,-2.44803837524133,https://github.com/douardda/pyramid_multiauth,https://github.com/douardda/pyramid_multiauth,1636.4991203703703,0,10,0,6.0,0.0,0.0,0.0 +pysnmp,0.629628888355477,1.94660897155429,0.0848638325098878,https://salsa.debian.org/python-team/packages/python-pysnmp4, https://github.com/etingof/pysnmp,4346.811122685185,17,11,0,21.0,393.0,0.0,0.0 +qtpy,0.349197408220288,2.22946766179484,-0.143511416505235,https://salsa.debian.org/python-team/packages/python-qtpy, https://github.com/spyder-ide/qtpy,3201.4270949074075,20,62,3,59.0,61.0,0.0,1.0 +python-quantities,-0.0106025797817292,1.95801217663616,-0.690445939035525,https://salsa.debian.org/science-team/python-quantities, https://github.com/python-quantities/python-quantities.git,5020.663506944445,7,39,0,28.0,134.0,0.0,0.0 +PythonQwt,0.593384145702343,3.63014883532243,-0.409777982820568,https://salsa.debian.org/science-team/python-qwt, https://github.com/PierreRaybaut/PythonQwt.git,1193.9426967592592,2,6,0,5.0,29.0,0.0,0.0 +rarfile,0.202492776710485,3.09614649938541,-0.586130322896287,https://salsa.debian.org/python-team/packages/python-rarfile, https://github.com/markokr/rarfile.git,5495.904236111112,8,13,0,16.0,102.0,0.0,0.0 +rdflib-jsonld,-0.0904254944853858,1.66426854494379,-0.495674447589734,https://salsa.debian.org/python-team/packages/python-rdflib-jsonld, https://github.com/RDFLib/rdflib-jsonld,3605.007118055556,4,18,0,13.0,106.0,0.0,0.0 +readme_renderer,-0.145668152779673,2.20763148299204,-0.583121517237032,https://salsa.debian.org/python-team/packages/python-readme-renderer, https://github.com/pypa/readme_renderer,3479.9030902777777,12,22,0,30.0,133.0,0.0,0.0 +restless,-1.93336124296478,-0.903136966319854,-2.28774606864276,https://salsa.debian.org/python-team/packages/python-restless, https://github.com/toastdriven/restless,2872.2400231481483,8,30,0,30.0,106.0,0.0,0.0 +rply,-0.0320431964263385,1.70103932460533,-0.472432363198678,https://salsa.debian.org/python-team/packages/python-rply, https://github.com/alex/rply,3096.8436689814816,9,17,0,21.0,76.0,0.0,0.0 +python-rsa,0.377236722481246,1.96349004356951,-0.109819950456565,https://salsa.debian.org/python-team/packages/python-rsa, https://github.com/sybrenstuvel/python-rsa,5670.19462962963,33,16,2,36.0,126.0,0.0,0.0 +rtree,-0.109038306741406,2.13175472396813,-0.531642492012879,https://salsa.debian.org/debian-gis-team/python-rtree, https://github.com/Toblerity/rtree.git,5739.577592592593,25,24,0,39.0,225.0,0.0,1.0 +s3transfer,0.367361800451876,2.53413379985704,-0.18101840192888,https://salsa.debian.org/python-team/packages/python-s3transfer, https://github.com/boto/s3transfer,2891.851863425926,24,28,0,32.0,161.0,0.0,0.0 +sabyenc,0.452279750672396,3.63651455047441,-0.398101406893918,https://salsa.debian.org/python-team/packages/python-sabyenc, https://github.com/sabnzbd/sabyenc.git,2872.893460648148,9,4,0,8.0,28.0,0.0,0.0 +scandir,0.827301267221475,3.78683246483855,0.005607474353191,https://salsa.debian.org/python-team/packages/python-scandir, https://github.com/benhoyt/scandir,3760.053518518519,8,20,0,22.0,123.0,0.0,0.0 +scrapy-djangoitem,-1.84013245478734,0.541282000590688,-2.43590727235664,https://salsa.debian.org/python-team/packages/python-scrapy-djangoitem, https://github.com/scrapy-plugins/scrapy-djangoitem,2837.113252314815,0,13,0,10.0,26.0,0.0,0.0 +scruffy,-0.895084258402866,1.96771238188626,-1.68844520581696,https://salsa.debian.org/python-team/packages/python-scruffy, https://github.com/snare/scruffy,1665.7056828703703,2,5,0,4.0,9.0,0.0,1.0 +secretstorage,0.338754454493241,2.13083587142078,-0.0585012824673191,https://salsa.debian.org/python-team/packages/python-secretstorage, https://github.com/mitya57/secretstorage,3916.169305555556,4,7,0,7.0,50.0,0.0,0.0 +serverfiles,-3.27091406196569,-0.0867153000074521,-4.17895259464003,https://salsa.debian.org/python-team/packages/python-serverfiles, https://github.com/biolab/serverfiles,2007.9058333333328,1,6,0,6.0,0.0,0.0,0.0 +setoptconf,-0.671896240226397,1.15321425559899,-1.12713130199862,https://salsa.debian.org/python-team/packages/python-setoptconf, https://github.com/jayclassless/setoptconf.git,2788.0056365740743,0,3,0,2.0,3.0,0.0,0.0 +py-setproctitle,1.0838445467833,3.25888103165606,0.244215084749425,https://salsa.debian.org/python-team/packages/python-setproctitle, https://github.com/dvarrazzo/py-setproctitle,5054.544236111111,9,10,0,12.0,86.0,0.0,0.0 +python-sfml,-0.378424977746305,0.262408565507834,-0.581825929686772,https://salsa.debian.org/games-team/python-sfml, https://github.com/intjelic/python-sfml,3326.038414351852,1,21,2,14.0,97.0,0.0,5.0 +sh,0.0684316621461243,2.74492058805087,-0.574426628333685,https://salsa.debian.org/python-team/packages/python-sh, https://github.com/amoffat/sh,4327.636168981481,29,75,2,77.0,438.0,0.0,0.0 +python-slugify,-0.121699178323397,1.41403200198841,-0.432501229873802,https://salsa.debian.org/python-team/packages/python-slugify, https://github.com/un33k/python-slugify,4027.612824074074,29,16,0,32.0,109.0,0.0,0.0 +socketIO-client,0.939084972443436,4.91129526622001,-0.466877499490517,https://salsa.debian.org/debian/python-socketio-client, https://github.com/invisibleroads/socketIO-client,1970.3003472222224,0,39,2,22.0,294.0,0.0,0.0 +PySocks,1.05506218944001,3.70438529865212,0.152607719345974,https://salsa.debian.org/python-team/packages/python-socksipy, https://github.com/Anorov/PySocks,2386.1779629629627,3,31,0,28.0,172.0,0.0,0.0 +python-systemd,0.186853671024445,1.45207144917141,-0.0787581662204422,https://salsa.debian.org/systemd-team/python-systemd, https://github.com/systemd/python-systemd,3925.632835648148,47,10,0,47.0,124.0,0.0,0.0 +python-tabulate,0.414080430633287,2.80786044801803,-0.230582005277608,https://salsa.debian.org/python-team/packages/python-tabulate, https://github.com/astanin/python-tabulate.git,3791.7183796296295,22,72,0,74.0,329.0,0.0,0.0 +tasklib,0.0418096657380263,2.41019438715361,-0.73813678317893,https://salsa.debian.org/tasktools-team/python-tasklib, https://github.com/GothenburgBitFactory/tasklib.git,3516.448148148148,7,15,0,12.0,63.0,0.0,0.0 +tesserocr,-0.0713400087120452,2.50403154069768,-0.964578978774877,https://salsa.debian.org/python-team/packages/python-tesserocr, https://github.com/sirfz/tesserocr.git,2852.509953703704,21,18,0,26.0,295.0,0.0,0.0 +testfixtures,-1.25594973616751,1.62554367784895,-1.9966424135979,https://salsa.debian.org/python-team/packages/python-testfixtures, https://github.com/Simplistix/testfixtures,5484.404849537037,6,35,0,28.0,106.0,0.0,0.0 +python-textile,0.342402295603914,1.77443192520197,-0.180414488779729,https://salsa.debian.org/python-team/packages/python-textile, https://github.com/textile/python-textile.git,3971.2575578703695,0,25,0,16.0,50.0,0.0,0.0 +translationstring,-0.284062414028812,1.48027405242699,-0.72861526521539,https://salsa.debian.org/python-team/packages/python-translationstring, https://github.com/Pylons/translationstring.git,3733.753599537037,2,15,0,14.0,26.0,0.0,0.0 +transliterate,-1.50529766715182,1.08432612130219,-2.11685619721961,https://salsa.debian.org/python-team/packages/python-transliterate, https://github.com/barseghyanartur/transliterate,3701.160231481481,5,13,0,12.0,48.0,0.0,1.0 +tzlocal,0.210519946767944,2.34875493084279,-0.286692662826862,https://salsa.debian.org/python-team/packages/python-tzlocal, https://github.com/regebro/tzlocal,4104.763518518518,12,22,0,27.0,150.0,0.0,0.0 +python-uinput,-0.489529964877291,2.08224447025191,-1.21548862374556,https://salsa.debian.org/python-team/packages/python-uinput, https://github.com/tuomasjjrasanen/python-uinput,2471.164976851852,3,17,0,9.0,71.0,0.0,0.0 +python-unicodecsv,0.217717331276343,2.07421541863016,-0.25031229858715,https://salsa.debian.org/python-team/packages/python-unicodecsv, https://github.com/jdunck/python-unicodecsv,1788.5991550925926,0,17,0,12.0,93.0,0.0,0.0 +uritools,0.566560867129225,3.63607120317236,-0.225008946768281,https://salsa.debian.org/python-team/packages/python-uritools, https://github.com/tkem/uritools,3490.549803240741,0,3,1,3.0,16.0,0.0,0.0 +venusian,-0.238988650203532,1.47081146786786,-0.72176680254253,https://salsa.debian.org/python-team/packages/python-venusian, https://github.com/Pylons/venusian,5042.179780092592,6,25,0,24.0,62.0,0.0,0.0 +werkzeug,0.646980855521847,1.62103160546561,0.163678274164921,https://salsa.debian.org/python-team/packages/python-werkzeug, https://github.com/pallets/werkzeug,5778.307245370371,256,251,0,409.0,438.0,0.0,0.0 +WebSocket-for-Python,-0.306187790901548,1.52320207376068,-1.04776523463365,https://salsa.debian.org/python-team/packages/python-ws4py, https://github.com/Lawouach/WebSocket-for-Python.git,4476.548090277778,6,66,0,48.0,280.0,0.0,0.0 +xapian-haystack,-1.10900462904103,0.996538859706,-1.76120345632217,https://salsa.debian.org/python-team/packages/python-xapian-haystack, https://github.com/notanumber/xapian-haystack,5023.712766203704,14,13,1,15.0,127.0,0.0,4.0 +pytrainer,-0.149298633682598,0.666744927246606,-0.624645008929126,https://salsa.debian.org/python-team/packages/pytrainer, https://github.com/pytrainer/pytrainer.git,5724.745717592593,2,26,0,20.0,59.0,0.0,3.0 +pytsk,-0.0170924764890338,1.36615789785123,-0.406967620872296,https://salsa.debian.org/pkg-security-team/pytsk, https://github.com/py4n6/pytsk.git,4730.662083333334,5,8,0,6.0,36.0,0.0,2.0 +pyuca,-1.87912470704493,0.454605877210584,-2.34473374334905,https://salsa.debian.org/python-team/packages/pyuca, https://github.com/jtauber/pyuca,2863.4539467592595,0,6,0,5.0,24.0,0.0,1.0 +pyudev,0.305204170939517,1.57973906471718,-0.0988792965635674,https://salsa.debian.org/python-team/packages/pyudev, https://github.com/pyudev/pyudev,4959.346203703703,7,18,0,18.0,85.0,0.0,1.0 +pyutilib,-0.226021251653545,1.97083991245983,-0.658404007269415,https://salsa.debian.org/python-team/packages/pyutilib, https://github.com/pyutilib/pyutilib,3833.6739467592593,5,24,4,10.0,35.0,0.0,0.0 +pyvirtualdisplay,-0.744315058060289,1.47691320380755,-1.17649501759753,https://salsa.debian.org/python-team/packages/pyvirtualdisplay, https://github.com/ponty/pyvirtualdisplay.git,4649.320717592593,4,15,0,10.0,24.0,0.0,0.0 +PyWebDAV3,-0.441529835447282,0.156219948430592,-0.598451800165818,https://salsa.debian.org/tryton-team/pywebdav, https://github.com/andrewleech/PyWebDAV3.git,5191.637395833333,7,13,0,13.0,12.0,0.0,0.0 +pywinrm,1.36886057870753,4.53073102988841,0.247796204064866,https://salsa.debian.org/python-team/packages/python-winrm, https://github.com/diyan/pywinrm.git,3968.3538425925926,2,35,0,22.0,257.0,0.0,0.0 +pywws,-2.00588148416824,0.429787250796557,-2.58459452078025,https://salsa.debian.org/debian-iot-team/pywws, https://github.com/jim-easterbrook/pywws,5328.594791666666,7,19,0,21.0,75.0,0.0,0.0 +pyx,-0.421432314726181,0.0635788824709516,-0.526071945006326,https://salsa.debian.org/debian/pyx3, https://github.com/pyx-project/pyx,5502.6121064814815,6,10,0,9.0,36.0,0.0,0.0 +pyxid,-1.06183440739462,1.73776504985248,-1.98138296454287,https://salsa.debian.org/med-team/pyxid, https://github.com/cedrus-opensource/pyxid/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +pyxnat,0.802907921757592,3.92172788420172,-0.273002662672547,https://salsa.debian.org/med-team/pyxnat, https://github.com/pyxnat/pyxnat.git,4754.132465277778,6,37,0,24.0,63.0,0.0,0.0 +pyyaml,0.295656713952886,0.967534479470059,0.0168556095851646,https://salsa.debian.org/python-team/packages/pyyaml, https://github.com/yaml/pyyaml.git,5656.189444444444,35,19,0,38.0,575.0,0.0,2.0 +qstat,1.48474698634343,3.54458759568229,0.568433579262232,https://salsa.debian.org/debian/qstat, https://github.com/Unity-Technologies/qstat,4992.716099537037,11,11,0,10.0,43.0,0.0,0.0 +QtPass,-0.244382876135003,0.606959209347823,-0.421666166035691,https://salsa.debian.org/debian/qtpass, https://github.com/IJHack/QtPass,3407.054664351852,102,101,0,112.0,378.0,0.0,0.0 +qtractor,0.205242478524563,1.08175411296215,-0.17760833656501,https://salsa.debian.org/multimedia-team/qtractor, https://github.com/rncbc/qtractor.git,5788.915474537037,11,33,0,25.0,122.0,0.0,0.0 +qtspell,-1.11742648735895,0.818254598420487,-1.55293389999062,https://salsa.debian.org/qt-kde-team/extras/qtspell, https://github.com/manisandro/qtspell.git,2705.0642476851854,0,4,0,3.0,14.0,0.0,1.0 +quickroute-linux,-0.134284888666013,2.9572779507399,-1.10391283790444,https://github.com/ralovich/quickroute-linux.git,https://github.com/ralovich/quickroute-linux.git,5000.886215277777,1,8,0,2.0,9.0,0.0,0.0 +qxgedit,0.0309448749204253,2.69462895280017,-0.615238319631849,https://salsa.debian.org/multimedia-team/qxgedit, https://github.com/rncbc/qxgedit.git,5219.99880787037,1,11,0,3.0,3.0,0.0,0.0 +qxmpp,-0.511930091191283,1.24504132925844,-0.922019472267346,https://salsa.debian.org/xmpp-team/qxmpp, https://github.com/qxmpp-project/qxmpp.git,5420.508472222222,31,20,0,35.0,124.0,0.0,4.0 +AnnotationDbi,0.0182386654122325,2.48127824418072,-0.570014091748017,https://salsa.debian.org/r-pkg-team/r-bioc-annotationdbi, https://github.com/Bioconductor/AnnotationDbi.git,5746.881550925926,1,33,0,12.0,20.0,0.0,0.0 +BiocParallel,-0.326093178537264,0.847331388462779,-0.59193290789088,https://salsa.debian.org/r-pkg-team/r-bioc-biocparallel, https://github.com/Bioconductor/BiocParallel,3995.750625,8,26,0,20.0,99.0,0.0,2.0 +Biostrings,-0.343481729390781,1.14780324476708,-0.614938326325344,https://salsa.debian.org/r-pkg-team/r-bioc-biostrings, https://github.com/Bioconductor/Biostrings.git,5738.509074074074,8,24,0,13.0,81.0,0.0,0.0 +checkmate,0.085937855407183,2.39423891376413,-0.350110573404548,https://salsa.debian.org/r-pkg-team/r-cran-checkmate, https://github.com/mllg/checkmate.git,3631.5784722222224,11,53,0,13.0,94.0,0.0,0.0 +crosstalk,0.116741371624694,2.266684008395,-0.349141297908935,https://salsa.debian.org/r-pkg-team/r-cran-crosstalk, https://github.com/rstudio/crosstalk.git,2973.0628472222224,5,12,0,11.0,160.0,0.0,0.0 +crul,-0.379530865040192,2.06203120065321,-0.884706654122055,https://salsa.debian.org/r-pkg-team/r-cran-crul, https://github.com/ropensci/crul.git,2488.6026967592597,12,5,0,14.0,41.0,0.0,0.0 +eaf,-0.430233712486963,1.83021631491036,-0.875193303038921,https://salsa.debian.org/r-pkg-team/r-cran-eaf, https://github.com/MLopez-Ibanez/eaf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +filehash,0.2805937395568,2.9173226699455,-0.248880602147883,https://salsa.debian.org/r-pkg-team/r-cran-filehash, https://github.com/rdpeng/filehash/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +fs,0.516063634396358,3.51625286917958,-0.265398930813445,https://salsa.debian.org/r-pkg-team/r-cran-fs, https://github.com/r-lib/fs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +gbm,0.327991678930956,3.22428029767403,-0.446269420514668,https://salsa.debian.org/r-pkg-team/r-cran-gbm, https://github.com/gbm-developers/gbm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ggeffects,-0.410111574802552,1.66252130107392,-0.846753795129048,https://salsa.debian.org/r-pkg-team/r-cran-ggeffects, https://github.com/strengejacke/ggeffects.git,2388.151180555556,6,17,0,11.0,238.0,0.0,0.0 +gnm,-0.0730492728942156,2.20017505704627,-0.547412148156367,https://salsa.debian.org/r-pkg-team/r-cran-gnm, https://github.com/hturner/gnm.git,5664.818171296296,2,3,0,4.0,13.0,0.0,0.0 +gsl,0.0315524777808514,2.23025396216522,-0.476328311599455,https://salsa.debian.org/r-pkg-team/r-cran-gsl, https://github.com/RobinHankin/gsl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +gtable,0.360461990322493,2.59184783854294,-0.180163876987905,https://salsa.debian.org/r-pkg-team/r-cran-gtable, https://github.com/r-lib/gtable.git,4252.72269675926,3,15,0,11.0,32.0,0.0,0.0 +hms,0.280313094881459,2.69156338261866,-0.237194789769666,https://salsa.debian.org/r-pkg-team/r-cran-hms, https://github.com/tidyverse/hms,2747.6862152777776,3,21,1,13.0,45.0,0.0,0.0 +htmlwidgets,0.222380483608414,2.45230821612572,-0.224551383721169,https://salsa.debian.org/r-pkg-team/r-cran-htmlwidgets, https://github.com/ramnathv/htmlwidgets.git,3428.7835185185186,9,25,0,23.0,280.0,0.0,3.0 +httpuv,0.38759454354957,2.22289576459683,-0.156279075658878,https://salsa.debian.org/r-pkg-team/r-cran-httpuv, https://github.com/rstudio/httpuv.git,3956.968298611111,10,30,0,24.0,220.0,0.0,0.0 +lmerTestR,-0.225905457924611,2.0342017388861,-0.681221646902755,https://salsa.debian.org/r-pkg-team/r-cran-lmertest, https://github.com/runehaubo/lmerTestR.git,1009.607511574074,2,4,0,3.0,48.0,0.0,0.0 +memoise,0.192523027292919,2.38980492525073,-0.241066625203724,https://salsa.debian.org/r-pkg-team/r-cran-memoise, https://github.com/hadley/memoise.git,1189.1777777777777,16,15,0,25.0,125.0,0.0,0.0 +openssl,0.14083112507158,1.97368210310857,-0.305459050885552,https://salsa.debian.org/r-pkg-team/r-cran-openssl, https://github.com/jeroen/openssl.git,3340.7487152777776,9,9,0,11.0,104.0,0.0,0.0 +repr,-0.420048623605369,1.36539798763435,-0.793148893401469,https://salsa.debian.org/r-pkg-team/r-cran-repr, https://github.com/IRkernel/repr.git,3009.431261574074,13,11,0,19.0,107.0,0.0,5.0 +rhandsontable,-0.511695951267473,1.69672639029837,-0.952787574275437,https://salsa.debian.org/r-pkg-team/r-cran-rhandsontable, https://github.com/jrowen/rhandsontable.git,2472.1080902777776,10,16,0,13.0,398.0,0.0,0.0 +stringr,0.0964776845371271,1.65341813554563,-0.188164763711549,https://salsa.debian.org/r-pkg-team/r-cran-stringr, https://github.com/tidyverse/stringr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +svglite,-0.188558737538566,2.58904721181817,-0.918190731949655,https://salsa.debian.org/r-pkg-team/r-cran-svglite, https://github.com/r-lib/svglite.git,4029.9752546296295,5,22,0,17.0,93.0,0.0,0.0 +taxize,-0.552436628653171,0.951437613723233,-0.817524160401268,https://salsa.debian.org/r-pkg-team/r-cran-taxize, https://github.com/ropensci/taxize.git,4557.283946759259,10,50,0,33.0,204.0,0.0,0.0 +uwot,-2.1360077926584,0.163727343926423,-2.61564210224675,https://salsa.debian.org/r-pkg-team/r-cran-uwot, https://github.com/jlmelville/uwot.git,2010.5388078703704,2,8,0,7.0,92.0,0.0,0.0 +webmockr,-0.431037610471389,1.82773866093092,-0.929927976157702,https://salsa.debian.org/r-pkg-team/r-cran-webmockr, https://github.com/ropensci/webmockr.git,3289.3273726851853,4,4,0,5.0,17.0,0.0,0.0 +rabbitvcs,1.67149460581492,3.54267837185063,0.706824886189823,https://salsa.debian.org/python-team/packages/rabbitvcs, https://github.com/rabbitvcs/rabbitvcs.git,5506.533148148148,17,45,0,47.0,171.0,0.0,0.0 +radeontop,0.790515602302201,3.99542161046398,-0.132898223728508,https://salsa.debian.org/debian/radeontop, https://github.com/clbr/radeontop.git,3881.850023148148,5,20,0,19.0,110.0,0.0,0.0 +radio_beam,0.0745073318764811,3.003721160024,-0.655590414920625,https://salsa.debian.org/debian-astro-team/radio-beam, https://github.com/radio-astro-tools/radio_beam,3526.8169791666664,2,17,0,12.0,23.0,0.0,0.0 +radon,-1.26364881199145,0.295243910296723,-1.53920836528047,https://salsa.debian.org/python-team/packages/radon, https://github.com/rubik/radon.git,4032.623877314815,45,20,0,51.0,208.0,0.0,0.0 +radsecproxy,-1.22584025475683,0.348273776250536,-1.86439395619628,https://salsa.debian.org/debian/radsecproxy, https://github.com/radsecproxy/radsecproxy.git,5771.466006944444,15,23,0,18.0,53.0,0.0,0.0 +nqp,0.956621847163002,2.10331558452598,0.324209403678667,https://salsa.debian.org/perl6-team/rakudo, https://github.com/Raku/nqp.git,5159.158784722223,24,165,0,111.0,165.0,0.0,3.0 +raspell,0.0344606052681667,2.18881918135865,-0.701525811921747,https://salsa.debian.org/ruby-team/raspell, https://github.com/evan/raspell/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rasterio,-0.107189830509874,2.01556534798503,-0.677966565838329,https://salsa.debian.org/debian-gis-team/rasterio, https://github.com/rasterio/rasterio.git,3692.9866550925926,96,61,0,141.0,10.0,0.0,13.0 +ratt,-0.437063012771801,1.1211106018962,-0.87106597729197,https://salsa.debian.org/go-team/packages/ratt, https://github.com/Debian/ratt,2545.9663194444443,4,6,0,7.0,15.0,0.0,0.0 +openrdate,0.438280809173624,1.32034165331615,0.017779896331518,https://salsa.debian.org/debian/rdate, https://github.com/resurrecting-open-source-projects/openrdate,876.4736111111112,0,4,0,3.0,6.0,0.0,0.0 +rdiff-backup,1.05680397622738,1.56640486119337,0.690404361845759,https://salsa.debian.org/python-team/applications/rdiff-backup, https://github.com/rdiff-backup/rdiff-backup.git,5728.728240740741,45,27,0,46.0,61.0,0.0,0.0 +redis-py-cluster,-1.8001809262726,0.77314251096035,-2.53080983822876,https://salsa.debian.org/python-team/packages/redis-py-cluster, https://github.com/Grokzen/redis-py-cluster,3217.2146527777777,55,25,3,58.0,325.0,0.0,0.0 +r.js,0.307781270973243,1.84507662111504,-0.106112137855613,https://salsa.debian.org/js-team/requirejs, https://github.com/requirejs/r.js.git,4511.829074074074,2,70,0,53.0,645.0,0.0,3.0 +ripe.atlas.sagan,-0.835078845819303,1.34467460370317,-1.32629970428769,https://salsa.debian.org/python-team/packages/ripe-atlas-sagan, https://github.com/RIPE-NCC/ripe.atlas.sagan,2585.8181481481483,2,22,0,13.0,17.0,0.0,0.0 +rlwrap,-0.0178154569905868,0.234120064325572,-0.118926009362432,https://salsa.debian.org/debian/rlwrap, https://github.com/hanslub42/rlwrap,3317.1894560185187,6,18,2,18.0,111.0,0.0,2.0 +rope,1.59784683611494,3.96719981773256,0.555193560378876,https://salsa.debian.org/python-team/packages/rope, https://github.com/python-rope/rope,5713.8836458333335,27,64,1,64.0,166.0,0.0,6.0 +bond_core,-0.455791944414582,0.803086304426349,-0.74616134447602,https://salsa.debian.org/science-team/ros-bond-core, https://github.com/ros/bond_core,5161.858229166667,13,47,0,19.0,71.0,0.0,0.0 +genmsg,-0.0171725935327327,2.37579622587927,-0.582572657628371,https://salsa.debian.org/science-team/ros-genmsg, https://github.com/ros/genmsg,4008.155497685185,10,28,1,20.0,69.0,0.0,0.0 +genpy,-0.613699120149313,-0.610827108785914,-0.614165704647256,https://salsa.debian.org/science-team/ros-genpy, https://github.com/ros/genpy.git,4178.100347222222,21,31,0,33.0,89.0,0.0,0.0 +geometry,-0.550655774788899,0.405821805097857,-0.73002531698746,https://salsa.debian.org/science-team/ros-geometry, https://github.com/ros/geometry,5094.815069444445,26,84,1,57.0,212.0,0.0,0.0 +image_common,-0.458774321823753,0.0450984940995194,-0.609699198188623,https://salsa.debian.org/science-team/ros-image-common, https://github.com/ros-perception/image_common.git,5179.632361111111,38,47,0,28.0,228.0,0.0,2.0 +interactive_markers,-0.252228085387444,2.12575864588487,-0.800390042312437,https://salsa.debian.org/science-team/ros-interactive-markers, https://github.com/ros-visualization/interactive_markers.git,5635.597268518519,21,62,0,25.0,70.0,0.0,0.0 +kdl_parser,-0.338657284698037,2.27803009350466,-0.913848871906168,https://salsa.debian.org/science-team/ros-kdl-parser, https://github.com/ros/kdl_parser,4840.751701388889,32,70,0,45.0,47.0,0.0,0.0 +laser_geometry,-0.418947578029671,0.783831601018165,-0.676036736607366,https://salsa.debian.org/science-team/ros-laser-geometry, https://github.com/ros-perception/laser_geometry,5200.342638888889,9,44,0,21.0,63.0,0.0,0.0 +message_runtime,-0.290597528646356,1.63004819773672,-0.677192321668655,https://salsa.debian.org/science-team/ros-message-runtime, https://github.com/ros/message_runtime.git,2931.916921296296,1,6,0,3.0,1.0,0.0,0.0 +navigation_msgs,-0.585376458044753,1.33810923404946,-0.980189712626315,https://salsa.debian.org/science-team/ros-navigation-msgs, https://github.com/ros-planning/navigation_msgs,4055.790902777778,6,14,0,6.0,18.0,0.0,0.0 +nodelet_core,-0.0806493057174334,2.30627000374114,-0.651167814298841,https://salsa.debian.org/science-team/ros-nodelet-core, https://github.com/ros/nodelet_core,4750.036273148148,13,47,1,29.0,90.0,0.0,0.0 +pluginlib,-0.663444382323728,0.718401032692024,-0.947010126436121,https://salsa.debian.org/science-team/ros-pluginlib, https://github.com/ros/pluginlib.git,5189.668819444444,29,44,0,22.0,130.0,0.0,0.0 +vision_opencv,-0.552104267660161,0.568246088619513,-0.82845187858941,https://salsa.debian.org/science-team/ros-vision-opencv, https://github.com/ros-perception/vision_opencv,5223.140868055556,33,82,0,61.0,435.0,0.0,0.0 +rss2email,0.331485550479245,0.715768198279115,0.0455417283932296,https://salsa.debian.org/python-team/packages/rss2email, https://github.com/rss2email/rss2email.git,3888.6072916666662,25,44,0,51.0,130.0,0.0,0.0 +actionpack-xml_parser,-0.299618436401572,1.34280570721943,-0.595518475197761,https://salsa.debian.org/ruby-team/ruby-actionpack-xml-parser, https://github.com/rails/actionpack-xml_parser,1540.6708333333331,2,13,0,9.0,34.0,0.0,0.0 +active_model_serializers,-2.6276778242837,-0.192697543842701,-3.25923102671891,https://salsa.debian.org/ruby-team/ruby-active-model-serializers, https://github.com/rails-api/active_model_serializers/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +activeldap,-1.41566976141054,-0.451102296476624,-1.59887747927363,https://salsa.debian.org/ruby-team/ruby-activeldap, https://github.com/activeldap/activeldap/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +activerecord-import,-1.96877194883876,1.05126670889692,-2.71680418807644,https://salsa.debian.org/ruby-team/ruby-activerecord-import, https://github.com/zdennis/activerecord-import/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +nulldb,-2.92312935078363,0.233072790027474,-3.99191048859426,https://salsa.debian.org/ruby-team/ruby-activerecord-nulldb-adapter, https://github.com/nulldb/nulldb/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +acts_as_list,-1.81996629124238,-1.46818516328738,-1.87078666457968,https://salsa.debian.org/ruby-team/ruby-acts-as-list, https://github.com/swanandp/acts_as_list,4913.702615740741,58,72,1,107.0,411.0,0.0,3.0 +addressable,0.410841687793814,2.87556373319275,-0.168590849404852,https://salsa.debian.org/ruby-team/ruby-addressable, https://github.com/sporkmonger/addressable/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ahoy_email,-4.44359504237849,-0.941064192833455,-5.36414002484502,https://salsa.debian.org/ruby-team/ruby-ahoy-email, https://github.com/ankane/ahoy_email/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +amqp,-1.81499353466034,0.32880604492994,-2.3239990953829,https://salsa.debian.org/ruby-team/ruby-amqp, https://github.com/ruby-amqp/amqp.git,4994.888078703703,18,59,0,41.0,137.0,0.0,0.0 +api-pagination,-3.30441828753361,-0.0567093293971251,-4.19511106017158,https://salsa.debian.org/ruby-team/ruby-api-pagination, https://github.com/davidcelis/api-pagination.git,3040.7300578703703,2,39,0,31.0,10.0,0.0,0.0 +arbre,-4.80290503412611,-2.12734338718058,-5.44120198055126,https://salsa.debian.org/ruby-team/ruby-arbre, https://github.com/activeadmin/arbre/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +autoprefixer-rails,-0.23154495538642,2.83495046087984,-1.04541918572183,https://salsa.debian.org/ruby-team/ruby-autoprefixer-rails, https://github.com/ai/autoprefixer-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +awesome_print,-0.158900582763238,2.0284975515981,-0.84267525529854,https://salsa.debian.org/ruby-team/ruby-awesome-print, https://github.com/awesome-print/awesome_print/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +backports,0.15391561758727,2.11834478467549,-0.456239938472782,https://salsa.debian.org/ruby-team/ruby-backports, https://github.com/marcandre/backports/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +beaneater,-1.36063596481779,1.16300557706997,-2.01759486752016,https://salsa.debian.org/ruby-team/ruby-beaneater, https://github.com/beanstalkd/beaneater,3900.032673611111,5,29,1,26.0,71.0,0.0,2.0 +browser,-0.166084666327556,3.38691321447145,-1.14642710761497,https://salsa.debian.org/ruby-team/ruby-browser, https://github.com/fnando/browser.git,4214.415902777778,56,56,0,92.0,148.0,0.0,0.0 +clockwork,-1.61758937071582,0.289791082658143,-2.10484686805431,https://salsa.debian.org/ruby-team/ruby-clockwork, https://github.com/Rykian/clockwork,4663.075914351852,22,47,0,52.0,93.0,0.0,0.0 +coffee-rails,0.309182406496994,2.8142114503781,-0.273613392892316,https://salsa.debian.org/ruby-team/ruby-coffee-rails, https://github.com/rails/coffee-rails,3619.345023148149,7,34,0,31.0,141.0,0.0,0.0 +concurrent-ruby,0.55660306049591,2.94416936579305,-0.071754255411524,https://salsa.debian.org/ruby-team/ruby-concurrent, https://github.com/ruby-concurrency/concurrent-ruby.git,3789.081145833333,43,132,0,147.0,281.0,0.0,0.0 +crack,-0.256144909790271,2.08731653197277,-0.877244085082554,https://salsa.debian.org/ruby-team/ruby-crack, https://github.com/jnunemaker/crack,4290.858148148148,10,28,0,32.0,97.0,0.0,0.0 +cri,-0.234304524281558,2.33067119186735,-0.792949171408189,https://salsa.debian.org/ruby-team/ruby-cri, https://github.com/ddfreyne/cri,5399.781666666667,2,13,0,10.0,43.0,0.0,0.0 +curses,0.239732109116517,3.76387260758644,-0.662728525606041,https://salsa.debian.org/ruby-team/ruby-curses, https://github.com/ruby/curses.git,5368.611724537037,1,10,0,23.0,71.0,0.0,0.0 +dbf,-2.17293544580287,-1.12492567577822,-2.3569268761111,https://salsa.debian.org/ruby-team/ruby-dbf, https://github.com/infused/dbf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby-dbus,-0.596798172154282,1.74535265452641,-1.28034864886111,https://salsa.debian.org/ruby-team/ruby-dbus, https://github.com/mvidner/ruby-dbus,4746.807060185185,9,33,0,28.0,89.0,0.0,0.0 +default_value_for,-0.844820367657218,1.50582615601139,-1.30792200429198,https://salsa.debian.org/ruby-team/ruby-default-value-for, https://github.com/FooBarWidget/default_value_for/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +delayed_job,-0.228642407062013,2.47027908897614,-0.961746735723591,https://salsa.debian.org/ruby-team/ruby-delayed-job, http://github.com/collectiveidea/delayed_job/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +devise-two-factor,-0.662426218528405,1.64671262728262,-1.27531542217528,https://salsa.debian.org/ruby-team/ruby-devise-two-factor, https://github.com/tinfoil/devise-two-factor.git,3466.0953935185184,20,37,0,43.0,252.0,0.0,0.0 +diaspora_federation,-4.73760544976791,-2.27340660516414,-5.40378423014188,https://salsa.debian.org/ruby-team/ruby-diaspora-federation, https://github.com/diaspora/diaspora_federation/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +diff-lcs,0.307179615211835,2.563580346669,-0.262824001563441,https://salsa.debian.org/ruby-team/ruby-diff-lcs, https://github.com/halostatue/diff-lcs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +diffy,-0.225522029436628,2.81318448723136,-1.02832995269193,https://salsa.debian.org/ruby-team/ruby-diffy, https://github.com/samg/diffy,4494.668576388889,5,31,0,28.0,132.0,0.0,0.0 +distribution,-2.10117930738803,0.911261784935495,-3.05791627241738,https://salsa.debian.org/ruby-team/ruby-distribution, https://github.com/sciruby/distribution/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +docker-api,0.290632159627153,4.20394012920714,-1.01215234748311,https://salsa.debian.org/ruby-team/ruby-docker-api, https://github.com/swipely/docker-api,3249.069942129629,17,99,0,86.0,233.0,0.0,0.0 +ruby-domain_name,0.265149501486431,2.34547358088521,-0.138865391949013,https://salsa.debian.org/ruby-team/ruby-domain-name, https://github.com/knu/ruby-domain_name/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +em-synchrony,-2.05987381556942,0.456421509321353,-2.97866035749162,https://salsa.debian.org/ruby-team/ruby-em-synchrony, https://github.com/igrigorik/em-synchrony,2910.822118055556,2,57,0,41.0,186.0,0.0,1.0 +factory_girl,-1.42630613643365,0.543363319899027,-1.9953583846548,https://salsa.debian.org/ruby-team/ruby-factory-girl, https://github.com/thoughtbot/factory_girl.git,4913.916967592592,224,76,0,233.0,139.0,0.0,74.0 +fakeredis,-3.90276111658524,-1.91100186972822,-4.33404769776494,https://salsa.debian.org/ruby-team/ruby-fakeredis, https://github.com/guilleiguaran/fakeredis.git,3981.188900462963,20,88,0,77.0,219.0,0.0,0.0 +fakeweb,-2.14550452774702,-0.773187458569225,-2.56679662246972,https://salsa.debian.org/ruby-team/ruby-fakeweb, https://github.com/chrisk/fakeweb.git,3218.664386574074,6,19,0,19.0,136.0,0.0,0.0 +faraday_middleware,-0.269047678836487,2.06194722235424,-0.769690537232575,https://salsa.debian.org/ruby-team/ruby-faraday-middleware, https://github.com/lostisland/faraday_middleware,4563.581898148148,47,29,1,58.0,244.0,0.0,14.0 +fast_gettext,-0.120940172494493,1.23606882337898,-0.568830782487987,https://salsa.debian.org/ruby-team/ruby-fast-gettext, https://github.com/grosser/fast_gettext,5110.33400462963,3,48,0,29.0,84.0,0.0,4.0 +fastimage,-0.925969085128097,1.72194061279016,-1.48478102561478,https://salsa.debian.org/ruby-team/ruby-fastimage, https://github.com/sdsykes/fastimage,5223.717372685185,7,44,0,46.0,117.0,0.0,0.0 +fog-rackspace,-0.49913712640418,1.90824177376792,-1.14481630838024,https://salsa.debian.org/ruby-team/ruby-fog-rackspace, https://github.com/fog/fog-rackspace,1479.8924537037035,3,5,0,4.0,40.0,0.0,0.0 +ruby-fogbugz,-0.712082494968256,1.92305783373217,-1.27598467118291,https://salsa.debian.org/ruby-team/ruby-fogbugz, https://github.com/firmafon/ruby-fogbugz,2091.224988425926,2,11,0,9.0,16.0,0.0,0.0 +font-awesome-rails,-0.818075553073728,0.43473253749754,-1.0809960446575,https://salsa.debian.org/ruby-team/ruby-font-awesome-rails, https://github.com/bokmann/font-awesome-rails,4227.784085648148,7,30,0,28.0,346.0,0.0,2.0 +foreman,-0.827261813145368,1.5097537203568,-1.37556352361594,https://salsa.debian.org/ruby-team/ruby-foreman, http://github.com/ddollar/foreman/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +fssm,-0.434816917112639,2.36422881279322,-1.13137984553414,https://salsa.debian.org/ruby-team/ruby-fssm, https://github.com/ttilley/fssm.git,2641.922002314815,2,11,0,9.0,53.0,0.0,0.0 +gelf-rb,-2.04734038121914,0.385090259919112,-2.71689816769282,https://salsa.debian.org/ruby-team/ruby-gelf, https://github.com/Graylog2/gelf-rb,4546.170115740741,9,25,0,21.0,141.0,0.0,0.0 +gettext_i18n_rails,-0.761306952871014,2.02562934857725,-1.50917719235857,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails, https://github.com/grosser/gettext_i18n_rails,5235.78025462963,11,59,0,51.0,141.0,0.0,0.0 +gettext_i18n_rails_js,-0.961258328672556,2.48725603834977,-1.87852032130149,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails-js, https://github.com/webhippie/gettext_i18n_rails_js,4076.987175925926,2,24,0,18.0,7.0,0.0,0.0 +gettext-setup-gem,-0.528047027616317,1.2500737380164,-0.959638692207441,https://salsa.debian.org/puppet-team/ruby-gettext-setup, https://github.com/puppetlabs/gettext-setup-gem,2424.9263310185183,17,20,0,23.0,43.0,0.0,0.0 +ruby-gir-ffi,-1.52318008763164,0.47543873145472,-2.13105532177141,https://salsa.debian.org/ruby-team/ruby-gir-ffi, https://github.com/mvz/ruby-gir-ffi,5437.5734375,3,7,0,7.0,35.0,0.0,4.0 +ruby-git,-0.610861650916398,1.21228795801147,-1.0441459189093,https://salsa.debian.org/ruby-team/ruby-git, https://github.com/ruby-git/ruby-git/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby-team,-2.31364882786132,0.325639108637881,-2.97394980033171,https://salsa.debian.org/ruby-team/ruby-github-api,https://salsa.debian.org/ruby-team/ruby-github-api,2392.401226851852,0,6,0,0.0,0.0,0.0,0.0 +ruby-team,-0.649517699033064,1.75915565179493,-1.16324791291581,https://salsa.debian.org/ruby-team/ruby-github-linguist,https://salsa.debian.org/ruby-team/ruby-github-linguist,3497.996793981481,0,11,0,0.0,0.0,0.0,0.0 +ruby-team,-1.10514320300276,0.531227105443483,-1.45520269274711,https://salsa.debian.org/ruby-team/ruby-github-markdown,https://salsa.debian.org/ruby-team/ruby-github-markdown,3170.9246875,0,7,0,0.0,0.0,0.0,0.0 +ruby-team,-0.0402315958246687,2.26585122072999,-0.751462188010826,https://salsa.debian.org/ruby-team/ruby-github-markup,https://salsa.debian.org/ruby-team/ruby-github-markup,3514.504826388889,0,15,0,0.0,0.0,0.0,0.0 +globalid,0.566794425706185,3.05185208343155,-0.164807864980667,https://salsa.debian.org/ruby-team/ruby-globalid, https://github.com/rails/globalid/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +guard,-2.98071324834753,-1.61784676093903,-3.31281269568528,https://salsa.debian.org/ruby-team/ruby-guard, https://github.com/guard/guard.git,4726.434537037037,21,191,0,150.0,537.0,0.0,199.0 +hipchat-rb,-0.656642499184759,1.64698920332921,-1.26290406547913,https://salsa.debian.org/ruby-team/ruby-hipchat, https://github.com/hipchat/hipchat-rb,2705.747349537037,7,102,0,82.0,222.0,0.0,1.0 +hiredis-rb,-0.864125054810679,1.25971635974218,-1.35984364268179,https://salsa.debian.org/ruby-team/ruby-hiredis, https://github.com/redis/hiredis-rb.git,4451.3495601851855,10,19,0,20.0,124.0,0.0,1.0 +http.rb,0.53289195958659,3.15871460361099,-0.50414125027534,https://salsa.debian.org/ruby-team/ruby-http, https://github.com/httprb/http.rb,4428.906041666667,68,68,2,106.0,42.0,0.0,37.0 +jquery-rails,0.47629162422549,2.52894039288237,-0.167140999616939,https://salsa.debian.org/ruby-team/ruby-jquery-rails, https://github.com/rails/jquery-rails.git,4697.095868055556,14,69,0,65.0,417.0,0.0,1.0 +jquery-ui-rails,-0.555310039918061,1.25474851696358,-1.14962975443231,https://salsa.debian.org/ruby-team/ruby-jquery-ui-rails, https://github.com/joliss/jquery-ui-rails,4080.96974537037,4,20,0,18.0,217.0,0.0,0.0 +js-routes,-3.46443888085801,-0.448912427867101,-4.25770793969142,https://salsa.debian.org/ruby-team/ruby-js-routes, https://github.com/railsware/js-routes,3471.607662037037,19,61,0,62.0,240.0,0.0,0.0 +json-jwt,-0.664678173904206,1.82433301242804,-1.33767207744544,https://salsa.debian.org/ruby-team/ruby-json-jwt, https://github.com/nov/json-jwt/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +json-schema,-2.10309419888235,-0.252835633222006,-2.47580554866367,https://salsa.debian.org/ruby-team/ruby-json-schema, https://github.com/voxpupuli/json-schema/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +json_spec,-2.59624622223757,0.235746645393774,-3.26976487622892,https://salsa.debian.org/ruby-team/ruby-json-spec, https://github.com/collectiveidea/json_spec,2153.749525462963,1,19,0,16.0,121.0,0.0,0.0 +ruby-jwt,-0.008931060665816,2.92991582128566,-0.735893301336851,https://salsa.debian.org/ruby-team/ruby-jwt, https://github.com/jwt/ruby-jwt/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +kakasi_ffi,-3.43512770438635,-0.663996376780859,-4.21888845591111,https://salsa.debian.org/ruby-team/ruby-kakasi-ffi, https://github.com/knu/kakasi_ffi/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +kaminari,-0.548518597486277,1.04639899006081,-0.964026637366687,https://salsa.debian.org/ruby-team/ruby-kaminari, https://github.com/kaminari/kaminari,4634.299247685185,35,152,3,153.0,70.0,0.0,47.0 +kitchen-salt,-5.03892668763929,-2.91003595314571,-5.47880252364296,https://salsa.debian.org/ruby-team/ruby-kitchen-salt, https://github.com/saltstack/kitchen-salt/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +kramdown,0.158542489753522,1.28859181697314,-0.177482119377244,https://salsa.debian.org/ruby-team/ruby-kramdown, https://github.com/gettalong/kramdown/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby-ldap,0.972369716159411,3.84112355567061,-0.148730482711379,https://salsa.debian.org/ruby-team/ruby-ldap, https://github.com/bearded/ruby-ldap,3395.5528703703703,4,15,0,10.0,49.0,0.0,2.0 +libxml-ruby,-0.165243964204388,1.55273545183271,-0.754044250255796,https://salsa.debian.org/ruby-team/ruby-libxml, https://github.com/xml4r/libxml-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +mechanize,-0.385894178600464,1.23312762061377,-0.880550223257063,https://salsa.debian.org/ruby-team/ruby-mechanize, https://github.com/sparklemotion/mechanize.git,5735.6054513888885,5,12,0,103.0,529.0,0.0,6.0 +moneta,-0.564013249665526,0.251590548161168,-0.810395607362015,https://salsa.debian.org/ruby-team/ruby-moneta, https://github.com/moneta-rb/moneta,5182.159502314815,20,32,0,38.0,98.0,45.0,0.0 +msgpack-ruby,0.289349615724596,2.75057422607797,-0.316936287829029,https://salsa.debian.org/ruby-team/ruby-msgpack, https://github.com/msgpack/msgpack-ruby,4471.12474537037,7,115,0,71.0,168.0,0.0,0.0 +multi_json,0.658299961622085,3.18113451815751,-0.0546345167045796,https://salsa.debian.org/ruby-team/ruby-multi-json, https://github.com/intridea/multi_json,3679.9527430555554,10,44,1,48.0,209.0,0.0,1.0 +ruby-team,-0.643273362222477,1.92259855385143,-1.22304663941278,https://salsa.debian.org/ruby-team/ruby-omniauth-github,https://salsa.debian.org/ruby-team/ruby-omniauth-github,3158.4246296296296,0,8,0,0.0,0.0,0.0,0.0 +omniauth-gitlab,-0.863455311873375,1.3390999824916,-1.29446320996902,https://salsa.debian.org/ruby-team/ruby-omniauth-gitlab, https://github.com/linchus/omniauth-gitlab/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +omniauth-openid,-2.39935741291074,-0.171642674226449,-2.97783480212631,https://salsa.debian.org/ruby-team/ruby-omniauth-openid, https://github.com/intridea/omniauth-openid,4671.711388888889,3,19,0,14.0,49.0,0.0,0.0 +omniauth-saml,-0.557953172451022,2.35318785298679,-1.24973080467682,https://salsa.debian.org/ruby-team/ruby-omniauth-saml, https://github.com/PracticallyGreen/omniauth-saml.git,4118.115821759259,12,46,0,40.0,204.0,0.0,0.0 +open4,0.090734973072439,2.65910426156055,-0.492171246465847,https://salsa.debian.org/ruby-team/ruby-open4, https://github.com/ahoward/open4,1740.420659722222,2,8,0,7.0,38.0,0.0,0.0 +openid_connect,-1.15024906069492,2.00418171418765,-2.12720173001155,https://salsa.debian.org/ruby-team/ruby-openid-connect, https://github.com/nov/openid_connect,4182.979143518519,0,17,0,9.0,93.0,0.0,3.0 +packable,-3.09922503917592,-0.707774452569116,-3.6975414863465,https://salsa.debian.org/ruby-team/ruby-packable, https://github.com/marcandre/packable/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +paint,0.034074675246231,1.78292088202141,-0.28505659017706,https://salsa.debian.org/ruby-team/ruby-paint, https://github.com/janlelis/paint.git,4285.910474537037,4,14,0,14.0,30.0,0.0,0.0 +parallel,0.619323841529007,3.53983659817764,-0.37749908332836,https://salsa.debian.org/ruby-team/ruby-parallel, https://github.com/grosser/parallel/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +paranoia,-0.101286641645732,3.71762886739992,-1.26110699558109,https://salsa.debian.org/ruby-team/ruby-paranoia, https://github.com/rubysherpas/paranoia/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +ruby_parser,-0.200841478928632,1.50057956701578,-0.620073214667594,https://salsa.debian.org/ruby-team/ruby-parser, https://github.com/seattlerb/ruby_parser.git,5671.90619212963,0,3,0,2.0,215.0,0.0,0.0 +pathname2,-0.96248613784877,1.76464567481222,-1.570334828767,https://salsa.debian.org/ruby-team/ruby-pathname2, https://github.com/djberg96/pathname2,4825.428090277778,0,6,0,1.0,5.0,0.0,1.0 +pdf-reader,0.56157350663903,2.96765316017272,-0.114351047892046,https://salsa.debian.org/ruby-team/ruby-pdf-reader, https://github.com/yob/pdf-reader,5741.409398148148,14,55,0,50.0,0.0,0.0,0.0 +posix-spawn,0.130926224266965,1.69200705818284,-0.24756890586097,https://salsa.debian.org/ruby-team/ruby-posix-spawn, https://github.com/rtomayko/posix-spawn,3425.523310185185,3,31,0,26.0,114.0,0.0,0.0 +rack,0.52370663708963,1.79028699983549,0.0263794791708582,https://salsa.debian.org/ruby-team/ruby-rack, https://github.com/rack/rack,5772.416944444444,210,362,9,391.0,706.0,0.0,76.0 +rack-cors,-0.412726660959519,2.46160287340637,-1.15800554277139,https://salsa.debian.org/ruby-team/ruby-rack-cors, https://github.com/cyu/rack-cors,4892.222060185185,37,39,0,61.0,338.0,0.0,0.0 +punycode.js,0.584390939421985,4.04641621942173,-0.466230817616351,https://salsa.debian.org/ruby-team/ruby-rails-assets-punycode, https://github.com/bestiejs/punycode.js,4371.203738425926,18,3,0,19.0,151.0,0.0,0.0 +rails-dom-testing,1.13952579591952,2.31865099965018,0.452605243049856,https://salsa.debian.org/ruby-team/ruby-rails-dom-testing, https://github.com/rails/rails-dom-testing,3596.7865625,8,32,0,32.0,86.0,0.0,0.0 +rails-html-sanitizer,0.003583064484235,1.43815596943868,-0.287191274895917,https://salsa.debian.org/ruby-team/ruby-rails-html-sanitizer, https://github.com/rails/rails-html-sanitizer,3530.5188078703704,6,25,0,27.0,142.0,0.0,0.0 +rails-i18n,-0.887390700249912,1.47922930291553,-1.44004516765411,https://salsa.debian.org/ruby-team/ruby-rails-i18n, https://github.com/svenfuchs/rails-i18n/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rainbow,-0.0554541407207594,2.18091363175457,-0.487487680104643,https://salsa.debian.org/ruby-team/ruby-rainbow, https://github.com/sickill/rainbow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rbnacl,-0.510179805944679,1.81844098221407,-1.1442616341555,https://salsa.debian.org/ruby-team/ruby-rbnacl, https://github.com/RubyCrypto/rbnacl,3765.2138425925928,11,37,2,39.0,107.0,0.0,6.0 +rbpdf,0.317074769161044,3.30877334866402,-0.483811180367475,https://salsa.debian.org/ruby-team/ruby-rbpdf, https://github.com/naitoh/rbpdf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rchardet,0.889800789303886,4.37087239942861,-0.123910973821463,https://salsa.debian.org/ruby-team/ruby-rchardet, https://github.com/jmhodges/rchardet,5157.865810185185,2,16,0,14.0,39.0,0.0,0.0 +rdiscount,0.540077320253619,2.71375110214917,-0.139750341574188,https://salsa.debian.org/ruby-team/ruby-rdiscount, https://github.com/rtomayko/rdiscount,5495.396527777778,14,23,3,28.0,170.0,0.0,9.0 +re2,-0.397524074451073,2.06755776428374,-1.08083804499971,https://salsa.debian.org/ruby-team/ruby-re2, https://github.com/mudge/re2.git,4891.984027777778,5,6,0,6.0,31.0,0.0,1.0 +recaptcha,-0.72275248127782,1.51158444976084,-1.15631336278707,https://salsa.debian.org/ruby-team/ruby-recaptcha, https://github.com/ambethia/recaptcha,5167.506342592593,32,133,0,118.0,0.0,0.0,20.0 +recursive-open-struct,-0.958669414287883,1.86589840928355,-1.69647456196178,https://salsa.debian.org/ruby-team/ruby-recursive-open-struct, https://github.com/aetherknight/recursive-open-struct/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +redcarpet,0.0453332853328228,0.861694552411162,-0.202762196920588,https://salsa.debian.org/ruby-team/ruby-redcarpet, https://github.com/vmg/redcarpet/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +redcloth,0.395842245157601,2.28026811814275,-0.261658559087054,https://salsa.debian.org/ruby-team/ruby-redcloth, https://github.com/jgarber/redcloth.git,5745.453854166667,8,27,0,31.0,85.0,0.0,2.0 +redis-rb,-0.18452947044888,1.6465311995778,-0.572559493439642,https://salsa.debian.org/ruby-team/ruby-redis, https://github.com/redis/redis-rb/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +redis-actionpack,-0.836515157175233,1.4579951576454,-1.29168570618053,https://salsa.debian.org/ruby-team/ruby-redis-actionpack, https://github.com/redis-store/redis-actionpack,3755.356412037037,8,18,0,15.0,48.0,0.0,0.0 +redis-namespace,-0.513694902557104,1.56519782480238,-1.00788732904472,https://salsa.debian.org/ruby-team/ruby-redis-namespace, https://github.com/resque/redis-namespace,5080.32400462963,46,64,0,90.0,271.0,0.0,0.0 +ronn-ng,0.0051973803124171,1.35292803717205,-0.513322958865165,https://salsa.debian.org/ruby-team/ruby-ronn, https://github.com/apjanke/ronn-ng,5091.883310185185,3,20,4,19.0,40.0,0.0,0.0 +sass-rails,0.129545967450833,2.34308051926344,-0.286962862145183,https://salsa.debian.org/ruby-team/ruby-sass-rails, https://github.com/rails/sass-rails,3032.8716550925924,10,70,2,62.0,828.0,0.0,0.0 +seed-fu,-0.340684315585129,2.69862979607183,-1.1723771613379,https://salsa.debian.org/ruby-team/ruby-seed-fu, https://github.com/mbleigh/seed-fu,3639.382974537037,1,34,0,23.0,185.0,0.0,4.0 +select2-rails,0.0255233967024308,4.01706300359317,-1.08293072621371,https://salsa.debian.org/ruby-team/ruby-select2-rails, https://github.com/argerim/select2-rails,3178.743078703704,3,45,0,37.0,323.0,0.0,4.0 +signet,-0.699993439256247,1.72426912653258,-1.231688395593,https://salsa.debian.org/ruby-team/ruby-signet, https://github.com/googleapis/signet,4807.42556712963,28,44,4,52.0,165.0,0.0,1.0 +sinatra,0.386749271599216,1.83009878817128,-0.175954383271379,https://salsa.debian.org/ruby-team/ruby-sinatra, https://github.com/sinatra/sinatra.git,5774.208402777777,157,401,0,368.0,41.0,0.0,0.0 +slack-notifier,-0.230077747524705,2.68139203868078,-0.961449581859591,https://salsa.debian.org/ruby-team/ruby-slack-notifier, https://github.com/slack-notifier/slack-notifier.git,2800.9713773148146,7,25,0,26.0,174.0,0.0,0.0 +solve,-1.8731536972258,0.372254616415477,-2.34213555482145,https://salsa.debian.org/ruby-team/ruby-solve, https://github.com/berkshelf/solve,3205.955972222222,4,24,0,17.0,61.0,0.0,0.0 +sprockets,0.212769678894906,2.15026296744478,-0.237219096457883,https://salsa.debian.org/ruby-team/ruby-sprockets, https://github.com/rails/sprockets.git,3278.045405092593,50,229,0,213.0,572.0,0.0,0.0 +stomp,-0.0622865151208568,2.27857480823714,-0.539926770630288,https://salsa.debian.org/ruby-team/ruby-stomp, https://github.com/stompgem/stomp.git,4485.674305555555,3,49,0,31.0,92.0,0.0,4.0 +svg-graph2,-0.360620887245162,1.99990184204945,-1.03648271724593,https://salsa.debian.org/ruby-team/ruby-svg-graph, https://github.com/lumean/svg-graph2,5000.599039351852,3,24,0,20.0,18.0,0.0,1.0 +task_list,-0.797245273086402,1.53048217175323,-1.27304297708671,https://salsa.debian.org/ruby-team/ruby-task-list, https://github.com/deckar01/task_list.git,3500.9144675925927,4,16,0,14.0,10.0,0.0,2.0 +test_declarative,-3.18614029592163,-0.680294803942653,-3.73228161419542,https://salsa.debian.org/ruby-team/ruby-test-declarative, https://github.com/svenfuchs/test_declarative/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +test-unit,0.508315918207015,3.11877845565933,-0.0204072697861418,https://salsa.debian.org/ruby-team/ruby-test-unit, https://github.com/test-unit/test-unit/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +text,0.395193545718993,2.82878365350909,-0.139155166458522,https://salsa.debian.org/ruby-team/ruby-text, https://github.com/threedaymonk/text,2533.6334375,0,20,0,9.0,25.0,0.0,0.0 +thor,0.489838892813756,3.03231142436935,-0.108264355321474,https://salsa.debian.org/ruby-team/ruby-thor, https://github.com/erikhuda/thor/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +thread_safe,0.789915331378537,3.40620163123357,-0.0364056561782537,https://salsa.debian.org/ruby-team/ruby-thread-safe, https://github.com/ruby-concurrency/thread_safe,1914.587175925926,2,18,1,17.0,28.0,0.0,0.0 +timecop,-1.62494755345376,-0.136572147007059,-1.97702859037335,https://salsa.debian.org/ruby-team/ruby-timecop, https://github.com/travisjeffery/timecop/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +toml-rb,-1.09659973074653,1.70545620655296,-1.72548269340447,https://salsa.debian.org/ruby-team/ruby-toml-rb, https://github.com/emancu/toml-rb.git,3791.6442361111112,5,30,0,29.0,61.0,0.0,0.0 +ruby-unf_ext,0.524978609062779,2.44234370701177,-0.0572331882658427,https://salsa.debian.org/ruby-team/ruby-unf-ext, https://github.com/knu/ruby-unf_ext,4837.972118055555,5,11,0,11.0,144.0,0.0,0.0 +validates_url,-1.57830950316622,0.694726122564468,-2.17291421883927,https://salsa.debian.org/ruby-team/ruby-validate-url, https://github.com/perfectline/validates_url.git,4598.7266782407405,25,34,0,47.0,141.0,0.0,0.0 +vcr,-1.83540817323998,0.345887647417514,-2.42997707111299,https://salsa.debian.org/ruby-team/ruby-vcr, https://github.com/vcr/vcr,5026.147708333333,86,97,0,152.0,774.0,0.0,33.0 +xpath,0.225392451072693,2.63540825142997,-0.453283494506241,https://salsa.debian.org/ruby-team/ruby-xpath, https://github.com/teamcapybara/xpath.git,4699.099942129629,4,29,0,22.0,77.0,0.0,0.0 +yajl-ruby,0.134286873728126,1.2952090225219,-0.198448627183705,https://salsa.debian.org/ruby-team/ruby-yajl, https://github.com/brianmario/yajl-ruby,4761.960428240741,20,41,0,45.0,266.0,0.0,0.0 +yaml_db,-1.69147543716954,0.844880210373094,-2.22594278212568,https://salsa.debian.org/ruby-team/ruby-yaml-db, https://github.com/yamldb/yaml_db,4943.554675925926,10,17,0,20.0,191.0,0.0,3.0 +yell,-2.29457708512619,0.136508445829378,-2.7815318187394,https://salsa.debian.org/ruby-team/ruby-yell, https://github.com/rudionrails/yell,3852.7088541666662,5,10,0,12.0,42.0,0.0,5.0 +rumur,-3.53607346628981,-0.829079108774929,-4.26893948325028,https://github.com/Smattr/rumur.git,https://github.com/Smattr/rumur.git,3378.926203703704,0,5,0,2.0,8.0,0.0,0.0 +sagetex,-0.154990457339111,0.51087324234677,-0.363447528026123,https://salsa.debian.org/tex-team/sagetex, https://github.com/dandrake/sagetex/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +salmon,-0.36496313866009,1.5121758625399,-0.9283685843126,https://salsa.debian.org/med-team/salmon, https://github.com/COMBINE-lab/salmon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +samizdat,-2.14362263208926,0.0590823844460447,-2.86196074478856,https://salsa.debian.org/ruby-team/samizdat, https://github.com/angdraug/samizdat,3433.232013888889,0,3,0,1.0,2.0,0.0,0.0 +samplv1,0.131881997886185,2.38807427841235,-0.430180476778393,https://salsa.debian.org/multimedia-team/samplv1, https://github.com/rncbc/samplv1.git,4120.8180671296295,1,15,0,6.0,28.0,0.0,3.0 +sandsifter,-0.870299226201277,1.61527247134859,-1.59075399712535,https://salsa.debian.org/pkg-security-team/sandsifter, https://github.com/rigred/sandsifter,736.7519907407408,4,12,0,7.0,12.0,0.0,0.0 +sasview,-1.06271646182923,0.250297261654951,-1.42489359843592,https://salsa.debian.org/science-team/sasview, https://github.com/SasView/sasview.git,5783.19738425926,20,119,0,59.0,30.0,0.0,22.0 +scap-workbench,-0.362911064943978,2.65093298513151,-1.27246505615953,https://salsa.debian.org/debian/scap-workbench, https://github.com/OpenSCAP/scap-workbench.git,4660.289282407407,13,37,0,20.0,138.0,0.0,7.0 +schismtracker,0.203050376678784,1.16663190262702,-0.240048323239523,https://salsa.debian.org/multimedia-team/schism, https://github.com/schismtracker/schismtracker,4666.610729166667,15,42,0,31.0,165.0,0.0,6.0 +coordgenlibs,-0.665765923578571,1.57073877546974,-1.12540202298289,https://salsa.debian.org/science-team/schroedinger-coordgenlibs, https://github.com/schrodinger/coordgenlibs.git,2268.105428240741,12,9,0,14.0,28.0,0.0,0.0 +scram,0.0112378446993806,2.44512482739566,-0.690432285046287,https://salsa.debian.org/science-team/scram, https://github.com/rakhimov/scram.git,1943.5289930555557,2,6,0,3.0,21.0,0.0,1.0 +scrcpy,-0.0596273246573064,2.37005260907049,-0.583387617640955,https://salsa.debian.org/yangfl-guest/scrcpy, https://github.com/Genymobile/scrcpy,2194.2825462962965,140,11,2,121.0,680.0,0.0,13.0 +screenFetch,0.839371855423016,3.42069357217954,0.006465868706162,https://salsa.debian.org/debian/screenfetch, https://github.com/KittyKatt/screenFetch.git,4948.576851851852,38,182,0,141.0,38.0,0.0,5.0 +screengrab,0.143264164157644,1.10782436445147,-0.138023746203509,https://salsa.debian.org/lxqt-team/screengrab, https://github.com/lxqt/screengrab.git,4829.588819444444,59,21,0,54.0,65.0,0.0,0.0 +scrot,0.520776340410167,1.48835473530944,0.0924816727168656,https://salsa.debian.org/debian/scrot, https://github.com/resurrecting-open-source-projects/scrot,1711.9000347222222,19,22,0,23.0,60.0,0.0,0.0 +scrypt,-0.316007582739295,1.91704115949752,-0.753230531310013,https://salsa.debian.org/debian/scrypt, https://github.com/Tarsnap/scrypt.git,4121.472465277778,3,11,0,10.0,45.0,0.0,0.0 +sdate,-0.164409208102411,1.96637580417159,-0.758067793552963,https://github.com/df7cb/sdate,https://github.com/df7cb/sdate,5170.3786689814815,3,6,0,6.0,13.0,0.0,0.0 +seascope,0.141854914147581,3.37647754585079,-0.951559083233916,https://salsa.debian.org/debian/seascope, https://github.com/anilFree/seascope.git,2921.749930555556,1,15,0,6.0,6.0,0.0,0.0 +selinux,-1.94665621577352,0.751145752517991,-2.579195758696,https://salsa.debian.org/selinux-team/secilc, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 +THC-Archive,1.9359167992798,4.44745772446768,0.825156888893887,https://salsa.debian.org/debian/secure-delete, https://github.com/hackerschoice/THC-Archive,1834.166099537037,2,3,0,3.0,7.0,0.0,0.0 +selinux,0.764975420894951,3.39841558893333,-0.12971291673507,https://salsa.debian.org/selinux-team/selinux-python, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 +semi,-0.0012315825526517,0.730430659414898,-0.363630362706879,https://salsa.debian.org/debian/semi, https://github.com/wanderlust/semi,5270.967534722222,3,13,0,9.0,12.0,0.0,0.0 +sendemail,0.514998759345651,2.58027424696462,-0.100100986305897,https://github.com/mogaal/sendemail,https://github.com/mogaal/sendemail,1084.8616782407407,0,2,0,2.0,42.0,0.0,0.0 +sendxmpp,1.69498029723781,3.9154198760279,0.672316801529384,https://salsa.debian.org/xmpp-team/sendxmpp, https://github.com/lhost/sendxmpp.git,3008.622476851852,2,6,0,3.0,52.0,0.0,0.0 +ser2net,0.64381086293887,1.93336201584087,-0.0355562237958406,https://salsa.debian.org/debian/ser2net, https://github.com/cminyard/ser2net,5671.705208333334,14,9,0,15.0,113.0,0.0,0.0 +serd,0.704270314732952,2.91139475526988,0.0669085772051469,https://salsa.debian.org/multimedia-team/serd, https://github.com/drobilla/serd.git ,4700.707199074074,5,1,0,6.0,28.0,0.0,0.0 +serverspec-runner,-1.6557747414546,0.93210010723936,-2.3818100795283,https://salsa.debian.org/ruby-team/serverspec-runner, https://github.com/hiracy/serverspec-runner,3100.293310185185,2,5,0,2.0,5.0,0.0,0.0 +setBfree,0.0170022664145474,2.02593146081277,-0.458724727295439,https://salsa.debian.org/multimedia-team/setbfree, https://github.com/pantherb/setBfree.git,3675.381805555556,8,6,0,10.0,61.0,0.0,0.0 +shapelib,0.283233851138818,1.15301871474865,-0.0270271593988786,https://salsa.debian.org/debian-gis-team/shapelib, https://github.com/OSGeo/shapelib.git,5762.861886574074,4,13,0,16.0,34.0,0.0,0.0 +shellinabox,1.4229551917284,3.54605114251154,0.453604030137298,https://github.com/shellinabox/shellinabox/,https://github.com/shellinabox/shellinabox,3681.188402777778,7,26,0,21.0,143.0,0.0,3.0 +shortuuid,-0.457414490156552,1.88217252275336,-1.17536453453659,https://salsa.debian.org/python-team/packages/shortuuid, https://github.com/skorokithakis/shortuuid.git,4431.3497800925925,19,17,0,30.0,96.0,0.0,0.0 +shotcut,-0.037183512800606,1.38950281114524,-0.39566479111947,https://salsa.debian.org/multimedia-team/shotcut, https://github.com/mltframework/shotcut,4437.047048611111,40,29,1,54.0,300.0,0.0,0.0 +should.js,-1.54067696999616,-0.49279365015915,-1.76326878037244,https://salsa.debian.org/js-team/should.js, https://github.com/shouldjs/should.js.git,3267.859884259259,8,77,0,66.0,165.0,0.0,6.0 +simple-obfs,-0.492148834725906,2.33628373367672,-1.2782165106548,https://salsa.debian.org/bridges-team/simple-obfs, https://github.com/shadowsocks/simple-obfs.git,958.8196412037036,21,12,0,23.0,215.0,0.0,0.0 +simple-tpm-pk11,-0.600240351741211,1.73399811281247,-1.33617384336962,https://salsa.debian.org/debian/simple-tpm-pk11, https://github.com/ThomasHabets/simple-tpm-pk11,3536.426689814815,8,13,0,16.0,52.0,0.0,1.0 +simpleburn,1.13215085973516,4.02733974606994,0.01538467210918,https://github.com/mati75/simpleburn.git,https://github.com/mati75/simpleburn.git,1916.8323611111111,0,3,0,2.0,4.0,0.0,0.0 +simpleeval,-1.05139430806975,0.656524120520537,-1.37257689371325,https://salsa.debian.org/tryton-team/simpleeval, https://github.com/danthedeckie/simpleeval.git,3363.307037037037,10,23,0,21.0,94.0,0.0,0.0 +simplejson,0.778161234664623,2.53070479102907,0.112236973748674,https://salsa.debian.org/python-team/packages/simplejson, https://github.com/simplejson/simplejson,5762.085011574074,6,42,0,35.0,85.0,0.0,0.0 +ssr,0.507476794391828,2.51726533234679,-0.0714681759267078,https://salsa.debian.org/multimedia-team/simplescreenrecorder, https://github.com/MaartenBaert/ssr,3464.059097222222,13,48,0,42.0,288.0,0.0,1.0 +simplesnap,-0.347860080547578,2.48931577684738,-1.25124848753621,https://github.com/jgoerzen/simplesnap,https://github.com/jgoerzen/simplesnap,3116.7912384259257,1,6,0,4.0,24.0,0.0,0.0 +sinntp,-0.748613253900264,2.22419119031069,-1.86443126897777,https://salsa.debian.org/python-team/packages/sinntp, https://github.com/jwilk/sinntp.git,5461.030625,0,2,0,2.0,3.0,0.0,0.0 +skiboot,-1.22677087538962,0.808340910133992,-1.80235669035316,https://salsa.debian.org/debian/skiboot, https://github.com/open-power/skiboot.git,3435.512118055556,156,19,0,99.0,117.0,0.0,0.0 +dict,-0.134196512292479,0.494021828155821,-0.352987531773523,https://salsa.debian.org/debian/skkdic, https://github.com/skk-dev/dict,2069.106724537037,1,13,0,14.0,27.0,0.0,0.0 +skktools,-0.773911555730666,-0.492281698042003,-0.830438258275182,https://salsa.debian.org/debian/skktools, https://github.com/skk-dev/skktools,4603.994340277778,1,14,0,9.0,15.0,0.0,0.0 +sl,0.323098944963659,1.32688290746574,-0.0654472920321516,https://salsa.debian.org/debian/sl, https://github.com/mtoyoda/sl,1446.5538657407408,0,15,0,10.0,116.0,0.0,0.0 +sleef,-2.21049471283947,0.330632286445883,-2.7673859805071,https://salsa.debian.org/science-team/sleef, https://github.com/shibatch/sleef.git,2789.4703935185184,24,7,0,30.0,20.0,0.0,2.0 +sleuthkit,0.248789793977087,0.732207057194791,0.0073823656560896,https://salsa.debian.org/pkg-security-team/sleuthkit, https://github.com/sleuthkit/sleuthkit,5541.681574074074,21,144,0,79.0,39.0,0.0,2.0 +slowhttptest,-0.528541826828133,1.65417138824375,-0.983695793534047,https://salsa.debian.org/debian/slowhttptest, https://github.com/shekyan/slowhttptest,4436.458900462963,5,15,0,11.0,62.0,0.0,3.0 +smarty,0.35043741674187,1.55405515874399,-0.150511039092155,https://salsa.debian.org/debian/smarty3, https://github.com/smarty-php/smarty.git,3318.934618055556,45,52,0,58.0,489.0,0.0,1.0 +smbmap,-0.0942111376502886,1.27295716550052,-0.389455048445473,https://salsa.debian.org/pkg-security-team/smbmap, https://github.com/ShawnDEvans/smbmap.git,3137.721273148148,5,16,0,14.0,95.0,0.0,2.0 +smcroute,-0.54953051706228,0.137923258974923,-0.812248141095543,https://salsa.debian.org/debian/smcroute, https://github.com/troglobit/smcroute.git,5055.776608796296,11,24,0,26.0,82.0,0.0,0.0 +SmokePing,0.190958325155639,0.495116965494432,-0.0114998502528639,https://salsa.debian.org/debian/smokeping, https://github.com/oetiker/SmokePing.git,5773.893090277777,41,36,0,63.0,259.0,0.0,13.0 +snap,-0.28800104820706,1.71992462859508,-0.924480898370672,https://salsa.debian.org/med-team/snap-aligner, https://github.com/amplab/snap.git,3911.334189814815,1,64,0,10.0,89.0,0.0,0.0 +snimpy,-1.17107205814411,-0.36336963815243,-1.35154776735059,https://salsa.debian.org/debian/snimpy, https://github.com/vincentbernat/snimpy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +snoopy,1.16698249164871,2.87538335813065,0.327958550422538,https://salsa.debian.org/pkg-security-team/snoopy, https://github.com/a2o/snoopy,3060.3719097222224,6,34,4,21.0,133.0,0.0,0.0 +SoapyHackRF,0.160509808114309,2.66735657628688,-0.32455558496388,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyhackrf, https://github.com/pothosware/SoapyHackRF.git,2556.476736111111,1,9,0,7.0,36.0,0.0,5.0 +SoapyOsmo,0.115687169424095,2.54060577678283,-0.333920923800992,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyosmo, https://github.com/pothosware/SoapyOsmo.git,2779.5272569444446,0,2,0,2.0,14.0,0.0,2.0 +SoapySDR,0.575702929361127,3.27154873781337,-0.200934298225776,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapysdr, https://github.com/pothosware/SoapySDR.git,3219.850891203704,4,27,0,26.0,135.0,0.0,20.0 +solarpowerlog,-1.77959704977027,0.0950109384749429,-2.37051827818887,https://github.com/coldtobi/solarpowerlog/tree/debian,https://github.com/coldtobi/solarpowerlog,5143.718831018518,1,8,0,1.0,1.0,0.0,1.0 +solvespace,0.340007831139215,2.47509748354308,-0.301409968232717,https://salsa.debian.org/science-team/solvespace, https://github.com/solvespace/solvespace/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sombok,0.300678887273768,1.83749455881472,-0.0607142369196268,https://salsa.debian.org/kolter/sombok, https://github.com/hatukanezumi/sombok,1612.4445949074077,0,1,0,1.0,4.0,0.0,0.0 +sonata,0.290550559525298,0.957624544235178,-0.0885666060937319,https://salsa.debian.org/mpd-team/sonata, https://github.com/multani/sonata,4950.701516203703,15,21,0,23.0,50.0,0.0,0.0 +sonic,0.343633917217908,1.44741963728112,0.0197565432416776,https://salsa.debian.org/a11y-team/sonic, https://github.com/waywardgeek/sonic,4727.140219907407,3,21,0,12.0,42.0,0.0,0.0 +sope,-0.250285844022473,0.998766195634201,-0.728051886695358,https://salsa.debian.org/debian/sope, https://github.com/inverse-inc/sope.git,4884.871064814814,9,32,0,24.0,32.0,0.0,0.0 +soundkonverter,1.09084727263379,2.47482419920947,0.374357897228152,https://salsa.debian.org/qt-kde-team/extras/soundkonverter, https://github.com/dfaust/soundkonverter.git,4518.085289351852,5,14,0,15.0,97.0,0.0,5.0 +spectrwm,0.874032047401929,3.39956600370536,-0.110628773759858,https://salsa.debian.org/debian/spectrwm, https://github.com/conformal/spectrwm,5428.753796296296,35,24,0,38.0,333.0,0.0,14.0 +sphinxcontrib-bibtex,0.111160598031209,2.11318272129199,-0.419729806860031,https://salsa.debian.org/science-team/sphinxcontrib-bibtex, https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git,4544.649305555556,11,9,0,16.0,150.0,0.0,0.0 +restbuilder,-1.17641651624647,1.28466903560404,-1.67559401147086,https://salsa.debian.org/python-team/packages/sphinxcontrib-restbuilder, https://github.com/sphinx-contrib/restbuilder.git,2987.8306828703703,1,10,0,8.0,23.0,0.0,0.0 +spelling,-0.787411678299217,1.02874816450239,-1.41992962385352,https://salsa.debian.org/python-team/packages/sphinxcontrib-spelling, https://github.com/sphinx-contrib/spelling,5270.833333333333,12,76,0,67.0,83.0,0.0,0.0 +sphinxcontrib-websupport,-1.48901538602213,0.0929123660126154,-1.89594760691602,https://salsa.debian.org/python-team/packages/sphinxcontrib-websupport, https://github.com/sphinx-doc/sphinxcontrib-websupport,4818.693842592593,8,17,0,18.0,21.0,0.0,0.0 +sphinxtesters,-1.0316070726279,1.44784447235123,-1.60460073897989,https://salsa.debian.org/python-team/packages/sphinxtesters, https://github.com/matthew-brett/sphinxtesters.git,2155.7952314814816,0,3,0,2.0,5.0,0.0,0.0 +spin-debian,-0.53072399035707,2.5263569151805,-1.40162814120316,https://github.com/thomaslee/spin-debian,https://github.com/thomaslee/spin-debian,1934.3454282407408,2,4,0,2.0,3.0,0.0,0.0 +sqitch,-1.09874968177566,-0.371705701400283,-1.28992586447073,https://salsa.debian.org/perl-team/modules/packages/sqitch, https://github.com/sqitchers/sqitch/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sqldeveloper-package,0.317846262180643,2.55125211219562,-0.549806455358977,https://github.com/lazarusllong/sqldeveloper-package.git,https://github.com/lazarusllong/sqldeveloper-package.git,2130.304918981481,0,3,0,1.0,6.0,0.0,0.0 +sqlgrey-debian,-0.447394696995026,1.28759403696547,-1.09288612680833,https://github.com/bobek/sqlgrey-debian,https://github.com/bobek/sqlgrey-debian,4172.383530092593,1,3,0,2.0,1.0,0.0,0.0 +sqlmap,-0.0436656035553366,1.22987637940851,-0.407677419447587,https://salsa.debian.org/pkg-security-team/sqlmap, https://github.com/sqlmapproject/sqlmap.git,5537.8440625,75,67,0,118.0,120.0,0.0,6.0 +ssh-audit,0.212805109619305,2.71000373552659,-0.378794663244851,https://salsa.debian.org/debian/ssh-audit, https://github.com/jtesta/ssh-audit.git,2897.0719328703703,19,7,0,23.0,122.0,0.0,13.0 +sshuttle,0.468621287315097,1.59020401281724,-0.0562158764438331,https://salsa.debian.org/debian/sshuttle, https://github.com/sshuttle/sshuttle.git,4975.084467592593,104,46,0,119.0,319.0,0.0,1.0 +sslsplit,0.0482855639097266,2.12289962740315,-0.637127829077254,https://salsa.debian.org/debian/sslsplit, https://github.com/droe/sslsplit,4093.935185185185,9,20,2,17.0,164.0,0.0,0.0 +subliminal,0.719007050611934,3.14219027867566,-0.207924080626069,https://salsa.debian.org/python-team/packages/subliminal, https://github.com/Diaoul/subliminal.git,3790.672627314815,11,36,0,30.0,562.0,0.0,0.0 +suds,-0.20613769522305,0.133500224279092,-0.280338126116505,https://salsa.debian.org/python-team/packages/suds, https://github.com/suds-community/suds.git,3431.642199074074,14,23,0,26.0,80.0,0.0,0.0 +sundials,0.130483493734379,1.32951513697455,-0.421432426655231,https://salsa.debian.org/science-team/sundials, https://github.com/LLNL/sundials.git,5750.416412037037,17,59,0,19.0,126.0,0.0,1.0 +sup,0.728940870273554,1.64564406403328,0.201429465862888,https://salsa.debian.org/ruby-team/sup-mail, https://github.com/sup-heliotrope/sup/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +svgpp,-1.88545594094944,-0.538517313828018,-2.21882754773418,https://salsa.debian.org/debian/svgpp, https://github.com/svgpp/svgpp.git,3480.624872685185,6,8,0,8.0,55.0,0.0,1.0 +svgtune,0.136601990572802,2.76037877899855,-0.708785107010438,http://github.com/yarikoptic/svgtune,http://github.com/yarikoptic/svgtune,4268.484155092593,0,2,0,0.0,0.0,0.0,0.0 +svgwrite,0.163001514332914,2.89783146632471,-0.643165752630008,https://salsa.debian.org/python-team/packages/svgwrite, https://github.com/mozman/svgwrite.git,2562.4058912037035,4,22,0,19.0,110.0,0.0,0.0 +svn2git,0.073570404336437,2.21477992704799,-0.698915696708374,https://salsa.debian.org/debian/svn-all-fast-export, https://github.com/svn-all-fast-export/svn2git.git,5311.248136574074,28,29,0,32.0,96.0,0.0,0.0 +svtplay-dl,-0.259583483993522,1.49093197580035,-0.73300505771981,https://salsa.debian.org/olof/svtplay-dl, https://github.com/spaam/svtplay-dl,4669.149016203704,48,26,3,52.0,53.0,0.0,0.0 +svxlink,-0.363501834070498,1.31601159062806,-0.862809513000875,https://salsa.debian.org/debian-hamradio-team/svxlink, https://github.com/sm0svx/svxlink/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +swaks,-0.0249524641953267,0.321857900912028,-0.148643973333566,https://salsa.debian.org/debian/swaks, https://github.com/jetmore/swaks,5448.060069444445,0,9,5,5.0,49.0,0.0,0.0 +swami,0.147652628802903,1.51831488143364,-0.462498226293679,https://salsa.debian.org/multimedia-team/swami, https://github.com/swami/swami,4547.478796296296,6,10,0,8.0,16.0,0.0,0.0 +swauth,-2.42549018476981,-0.857079313858978,-2.77954426667766,https://salsa.debian.org/openstack-team/services/swauth, https://github.com/openstack/swauth.git,3045.1673958333336,5,41,0,20.0,0.0,0.0,0.0 +swayidle,-0.101420118028715,2.20364200886325,-0.6198513899419,https://salsa.debian.org/swaywm-team/swayidle, https://github.com/swaywm/swayidle,1867.500775462963,24,22,0,36.0,149.0,0.0,0.0 +swift,-0.744860549436327,-0.508114788689935,-0.849748517290689,https://salsa.debian.org/openstack-team/services/swift, https://github.com/openstack/swift.git,4902.789189814815,50,447,0,293.0,35.0,0.0,0.0 +synaptic,4.07863208558205,4.62122051683102,3.64147371025369,https://github.com/mvo5/synaptic,https://github.com/mvo5/synaptic,5665.124976851852,20,60,0,45.0,96.0,0.0,2.0 +tappy,-0.705784056930563,2.23851716592824,-1.50155112842669,https://salsa.debian.org/python-team/packages/tap.py, https://github.com/python-tap/tappy,3537.627025462963,10,7,0,13.0,34.0,0.0,0.0 +tcpflow,0.199332153857178,0.768845369345533,-0.0915379508440729,https://salsa.debian.org/debian/tcpflow, https://github.com/simsong/tcpflow.git,4133.2346875,26,36,0,41.0,169.0,0.0,0.0 +tcpslice,0.335845590539134,2.6360959653613,-0.57091569500002,https://salsa.debian.org/debian/tcpslice, https://github.com/the-tcpdump-group/tcpslice,1218.717835648148,4,7,0,9.0,17.0,0.0,0.0 +tdc,-0.586034764406804,1.72204976789029,-1.19185769505505,https://github.com/MTecknology/tdc,https://github.com/MTecknology/tdc,2078.208020833333,1,4,0,1.0,3.0,0.0,0.0 +tdiary-contrib,-1.49935485678369,-0.333006957206139,-2.04741697549019,https://salsa.debian.org/ruby-team/tdiary-contrib, https://github.com/tdiary/tdiary-contrib,5617.506469907407,4,81,0,39.0,47.0,0.0,0.0 +tdiary-style-gfm,-3.85195760998636,-1.62098730176518,-4.33521170538792,https://salsa.debian.org/ruby-team/tdiary-style-gfm, https://github.com/tdiary/tdiary-style-gfm,3042.210335648148,2,13,0,10.0,14.0,0.0,0.0 +tea-qt,-0.281031083462774,0.168294716769303,-0.470037759021774,https://salsa.debian.org/debian/tea, https://github.com/psemiletov/tea-qt.git,2860.148009259259,4,9,0,7.0,18.0,0.0,1.0 +teckit,2.12616371380411,6.07678880295945,0.745055592667297,https://github.com/debian-tex/teckit,https://github.com/debian-tex/teckit,2563.6115277777776,1,6,0,2.0,1.0,0.0,0.0 +tegaki,1.36181205070787,5.4067459556616,0.141079286593833,https://salsa.debian.org/debian/tegaki-zinnia-japanese, https://github.com/tegaki/tegaki.git,5118.392777777778,1,17,0,7.0,18.0,0.0,0.0 +terminado,0.117041057623266,1.29203487095836,-0.163948297260027,https://salsa.debian.org/python-team/packages/terminado, https://github.com/jupyter/terminado,3771.3957407407406,25,31,0,38.0,96.0,0.0,0.0 +termshark,-0.790234191745614,1.4608630566174,-1.22828984579489,https://salsa.debian.org/go-team/packages/termshark, https://github.com/gcla/termshark.git,1476.2094328703704,6,14,0,14.0,67.0,0.0,0.0 +tifffile,-0.495019139781536,1.09540225176633,-0.943295403808547,https://salsa.debian.org/python-team/packages/tifffile, https://github.com/cgohlke/tifffile.git,1876.595185185185,0,2,0,1.0,107.0,0.0,0.0 +tigervnc,0.386049951760157,0.977138634206926,0.0684855340794749,https://salsa.debian.org/debian-remote-team/tigervnc, https://github.com/TigerVNC/tigervnc.git,5713.216122685185,57,92,0,111.0,563.0,0.0,20.0 +tikzit,-0.316083266782456,1.71784040429033,-0.775896519955274,https://salsa.debian.org/debian/tikzit, https://github.com/tikzit/tikzit.git,4273.840902777778,1,14,0,8.0,114.0,0.0,0.0 +tiledarray,-1.7374267907978,0.176768633819741,-2.3518262419847,https://salsa.debian.org/debichem-team/tiledarray, https://github.com/ValeevGroup/tiledarray.git,5618.111967592593,7,39,0,21.0,38.0,0.0,5.0 +tktable,0.381122633675888,2.97249082624193,-0.224727752517437,https://salsa.debian.org/tcltk-team/tk-table, https://github.com/wjoye/tktable,2301.1677546296296,2,6,0,3.0,5.0,0.0,0.0 +python-tldp,-2.93877526859313,-1.08471981878398,-3.32269469184863,https://github.com/tLDP/python-tldp,https://github.com/tLDP/python-tldp,2447.0141319444447,0,4,0,2.0,4.0,0.0,0.0 +tldr.py,-0.849419117803017,1.58590203274484,-1.37358549608759,https://salsa.debian.org/python-team/packages/tldr-py, https://github.com/lord63/tldr.py,1740.1593055555556,4,6,0,6.0,33.0,0.0,0.0 +tlf,-0.874731641891955,-0.514588381934818,-0.988646862374724,https://salsa.debian.org/debian-hamradio-team/tlf, https://github.com/Tlf/tlf.git,5111.279826388889,15,21,0,19.0,45.0,0.0,2.0 +tootle,1.27112081484644,4.76922613168408,-0.0231156554212357,https://salsa.debian.org/debian/tootle, https://github.com/bleakgrey/tootle.git,1706.1450925925926,21,13,0,23.0,214.0,0.0,0.0 +torbrowser-launcher,0.225449394393413,0.469008137444455,0.0615930109078143,https://salsa.debian.org/pkg-privacy-team/torbrowser-launcher, https://github.com/micahflee/torbrowser-launcher,3941.46244212963,20,66,6,66.0,20.0,0.0,1.0 +toro,-2.2006489718699,0.291807336130628,-2.76681916306593,https://salsa.debian.org/debian/toro, https://github.com/ajdavis/toro/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +totalopenstation,-0.388922176582237,1.0156726480333,-0.733221024342593,https://salsa.debian.org/debian-gis-team/totalopenstation, https://github.com/totalopenstation/totalopenstation.git,3856.579131944444,6,8,0,10.0,14.0,0.0,0.0 +traitlets,0.252950024330779,1.86292382076619,-0.096233862213897,https://salsa.debian.org/python-team/packages/traitlets, https://github.com/ipython/traitlets.git,5659.035034722222,36,89,0,97.0,252.0,0.0,0.0 +twolame,0.84171127820373,2.60675697554107,0.181912310992012,https://salsa.debian.org/multimedia-team/twolame, https://github.com/njh/twolame,5003.766446759259,10,10,2,13.0,33.0,0.0,0.0 +txt2html,0.777425923402395,2.12212836016023,0.106308761047132,https://salsa.debian.org/debian/txt2html, https://github.com/resurrecting-open-source-projects/txt2html,5316.649085648148,1,4,0,2.0,4.0,0.0,0.0 +txt2man,0.40906456207929,1.5195694639647,-0.144245647631959,https://salsa.debian.org/debian/txt2man, https://github.com/mvertes/txt2man,2424.6791435185187,2,9,0,9.0,19.0,0.0,0.0 +txt2tags,0.0507302841798365,1.0615675265799,-0.385371985804156,https://salsa.debian.org/python-team/packages/txt2tags, https://github.com/txt2tags/txt2tags.git,5549.60462962963,9,22,0,3.0,36.0,0.0,1.0 +txWS,-1.42880810465336,1.20791423379852,-2.03361810531591,https://salsa.debian.org/python-team/packages/txws, https://github.com/MostAwesomeDude/txWS,4288.208576388889,2,10,0,9.0,37.0,0.0,0.0 +txZMQ,-0.602187662560627,0.900282208594241,-1.01882931151546,https://salsa.debian.org/python-team/packages/txzmq, https://github.com/smira/txZMQ,3989.247407407408,3,25,0,17.0,61.0,0.0,0.0 +typogrify,-0.584140790363352,1.90994568662528,-1.17865021441541,https://salsa.debian.org/python-team/packages/typogrify, https://github.com/mintchaos/typogrify,4964.599270833333,2,13,0,12.0,50.0,0.0,0.0 +u-msgpack-python,0.710360090024701,3.61378246657055,-0.108216742854604,https://salsa.debian.org/python-team/packages/u-msgpack-python, https://github.com/vsergeev/u-msgpack-python,3518.0095949074075,11,3,1,10.0,40.0,0.0,0.0 +uap-core,-1.4950577767607,0.219577926393572,-1.90078729822547,https://salsa.debian.org/debian/uap-core, https://github.com/ua-parser/uap-core.git,3378.718645833333,35,224,0,172.0,383.0,0.0,0.0 +udisks,1.63793026797211,2.67550873938926,1.00403938947919,https://salsa.debian.org/utopia-team/udisks2, https://github.com/storaged-project/udisks,5742.170138888889,64,76,1,109.0,96.0,0.0,1.0 +ufo2otf-debian,-1.17996435820182,1.85875491159054,-1.92149448436678,https://github.com/Rudloff/ufo2otf-debian,https://github.com/Rudloff/ufo2otf-debian,893.8441666666666,1,3,0,3.0,1.0,0.0,0.0 +UglifyJS2,-0.463127891589347,1.31384250468291,-0.911019458295516,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333335,82,71,0,115.0,88.0,0.0,0.0 +UglifyJS2,1.1390181603255,3.34213410908041,0.221625202037482,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333335,82,71,0,115.0,88.0,0.0,0.0 +ukui-sidebar,-3.88902279029796,-1.541934669291,-4.33995496976508,https://github.com/ukui/ukui-sidebar,https://github.com/ukui/ukui-sidebar,770.8421412037037,16,52,0,28.0,0.0,0.0,0.0 +unshield,1.07920181598955,2.90405112065956,0.246695801227494,https://salsa.debian.org/games-team/unshield, https://github.com/twogood/unshield.git,5774.091805555556,2,32,0,28.0,33.0,0.0,0.0 +Unworkable,-0.495607914980261,1.10785294829239,-1.03878635306529,https://salsa.debian.org/debian/unworkable, https://github.com/niallo/Unworkable.git,3168.162650462963,2,5,0,2.0,2.0,0.0,0.0 +usbauth-all,-0.8486458400467,2.32483380511731,-1.57743961316718,https://salsa.debian.org/debian/usbauth, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0,2.0,7.0,0.0,0.0 +usbauth-all,-1.36183802482326,0.118912188339963,-1.68426853104591,https://salsa.debian.org/debian/usbauth-notifier, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0,2.0,7.0,0.0,0.0 +usbguard,-0.21450453002142,0.569139522677088,-0.563655349319627,https://salsa.debian.org/birger/usbguard, https://github.com/dkopecek/usbguard,3141.3933796296296,33,38,1,43.0,150.0,0.0,1.0 +usbmuxd,1.70181066687251,3.39962034301328,0.838549297398376,https://salsa.debian.org/imobiledevice-team/usbmuxd, https://github.com/libimobiledevice/usbmuxd,5280.244328703704,27,16,0,24.0,138.0,0.0,1.0 +usbview,0.28302889659432,1.2165170826129,-0.094514674433882,https://salsa.debian.org/debian/usbview, https://github.com/gregkh/usbview.git,5596.973240740741,7,11,0,12.0,12.0,0.0,0.0 +uvloop,-0.409780345467941,1.61935534909145,-1.07518499430253,https://salsa.debian.org/python-team/packages/uvloop, https://github.com/MagicStack/uvloop,2912.1617939814814,58,10,0,57.0,542.0,0.0,1.0 +v4l2loopback,-0.119731467421868,0.406915249527638,-0.258798542702752,https://salsa.debian.org/debian/v4l2loopback, https://github.com/umlaeute/v4l2loopback.git,5406.21599537037,26,63,0,57.0,94.0,0.0,35.0 +vagrant-libvirt,-0.122144245358309,0.318525309072922,-0.241653892135262,https://salsa.debian.org/ruby-team/vagrant-libvirt, https://github.com/vagrant-libvirt/vagrant-libvirt,3827.345138888889,87,210,0,209.0,98.0,0.0,3.0 +vagrant-lxc,0.803455628511559,4.60210269892023,-0.412211374017774,https://salsa.debian.org/ruby-team/vagrant-lxc, https://github.com/fgrehm/vagrant-lxc,3559.775474537037,9,55,2,46.0,129.0,0.0,31.0 +vagrant-mutate,-0.480140148499671,1.71494445381176,-0.907498911496296,https://salsa.debian.org/ruby-team/vagrant-mutate, https://github.com/sciurus/vagrant-mutate,1407.9479166666667,3,15,4,15.0,61.0,0.0,1.0 +vagrant-sshfs,-0.317771478584954,2.08390990189748,-0.841842578835168,https://salsa.debian.org/ruby-team/vagrant-sshfs, https://github.com/dustymabe/vagrant-sshfs,2305.192847222222,2,14,0,15.0,132.0,0.0,0.0 +vcsh,1.14113160903232,4.26739967107077,0.026131949941663,https://github.com/RichiH/vcsh,https://github.com/RichiH/vcsh,4529.010185185185,11,57,0,53.0,153.0,63.0,2.0 +VOoM,-0.47858056016314,0.612680272233142,-0.659254773037264,https://salsa.debian.org/yyabuki/vim-voom, https://github.com/vim-voom/VOoM.git,1193.926273148148,0,1,0,1.0,20.0,0.0,0.0 +virtualjaguar-debian,-0.332382495932637,1.61861304132141,-0.767405895120304,https://github.com/glaubitz/virtualjaguar-debian,https://github.com/glaubitz/virtualjaguar-debian,1293.0757291666666,2,1,0,1.0,1.0,0.0,0.0 +vmtouch,0.0085288391752888,3.06752347259447,-0.806734738329006,https://salsa.debian.org/debian/vmtouch, https://github.com/hoytech/vmtouch,4266.543483796297,8,25,0,21.0,85.0,0.0,0.0 +voctomix,-0.37274684122285,1.18109505710797,-0.649460373503614,https://salsa.debian.org/debian/voctomix, https://github.com/voc/voctomix.git,3329.1224189814816,7,54,0,35.0,80.0,0.0,5.0 +voctomix-outcasts,-1.68931304753971,-1.2420509412913,-1.76996344473364,https://salsa.debian.org/debian/voctomix-outcasts, https://github.com/CarlFK/voctomix-outcasts.git,2648.5362847222223,0,9,0,6.0,7.0,0.0,0.0 +vokoscreenNG,0.210412109632221,1.29556919416146,-0.153171249826354,https://salsa.debian.org/debian/vokoscreen-ng, https://github.com/vkohaupt/vokoscreenNG/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +volk,0.34903084552309,1.94774127451589,-0.157883477983144,https://salsa.debian.org/bottoms/pkg-volk, https://github.com/gnuradio/volk,4752.915,39,93,0,74.0,106.0,0.0,0.0 +voltron,-1.81394778451535,1.31850409040173,-2.80233837640787,https://salsa.debian.org/python-team/packages/voltron, https://github.com/snare/voltron.git,2775.508645833333,5,31,0,19.0,212.0,0.0,1.0 +voluptuous,-0.403966828040137,1.23588372282756,-0.751460821473307,https://salsa.debian.org/python-team/packages/voluptuous, https://github.com/alecthomas/voluptuous,4900.054074074074,38,69,0,73.0,81.0,0.0,0.0 +voms,-0.756674276018952,-0.2090198319227,-0.920329345187395,https://salsa.debian.org/ellert/voms, https://github.com/italiangrid/voms,3745.526273148148,4,20,0,8.0,29.0,0.0,5.0 +waitress,-0.001435194970412,0.779693615907078,-0.257745730653346,https://salsa.debian.org/python-team/packages/waitress, https://github.com/Pylons/waitress.git,4372.6596990740745,10,50,0,48.0,135.0,0.0,0.0 +wal2json,-1.82757455393376,0.542460048832333,-2.34041711475106,https://salsa.debian.org/postgresql/wal2json, https://github.com/eulerto/wal2json.git,3393.25287037037,6,15,0,13.0,173.0,0.0,0.0 +wand,-0.67759884996555,-0.105630998138164,-0.896210432107274,https://salsa.debian.org/debian/wand, https://github.com/emcconville/wand,4461.499722222222,24,94,1,85.0,430.0,0.0,0.0 +WavPack,0.50064375084998,1.2816911597057,0.144201344064353,https://salsa.debian.org/multimedia-team/wavpack, https://github.com/dbry/WavPack,5719.907256944444,11,19,0,26.0,86.0,0.0,0.0 +libwbxml,0.571657674707482,2.04396774912402,-0.0953236447349134,https://salsa.debian.org/debian/wbxml2, https://github.com/libwbxml/libwbxml.git,5170.821412037037,0,19,0,15.0,25.0,0.0,0.0 +wcwidth,0.333090955677371,1.89896419632852,-0.0738762363904112,https://salsa.debian.org/python-team/packages/wcwidth, https://github.com/jquast/wcwidth,3540.9241550925926,5,18,0,16.0,80.0,0.0,0.0 +websocketpp,-0.373225960093031,1.27055620163145,-0.713422645811124,https://salsa.debian.org/debian/websocketpp, https://github.com/zaphoyd/websocketpp.git,3911.927326388889,7,63,0,40.0,237.0,0.0,21.0 +websploit,-0.422102819233558,2.10233668523303,-1.07261762366906,https://salsa.debian.org/pkg-security-team/websploit, https://github.com/websploit/websploit,0.0014814814814814,1,1,0,1.0,3.0,0.0,0.0 +weevely3,-0.250737217368348,2.17082901671367,-0.863642780532721,https://salsa.debian.org/pkg-security-team/weevely, https://github.com/epinna/weevely3.git,3185.5150578703706,7,21,0,18.0,24.0,0.0,3.0 +welle.io,-1.15037357918904,0.869870709239836,-1.55603759978621,https://salsa.debian.org/debian-hamradio-team/welle.io, https://github.com/AlbrechtL/welle.io,2902.9566203703703,11,44,0,35.0,243.0,0.0,3.0 +weresync,0.868622438506736,5.31491794179674,-0.611088821201198,https://salsa.debian.org/python-team/packages/weresync, https://github.com/DonyorM/weresync.git,2224.0163194444444,5,4,0,4.0,47.0,0.0,0.0 +weupnp,-1.92006896086912,0.314231076959153,-2.34792325109008,https://salsa.debian.org/debian/weupnp, https://github.com/bitletorg/weupnp.git,896.40375,1,9,0,8.0,23.0,0.0,2.0 +wfmath,-0.389387588299087,0.837955787968463,-0.979234500856992,https://salsa.debian.org/games-team/wfmath, https://github.com/worldforge/wfmath,5506.869699074074,0,8,0,7.0,8.0,0.0,0.0 +wfuzz,0.349453190332924,3.03672551955603,-0.346839296038164,https://salsa.debian.org/pkg-security-team/wfuzz, https://github.com/xmendez/wfuzz.git,3000.734814814815,13,27,0,24.0,91.0,0.0,5.0 +whatthepatch,-1.2344880678377,1.1565131399966,-1.81435377941799,https://salsa.debian.org/python-team/packages/whatthepatch, https://github.com/cscorley/whatthepatch,3792.002951388889,6,11,0,11.0,23.0,0.0,0.0 +when,-0.247136554613533,1.47661843722832,-0.816593972653406,https://salsa.debian.org/carnil/when, https://github.com/bcrowell/when/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +whichcraft,-0.303651311001637,1.96454741753557,-0.763838192557727,https://salsa.debian.org/python-team/packages/whichcraft, https://github.com/cookiecutter/whichcraft,2896.985810185185,2,14,0,8.0,22.0,0.0,0.0 +wanderlust,-0.332550066820388,0.46879211996235,-0.662373670308098,https://salsa.debian.org/debian/wl, https://github.com/wanderlust/wanderlust,5747.071041666667,6,25,0,16.0,85.0,0.0,0.0 +wanderlust,-0.963388551835787,-0.684481816191185,-1.0856880816687,https://salsa.debian.org/debian/wl-beta, https://github.com/wanderlust/wanderlust,5747.071041666667,6,25,0,16.0,85.0,0.0,0.0 +WPEBackend-fdo,0.573009598559966,3.29698066104163,-0.0681747088088377,https://salsa.debian.org/webkit-team/wpebackend-fdo, https://github.com/Igalia/WPEBackend-fdo,2058.3566319444444,11,16,1,15.0,33.0,0.0,0.0 +Xastir,0.108948248188163,0.863508814175857,-0.320286247787417,https://salsa.debian.org/debian-hamradio-team/xastir, https://github.com/Xastir/Xastir.git,5658.770590277778,2,27,0,23.0,47.0,0.0,1.0 +xcape,0.103186649828254,2.66352443571924,-0.48817172462312,https://salsa.debian.org/debian/xcape, https://github.com/alols/xcape,2160.454236111111,3,26,0,19.0,215.0,0.0,0.0 +xcffib,0.342276607758732,1.64397362388373,-0.208917083473425,https://salsa.debian.org/python-team/packages/xcffib, https://github.com/tych0/xcffib.git,3466.6135069444445,10,9,0,14.0,67.0,0.0,0.0 +xCHM,0.210695760790321,0.795971847871289,-0.0859691060763882,https://salsa.debian.org/debian/xchm, https://github.com/rzvncj/xCHM.git,5664.286203703704,3,5,0,6.0,25.0,0.0,0.0 +xcscope.el,0.22225671206335,2.73581330732423,-0.509665274216416,https://salsa.debian.org/debian/xcscope-el, https://github.com/dkogan/xcscope.el,3521.9445949074075,2,6,0,6.0,30.0,0.0,0.0 +xdffileio,-0.33703609329714,3.13997421391231,-1.51729011028527,https://salsa.debian.org/med-team/xdffileio, https://github.com/mmlabs-mindmaze/xdffileio.git,3980.6902777777777,1,9,0,3.0,4.0,0.0,0.0 +xdms-debian,-0.324508549703597,1.11111882766628,-0.732719972201246,https://github.com/glaubitz/xdms-debian,https://github.com/glaubitz/xdms-debian,2621.1444212962965,2,1,0,3.0,2.0,0.0,0.0 +xdotool,1.29689129174718,2.6433354619352,0.585464050400781,https://salsa.debian.org/debian/xdotool, https://github.com/jordansissel/xdotool.git,5532.041435185185,34,28,0,50.0,581.0,0.0,0.0 +xen-tools,0.184922680491655,0.404449991481267,0.029379649998388,https://github.com/xen-tools/xen-tools,https://github.com/xen-tools/xen-tools,5773.49619212963,25,18,2,29.0,33.0,0.0,0.0 +xmldiff,0.559598995971893,1.58014148970041,0.0079329530014685,https://salsa.debian.org/debian/xmldiff, https://github.com/Shoobx/xmldiff.git,5659.724016203703,11,15,0,19.0,92.0,0.0,0.0 +xmltv,-0.0141973654544938,0.196827117268805,-0.146599190251928,https://salsa.debian.org/nickm/xmltv, https://github.com/XMLTV/xmltv.git,5729.325231481482,14,54,0,44.0,137.0,0.0,0.0 +xmoto,-0.0128577774958252,0.35047672104516,-0.221279370942503,https://salsa.debian.org/games-team/xmoto, https://github.com/xmoto/xmoto,5752.609814814815,7,30,1,14.0,32.0,0.0,1.0 +yadm,0.155795293007734,2.47899167336278,-0.534660961320123,https://salsa.debian.org/debian/yadm, https://github.com/TheLocehiliosan/yadm,1719.547361111111,26,32,0,34.0,348.0,0.0,0.0 +yanc,-1.50099926106038,1.46162195444987,-2.26685152937622,https://salsa.debian.org/python-team/packages/yanc, https://github.com/0compute/yanc,1361.9793865740742,0,3,0,2.0,13.0,0.0,0.0 +yatm,-0.99699425644898,0.469884003019665,-1.39594494269735,https://salsa.debian.org/debian/yatm, https://github.com/mlang/yatm.git,2272.488912037037,0,3,0,1.0,4.0,0.0,0.0 +yder,-0.573558670541915,1.49485584194788,-1.0176765614188,https://salsa.debian.org/debian-iot-team/oauth2/yder.git, https://github.com/babelouest/yder,1282.873275462963,2,11,0,9.0,16.0,0.0,0.0 +ydpdict,-1.66201223318566,-0.965022576149982,-1.88784607381972,https://github.com/porridge/ydpdict,https://github.com/porridge/ydpdict,5724.953773148148,0,4,0,3.0,0.0,0.0,0.0 +yokadi,-0.624393892670881,1.70289828765903,-1.28550063632623,https://salsa.debian.org/debian/yokadi, https://github.com/agateau/yokadi/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +yoshimi,-0.34447555327641,-0.150960844094766,-0.395152125475785,https://salsa.debian.org/multimedia-team/yoshimi, https://github.com/Yoshimi/yoshimi.git,4804.103599537037,11,39,0,24.0,0.0,0.0,1.0 +zabbix-cli,-0.116244430152616,2.82250935666635,-1.03888250780023,https://github.com/usit-gd/zabbix-cli,https://github.com/usit-gd/zabbix-cli,3337.010740740741,9,35,2,28.0,101.0,0.0,0.0 +zam-plugins,0.302800129289409,2.92045044376257,-0.310176637993487,https://salsa.debian.org/multimedia-team/zam-plugins, https://github.com/zamaudio/zam-plugins.git,3495.4258564814813,5,5,0,8.0,50.0,0.0,0.0 +zbar,1.12742998615967,2.18040905717499,0.530466924475534,https://salsa.debian.org/debian/zbar, https://github.com/mchehab/zbar,5577.42005787037,30,27,0,41.0,117.0,0.0,1.0 +zope.interface,0.894756972646945,2.43572262976472,0.237909121040726,https://salsa.debian.org/python-team/packages/zope.interface, https://github.com/zopefoundation/zope.interface.git,5664.702754629629,13,51,0,52.0,66.0,0.0,0.0 +acorn,-0.352098731788059,0.208180313755519,-0.59790049944258,https://salsa.debian.org/js-team/acorn, https://github.com/ternjs/acorn.git,4089.973773148148,125,21,0,114.0,290.0,0.0,0.0 +acpica,0.704078223289118,1.4328185991839,0.250194214510807,https://salsa.debian.org/debian/acpica-unix, https://github.com/acpica/acpica,5757.107615740741,43,108,0,105.0,57.0,0.0,0.0 +aiomysql,-3.20037947133328,-0.702679209227465,-3.73565617907158,https://salsa.debian.org/python-team/packages/aiomysql, https://github.com/aio-libs/aiomysql.git,5227.991076388889,36,80,0,85.0,174.0,0.0,0.0 +androguard,0.241297069832582,1.96964623712295,-0.413614131846716,https://salsa.debian.org/python-team/packages/androguard, https://github.com/androguard/androguard,4421.14162037037,25,102,1,81.0,211.0,0.0,4.0 +angband,0.524012737304748,1.197044025941,0.093897414172582,https://salsa.debian.org/games-team/angband, https://github.com/angband/angband,5784.383275462963,62,97,7,86.0,73.0,0.0,0.0 +apgdiff,-0.535922125727779,1.15818063763013,-0.998404532675352,https://salsa.debian.org/postgresql/apgdiff, https://github.com/fordfrog/apgdiff,4911.740439814815,14,33,0,28.0,195.0,0.0,2.0 +smali,-0.142364710819105,0.484434745991675,-0.329878944003666,https://salsa.debian.org/android-tools-team/apktool, https://github.com/JesusFreke/smali,4709.844421296296,28,24,0,34.0,365.0,0.0,10.0 +appstream-glib,0.306547939627559,0.950415332480095,0.0390455586714944,https://salsa.debian.org/pkgutopia-team/appstream-glib, https://github.com/hughsie/appstream-glib,3530.064537037037,77,29,0,91.0,216.0,0.0,0.0 +astroplan,-0.440117647380012,0.368099355405067,-0.618300929779659,https://salsa.debian.org/debian-astro-team/astroplan, https://github.com/astropy/astroplan.git,3067.3247685185183,16,34,0,33.0,166.0,0.0,6.0 +Automat,0.57973111859318,2.56516942056424,-0.0081655780065162,https://salsa.debian.org/python-team/packages/automat, https://github.com/glyph/Automat,3398.936238425926,12,27,0,33.0,80.0,0.0,0.0 +autopep8,-0.034679903300575,0.859752537921693,-0.311762502107219,https://salsa.debian.org/python-team/packages/autopep8, https://github.com/hhatto/autopep8.git,4684.442314814814,7,60,0,48.0,455.0,0.0,1.0 +autopsy,0.267363629199221,1.48698131837389,-0.226335563528422,https://salsa.debian.org/debian/autopsy, https://github.com/sleuthkit/autopsy,5552.52337962963,24,149,0,61.0,40.0,0.0,0.0 +B2_Command_Line_Tool,-0.585646026414802,1.05613248809045,-0.982860590975837,https://salsa.debian.org/python-team/packages/backblaze-b2, https://github.com/Backblaze/B2_Command_Line_Tool,2942.6175925925927,21,71,0,65.0,437.0,0.0,2.0 +backbone,0.626839961686094,2.60121778854874,-0.0272691105681844,https://salsa.debian.org/js-team/backbone, https://github.com/jashkenas/backbone,4697.095173611111,30,344,2,288.0,221.0,0.0,516.0 +bcal,-0.76069743784758,1.25821441789707,-1.30485747484126,https://salsa.debian.org/debian/bcal, https://github.com/jarun/bcal.git,2530.8116435185184,8,4,0,9.0,19.0,0.0,0.0 +bchunk,1.39298301877137,3.62755081275134,0.431488685908172,https://salsa.debian.org/debian/bchunk, https://github.com/twojstaryzdomu/bchunk,1689.5562731481482,4,5,0,5.0,0.0,0.0,0.0 +bladeRF,0.248655998016964,1.40886764008124,-0.170338666248805,https://salsa.debian.org/debian-hamradio-team/bladerf, https://github.com/Nuand/bladeRF.git,3942.800648148148,48,43,0,53.0,148.0,0.0,67.0 +blitz,0.0768120247270267,0.481108916453426,-0.151958180445178,https://salsa.debian.org/math-team/blitzxx, https://github.com/blitzpp/blitz,1587.5368287037038,16,14,0,11.0,54.0,0.0,2.0 +bordeaux-threads,-0.131938030153011,2.29490506357594,-0.756389175678033,https://salsa.debian.org/common-lisp-team/bordeaux-threads, https://github.com/sionescu/bordeaux-threads,618.6993865740741,29,15,2,36.0,65.0,7.0,0.0 +bppphyview,-0.322998697146323,1.68940048110285,-1.06946424019755,https://salsa.debian.org/med-team/bppphyview, https://github.com/BioPP/bppphyview,5024.941805555555,0,11,0,2.0,1.0,0.0,0.0 +bpython,-0.0434810994035848,0.644020757602584,-0.307087966803881,https://salsa.debian.org/sramacher/bpython, https://github.com/bpython/bpython.git,5358.551099537037,54,102,0,100.0,257.0,0.0,0.0 +braa,0.18857550913631,2.42325022699813,-0.363339702123432,https://salsa.debian.org/pkg-security-team/braa, https://github.com/mteg/braa,1136.4603125,1,3,0,2.0,3.0,0.0,0.0 +bsdowl,-1.60198847164572,1.75769684398088,-2.51529282607367,https://github.com/michipili/bsdowl/tree/debian,https://github.com/michipili/bsdowl,3910.684305555556,1,6,3,2.0,10.0,0.0,0.0 +Bumblebee,0.376529066809866,1.0876582951625,0.0091091691922931,https://salsa.debian.org/nvidia-team/bumblebee, https://github.com/Bumblebee-Project/Bumblebee,3352.040601851852,5,32,2,13.0,747.0,0.0,56.0 +c-blosc,0.0806218390417441,0.890051594998846,-0.098325224414899,https://salsa.debian.org/debian/c-blosc, https://github.com/Blosc/c-blosc,5250.661886574074,8,67,0,52.0,159.0,0.0,1.0 +cached-property,-0.0144008396077482,0.768841150603926,-0.147182200978449,https://salsa.debian.org/tryton-team/cached-property, https://github.com/pydanny/cached-property.git,3487.9884837962964,5,25,0,20.0,97.0,0.0,0.0 +cakephp,-0.304322882573766,0.0640461085078946,-0.404177810794632,https://salsa.debian.org/debian/cakephp, https://github.com/cakephp/cakephp.git,5783.6353125,209,780,0,353.0,0.0,0.0,27.0 +camlidl,-0.233754700378937,0.070983360778372,-0.316498297708785,https://salsa.debian.org/ocaml-team/camlidl, https://github.com/xavierleroy/camlidl,2560.001168981481,6,6,0,10.0,22.0,0.0,0.0 +castle-engine,-0.13652506448966,2.18823366263936,-1.04099028707213,https://salsa.debian.org/pascal-team/castle-game-engine, https://github.com/castle-engine/castle-engine.git,5781.716412037037,3,36,0,21.0,74.0,0.0,8.0 +cecilia5,2.11941372654458,4.58891034831852,0.951719085649799,https://salsa.debian.org/multimedia-team/cecilia, https://github.com/belangeo/cecilia5.git,2818.905324074074,0,14,0,4.0,62.0,0.0,0.0 +ceres-solver,0.146007252238032,1.31912325385826,-0.329920750077309,https://salsa.debian.org/science-team/ceres-solver, https://github.com/ceres-solver/ceres-solver.git,4197.525416666666,26,96,0,92.0,394.0,0.0,0.0 +cffi,-0.0191807040781388,1.35391352063322,-0.541587320668192,https://salsa.debian.org/common-lisp-team/cffi, https://github.com/cffi/cffi.git,5610.822916666667,73,39,0,74.0,94.0,0.0,6.0 +fiveam,0.185488567318106,3.39476297326925,-0.685652618164102,https://salsa.debian.org/common-lisp-team/cl-fiveam, https://github.com/sionescu/fiveam.git,5674.287337962963,16,9,0,22.0,41.0,0.0,0.0 +cl-plus-ssl,-0.132484343986384,2.37515776230682,-0.86184444510575,https://salsa.debian.org/common-lisp-team/cl-plus-ssl, https://github.com/cl-plus-ssl/cl-plus-ssl,5623.322696759259,6,44,0,38.0,114.0,0.0,0.0 +split-sequence,0.238456885453285,3.53632510820789,-0.67005654498848,https://salsa.debian.org/common-lisp-team/cl-split-sequence, https://github.com/sharplispers/split-sequence,3972.622002314815,4,5,0,6.0,21.0,0.0,0.0 +cloudpickle,-0.135444704190854,0.227092764897738,-0.201763305714843,https://salsa.debian.org/python-team/packages/cloudpickle, https://github.com/cloudpipe/cloudpickle,3146.0455208333333,44,23,0,54.0,301.0,0.0,0.0 +cloudprint-service,-0.505823506968152,0.113680179435873,-0.719538990242667,https://github.com/davesteele/cloudprint-service,https://github.com/davesteele/cloudprint-service,3095.4250115740742,18,20,0,20.0,62.0,0.0,1.0 +cloudsql-proxy,-2.22480744528607,0.67035721276054,-2.9432212872527,https://salsa.debian.org/go-team/packages/cloudsql-proxy, https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,3012.731493055556,90,36,0,103.0,389.0,0.0,0.0 +Clp,0.265211570840681,1.13391031752389,0.0052842839145156,https://salsa.debian.org/science-team/clp, https://github.com/coin-or/Clp,5781.298009259259,3,20,0,17.0,2.0,0.0,0.0 +clustershell,0.192658709212344,2.91396435921751,-0.633817957101621,https://salsa.debian.org/python-team/packages/clustershell, https://github.com/cea-hpc/clustershell,5641.458611111111,20,15,3,25.0,121.0,0.0,5.0 +coffeescript,0.754447923057675,2.32458702818753,0.114142487857081,https://salsa.debian.org/js-team/coffeescript, https://github.com/jashkenas/coffeescript,5027.744583333333,45,236,0,217.0,130.0,0.0,535.0 +compton-conf,0.0365558037896281,2.33559959149864,-0.438569102324087,https://salsa.debian.org/lxqt-team/compton-conf, https://github.com/lxqt/compton-conf.git,3571.817141203704,69,35,0,62.0,50.0,0.0,0.0 +Comskip,-1.12921882299105,2.00928273935997,-1.92251715613048,https://salsa.debian.org/debian/comskip, https://github.com/erikkaashoek/Comskip.git,5415.403148148148,6,28,0,23.0,99.0,0.0,0.0 +coturn,1.02847317193919,3.29681270616991,0.12311749631026,https://github.com/coturn/coturn/tree/debian/master,https://github.com/coturn/coturn,3518.632141203704,69,102,2,114.0,239.0,0.0,0.0 +cpm,1.50030554593415,4.35291061073564,0.259076931680296,https://github.com/comotion/cpm,https://github.com/comotion/cpm,3307.608391203704,0,16,3,5.0,33.0,0.0,4.0 +cqrlog,-0.27542801287245,0.466680289968303,-0.646305842308386,https://salsa.debian.org/debian-hamradio-team/cqrlog, https://github.com/ok2cqr/cqrlog.git,3907.9930208333335,3,34,0,22.0,77.0,0.0,0.0 +cracklib,0.82215549876622,1.3380074207384,0.485069863399516,https://salsa.debian.org/debian/pkg-cracklib/, https://github.com/cracklib/cracklib.git,5758.123356481481,30,18,0,35.0,43.0,0.0,0.0 +cram,-1.55828146225479,0.404430784817172,-2.03735898499585,https://salsa.debian.org/python-team/packages/cram, https://github.com/brodie/cram,4115.669652777778,3,11,0,9.0,40.0,0.0,0.0 +crispy-doom,-0.774189957993927,0.0446191403759617,-0.920726853937846,https://salsa.debian.org/debian/crispy-doom, https://github.com/fabiangreffrath/crispy-doom.git,4757.087858796296,50,87,0,93.0,94.0,0.0,4.0 +crudini,-0.0417948919541669,2.30247891333797,-0.729547201240333,https://salsa.debian.org/python-team/packages/crudini, https://github.com/pixelb/crudini,3928.4521064814817,7,8,0,13.0,111.0,0.0,0.0 +csmith,-1.64827670115649,0.329702465046647,-2.189393160817,https://salsa.debian.org/debian/csmith, https://github.com/csmith-project/csmith.git,4565.639780092592,7,39,0,28.0,77.0,0.0,0.0 +dateutils,0.248966163964174,1.81561866580788,-0.335944677308192,https://salsa.debian.org/alteholz/dateutils, https://github.com/hroptatyr/dateutils,3585.0248032407408,6,16,2,10.0,103.0,0.0,0.0 +ddnet,-0.964163291390815,0.151255788413683,-1.21536273905815,https://salsa.debian.org/games-team/ddnet, https://github.com/ddnet/ddnet,5784.7662152777775,123,275,0,201.0,0.0,0.0,5.0 +dds,-0.198981107742478,1.3473808449561,-0.715152296994495,https://salsa.debian.org/debian/dds, https://github.com/dds-bridge/dds.git,2069.005462962963,2,13,0,11.0,52.0,0.0,0.0 +ddskk,-0.873644530389024,-0.856685110343982,-0.879048032548738,https://salsa.debian.org/debian/ddskk, https://github.com/skk-dev/ddskk,5620.431747685185,2,28,0,20.0,42.0,0.0,0.0 +dfwinreg,-0.0527750481914423,1.07894690853713,-0.406796000050655,https://salsa.debian.org/pkg-security-team/dfwinreg, https://github.com/log2timeline/dfwinreg.git,2962.9065972222224,0,3,0,1.0,14.0,0.0,2.0 +dh-dist-zilla,-1.00752199724441,0.589306650019709,-1.28293350578517,https://github.com/elmar/dh-dist-zilla,https://github.com/elmar/dh-dist-zilla,2392.1696064814814,0,4,0,3.0,3.0,0.0,0.0 +dh-make-golang,-0.307436391950757,0.770263115515491,-0.680055120465306,https://salsa.debian.org/go-team/packages/dh-make-golang, https://github.com/Debian/dh-make-golang.git,3064.970185185185,24,19,0,28.0,79.0,0.0,0.0 +distorm,0.242519587594854,2.0162179615907,-0.300785424821981,https://salsa.debian.org/debian/distorm3, https://github.com/gdabah/distorm.git,2464.690625,2,17,0,13.0,62.0,0.0,1.0 +django-ajax-selects,-1.80264125066177,-1.39892185878209,-1.87010146710181,https://salsa.debian.org/python-team/packages/django-ajax-selects, https://github.com/crucialfelix/django-ajax-selects,4299.027407407408,12,41,0,42.0,258.0,0.0,0.0 +django-anymail,-1.72984340815293,0.000790072373582,-2.06522513421509,https://salsa.debian.org/python-team/packages/django-anymail, https://github.com/anymail/django-anymail,4340.058506944444,33,27,0,51.0,139.0,0.0,0.0 +django-assets,-1.2263795033072,0.878646501636517,-1.80454494183478,https://salsa.debian.org/python-team/packages/django-assets, https://github.com/miracle2k/django-assets.git,4511.067199074074,6,94,0,24.0,93.0,0.0,0.0 +django-jinja,-1.35472993542178,0.150737424977885,-1.65759326053824,https://salsa.debian.org/python-team/packages/django-jinja, https://github.com/niwinz/django-jinja,4245.131724537037,30,48,0,53.0,196.0,0.0,0.0 +django-ldapdb,-1.01081417834882,2.55509597719961,-2.19427575428845,https://salsa.debian.org/python-team/packages/django-ldapdb, https://github.com/django-ldapdb/django-ldapdb,3058.5422222222223,5,21,0,12.0,123.0,0.0,0.0 +django-macaddress,-0.489614537071132,2.37369336544304,-1.53946280496386,https://salsa.debian.org/python-team/packages/django-macaddress, https://github.com/tubaman/django-macaddress.git,3439.070474537037,8,28,0,20.0,36.0,0.0,0.0 +django-markupfield,-1.07593773667785,0.286546187530354,-1.49972713566092,https://salsa.debian.org/python-team/packages/django-markupfield, https://github.com/jamesturk/django-markupfield,5316.459606481481,3,17,0,17.0,45.0,0.0,0.0 +django-pagination,-1.21987228728206,1.65029394892811,-1.98430280233489,https://salsa.debian.org/python-team/packages/django-pagination, https://github.com/ericflo/django-pagination,3284.865787037037,6,18,0,13.0,74.0,0.0,0.0 +django-picklefield,-0.703580644380416,0.57934771567608,-1.05875420348665,https://salsa.debian.org/python-team/packages/django-picklefield, https://github.com/gintas/django-picklefield.git,4658.002905092592,2,16,0,11.0,52.0,0.0,0.0 +django-pipeline,-0.930876169721945,0.713745883165131,-1.5104447326527,https://salsa.debian.org/python-team/packages/django-pipeline, https://github.com/jazzband/django-pipeline,5696.7215625,55,133,0,143.0,677.0,0.0,0.0 +django-q,-0.676225936091092,1.3565065882819,-1.15441399963899,https://salsa.debian.org/python-team/packages/django-q, https://github.com/Koed00/django-q,2734.7205092592594,22,48,0,52.0,559.0,0.0,0.0 +django-recurrence,-1.32652293733886,0.884310932834965,-1.91637277755008,https://salsa.debian.org/python-team/packages/django-recurrence, https://github.com/jazzband/django-recurrence,5185.443993055555,18,46,1,44.0,213.0,0.0,0.0 +django-sekizai,-1.02624252790074,0.604143798803238,-1.58643353912969,https://salsa.debian.org/python-team/packages/django-sekizai, https://github.com/django-cms/django-sekizai.git,4878.868402777778,11,19,0,21.0,135.0,0.0,0.0 +django-session-security,-1.42883309128597,1.11396744897978,-1.91277981712212,https://salsa.debian.org/python-team/packages/django-session-security, https://github.com/yourlabs/django-session-security,4081.298287037037,19,40,0,41.0,84.0,0.0,0.0 +djangorestframework-api-key,-2.8977691007583,0.522103784059181,-3.69100268961243,https://salsa.debian.org/python-team/packages/djangorestframework-api-key, https://github.com/florimondmanca/djangorestframework-api-key,1908.8148263888888,20,6,2,21.0,94.0,0.0,0.0 +dkms,2.37260127765776,3.21557281613004,1.78866272913875,https://salsa.debian.org/debian/dkms, https://github.com/dell/dkms,5777.874641203704,70,65,1,95.0,171.0,0.0,0.0 +dlib,-0.167784850512731,1.17442956246559,-0.591412144971591,https://salsa.debian.org/science-team/dlib, https://github.com/davisking/dlib.git,5697.550277777777,155,59,0,169.0,147.0,0.0,0.0 +dodgy,0.155741812664803,3.62095525465031,-0.792433561479021,https://salsa.debian.org/python-team/packages/dodgy, https://github.com/landscapeio/dodgy,2642.968425925926,4,14,0,11.0,24.0,0.0,0.0 +doona,0.0575012671817577,2.52116677544593,-0.439565640170492,https://salsa.debian.org/pkg-security-team/doona, https://github.com/wireghoul/doona,3578.8472569444443,1,4,0,3.0,6.0,0.0,0.0 +doxygen,1.57285541920274,2.00663097629079,1.23570050367554,https://salsa.debian.org/debian/doxygen, https://github.com/doxygen/doxygen.git,5784.328518518519,59,259,0,250.0,152.0,0.0,0.0 +dumb-jump,-1.00401612289515,1.38938396192979,-1.45538725397063,https://salsa.debian.org/emacsen-team/dumb-jump-el, https://github.com/jacktasia/dumb-jump.git,2796.8254398148147,82,16,0,83.0,196.0,0.0,0.0 +earlyoom,-0.341183177493239,0.813051484006846,-0.602041086806007,https://salsa.debian.org/yangfl-guest/earlyoom, https://github.com/rfjakob/earlyoom,3559.298252314815,38,9,1,35.0,189.0,0.0,2.0 +edgar,1.08839795492961,5.17314917307623,-0.286926227501431,https://salsa.debian.org/games-team/edgar, https://github.com/riksweeney/edgar,5461.022303240741,3,13,0,10.0,32.0,0.0,1.0 +curator,0.0906487219488355,2.1237637356061,-0.674203282917645,https://salsa.debian.org/python-team/packages/elasticsearch-curator, https://github.com/elasticsearch/curator.git,4523.481643518519,47,128,0,119.0,437.0,0.0,9.0 +ensmallen,-4.65186080484944,-1.20167735411521,-5.4243559792702,https://salsa.debian.org/science-team/ensmallen, https://github.com/mlpack/ensmallen,3267.113923611111,33,88,1,79.0,88.0,0.0,0.0 +eom,0.715092860786342,1.96179053680248,0.162373821058576,https://salsa.debian.org/debian-mate-team/eom, https://github.com/mate-desktop/eom.git,4406.35525462963,31,40,0,47.0,171.0,0.0,0.0 +eqonomize,-0.713530596761242,-0.228994478371221,-0.815920165653021,https://salsa.debian.org/debian/eqonomize, https://github.com/Eqonomize/eqonomize.git,2736.879004629629,6,16,0,14.0,78.0,0.0,0.0 +bitcask,-1.63980554689103,0.184667076068673,-2.16430999587271,https://salsa.debian.org/erlang-team/packages/erlang-bitcask, https://github.com/basho/bitcask.git,4652.9643865740745,11,64,0,43.0,104.0,0.0,0.0 +eimp,0.113618380384015,3.10174992362404,-0.556281410260239,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-eimp, https://github.com/processone/eimp.git,1694.160462962963,2,10,0,6.0,23.0,0.0,0.0 +pkix,-0.234474962955573,1.53100669979475,-0.593960523909424,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-pkix, https://github.com/processone/pkix.git,1315.7862615740742,2,8,0,6.0,6.0,0.0,0.0 +erlang-sqlite3,-1.07473466575997,0.955064677192846,-1.52297568779908,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-sqlite3, https://github.com/processone/erlang-sqlite3.git,5341.557349537037,3,35,0,18.0,11.0,0.0,0.0 +stun,0.0861728610565275,2.22776495360094,-0.507245346061424,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-stun, https://github.com/processone/stun.git,3846.888657407407,6,17,0,16.0,32.0,0.0,0.0 +exiv2,2.00721799338912,2.82923170632669,1.44451109833252,https://salsa.debian.org/qt-kde-team/3rdparty/exiv2, https://github.com/Exiv2/exiv2.git,5776.624270833333,78,96,0,113.0,286.0,0.0,4.0 +ocaml-extlib,-0.348114141550944,0.350425218393855,-0.564117168726424,https://salsa.debian.org/ocaml-team/extlib, https://github.com/ygrek/ocaml-extlib.git,5693.391643518518,9,11,0,19.0,34.0,0.0,0.0 +faker,-0.145280747483218,2.69425805512152,-1.09217364329954,https://salsa.debian.org/python-team/packages/faker, https://github.com/joke2k/faker,4045.7559953703694,333,259,1,406.0,724.0,0.0,2.0 +feedgnuplot,-0.0232006873358208,2.3192159355139,-0.475883411920573,https://salsa.debian.org/science-team/feedgnuplot, https://github.com/dkogan/feedgnuplot.git,4457.749803240741,3,11,0,4.0,49.0,0.0,0.0 +feedparser,0.329490030195573,0.887258506590834,0.0591644378455066,https://salsa.debian.org/python-team/packages/feedparser, https://github.com/kurtmckee/feedparser,5778.855555555556,18,42,0,44.0,298.0,0.0,0.0 +feh,1.21389057646133,2.03207040598424,0.696863505679508,https://salsa.debian.org/debian-phototools-team/feh, https://github.com/derf/feh.git,5050.149907407407,28,62,0,64.0,102.0,0.0,4.0 +micropython,0.478410426544107,3.61766596813473,-0.405114305126869,https://salsa.debian.org/python-team/packages/firmware-microbit-micropython, https://github.com/bbcmicrobit/micropython.git,2774.686111111111,52,41,0,69.0,297.0,0.0,7.0 +fitscut,-0.461887466842085,0.810102280137207,-0.688120430418164,https://salsa.debian.org/debian-astro-team/fitscut, https://github.com/spacetelescope/fitscut,4.934247685185185,1,2,0,0.0,3.0,0.0,0.0 +flamerobin,-0.327866657694599,0.665010888077961,-0.57374430777908,https://salsa.debian.org/debian/flamerobin, https://github.com/mariuz/flamerobin,5771.75480324074,5,30,0,18.0,51.0,0.0,1.0 +flare-game,0.13581592220033,2.68837141164579,-0.419579888500682,https://salsa.debian.org/games-team/flare-game, https://github.com/flareteam/flare-game,4548.824502314815,15,65,1,59.0,62.0,0.0,9.0 +flask,0.2833230291285,1.29200960675611,-0.0619464215620129,https://salsa.debian.org/python-team/packages/flask, https://github.com/pallets/flask,4990.467743055556,414,463,2,401.0,564.0,0.0,0.0 +flask-babel,0.249235184378055,2.06363219384402,-0.142918840376056,https://salsa.debian.org/python-team/packages/flask-babel, https://github.com/python-babel/flask-babel,4873.4565625,14,34,1,37.0,245.0,0.0,0.0 +flask-sqlalchemy,0.998578611970873,4.11680605182797,-0.0240710393872945,https://salsa.debian.org/python-team/packages/flask-sqlalchemy, https://github.com/pallets-eco/flask-sqlalchemy,4934.184814814815,57,73,1,103.0,399.0,0.0,0.0 +flask-testing,-0.833397781767501,1.71297943297029,-1.3777911288909,https://salsa.debian.org/python-team/packages/flask-testing, https://github.com/jarus/flask-testing,3837.3830439814815,7,29,1,28.0,140.0,0.0,0.0 +flask-wtf,0.640384175173292,2.79250979467701,-0.0660212157872085,https://salsa.debian.org/python-team/packages/flask-wtf, https://github.com/wtforms/flask-wtf.git,4913.330497685185,22,86,0,85.0,350.0,0.0,0.0 +fluidsynth,0.21850821664717,0.539975028755889,0.0588521012833301,https://salsa.debian.org/multimedia-team/fluidsynth, https://github.com/Fluidsynth/fluidsynth.git,5564.488715277777,68,41,0,75.0,186.0,0.0,48.0 +fontmatrix,2.15994794748211,4.06554705657352,1.12759544137286,https://salsa.debian.org/fonts-team/fontmatrix, https://github.com/fontmatrix/fontmatrix,5474.399907407407,7,13,0,12.0,46.0,0.0,1.0 +freedoom,0.210835778863243,1.51807520194526,-0.223316506619481,https://salsa.debian.org/games-team/freedoom, https://github.com/freedoom/freedoom,5775.941805555555,112,57,0,82.0,72.0,0.0,0.0 +freelan,-0.313859047629364,2.04106354672551,-1.22880805749719,https://salsa.debian.org/debian/freelan, https://github.com/freelan-developers/freelan,3106.272789351852,2,25,1,15.0,54.0,0.0,3.0 +FreeRDP,0.535602671257156,1.36568297184434,0.143324601257681,https://salsa.debian.org/debian-remote-team/freerdp2, https://github.com/FreeRDP/FreeRDP,4547.975034722223,206,376,4,312.0,536.0,0.0,145.0 +wxlauncher,-0.338870131147895,1.6566638618811,-0.935585835018654,https://salsa.debian.org/games-team/freespace2-launcher-wxlauncher, https://github.com/scp-fs2open/wxlauncher,4804.2101041666665,7,12,2,13.0,26.0,0.0,2.0 +fribidi,0.531714460283811,1.18672754036968,0.196001385598062,https://salsa.debian.org/debian/fribidi, https://github.com/fribidi/fribidi.git,5722.369756944445,10,31,0,32.0,94.0,0.0,1.0 +fscrypt,-0.118661142773488,2.07827724244262,-0.64621003179013,https://salsa.debian.org/go-team/packages/fscrypt, https://github.com/google/fscrypt,2602.2166782407407,17,13,2,22.0,49.0,0.0,0.0 +fsm-lite,-0.680671323777026,1.6544118072895,-1.11923848801064,https://salsa.debian.org/med-team/fsm-lite, https://github.com/nvalimak/fsm-lite.git,170.23428240740742,0,5,0,2.0,11.0,0.0,0.0 +fstl,-0.0638362026732831,2.70921948973698,-0.786070361319823,https://salsa.debian.org/sur5r/fstl, https://github.com/fstl-app/fstl,3488.4875231481483,10,13,0,18.0,75.0,0.0,1.0 +fwbuilder,0.569210766786568,1.0021497205634,0.258994228948736,https://salsa.debian.org/debian/fwbuilder, https://github.com/fwbuilder/fwbuilder.git,5643.142071759259,7,40,0,26.0,108.0,0.0,0.0 +fwknop,-0.367325771342167,0.225654341723464,-0.670461964137789,https://salsa.debian.org/debian/fwknop, https://github.com/mrash/fwknop.git,5311.050532407407,2,37,0,28.0,66.0,0.0,0.0 +fwsnort,-0.733292803724229,0.47214127643951,-1.14490286833914,https://salsa.debian.org/debian/fwsnort, https://github.com/mrash/fwsnort.git,3934.757858796296,0,5,0,3.0,14.0,0.0,0.0 +fwupdate,0.0843853428047569,1.05891412017967,-0.244491351851707,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365740743,21,5,0,15.0,40.0,0.0,3.0 +galera,0.767221636200971,1.82144092050012,0.242275822158759,https://salsa.debian.org/mariadb-team/galera-3, https://github.com/codership/galera,5691.742395833333,10,50,1,25.0,0.0,0.0,1.0 +galpy,-0.163144318703034,1.83168174338328,-0.640914183675681,https://salsa.debian.org/debian-astro-team/galpy, https://github.com/jobovy/galpy.git,4901.371655092593,10,36,0,28.0,37.0,0.0,2.0 +gambit,1.08040974044984,3.14129853288694,0.0766910930166644,https://salsa.debian.org/abdelq-guest/gambc, https://github.com/gambit/gambit,5777.729120370371,5,77,0,52.0,184.0,0.0,4.0 +Gem,0.679446578745151,1.22502744459527,0.320237781232395,https://salsa.debian.org/multimedia-team/pd/gem, https://github.com/umlaeute/Gem,5620.098541666666,11,58,1,15.0,77.0,0.0,7.0 +gemmlowp,-0.914209861782336,0.992259106055519,-1.34025763160311,https://salsa.debian.org/science-team/gemmlowp, https://github.com/google/gemmlowp,3053.021979166667,34,42,0,53.0,107.0,18.0,0.0 +genshi,0.98187746812558,2.31649507424025,0.288404295617294,https://salsa.debian.org/python-team/packages/genshi, https://github.com/edgewall/genshi.git,5693.595347222222,8,26,0,27.0,34.0,0.0,0.0 +geoalchemy2,-1.47910767167291,2.31738132188416,-2.45278157052798,https://salsa.debian.org/python-team/packages/geoalchemy2, https://github.com/geoalchemy/geoalchemy2,4123.10619212963,18,35,1,36.0,243.0,0.0,0.0 +geos,0.119087537206031,0.451175135157147,-0.0256104858871241,https://salsa.debian.org/debian-gis-team/geos, https://github.com/libgeos/geos.git,5683.094606481482,37,52,0,75.0,157.0,0.0,0.0 +gImageReader,-0.213911435643066,0.0353297888098082,-0.283353250959965,https://salsa.debian.org/debian/gimagereader, https://github.com/manisandro/gImageReader,3878.611631944445,113,24,0,87.0,276.0,0.0,5.0 +ginga,-0.45776862772662,0.20216258955435,-0.583592752254381,https://salsa.debian.org/debian-astro-team/ginga, https://github.com/ejeschke/ginga.git,4188.922418981481,11,44,0,34.0,87.0,0.0,1.0 +glewlwyd,0.169874762457818,1.3618403908651,-0.177364068753155,https://salsa.debian.org/debian-iot-team/oauth2/glewlwyd.git, https://github.com/babelouest/glewlwyd,2557.2033449074074,11,19,1,18.0,58.0,0.0,0.0 +glfw,0.0977965010010051,1.68882091193038,-0.179650888637476,https://salsa.debian.org/games-team/glfw3, https://github.com/glfw/glfw.git,5186.868055555556,161,47,0,175.0,412.0,0.0,14.0 +gnome-shell-extension-appindicator,0.266480460884379,2.53393601179872,-0.304515496604215,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-appindicator, https://github.com/ubuntu/gnome-shell-extension-appindicator,3879.4440046296295,30,21,0,38.0,794.0,0.0,2.0 +gnome-shell-extension-caffeine,-0.039832887673346,1.75626767882921,-0.389078965927041,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-caffeine, https://github.com/eonpatapon/gnome-shell-extension-caffeine,4204.856111111111,22,56,0,58.0,336.0,0.0,0.0 +EasyScreenCast,-0.247643057016812,1.72224379988039,-0.661567446375378,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-easyscreencast, https://github.com/EasyScreenCast/EasyScreenCast.git,3762.2703125,11,34,0,32.0,222.0,0.0,0.0 +multi-monitors-add-on,0.240334707409969,2.3856514137928,-0.357167869653307,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-multi-monitors, https://github.com/spin83/multi-monitors-add-on.git,2247.7516435185184,1,14,0,10.0,325.0,0.0,0.0 +yaml,-0.18283249946428,1.78793335186982,-0.599059673014276,https://salsa.debian.org/go-team/packages/golang-yaml.v2, https://github.com/go-yaml/yaml.git,4160.8565625,29,26,0,38.0,670.0,0.0,0.0 +gopacket,-1.06288190141592,1.2277474396826,-1.80525057678666,https://salsa.debian.org/go-team/packages/gopacket, https://github.com/google/gopacket.git,3976.855358796297,106,101,0,164.0,338.0,0.0,0.0 +gosu,-0.829319185294956,1.40651200013733,-1.25999977595269,https://salsa.debian.org/go-team/packages/gosu, https://github.com/tianon/gosu.git,3461.229861111111,6,8,0,12.0,100.0,0.0,0.0 +goxel,-0.452502788914954,1.39902110443508,-0.96333909647266,https://salsa.debian.org/debian/goxel, https://github.com/guillaumechereau/goxel.git,2988.285856481481,12,26,0,26.0,120.0,0.0,1.0 +gr-limesdr,-0.922675285913836,0.882732455733595,-1.42385908319867,https://salsa.debian.org/debian-hamradio-team/gr-limesdr, https://github.com/myriadrf/gr-limesdr.git,1838.1773726851848,3,21,0,12.0,88.0,0.0,0.0 +grabc,0.259382871110102,3.26058073141346,-0.658534877421865,https://salsa.debian.org/debian/grabc, https://github.com/muquit/grabc.git,1019.1824189814816,0,3,0,2.0,11.0,0.0,0.0 +Greybird,0.95816204306386,4.08429698271198,0.0735921107534857,https://salsa.debian.org/desktop-themes-team/greybird-gtk-theme, https://github.com/shimmerproject/Greybird,4402.072048611111,24,30,0,33.0,228.0,0.0,2.0 +grfcodec,-0.490563373333505,1.16974650769134,-0.99403605442651,https://salsa.debian.org/openttd-team/grfcodec, https://github.com/OpenTTD/grfcodec.git,5754.043796296296,6,15,0,14.0,16.0,0.0,0.0 +grml-debootstrap,-0.945933574329717,-0.551860296769336,-1.09233853366106,https://github.com/grml/grml-debootstrap,https://github.com/grml/grml-debootstrap,5733.818854166667,7,26,0,18.0,31.0,0.0,0.0 +guiqwt,0.157404843369812,1.71348782473345,-0.39856695770398,https://salsa.debian.org/science-team/guiqwt, https://github.com/PierreRaybaut/guiqwt.git,4806.769652777778,1,21,0,8.0,41.0,0.0,0.0 +harfbuzz,0.171647692654905,0.542997292350876,0.0283701740987368,https://salsa.debian.org/freedesktop-team/harfbuzz, https://github.com/harfbuzz/harfbuzz.git,5645.164965277778,184,76,0,210.0,198.0,0.0,11.0 +hebcal,0.138161090449786,2.8080865957014,-0.836907509155818,https://salsa.debian.org/debian/hebcal, https://github.com/hebcal/hebcal,5547.5039120370375,16,21,0,24.0,134.0,0.0,0.0 +hiera-eyaml,0.31728685467597,4.44703567762882,-0.840765746330657,https://salsa.debian.org/ruby-team/hiera-eyaml, https://github.com/voxpupuli/hiera-eyaml,3753.1260185185183,15,52,1,48.0,305.0,0.0,0.0 +homesick,-0.778889237497118,1.40989765916812,-1.42195488623994,https://salsa.debian.org/ruby-team/homesick, https://github.com/technicalpickles/homesick,3243.959629629629,6,52,0,36.0,113.0,0.0,0.0 +horst,0.190478644121507,1.54695004141826,-0.282062690337637,https://salsa.debian.org/debian/horst, https://github.com/br101/horst.git,5016.211967592592,4,12,0,8.0,63.0,0.0,2.0 +hotspot,-0.279096434934121,2.33740367896778,-1.0457505747954,https://salsa.debian.org/debian/hotspot, https://github.com/KDAB/hotspot.git,2548.033148148148,38,24,0,54.0,102.0,0.0,0.0 +hovercraft,-0.745586220610179,0.886166848987427,-1.23328285354792,https://salsa.debian.org/python-team/packages/hovercraft, https://github.com/regebro/hovercraft,3363.2624305555555,11,27,0,27.0,174.0,0.0,0.0 +httpcode,-0.665917226132441,1.43278820521688,-1.12356826521724,https://salsa.debian.org/python-team/packages/httpcode, https://github.com/rspivak/httpcode,1929.8437152777776,0,9,0,6.0,16.0,0.0,0.0 +httpdirfs,-1.16031873285889,1.21522192578648,-1.64558239811084,https://salsa.debian.org/lavamind/httpdirfs-fuse, https://github.com/fangfufu/httpdirfs.git,1903.2805324074077,12,11,0,15.0,1.0,0.0,0.0 +httpie,0.384613935111809,1.36966665093416,-0.0739168255179186,https://salsa.debian.org/python-team/packages/httpie, https://github.com/httpie/httpie,4259.19712962963,96,74,0,144.0,1031.0,0.0,0.0 +hugo,0.0671368853016907,1.14370944645474,-0.253101467629316,https://salsa.debian.org/go-team/packages/hugo, https://github.com/gohugoio/hugo.git,3813.722662037037,826,45,0,422.0,741.0,0.0,0.0 +python-humanfriendly,0.228381991068723,3.2095279019538,-0.554286794182616,https://salsa.debian.org/python-team/packages/humanfriendly, https://github.com/xolox/python-humanfriendly,3014.954247685185,5,15,0,17.0,79.0,0.0,0.0 +hunchentoot,-0.781887054912999,1.42366033170894,-1.48023621267757,https://github.com/edicl/hunchentoot,https://github.com/edicl/hunchentoot,5414.600162037037,19,51,0,51.0,136.0,0.0,2.0 +hypre,-0.116807516531962,0.329110116990632,-0.3077167067755,https://salsa.debian.org/science-team/hypre, https://github.com/hypre-space/hypre,3128.266851851852,29,123,0,45.0,272.0,0.0,8.0 +i3lock-fancy,0.141114795460248,2.51986399766619,-0.50663810778526,https://salsa.debian.org/debian/i3lock-fancy, https://github.com/meskarune/i3lock-fancy,2712.43375,14,38,0,32.0,191.0,0.0,0.0 +ideviceinstaller,0.568963109437017,2.74506542035172,-0.181779756008986,https://salsa.debian.org/imobiledevice-team/ideviceinstaller, https://github.com/libimobiledevice/ideviceinstaller.git,4944.718449074074,9,5,0,9.0,160.0,0.0,0.0 +ido-completing-read-plus,-0.835851110638491,0.642816870988192,-1.16242953834539,https://salsa.debian.org/emacsen-team/ido-ubiquitous, https://github.com/DarwinAwardWinner/ido-completing-read-plus.git,3558.905173611111,5,15,0,17.0,116.0,0.0,0.0 +im,-0.683203415227418,-0.468849532849079,-0.783434092773863,https://salsa.debian.org/debian/im, https://github.com/tats/im,1297.943900462963,1,2,0,1.0,0.0,0.0,0.0 +imagetooth,-1.56151804986896,1.02976558626745,-2.13055681311183,https://salsa.debian.org/ruby-team/imagetooth, https://github.com/gramos/imagetooth,163.81336805555554,0,1,0,1.0,0.0,0.0,0.0 +imbalanced-learn,-1.87049095287035,1.59545167045936,-2.83188962933758,https://salsa.debian.org/med-team/imbalanced-learn, https://github.com/scikit-learn-contrib/imbalanced-learn.git,3355.2317592592594,67,21,0,75.0,642.0,0.0,3.0 +impacket,0.15808049135145,1.66891964742961,-0.288669068164663,https://salsa.debian.org/python-team/packages/impacket, https://github.com/SecureAuthCorp/impacket.git,5583.002974537037,71,193,0,166.0,138.0,0.0,0.0 +inadyn,1.24910264509236,3.27984786709163,0.280953404438953,https://salsa.debian.org/debian/inadyn, https://github.com/troglobit/inadyn,4734.416620370371,20,58,1,62.0,169.0,0.0,0.0 +incremental,0.285602329751221,1.75756103878,-0.0750684493122969,https://salsa.debian.org/python-team/packages/incremental, https://github.com/twisted/incremental.git,2511.779386574074,4,15,0,10.0,32.0,0.0,0.0 +indexed_gzip,0.246841981503055,2.69003927158436,-0.529583596722079,https://salsa.debian.org/python-team/packages/indexed-gzip, https://github.com/pauldmccarthy/indexed_gzip.git,2811.383310185185,1,15,0,11.0,39.0,0.0,0.0 +media-driver,0.664226000705799,2.71524920257984,0.0467333910468321,https://salsa.debian.org/multimedia-team/intel-media-driver, https://github.com/intel/media-driver.git,2204.022951388889,645,23,0,240.0,182.0,0.0,6.0 +intel-vaapi-driver,0.133644004636135,2.05457880030156,-0.352630979985593,https://salsa.debian.org/multimedia-team/intel-vaapi-driver-shaders, https://github.com/intel/intel-vaapi-driver.git,5083.222291666667,105,18,0,73.0,126.0,0.0,0.0 +ipdb,-0.235014199235816,1.20234635062244,-0.566499343168247,https://salsa.debian.org/python-team/packages/ipdb, https://github.com/gotcha/ipdb,4846.997314814815,26,37,0,51.0,315.0,0.0,0.0 +iptux,-0.210941982489694,1.19286952955745,-0.685777144815563,https://salsa.debian.org/chinese-team/iptux, https://github.com/iptux-src/iptux,5548.864212962963,7,21,2,15.0,92.0,0.0,3.0 +iputils,2.06630957848551,2.71898078142615,1.59331072876177,https://salsa.debian.org/debian/iputils, https://github.com/iputils/iputils.git,5645.155682870371,103,41,0,117.0,123.0,0.0,0.0 +ispell-lt,-0.323517661994141,-0.0990794107370836,-0.395388849737067,https://salsa.debian.org/debian/ispell-lt, https://github.com/ispell-lt/ispell-lt.git,5691.957118055556,0,11,0,3.0,7.0,0.0,0.0 +musicbrainz-isrcsubmit,-0.0652487857983224,2.15673384117705,-0.609436100549815,https://salsa.debian.org/multimedia-team/isrcsubmit, https://github.com/JonnyJD/musicbrainz-isrcsubmit,4205.4764583333335,3,11,3,7.0,26.0,0.0,0.0 +itamae,-2.4298742882979,-0.139863998812457,-2.98002862830704,https://salsa.debian.org/ruby-team/itamae, https://github.com/itamae-kitchen/itamae,3570.7650925925927,12,71,0,65.0,53.0,0.0,9.0 +iverilog,0.428893521594545,1.29394584283642,-0.0384729203471916,https://salsa.debian.org/electronics-team/iverilog, https://github.com/steveicarus/iverilog,5784.215775462963,47,73,0,84.0,248.0,0.0,3.0 +jabref,0.0587466024486578,0.351648544816391,-0.106792030234282,https://salsa.debian.org/java-team/jabref, https://github.com/JabRef/jabref.git,3914.4709953703705,494,267,0,324.0,176.0,0.0,25.0 +jack1,0.670575673564546,1.18912514642088,0.335122338022462,https://salsa.debian.org/multimedia-team/jack-audio-connection-kit, https://github.com/jackaudio/jack1.git,5288.134444444445,9,36,0,26.0,79.0,0.0,0.0 +jemalloc,0.682407669367259,1.64473565781661,0.224104679356945,https://salsa.debian.org/debian/jemalloc, https://github.com/jemalloc/jemalloc,5237.929733796296,146,42,1,141.0,22.0,0.0,4.0 +jenkins-debian-glue,-0.965161404246595,1.48546073261439,-1.55782284279782,https://github.com/mika/jenkins-debian-glue,https://github.com/mika/jenkins-debian-glue,4282.449398148148,10,50,0,42.0,99.0,0.0,2.0 +JGlobus,-0.601880292041699,1.32711245650901,-1.15166104136262,https://salsa.debian.org/ellert/jglobus, https://github.com/jglobus/JGlobus,4874.68375,3,36,0,17.0,46.0,0.0,5.0 +jimfs,-0.383074555025862,1.37799350073055,-0.765782764482557,https://salsa.debian.org/java-team/jimfs, https://github.com/google/jimfs.git,3771.606712962963,24,17,0,24.0,113.0,0.0,0.0 +jquery-minicolors,0.59706509988228,3.6140009204724,-0.292747445784508,https://salsa.debian.org/js-team/jquery-minicolors, https://github.com/claviska/jquery-minicolors,4034.234259259259,8,51,1,51.0,278.0,0.0,0.0 +tablesorter,0.780957035171974,3.78241785711794,-0.0251966700072976,https://salsa.debian.org/js-team/jquery-tablesorter, https://github.com/Mottie/tablesorter.git,4550.660960648148,28,67,0,78.0,142.0,0.0,9.0 +joni,-0.0743980965544175,1.63100768292646,-0.602777420889342,https://salsa.debian.org/java-team/jruby-joni, https://github.com/jruby/joni.git,5683.594571759259,3,29,0,23.0,50.0,0.0,1.0 +jupyter-sphinx,-1.87611377864949,1.76672339106673,-2.88141549460941,https://salsa.debian.org/python-team/packages/jupyter-sphinx, https://github.com/jupyter/jupyter-sphinx.git,2558.909317129629,11,25,0,26.0,59.0,0.0,0.0 +jwm,0.365548919088679,1.19996413376238,-0.115579756384329,https://salsa.debian.org/debian/jwm, https://github.com/joewing/jwm,5370.498564814815,13,37,2,36.0,189.0,0.0,2.0 +kcat,-0.424412698379665,1.19223533582362,-0.709409598211933,https://github.com/edenhill/kcat/tree/debian,https://github.com/edenhill/kcat,3514.989548611112,24,19,1,29.0,434.0,0.0,0.0 +OpenCL-CLHPP,0.688482001322418,3.39390300175028,-0.0690856925512116,https://salsa.debian.org/opencl-team/khronos-opencl-clhpp, https://github.com/KhronosGroup/OpenCL-CLHPP,2856.962511574074,37,22,0,41.0,71.0,0.0,0.0 +kmodpy,0.103061583299217,3.02134500352015,-0.817476379895481,https://github.com/cnanakos/kmodpy/tree/debian/debian,https://github.com/cnanakos/kmodpy,2086.959027777778,2,5,0,3.0,6.0,0.0,0.0 +knock,3.53947787143712,6.45943486056754,2.16015145168608,https://salsa.debian.org/debian/knockd, https://github.com/jvinet/knock.git,3585.12005787037,3,18,0,12.0,32.0,0.0,0.0 +knowthelist,-0.592705519816779,1.05778457824536,-1.07494804228843,https://github.com/knowthelist/knowthelist,https://github.com/knowthelist/knowthelist,1682.080625,1,6,0,1.0,5.0,0.0,1.0 +knxd,-0.680568398353085,1.1892492423331,-1.15575302960075,https://github.com/knxd/knxd,https://github.com/knxd/knxd,3234.4639814814814,12,54,2,46.0,409.0,0.0,16.0 +kombu,0.35191766581425,1.42916559920809,-0.0557315990678068,https://salsa.debian.org/python-team/packages/kombu, https://github.com/celery/kombu,4921.720451388889,276,132,4,326.0,847.0,0.0,0.0 +kraft,-0.394588203887087,1.04192321682085,-0.886784241235354,https://salsa.debian.org/qt-kde-team/extras/kraft, https://github.com/dragotin/kraft.git,3993.7869328703705,23,17,0,20.0,24.0,0.0,0.0 +kthresher,-4.958210954192,-2.99433627197274,-5.44713855808826,https://salsa.debian.org/debian/kthresher, https://github.com/rackerlabs/kthresher,1564.7436342592594,5,6,1,6.0,15.0,0.0,1.0 +kubectx,-0.072520336816443,2.36123561832201,-0.74321242899393,https://salsa.debian.org/debian/kubectx, https://github.com/ahmetb/kubectx,2319.9031944444446,49,15,1,59.0,146.0,0.0,0.0 +leaflet-image,-3.01383828926066,-0.305655627112583,-3.69583702112544,https://salsa.debian.org/js-team/leaflet-image, https://github.com/mapbox/leaflet-image,1265.947175925926,3,14,0,12.0,161.0,0.0,0.0 +Leaflet.markercluster,-0.895652150494044,1.12585061383383,-1.52434956118809,https://salsa.debian.org/js-team/leaflet-markercluster, https://github.com/Leaflet/Leaflet.markercluster,3967.809270833333,22,68,0,60.0,1125.0,0.0,0.0 +ledger2beancount,-1.91392207571378,0.249499306425402,-2.34921511575316,https://salsa.debian.org/jelmer/ledger2beancount, https://github.com/beancount/ledger2beancount,2575.206886574074,7,3,2,8.0,34.0,0.0,0.0 +Catmandu-MARC,-1.43475360554894,0.171452316154227,-1.72515542651399,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-marc-perl, https://github.com/LibreCat/Catmandu-MARC.git,4085.058078703704,4,13,0,10.0,26.0,0.0,3.0 +DBIx-Class,0.577215499352654,1.69489941290488,0.0601666449235969,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-perl, https://github.com/Perl5/DBIx-Class.git,5209.720451388889,61,96,0,114.0,115.0,0.0,0.0 +libdeflate,0.159594288490245,2.49779397201029,-0.279894853335666,https://salsa.debian.org/med-team/libdeflate, https://github.com/ebiggers/libdeflate.git,3254.7726851851853,29,5,0,29.0,140.0,0.0,1.0 +Furl,-0.0521562012113455,2.26786469649234,-0.682608363282686,https://salsa.debian.org/perl-team/modules/packages/libfurl-perl, https://github.com/tokuhirom/Furl.git,4162.7404166666665,2,34,0,28.0,65.0,0.0,0.0 +libical,0.617622962032282,2.0765416434888,0.10158973905849,https://salsa.debian.org/debian/libical3, https://github.com/libical/libical,3453.073877314815,14,46,3,40.0,157.0,0.0,3.0 +libiio,-0.142427274524689,1.27258840139096,-0.575053213487526,https://salsa.debian.org/debian/libiio, https://github.com/analogdevicesinc/libiio.git,3584.807303240741,30,77,0,63.0,211.0,0.0,2.0 +libimagequant,1.17452392447814,4.60436014139135,0.183704913801359,https://salsa.debian.org/debian-phototools-team/libimagequant, https://github.com/ImageOptim/libimagequant.git,4336.732037037037,22,42,0,45.0,60.0,0.0,0.0 +libimobiledevice,0.746151295528314,1.40294621384222,0.360607293845247,https://salsa.debian.org/imobiledevice-team/libimobiledevice, https://github.com/libimobiledevice/libimobiledevice.git,5614.085370370371,61,26,0,63.0,181.0,0.0,8.0 +inih,-0.0499418301621886,1.97896398632524,-0.475270570503976,https://salsa.debian.org/yangfl-guest/inih, https://github.com/benhoyt/inih,5140.454861111111,30,8,0,33.0,112.0,0.0,0.0 +qunit,-0.495189173969768,2.51535578340839,-1.26544130284773,https://salsa.debian.org/js-team/libjs-qunit, https://github.com/jquery/qunit.git,5676.067743055555,143,47,0,173.0,28.0,0.0,0.0 +term.js,1.11365294616395,4.90507282646749,0.0258351053031645,https://salsa.debian.org/js-team/libjs-term.js, https://github.com/chjj/term.js,1033.320011574074,0,13,0,9.0,142.0,0.0,0.0 +adapter,-1.25366727846092,0.490745267783702,-1.69256388020005,https://salsa.debian.org/js-team/libjs-webrtc-adapter, https://github.com/webrtchacks/adapter,3650.9905902777778,24,105,1,69.0,352.0,0.0,0.0 +debian-packages,0.379168644648058,1.99990849421274,-0.376087627692435,https://github.com/mheily/debian-packages/tree/libkqueue,https://github.com/mheily/debian-packages,3042.231712962963,0,4,0,1.0,4.0,0.0,0.0 +kryo,0.439138637122569,2.47532888106887,-0.129178564193754,https://salsa.debian.org/java-team/libkryo-java, https://github.com/EsotericSoftware/kryo.git,5184.608009259259,31,73,0,76.0,670.0,0.0,10.0 +Marpa--R2,-0.484505322412779,2.31252733527863,-1.41687896517219,https://salsa.debian.org/perl-team/modules/packages/libmarpa-r2-perl, https://github.com/jeffreykegler/Marpa--R2.git,4342.804988425926,0,18,0,10.0,32.0,0.0,0.0 +libmypaint,0.798752723283649,2.72248880018829,0.120666988660567,https://salsa.debian.org/multimedia-team/libmypaint, https://github.com/mypaint/libmypaint,4528.350925925926,157,32,0,131.0,105.0,0.0,4.0 +liboping,0.956728204329271,2.48051547581799,0.239930171556677,https://salsa.debian.org/debian/liboping, https://github.com/octo/liboping,4300.975243055555,12,18,0,14.0,71.0,0.0,0.0 +libqb,0.4165321199254,1.3497414760195,0.0049237568700104,https://salsa.debian.org/ha-team/libqb, https://github.com/ClusterLabs/libqb,5002.372013888889,27,39,2,41.0,109.0,0.0,6.0 +libqtxdg,-0.0973226644284822,0.210942497187502,-0.138573205798122,https://salsa.debian.org/lxqt-team/libqtxdg, https://github.com/lxqt/libqtxdg.git,4353.740578703703,12,29,0,33.0,64.0,0.0,0.0 +quartz,-2.43906848860376,-0.610390503887099,-2.95935193585794,https://salsa.debian.org/java-team/libquartz2-java, https://github.com/quartz-scheduler/quartz,5552.904293981482,23,73,2,43.0,410.0,0.0,1.0 +libratbag,-0.0056141039249597,1.78132571047255,-0.552581796518418,https://salsa.debian.org/debian/libratbag, https://github.com/libratbag/libratbag.git,3025.6003935185186,108,44,0,112.0,278.0,0.0,25.0 +perlrdf,-0.42201298662304,2.00095213155501,-1.06531294448896,https://salsa.debian.org/perl-team/modules/packages/librdf-query-perl, https://github.com/kasei/perlrdf.git,4701.621956018518,1,41,0,11.0,30.0,0.0,1.0 +perlrdf,-0.431139851129121,0.79209348427866,-0.784215821148872,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-perl, https://github.com/kasei/perlrdf.git,4701.621956018518,1,41,0,11.0,30.0,0.0,1.0 +p5-rdf-trine-serializer-rdfa,-1.57467206932518,1.22541687467132,-2.28632560166161,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-serializer-rdfa-perl, https://github.com/kjetilk/p5-rdf-trine-serializer-rdfa.git,1268.0197569444445,0,1,0,2.0,4.0,0.0,0.0 +librouteros,-2.16301529626701,0.422440336565631,-2.75850469569176,https://salsa.debian.org/python-team/packages/librouteros, https://github.com/luqasz/librouteros,4024.615208333333,4,7,3,6.0,63.0,0.0,0.0 +SDL_image,0.3933982404481,1.83134872415426,-0.0473641175524412,https://salsa.debian.org/sdl-team/libsdl2-image, https://github.com/libsdl-org/SDL_image.git,5518.743368055556,29,27,0,44.0,81.0,0.0,0.0 +libsmbios,1.07959557534433,2.06198498006541,0.538211352169583,https://salsa.debian.org/efi-team/libsmbios, https://github.com/dell/libsmbios,5712.851053240741,17,21,3,19.0,99.0,0.0,0.0 +libsndfile,0.687122416198427,1.17425366378522,0.365871003046805,https://salsa.debian.org/multimedia-team/libsndfile, https://github.com/erikd/libsndfile,5766.237048611111,102,11,2,89.0,328.0,0.0,0.0 +Software-License,0.113385916335523,1.22207896035628,-0.0630717224638151,https://salsa.debian.org/perl-team/modules/packages/libsoftware-license-perl, https://github.com/Perl-Toolchain-Gang/Software-License.git,5727.028865740741,23,19,0,37.0,63.0,0.0,0.0 +libtomcrypt,0.481089702177077,1.47609543958715,0.0746011361914949,https://salsa.debian.org/debian/libtomcrypt, https://github.com/libtom/libtomcrypt,4891.575775462963,34,37,2,46.0,143.0,0.0,3.0 +libtorrent,0.605470632306201,1.79563815924903,0.0408663558283295,https://salsa.debian.org/debian/libtorrent, https://github.com/rakshasa/libtorrent.git,5501.292025462963,10,26,0,22.0,188.0,0.0,4.0 +libvisual,1.19936146778029,2.93331151942495,0.443027153461634,https://salsa.debian.org/debian/libvisual-plugins, https://github.com/Libvisual/libvisual,5044.523402777778,19,14,4,9.0,24.0,0.0,7.0 +vmime,-0.592445266781496,0.08930958459966,-0.923967776311259,https://salsa.debian.org/giraffe-team/libvmime, https://github.com/kisli/vmime.git,5686.971053240741,3,26,0,19.0,131.0,0.0,0.0 +libvshadow,0.27430347501286,2.65303740771095,-0.35126524914681,https://salsa.debian.org/pkg-security-team/libvshadow, https://github.com/libyal/libvshadow.git,3860.9818171296297,1,1,0,2.0,25.0,0.0,2.0 +linkchecker,0.272313856521349,0.708744107404942,-0.0259388475172617,https://salsa.debian.org/python-team/packages/linkchecker, https://github.com/linkcheck/linkchecker.git,5785.38494212963,19,50,0,51.0,189.0,0.0,3.0 +lua_cliargs,-0.547918670790067,1.20110819383126,-0.925218602795718,https://salsa.debian.org/lua-team/lua-cliargs, https://github.com/amireh/lua_cliargs,4184.137916666667,0,9,0,8.0,24.0,0.0,0.0 +lgi,0.0796701927291182,0.817172695284798,-0.167463962063516,https://salsa.debian.org/lua-team/lua-lgi, https://github.com/lgi-devs/lgi,4786.879918981482,15,37,0,33.0,177.0,0.0,0.0 +luv,0.391431800295549,2.57846041354865,-0.201597373537871,https://salsa.debian.org/lua-team/lua-luv, https://github.com/luvit/luv,4034.944594907408,25,59,0,64.0,155.0,0.0,0.0 +luakit,0.309977718500391,1.19936402482918,-0.167379545497754,https://salsa.debian.org/debian/luakit, https://github.com/luakit/luakit,4157.771076388889,75,51,2,85.0,337.0,0.0,39.0 +LucenePlusPlus,0.166368469581524,1.96604916916922,-0.267810462946104,https://salsa.debian.org/debian/luceneplusplus, https://github.com/luceneplusplus/LucenePlusPlus.git,4584.765231481481,3,40,0,23.0,105.0,0.0,0.0 +lxc,-0.027168934320616,0.029595009427975,-0.0680905702749467,https://salsa.debian.org/lxc-team/lxc, https://github.com/lxc/lxc.git,5607.156944444445,269,336,0,319.0,266.0,0.0,0.0 +lxqt-admin,0.109860838176109,1.6180664209049,-0.162930004360484,https://salsa.debian.org/lxqt-team/lxqt-admin, https://github.com/lxqt/lxqt-admin.git,3455.429861111111,80,41,0,82.0,57.0,0.0,0.0 +lxqt-policykit,0.849725532046253,4.03000539693702,-0.003812132715584,https://salsa.debian.org/lxqt-team/lxqt-policykit, https://github.com/lxqt/lxqt-policykit.git,4324.830844907408,48,36,0,59.0,42.0,0.0,0.0 +lxqt-powermanagement,0.067990475996623,1.19644354347445,-0.145591595765742,https://salsa.debian.org/lxqt-team/lxqt-powermanagement, https://github.com/lxqt/lxqt-powermanagement.git,4140.606550925926,76,51,0,79.0,84.0,0.0,0.0 +lxqt-runner,0.0124283056612465,1.1138238755934,-0.164796166466519,https://salsa.debian.org/lxqt-team/lxqt-runner, https://github.com/lxqt/lxqt-runner.git,4515.725972222223,56,49,0,70.0,50.0,0.0,0.0 +lxqt-sudo,0.140114655965918,1.77834366071532,-0.145434791953686,https://salsa.debian.org/lxqt-team/lxqt-sudo, https://github.com/lxqt/lxqt-sudo.git,3089.181782407408,82,29,0,82.0,39.0,0.0,0.0 +mu,-0.107046255843769,0.217105647172141,-0.278251203721323,https://salsa.debian.org/emacsen-team/maildir-utils, https://github.com/djcb/mu,5121.831759259259,35,231,0,206.0,161.0,0.0,0.0 +maim,0.113711053696173,1.6107062353379,-0.377100307812184,https://salsa.debian.org/debian/maim, https://github.com/naelstrof/maim.git,3690.030474537037,19,40,0,45.0,262.0,0.0,2.0 +mapnik-vector-tile,-1.40056502691077,-0.44800985874745,-1.66548086006116,https://salsa.debian.org/debian-gis-team/mapnik-vector-tile, https://github.com/mapbox/mapnik-vector-tile.git,3418.254965277778,3,30,0,17.0,98.0,0.0,0.0 +mate-menus,0.291699225666982,1.55977593208731,-0.060469425970051,https://salsa.debian.org/debian-mate-team/mate-menus, https://github.com/mate-desktop/mate-menus.git,4292.575694444445,15,28,0,23.0,81.0,0.0,0.0 +mate-power-manager,0.646216818492194,1.46969020880882,0.21493344301007,https://salsa.debian.org/debian-mate-team/mate-power-manager, https://github.com/mate-desktop/mate-power-manager.git,4348.006087962963,20,47,0,48.0,242.0,0.0,0.0 +mate-screensaver,1.60900331743067,3.35454847646224,0.754555565023901,https://salsa.debian.org/debian-mate-team/mate-screensaver, https://github.com/mate-desktop/mate-screensaver.git,4208.470706018518,19,41,0,34.0,233.0,0.0,0.0 +mate-sensors-applet,0.0789010650303653,1.28695911302141,-0.189639983679343,https://salsa.debian.org/debian-mate-team/mate-sensors-applet, https://github.com/mate-desktop/mate-sensors-applet.git,4304.766782407408,15,25,0,24.0,62.0,0.0,0.0 +mate-session-manager,0.339482463152461,0.890109503727652,0.0687723318826919,https://salsa.debian.org/debian-mate-team/mate-session-manager, https://github.com/mate-desktop/mate-session-manager.git,4323.574768518519,19,47,0,38.0,169.0,0.0,0.0 +mate-tweak,1.1711824322115,3.54816538207856,0.224799834784113,https://salsa.debian.org/debian-mate-team/mate-tweak, https://github.com/ubuntu-mate/mate-tweak.git,4804.19712962963,11,22,0,21.0,60.0,0.0,0.0 +mednaffe,0.0695788651301977,1.6947766540162,-0.285905097545065,https://salsa.debian.org/games-team/mednaffe, https://github.com/AmatCoder/mednaffe,3528.2947337962964,2,17,0,7.0,55.0,0.0,1.0 +miniupnp,0.567764962572609,1.22227461099736,0.208817498397338,https://salsa.debian.org/miniupnp-team/minissdpd, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3,107.0,312.0,0.0,4.0 +miniupnp,0.896028584634377,2.20959817825551,0.296824471039593,https://salsa.debian.org/miniupnp-team/miniupnpc, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3,107.0,312.0,0.0,4.0 +miniupnp,-0.320866962830269,0.471153498205093,-0.701062424054327,https://salsa.debian.org/miniupnp-team/miniupnpd, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3,107.0,312.0,0.0,4.0 +mistune,0.149354521348081,1.579805043926,-0.145517628501817,https://salsa.debian.org/python-team/packages/mistune, https://github.com/lepture/mistune,3515.880914351852,27,24,1,38.0,224.0,0.0,0.0 +mkchromecast,0.898973076051445,3.26116210403962,-0.0281715966974308,https://salsa.debian.org/debian/mkchromecast, https://github.com/muammar/mkchromecast.git,2825.8958217592594,15,30,0,34.0,536.0,0.0,1.0 +mosh,0.606003492999349,1.43566359670226,0.188674180011505,https://github.com/mobile-shell/mosh,https://github.com/mobile-shell/mosh,4605.12912037037,52,35,3,67.0,1569.0,0.0,35.0 +muffin,0.571495120997324,1.43517958491909,0.146834752032244,https://salsa.debian.org/cinnamon-team/muffin, https://github.com/linuxmint/muffin.git,4329.859942129629,106,160,0,87.0,168.0,0.0,2.0 +muparserx,-1.14701343548615,1.21198112886092,-1.61750844454886,https://salsa.debian.org/debian/muparserx, https://github.com/beltoforion/muparserx.git,4293.234409722222,2,26,0,14.0,46.0,0.0,0.0 +mupen64plus-core,0.0992350276130686,1.30432028316849,-0.26945445417746,https://salsa.debian.org/games-team/mupen64plus-core, https://github.com/mupen64plus/mupen64plus-core.git,5146.490856481481,33,78,0,72.0,233.0,0.0,4.0 +mutagen,0.6308721972927,1.46347737165292,0.211186962173591,https://salsa.debian.org/python-team/packages/mutagen, https://github.com/quodlibet/mutagen.git,3949.215439814815,9,35,0,42.0,122.0,0.0,0.0 +mwparserfromhell,-1.44297334555683,0.682725643077273,-1.95643950190841,https://salsa.debian.org/legoktm/mwparserfromhell, https://github.com/earwig/mwparserfromhell.git,4191.728368055556,10,20,0,20.0,139.0,0.0,0.0 +nrpe,0.477291680000994,0.835901468912501,0.239218580239737,https://salsa.debian.org/nagios-team/nrpe, https://github.com/NagiosEnterprises/nrpe.git,5657.720381944445,12,36,0,29.0,253.0,0.0,0.0 +check_multi,0.163578154897465,2.16918596935981,-0.511868753537618,https://salsa.debian.org/nagios-team/check-multi, https://github.com/flackem/check_multi.git,4620.408148148148,0,15,0,3.0,17.0,0.0,0.0 +manubulon-snmp,0.0426392600122019,1.52234126723326,-0.356703424329942,https://salsa.debian.org/nagios-team/nagios-snmp-plugins, https://github.com/SteScho/manubulon-snmp.git,3770.959710648148,13,22,0,26.0,70.0,0.0,0.0 +nagiosplugin,0.263952344918218,2.90856404482608,-0.329957123913541,https://salsa.debian.org/python-team/packages/nagiosplugin, https://github.com/mpounsett/nagiosplugin.git,4266.1149421296295,1,18,0,12.0,12.0,0.0,0.0 +Nagstamon,0.730907718540055,2.02903073936438,0.043386520370399,https://salsa.debian.org/python-team/packages/nagstamon, https://github.com/HenriWahl/Nagstamon,4918.706157407408,17,112,0,80.0,562.0,0.0,0.0 +ndcube,-0.460274072585896,1.79127259406629,-0.942765756946831,https://salsa.debian.org/debian-astro-team/ndcube/, https://github.com/sunpy/ndcube.git,2309.230162037037,5,25,0,24.0,36.0,0.0,2.0 +neovim,0.139577774440131,0.605538800399618,-0.0780391448356829,https://salsa.debian.org/vim-team/neovim, https://github.com/neovim/neovim,3604.0696527777777,719,402,6,443.0,147.0,0.0,643.0 +netmask,0.156544839444884,1.60012392442616,-0.320303280016655,https://salsa.debian.org/debian/netmask, https://github.com/tlby/netmask,3093.175914351852,0,5,0,3.0,10.0,0.0,0.0 +netmate,-0.719350453768547,2.08281697840534,-1.35631914882567,https://salsa.debian.org/debian/netmate, https://github.com/Rup0rt/netmate,2070.0839814814813,0,5,0,1.0,3.0,0.0,0.0 +netmiko,-1.04890669517233,1.52538450984127,-1.55455492859381,https://salsa.debian.org/python-team/packages/netmiko, https://github.com/ktbyers/netmiko,3283.277928240741,134,166,0,179.0,660.0,0.0,0.0 +newpid,-1.32461244663601,0.560058720153903,-1.7522117210337,https://github.com/df7cb/newpid,https://github.com/df7cb/newpid,2886.7799652777776,3,3,0,3.0,4.0,0.0,0.0 +nextepc,-3.1224390213188,-0.19701473914388,-4.0970791265809,https://salsa.debian.org/debian-mobcom-team/nextepc, https://github.com/acetcom/nextepc.git,2506.134733796296,86,27,0,82.0,45.0,0.0,2.0 +nfdump,0.977271838227154,2.34421694620262,0.233182380725062,https://salsa.debian.org/debian/nfdump, https://github.com/phaag/nfdump,3040.3677314814813,10,40,0,29.0,235.0,0.0,1.0 +nifti_clib,0.482582180988756,2.76582964096068,-0.151018136944796,https://salsa.debian.org/med-team/nifticlib, https://github.com/NIFTI-Imaging/nifti_clib.git,5617.646921296297,18,12,0,22.0,35.0,0.0,0.0 +nobleNote,0.249989368367808,3.63316979098012,-0.775757079659619,https://github.com/hakaishi/nobleNote,https://github.com/hakaishi/nobleNote,4167.68542824074,0,13,2,3.0,13.0,0.0,0.0 +argparse,0.736863005336764,3.61950567820034,-0.146322544927693,https://salsa.debian.org/js-team/node-argparse, https://github.com/nodeca/argparse.git,3647.777442129629,4,24,0,19.0,123.0,0.0,0.0 +async,0.521837357550816,3.0881514943569,-0.153591739285099,https://salsa.debian.org/js-team/node-async, https://github.com/caolan/async,4951.204143518518,77,213,0,235.0,261.0,0.0,2.0 +bootstrap-tour,0.422328031925688,2.9664539994723,-0.149876009104825,https://salsa.debian.org/js-team/node-bootstrap-tour, https://github.com/sorich87/bootstrap-tour,4115.356145833333,7,73,2,57.0,796.0,0.0,0.0 +brace-expansion,0.716228262630341,3.62750370786561,-0.0452789702686191,https://salsa.debian.org/js-team/node-brace-expansion, https://github.com/juliangruber/brace-expansion.git,3650.006261574074,12,13,0,20.0,36.0,0.0,0.0 +browserify-sign,-0.39656278355729,2.18248500935655,-0.97092404787497,https://salsa.debian.org/js-team/node-browserify-sign, https://github.com/browserify/browserify-sign,3266.7325578703703,5,13,0,14.0,57.0,0.0,0.0 +escodegen,-0.909373893530738,1.69207056581527,-1.47807941799231,https://salsa.debian.org/js-team/node-escodegen, https://github.com/estools/escodegen,4135.210347222223,14,53,0,47.0,323.0,0.0,19.0 +eslint-plugin-node,-3.58250386848337,-0.922205708299373,-4.28594917568384,https://salsa.debian.org/js-team/node-eslint-plugin-node, https://github.com/mysticatea/eslint-plugin-node.git,2019.664039351852,35,4,0,34.0,255.0,0.0,0.0 +eslint-scope,-1.08294458078005,1.28176789313915,-1.55794546421809,https://salsa.debian.org/js-team/node-eslint-scope, https://github.com/eslint/eslint-scope.git,4084.622615740741,20,34,0,42.0,115.0,0.0,0.0 +node-glob,0.143825463763194,1.53625678453923,-0.118526066048584,https://salsa.debian.org/js-team/node-glob, https://github.com/isaacs/node-glob.git,5090.514074074074,32,18,0,41.0,333.0,0.0,1.0 +glob-parent,0.64500011838931,3.76124258221443,-0.218433820489926,https://salsa.debian.org/js-team/node-glob-parent, https://github.com/es128/glob-parent,3015.0730902777777,8,7,0,10.0,36.0,0.0,0.0 +node-growl,0.261516847104991,3.00332824575815,-0.587697940237218,https://salsa.debian.org/js-team/node-growl, https://github.com/tj/node-growl,4729.724293981481,12,29,0,34.0,89.0,0.0,0.0 +iferr,0.448968289114061,2.98412118819789,-0.106689465410837,https://salsa.debian.org/js-team/node-iferr, https://github.com/shesek/iferr,3291.114814814815,1,3,0,1.0,4.0,0.0,0.0 +node-ignore,-1.25954331937739,0.389151093008955,-1.59222242688244,https://salsa.debian.org/js-team/node-ignore, https://github.com/kaelzhang/node-ignore.git,3728.032349537037,8,15,0,17.0,72.0,0.0,0.0 +inherits,0.753819751450925,4.08414445580133,-0.0508306715766449,https://salsa.debian.org/js-team/node-inherits, https://github.com/isaacs/inherits,4576.5039120370375,6,4,0,5.0,40.0,0.0,0.0 +JSONStream,0.014885788652368,0.940493955230558,-0.134524130048652,https://salsa.debian.org/js-team/node-jsonstream, https://github.com/dominictarr/JSONStream,2577.6002314814814,1,37,0,29.0,213.0,0.0,0.0 +LiveScript,-0.796454567693591,0.829862240876217,-1.2087204197895,https://salsa.debian.org/js-team/node-livescript, https://github.com/gkz/LiveScript,3444.0588194444445,8,88,2,58.0,60.0,0.0,73.0 +node-rest-client,-2.34771777117685,-0.136208382634589,-2.78587949829909,https://salsa.debian.org/js-team/node-node-rest-client, https://github.com/aacerox/node-rest-client,3880.378981481481,2,29,1,22.0,276.0,0.0,0.0 +nopt,0.13447165373718,1.55249959830994,-0.124448187654037,https://salsa.debian.org/js-team/node-nopt, https://github.com/npm/nopt,4635.836597222222,17,11,0,21.0,82.0,0.0,0.0 +object-assign,0.310845604616587,2.33949121675479,-0.119662545224087,https://salsa.debian.org/js-team/node-object-assign, https://github.com/sindresorhus/object-assign.git,3563.10443287037,7,8,0,13.0,0.0,0.0,0.0 +object-path,0.492684353752583,3.14650442342774,-0.292860259866992,https://salsa.debian.org/js-team/node-object-path, https://github.com/mariocasciaro/object-path,3395.5928125,1,21,1,13.0,58.0,0.0,0.0 +promise,-0.55016777054256,1.4973541225488,-1.03383991541004,https://salsa.debian.org/js-team/node-promise, https://github.com/then/promise,3592.5633101851854,14,29,0,32.0,147.0,0.0,0.0 +proxyquire,-4.69608826349662,-1.98666268575696,-5.41057380198351,https://salsa.debian.org/js-team/node-proxyquire, https://github.com/thlorenz/proxyquire.git,3798.2810416666666,25,13,0,31.0,304.0,0.0,3.0 +pseudomap,0.937778166759224,4.32648099886615,-0.0364711838402969,https://salsa.debian.org/js-team/node-pseudomap, https://github.com/isaacs/pseudomap,2873.803599537037,1,5,0,2.0,19.0,0.0,0.0 +source-map,1.55245207815193,5.26333938850362,0.357953046946245,https://salsa.debian.org/js-team/node-source-map, https://github.com/mozilla/source-map,4395.194918981481,30,77,0,78.0,117.0,0.0,8.0 +node-source-map-support,0.0115822458316907,3.02886679032454,-0.745558315869375,https://salsa.debian.org/js-team/node-source-map-support, https://github.com/evanw/node-source-map-support.git,3692.318310185185,18,59,0,62.0,343.0,0.0,0.0 +sourcemap-codec,-0.978257225317061,1.03977013472883,-1.42048836078263,https://salsa.debian.org/js-team/node-sourcemap-codec, https://github.com/Rich-Harris/sourcemap-codec,2611.721597222222,0,12,0,8.0,19.0,0.0,0.0 +node-tmp,0.0305888511631943,2.19150377951304,-0.407222090250547,https://salsa.debian.org/js-team/node-tmp, https://github.com/raszi/node-tmp.git,4359.087268518519,7,35,0,33.0,198.0,0.0,0.0 +WebSocket-Node,0.394346969026257,3.01474425304256,-0.493087010081738,https://salsa.debian.org/js-team/node-websocket, https://github.com/theturtle32/WebSocket-Node,3898.125949074074,14,47,1,48.0,389.0,0.0,9.0 +window-size,0.817445041352174,4.93165221000849,-0.505792839843926,https://salsa.debian.org/js-team/node-window-size, https://github.com/jonschlinkert/window-size,1623.6925347222225,3,7,0,6.0,16.0,0.0,0.0 +worker-loader,-1.93501312263317,1.12467887991464,-2.71917077243259,https://salsa.debian.org/js-team/node-worker-loader, https://github.com/webpack-contrib/worker-loader.git,3320.771192129629,31,18,0,40.0,447.0,0.0,0.0 +wrap-ansi,0.755764500131751,3.66947744342432,-0.0297221144156634,https://salsa.debian.org/js-team/node-wrap-ansi, https://github.com/chalk/wrap-ansi.git,2991.949641203704,8,6,0,10.0,44.0,0.0,0.0 +ws,-0.597504643579988,0.928783225230523,-0.931281242687366,https://salsa.debian.org/js-team/node-ws, https://github.com/websockets/ws.git,4417.8559606481485,91,121,0,173.0,665.0,0.0,0.0 +nsd,-0.209496714649365,0.166228671461131,-0.454888776465555,https://salsa.debian.org/dns-team/nsd, https://github.com/NLnetLabs/nsd,5722.081597222223,12,44,1,34.0,85.0,0.0,0.0 +nss-mdns,2.06830438591482,3.30017102168803,1.31656391448615,https://salsa.debian.org/debian/nss-mdns, https://github.com/lathiat/nss-mdns,2585.1120138888887,6,5,1,8.0,52.0,0.0,0.0 +numexpr,-0.0194772951772622,0.361916928084253,-0.146422801098473,https://salsa.debian.org/science-team/numexpr, https://github.com/pydata/numexpr,5774.670578703704,9,77,0,55.0,236.0,0.0,6.0 +numpy-stl,0.615825940157454,4.12168181615445,-0.292783420805598,https://salsa.debian.org/python-team/packages/numpy-stl, https://github.com/WoLpH/numpy-stl,3320.4569444444446,4,21,0,19.0,208.0,0.0,0.0 +batteries-included,0.411441141017328,1.71240902559343,-0.118428115063702,https://salsa.debian.org/ocaml-team/ocaml-batteries, https://github.com/ocaml-batteries-team/batteries-included.git,5695.369340277778,48,89,0,88.0,185.0,0.0,26.0 +OCRmyPDF,-0.309965359785653,-0.277069327301108,-0.318576500393822,https://salsa.debian.org/debian/ocrmypdf, https://github.com/ocrmypdf/OCRmyPDF.git,3897.7415625,69,26,0,82.0,0.0,0.0,2.0 +statistics,0.0046253383748497,1.06578838891868,-0.269142495233653,https://salsa.debian.org/pkg-octave-team/octave-statistics, https://github.com/gnu-octave/statistics,5730.789537037037,4,41,0,25.0,16.0,0.0,0.0 +open-iscsi,0.854719990294682,1.35109033964711,0.511903253263732,https://salsa.debian.org/linux-blocks-team/open-iscsi, https://github.com/open-iscsi/open-iscsi.git,2731.834965277778,58,55,0,71.0,172.0,0.0,0.0 +gamecode,0.96396546312347,1.82542565008426,0.437062203257962,https://salsa.debian.org/games-team/openarena, https://github.com/OpenArena/gamecode,5128.333194444444,5,20,0,13.0,23.0,0.0,4.0 +OpenNI,0.453148378020615,1.70909540841027,-0.105089181959868,https://salsa.debian.org/multimedia-team/openni, https://github.com/OpenNI/OpenNI.git,1070.0370601851853,0,4,0,3.0,176.0,0.0,0.0 +mapper,-0.631173932488296,0.749385464496322,-1.07761550056928,https://salsa.debian.org/debian/openorienteering-mapper, https://github.com/OpenOrienteering/mapper,4199.666504629629,148,39,5,107.0,59.0,0.0,3.0 +OpenSceneGraph,0.121945162495101,0.380721743010354,-0.0364053970314388,https://salsa.debian.org/openscenegraph-team/openscenegraph-3.2, https://github.com/openscenegraph/OpenSceneGraph.git,5356.992013888889,72,120,0,111.0,328.0,0.0,0.0 +open-zwave,0.251031456311137,2.52887934370336,-0.590500837100787,https://salsa.debian.org/debian-iot-team/openzwave, https://github.com/OpenZWave/open-zwave,4679.3881481481485,241,322,2,372.0,409.0,0.0,3.0 +ora2pg,-1.06027788592814,1.89450656086026,-1.84336686616175,https://salsa.debian.org/postgresql/ora2pg, https://github.com/darold/ora2pg.git,4257.932048611111,11,55,0,49.0,271.0,0.0,2.0 +simple-orca-plugin-system,-1.79399091258046,0.477648946327548,-2.23772319993185,https://salsa.debian.org/a11y-team/orca-sops, https://github.com/chrys87/simple-orca-plugin-system.git,1662.239976851852,0,8,0,4.0,2.0,0.0,0.0 +orcania,-0.52837094840339,2.05141009060046,-1.0233328648007,https://salsa.debian.org/debian-iot-team/oauth2/orcania.git, https://github.com/babelouest/orcania,1246.8811342592592,5,16,0,11.0,19.0,0.0,0.0 +awk,-0.0072345009631837,1.50108796777715,-0.396611676579941,https://salsa.debian.org/sanvila/original-awk, https://github.com/onetrueawk/awk,3992.553125,14,18,0,21.0,19.0,0.0,0.0 +orocos-bayesian-filtering,-1.20839734703014,0.853925465579936,-1.67447640189669,https://salsa.debian.org/science-team/orocos-bfl, https://github.com/orocos/orocos-bayesian-filtering,3625.9026157407407,2,10,1,6.0,13.0,0.0,1.0 +osmium-tool,-0.355702148740491,1.15342739888521,-0.617079773285203,https://salsa.debian.org/debian-gis-team/osmium-tool/, https://github.com/osmcode/osmium-tool.git,3639.05375,11,18,0,22.0,166.0,0.0,0.0 +osmosis,-0.391633180525616,-0.251842171941677,-0.459482708887277,https://salsa.debian.org/debian-gis-team/osmosis, https://github.com/openstreetmap/osmosis.git,5774.239305555556,9,48,0,37.0,88.0,0.0,0.0 +OSM-binary,-0.0947714797520939,0.733906087146982,-0.299460332959203,https://salsa.debian.org/debian-gis-team/osmpbf, https://github.com/openstreetmap/OSM-binary.git,4802.131689814815,3,18,0,16.0,45.0,0.0,0.0 +OWSLib,0.227162871238011,2.74205480704894,-0.294290743593166,https://salsa.debian.org/debian-gis-team/owslib, https://github.com/geopython/OWSLib.git,5660.128506944445,56,114,0,112.0,313.0,0.0,4.0 +oz,-0.749829510723026,1.30316000937079,-1.42182686453967,https://salsa.debian.org/jas/oz, https://github.com/clalancette/oz.git,4573.480069444445,58,15,0,54.0,130.0,0.0,10.0 +PyPagekite,-0.0541538684090875,1.77223746923183,-0.786890886734185,https://salsa.debian.org/freedombox-team/pagekite, https://github.com/pagekite/PyPagekite,4048.006875,2,18,0,11.0,103.0,0.0,0.0 +pam-MySQL,1.41725517893156,2.68924415592356,0.678149090502143,https://salsa.debian.org/debian/pam-mysql, https://github.com/NigelCunningham/pam-MySQL.git,4452.585636574074,5,24,0,17.0,77.0,0.0,0.0 +panoramisk,-1.66724383398698,0.627793774140285,-2.28695880510305,https://salsa.debian.org/python-team/packages/panoramisk, https://github.com/gawel/panoramisk.git,3565.5460416666665,6,25,0,16.0,52.0,0.0,0.0 +paste,0.701678813906754,1.97229820376607,0.112093320697141,https://salsa.debian.org/python-team/packages/paste, https://github.com/cdent/paste,3197.4934606481484,26,34,0,44.0,48.0,0.0,0.0 +pasystray,0.628864255506922,2.22576917565774,-0.0058350837296234,https://salsa.debian.org/debian/pasystray, https://github.com/christophgysin/pasystray.git,4343.949039351852,23,11,0,25.0,148.0,0.0,0.0 +path.py,-0.0848290877332572,1.1385294168255,-0.351837370630802,https://salsa.debian.org/python-team/packages/path.py, https://github.com/jaraco/path.py.git,5108.109212962963,22,38,0,43.0,110.0,0.0,0.0 +pcmanx,0.405704730707916,2.17018285384239,-0.402989076864394,https://github.com/pcman-bbs/pcmanx/,https://github.com/pcman-bbs/pcmanx,4671.957210648148,20,31,2,33.0,53.0,0.0,0.0 +abl_link,-0.324299912686206,2.16355424689505,-0.868174322922275,https://salsa.debian.org/multimedia-team/pd/pd-ableton-link, https://github.com/libpd/abl_link.git,2218.753101851852,1,11,0,7.0,21.0,0.0,0.0 +csound_pd,-0.176100914298225,2.29698208106979,-0.665282627798041,https://salsa.debian.org/multimedia-team/pd/pd-csound, https://github.com/csound/csound_pd,5151.554479166667,2,16,0,8.0,7.0,0.0,0.0 +pdepend,-0.115983868593709,1.87535356135467,-0.649716900440004,https://salsa.debian.org/php-team/pear/pdepend, https://github.com/pdepend/pdepend,5780.3265625,17,96,2,72.0,362.0,0.0,1.0 +peewee,0.103743491823741,3.38962196040125,-0.890060633979075,https://salsa.debian.org/python-team/packages/peewee, https://github.com/coleifer/peewee,4809.915636574074,33,127,0,122.0,636.0,0.0,1.0 +pekwm,-0.435338541648194,0.377463161544604,-0.717855468766354,https://salsa.debian.org/debian/pekwm, https://github.com/pekdon/pekwm,5508.519722222222,28,12,3,17.0,21.0,0.0,0.0 +perf-tools,-0.0601624543089167,1.51231762559085,-0.483928569096378,https://salsa.debian.org/debian/perf-tools-unstable, https://github.com/brendangregg/perf-tools,2014.1201041666664,2,20,0,14.0,122.0,0.0,0.0 +pg_partman,-1.14997978218077,1.36537315734972,-1.79970042846314,https://salsa.debian.org/postgresql/pg-partman, https://github.com/pgpartman/pg_partman.git,4104.582835648148,18,11,0,20.0,252.0,0.0,0.0 +pg_qualstats,-1.43590772212002,0.949846995393329,-1.96498265038114,https://github.com/powa-team/pg_qualstats,https://github.com/powa-team/pg_qualstats,3499.713865740741,4,13,0,7.0,42.0,0.0,0.0 +pg-rage-terminator-pkg,-5.06640751639078,-3.16889600306041,-5.47213138173857,https://github.com/disco-stu/pg-rage-terminator-pkg,https://github.com/disco-stu/pg-rage-terminator-pkg,3117.208541666667,0,7,0,4.0,2.0,0.0,0.0 +pg_snakeoil,-2.70653635842388,9.60353410794286e-05,-3.30306867956238,https://github.com/df7cb/pg_snakeoil,https://github.com/df7cb/pg_snakeoil,1864.2726273148148,3,7,0,6.0,0.0,0.0,0.0 +pgFormatter,-0.766671696679578,1.40045971348685,-1.2007180309708,https://salsa.debian.org/postgresql/pgformatter, https://github.com/darold/pgFormatter.git,3991.294074074074,8,26,0,24.0,221.0,0.0,0.0 +pgrouting,-0.765232552157106,1.57925457793502,-1.3149612286901,https://salsa.debian.org/debian-gis-team/pgrouting, https://github.com/pgRouting/pgrouting.git,5779.2725,62,134,0,114.0,0.0,0.0,71.0 +pgtap,-0.499566580834352,0.600659593258449,-1.00512046139286,https://salsa.debian.org/postgresql/pgtap, https://github.com/theory/pgtap,5595.746747685185,24,30,0,35.0,0.0,0.0,2.0 +phing,-0.538565856122596,1.5811545107839,-1.0297476237421,https://salsa.debian.org/php-team/pear/phing, https://github.com/phingofficial/phing,5770.388194444445,74,179,2,174.0,0.0,0.0,0.0 +PhotoCollage,0.981027947071719,4.48700278593263,-0.12845551169211,https://salsa.debian.org/debian/photocollage, https://github.com/adrienverge/PhotoCollage,3560.567523148148,15,10,0,17.0,0.0,0.0,0.0 +PFS,0.0565928501185162,1.28352124732467,-0.441454894726839,https://salsa.debian.org/python-team/packages/photofilmstrip, https://github.com/PhotoFilmStrip/PFS.git,5467.569895833333,4,6,0,,,, +photutils,-0.530821730470941,-0.147517470629556,-0.607062667233244,https://salsa.debian.org/debian-astro-team/photutils, https://github.com/astropy/photutils.git,4375.074594907407,24,63,0,50.0,0.0,0.0,8.0 +php-code-coverage,0.0554134964289426,0.892812339821748,-0.25361320683874,https://salsa.debian.org/php-team/pear/php-codecoverage, https://github.com/sebastianbergmann/php-code-coverage,5309.602488425926,61,64,0,0.0,0.0,0.0,0.0 +PHP_CodeSniffer,0.72579747298667,3.08416098823916,-0.145017632982001,https://salsa.debian.org/php-team/pear/php-codesniffer, https://github.com/squizlabs/PHP_CodeSniffer,5773.466666666666,36,241,2,0.0,0.0,0.0,4.0 +data-fixtures,-1.38873766736549,0.818944080015472,-1.85667088228572,https://salsa.debian.org/php-team/pear/php-doctrine-data-fixtures, https://github.com/doctrine/data-fixtures,4832.895266203704,32,91,3,92.0,0.0,0.0,0.0 +instantiator,0.102858191378864,2.27381740242912,-0.319535245760271,https://salsa.debian.org/php-team/pear/php-doctrine-instantiator, https://github.com/doctrine/instantiator,3466.1691666666666,8,34,4,32.0,63.0,0.0,0.0 +dompdf,0.161438496830306,1.83426657504856,-0.313226115410642,https://salsa.debian.org/php-team/pear/php-dompdf, https://github.com/dompdf/dompdf,3771.5165625,98,70,5,129.0,0.0,0.0,82.0 +easyrdf,-4.53985004086169,-1.04760973421574,-5.40008705061473,https://salsa.debian.org/php-team/pear/php-easyrdf, https://github.com/easyrdf/easyrdf.git,4424.606516203704,13,32,0,,,, +fDOMDocument,0.102987222393373,3.04819313229607,-0.604484786621114,https://salsa.debian.org/php-team/pear/php-fdomdocument, https://github.com/theseer/fDOMDocument,4119.523831018519,0,16,0,12.0,0.0,0.0,0.0 +php-font-lib,0.195361938974529,2.28815740087615,-0.335970916189747,https://salsa.debian.org/php-team/pear/php-font-lib, https://github.com/dompdf/php-font-lib,4545.507627314815,16,19,2,28.0,0.0,0.0,1.0 +fXSL,-0.52174395429572,1.86780741853676,-1.10030187391749,https://salsa.debian.org/php-team/pear/php-fxsl, https://github.com/theseer/fXSL.git,1403.957534722222,0,4,0,3.0,8.0,0.0,0.0 +getID3,0.476939316088774,3.16810349949478,-0.210102938549955,https://salsa.debian.org/php-team/pear/php-getid3, https://github.com/JamesHeinrich/getID3,3892.988275462963,13,58,1,52.0,26.0,0.0,0.0 +psr7,0.307487041404784,3.50584748080844,-0.858192121054758,https://salsa.debian.org/php-team/pear/php-guzzlehttp-psr7, https://github.com/guzzle/psr7,3203.658229166667,45,67,2,86.0,0.0,0.0,0.0 +hamcrest-php,-1.90335724682401,1.30883550679566,-2.96841634471535,https://salsa.debian.org/php-team/pear/php-hamcrest, https://github.com/hamcrest/hamcrest-php.git,4488.772615740741,11,18,0,0.0,0.0,0.0,0.0 +carbon,-0.863153713474241,1.65958302705145,-1.5444681867113,https://salsa.debian.org/php-team/pear/php-nesbot-carbon, https://github.com/briannesbitt/carbon,4115.967280092593,161,223,2,291.0,0.0,0.0,0.0 +predis,0.758047451319142,4.27127099326695,-0.359806912130029,https://salsa.debian.org/php-team/pear/php-predis, https://github.com/predis/predis.git,5141.193425925926,61,57,0,82.0,0.0,0.0,0.0 +PHP-Parser,-0.291525039333005,1.8269276917996,-0.766485228038077,https://salsa.debian.org/php-team/pear/php-parser, https://github.com/nikic/PHP-Parser,4619.1675115740745,120,37,1,0.0,0.0,0.0,14.0 +assert,0.0458454749417622,2.37389776833809,-0.414272528330647,https://salsa.debian.org/php-team/pear/php-webmozart-assert, https://github.com/webmozart/assert,2641.243391203704,49,18,0,57.0,167.0,0.0,0.0 +laminas-stdlib,-0.381723807716578,2.1530292212169,-0.964341109980095,https://salsa.debian.org/php-team/pear/php-zend-stdlib, https://github.com/laminas/laminas-stdlib,5325.660555555555,28,212,21,137.0,39.0,0.0,0.0 +Autoload,-0.602928191482872,1.62428997951041,-1.20121007176994,https://salsa.debian.org/php-team/pear/phpab, https://github.com/theseer/Autoload,5109.897094907407,3,23,0,18.0,52.0,0.0,0.0 +phpcpd,-0.348522966295708,2.44943986693503,-1.0411103088707,https://salsa.debian.org/php-team/pear/phpcpd, https://github.com/sebastianbergmann/phpcpd,5098.8530902777775,11,25,0,26.0,0.0,0.0,0.0 +pikepdf,0.0195418776324902,1.42023481003827,-0.255252513329686,https://salsa.debian.org/python-team/packages/pikepdf, https://github.com/pikepdf/pikepdf.git,2830.688946759259,16,36,0,42.0,0.0,0.0,0.0 +pilkit,-0.324452416735405,2.23160617920347,-0.929329863223428,https://salsa.debian.org/python-team/packages/pilkit, https://github.com/matthewwithanm/pilkit,3883.052476851852,2,19,0,0.0,58.0,0.0,0.0 +pkg-pimd,-0.684418495826166,0.170371440937352,-1.07825028790518,https://github.com/bobek/pkg-pimd/tree/debian/sid,https://github.com/bobek/pkg-pimd,4933.096192129629,11,25,0,8.0,2.0,0.0,0.0 +pingus,0.784743477736233,1.27922153610823,0.426609964368551,https://salsa.debian.org/games-team/pingus, https://github.com/Pingus/pingus,5009.11837962963,4,14,1,14.0,46.0,0.0,0.0 +pipenv,1.57550987661238,5.77787804593938,0.220024930636266,https://salsa.debian.org/python-team/packages/pipenv, https://github.com/pypa/pipenv.git,2511.301400462963,208,339,0,398.0,0.0,0.0,3.0 +piper,-0.645820827909022,1.68813434312164,-1.07869150893027,https://salsa.debian.org/debian/piper, https://github.com/libratbag/piper,2849.4881828703706,77,18,0,77.0,0.0,0.0,4.0 +pius,-0.904282809751136,-0.0817697576479114,-1.16395097275579,https://salsa.debian.org/python-team/packages/pius, https://github.com/jaymzh/pius.git,5108.016145833333,16,8,0,0.0,63.0,0.0,0.0 +pivy,1.03234422836158,3.2415283772479,0.196832102632244,https://salsa.debian.org/science-team/pivy, https://github.com/Coin3D/pivy,2942.7228587962964,15,14,1,15.0,62.0,0.0,0.0 +pixelize,0.248415431644665,2.16026352277692,-0.567150356857362,https://salsa.debian.org/debian-phototools-team/pixelize, https://github.com/jcdubois/pixelize.git,802.2084027777778,1,2,0,1.0,1.0,0.0,0.0 +pixz,0.0431924972750206,1.09071245138794,-0.210447934942008,https://salsa.debian.org/debian/pixz, https://github.com/vasi/pixz.git,5100.817256944444,3,19,0,16.0,101.0,0.0,0.0 +plaso,0.231294030616954,1.99178238588694,-0.333117026741082,https://salsa.debian.org/pkg-security-team/plaso, https://github.com/log2timeline/plaso,3988.488020833333,81,40,3,91.0,0.0,0.0,10.0 +playerctl,0.0887192340295862,2.50802971130406,-0.44880921497051,https://salsa.debian.org/multimedia-team/playerctl, https://github.com/altdesktop/playerctl,2720.5505208333334,8,30,1,31.0,153.0,5.0,0.0 +pluma,0.469982701925562,1.32425310177748,0.0788084083852294,https://salsa.debian.org/debian-mate-team/pluma, https://github.com/mate-desktop/pluma.git,4416.788101851852,32,44,0,44.0,0.0,0.0,0.0 +ply,0.296904457989643,1.36579609781993,-0.0308535513414999,https://salsa.debian.org/python-team/packages/ply, https://github.com/dabeaz/ply,5540.916041666666,10,30,0,35.0,0.0,0.0,0.0 +PnetCDF,-0.724851500201701,1.3866108043012,-1.35784321097542,https://salsa.debian.org:/science-team/pnetcdf.git, https://github.com/Parallel-NetCDF/PnetCDF,5739.242511574074,6,9,0,11.0,21.0,0.0,0.0 +poedit,0.377240788351186,0.863696423934454,0.0761307654233322,https://salsa.debian.org/l10n-team/poedit, https://github.com/vslavik/poedit,5784.378252314815,117,44,0,94.0,0.0,0.0,1.0 +polib,-0.0525182229193335,1.16372565323656,-0.433461717893036,https://salsa.debian.org/python-team/packages/polib, https://github.com/izimobil/polib.git,2651.136875,2,29,0,21.0,47.0,0.0,0.0 +selinux,0.13752216154346,0.326484816484227,0.0169149752599068,https://salsa.debian.org/selinux-team/policycoreutils, https://github.com/SELinuxProject/selinux,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 +pony,-2.21087278189333,0.254481864464489,-2.7664426751991,https://salsa.debian.org/python-team/packages/ponyorm, https://github.com/ponyorm/pony,5706.933831018519,26,14,6,26.0,0.0,0.0,2.0 +powerline,0.208476143642733,0.835470834672986,-0.0736591990461245,https://salsa.debian.org/python-team/packages/powerline, https://github.com/powerline/powerline,4036.078587962963,67,105,3,0.0,0.0,0.0,0.0 +powerline-gitstatus,0.322269027019318,3.81710595314915,-0.530256568800533,https://salsa.debian.org/python-team/packages/powerline-gitstatus, https://github.com/jaspernbrouwer/powerline-gitstatus.git,2809.6974884259257,4,10,0,11.0,61.0,0.0,0.0 +powertop,1.15559070897983,1.74082884335626,0.755925157594074,https://salsa.debian.org/debian/powertop, https://github.com/fenrus75/powertop,4841.83894675926,89,27,0,72.0,0.0,0.0,0.0 +ppp,1.57697829267485,1.87493983840755,1.33449177483222,https://salsa.debian.org/debian/ppp, https://github.com/ppp-project/ppp,5732.936932870371,65,38,0,78.0,0.0,0.0,0.0 +proftpd,0.737341261742912,1.0458954995393,0.49495350750098,https://salsa.debian.org/debian-proftpd-team/proftpd, https://github.com/proftpd/proftpd,5767.726412037037,8,45,2,38.0,0.0,0.0,0.0 +progress,0.367141130390621,3.12875196448013,-0.304974770041313,https://salsa.debian.org/debian/progress, https://github.com/Xfennec/progress,3611.722256944444,7,34,0,29.0,165.0,0.0,0.0 +PROJ,0.175037796107248,0.451924065018182,0.022518348385377,https://salsa.debian.org/debian-gis-team/proj, https://github.com/OSGeo/PROJ.git,5782.065810185185,86,100,0,153.0,0.0,0.0,31.0 +projectm,1.086504365469,2.30480366306058,0.44248415091722,https://salsa.debian.org/multimedia-team/projectm, https://github.com/projectM-visualizer/projectm.git,5766.722731481482,55,53,0,0.0,0.0,0.0,8.0 +alertmanager,-0.627716797072544,0.191277552606398,-0.910152772377882,https://salsa.debian.org/go-team/packages/prometheus-alertmanager, https://github.com/prometheus/alertmanager,3799.933726851852,223,166,0,301.0,0.0,0.0,0.0 +blackbox_exporter,-0.981904346913512,0.189153646817056,-1.20715930115695,https://salsa.debian.org/go-team/packages/prometheus-blackbox-exporter, https://github.com/prometheus/blackbox_exporter,3018.838726851852,91,47,0,111.0,0.0,0.0,1.0 +mysqld_exporter,-0.484217220453001,1.46773543487259,-1.16537910211397,https://salsa.debian.org/go-team/packages/prometheus-mysqld-exporter, https://github.com/prometheus/mysqld_exporter,3197.233726851852,55,65,0,91.0,0.0,0.0,2.0 +nginx-prometheus-exporter,-0.917001793392196,1.95729614268404,-1.71391329118814,https://salsa.debian.org/go-team/packages/prometheus-nginx-exporter, https://github.com/nginxinc/nginx-prometheus-exporter,2021.335486111111,34,16,1,34.0,0.0,0.0,0.0 +node_exporter,0.0690726385882185,0.984232656063144,-0.231331928693568,https://salsa.debian.org/go-team/packages/prometheus-node-exporter, https://github.com/prometheus/node_exporter,3891.8962384259257,281,181,1,0.0,0.0,0.0,0.0 +node-exporter-textfile-collector-scripts,-0.327245248943772,3.23015482382769,-1.28265958925532,https://salsa.debian.org/go-team/packages/prometheus-node-exporter-collectors, https://github.com/prometheus-community/node-exporter-textfile-collector-scripts,2551.994803240741,47,28,0,64.0,0.0,0.0,0.0 +postgres_exporter,-0.800265105447162,1.58506096914014,-1.38728683152608,https://salsa.debian.org/go-team/packages/prometheus-postgres-exporter, https://github.com/prometheus-community/postgres_exporter,3027.0144328703705,102,49,0,0.0,0.0,0.0,2.0 +snmp_exporter,-1.3551310327084,1.44742065196107,-2.01734617256376,https://salsa.debian.org/go-team/packages/prometheus-snmp-exporter, https://github.com/prometheus/snmp_exporter,3213.7672916666666,96,43,0,112.0,0.0,0.0,0.0 +squid-exporter,-2.41848251266118,0.241951954704953,-2.99662975801824,https://salsa.debian.org/go-team/packages/prometheus-squid-exporter, https://github.com/boynux/squid-exporter,2307.527222222222,13,20,0,18.0,0.0,0.0,0.0 +prometheus_varnish_exporter,-2.22737684439663,0.194394138028224,-2.90857235800425,https://salsa.debian.org/go-team/packages/prometheus-varnish-exporter, https://github.com/jonnenauha/prometheus_varnish_exporter.git,2552.1847337962963,20,7,0,0.0,88.0,0.0,0.0 +python-prompt-toolkit,0.487219288335155,2.9978306953901,-0.0809488244162375,https://salsa.debian.org/python-team/packages/prompt-toolkit, https://github.com/prompt-toolkit/python-prompt-toolkit,3391.945347222222,231,9,0,205.0,0.0,0.0,1.0 +psi,1.2135210428483,1.77437249231228,0.806961286086633,https://salsa.debian.org/xmpp-team/psi, https://github.com/psi-im/psi.git,5747.445775462963,30,65,0,54.0,0.0,0.0,3.0 +psi-plus-snapshots,-0.0389491456550862,0.359609186020761,-0.259175595888705,https://salsa.debian.org/xmpp-team/psi-plus, https://github.com/psi-plus/psi-plus-snapshots.git,4282.442372685186,3,4,0,6.0,0.0,0.0,0.0 +psi-plus-l10n,0.0021957149266252,2.286416791367,-0.431223071340601,https://salsa.debian.org/xmpp-team/psi-plus-l10n, https://github.com/psi-plus/psi-plus-l10n.git,4205.424212962963,1,2,0,3.0,6.0,0.0,0.0 +psi-l10n,-0.0176490017548628,1.60050001052168,-0.589180216784067,https://salsa.debian.org/xmpp-team/psi-translations, https://github.com/psi-im/psi-l10n.git,3818.9027083333335,1,10,0,8.0,0.0,0.0,0.0 +pssh,1.25126093151198,3.09786426362212,0.342529059832974,https://salsa.debian.org/python-team/packages/pssh, https://github.com/lilydjwg/pssh.git,5265.235138888889,5,13,0,12.0,0.0,0.0,0.0 +list,0.589924984268248,2.22034113393404,0.075745117130546,https://salsa.debian.org/debian/publicsuffix, https://github.com/publicsuffix/list,5785.028506944444,598,98,0,0.0,0.0,0.0,4.0 +pugixml,0.228302722305054,1.29257811833606,-0.0618880814515506,https://salsa.debian.org/debian/pugixml, https://github.com/zeux/pugixml,5448.187962962963,24,58,0,59.0,0.0,0.0,0.0 +beaker,-3.3388976797187,-1.35731765858064,-3.74661072283268,https://salsa.debian.org/debian/puppet-beaker, https://github.com/voxpupuli/beaker,4907.928113425926,70,283,1,0.0,0.0,0.0,54.0 +puppetlabs-apache,-1.54178444078058,-0.124065206083267,-1.98886121691503,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-apache, https://github.com/puppetlabs/puppetlabs-apache,4851.444710648148,122,563,2,312.0,0.0,0.0,0.0 +puppetlabs-concat,-0.9082644121244,1.00396774267501,-1.29052555353025,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-concat, https://github.com/puppetlabs/puppetlabs-concat,4953.97287037037,37,176,1,0.0,0.0,0.0,0.0 +puppetlabs-firewall,-1.67549835899526,0.164018816415436,-2.12307018049536,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-firewall, https://github.com/puppetlabs/puppetlabs-firewall,4586.852083333333,80,232,1,0.0,0.0,0.0,0.0 +puppetlabs-postgresql,-1.95878277292213,-0.0955597617558538,-2.44416950278775,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-postgresql, https://github.com/puppetlabs/puppetlabs-postgresql.git,4242.28400462963,62,322,0,243.0,0.0,0.0,0.0 +puppet-memcached,-2.12144484071194,0.164676507895954,-2.6091973246302,https://salsa.debian.org/puppet-team/puppet-module-saz-memcached, https://github.com/saz/puppet-memcached,4458.983287037037,12,53,1,0.0,96.0,0.0,0.0 +pure-data,0.0157019697110362,0.281668408198807,-0.130901583003357,https://salsa.debian.org/multimedia-team/pd/puredata, https://github.com/pure-data/pure-data,5785.432986111111,63,77,2,77.0,0.0,0.0,0.0 +px,-0.423422432701603,0.581957765196982,-0.633033681073781,https://salsa.debian.org/debian/px, https://github.com/walles/px,2833.17550925926,1,6,0,4.0,0.0,0.0,0.0 +py3status,-0.604162997217986,0.942737828428733,-0.931408600986958,https://salsa.debian.org/debian/py3status, https://github.com/ultrabug/py3status.git,3948.006261574074,125,142,0,0.0,0.0,0.0,0.0 +pyacoustid,0.162364282807266,1.61988294151792,-0.297127440982871,https://salsa.debian.org/python-team/packages/pyacoustid, https://github.com/beetbox/pyacoustid.git,4388.5853125,7,21,0,21.0,68.0,0.0,0.0 +pyaes,0.0439799146662894,1.46563847689993,-0.290497332700578,https://salsa.debian.org/python-team/packages/pyaes, https://github.com/ricmoo/pyaes.git,1227.051747685185,0,7,0,4.0,46.0,0.0,1.0 +pyBigWig,-1.37838749264238,0.906698932241941,-1.94744266506773,https://salsa.debian.org/med-team/pybigwig, https://github.com/deeptools/pyBigWig.git,2807.2654282407407,2,15,0,12.0,0.0,0.0,0.0 +pycodestyle,0.439986634408756,2.1742206342038,-0.0747451364476911,https://salsa.debian.org/python-team/packages/pycodestyle, https://github.com/PyCQA/pycodestyle,5163.460625,31,117,1,0.0,0.0,0.0,12.0 +pycountry,0.294816698645498,1.57364820994181,-0.122309479712131,https://salsa.debian.org/debian/pycountry, https://github.com/flyingcircusio/pycountry,5687.085740740741,1,26,1,24.0,0.0,0.0,0.0 +pycsw,-2.68704520454314,-2.10282113037064,-2.79543575957422,https://salsa.debian.org/debian-gis-team/pycsw, https://github.com/geopython/pycsw.git,4758.626342592593,26,33,0,46.0,0.0,0.0,17.0 +pycuda,-0.456291809365219,0.481879867095548,-0.729976593873598,https://salsa.debian.org/nvidia-team/python-pycuda, https://github.com/inducer/pycuda,5664.963599537037,28,68,0,0.0,244.0,0.0,0.0 +pydbus,-0.326676770365645,1.54560914836696,-0.736540103745462,https://salsa.debian.org/python-team/packages/pydbus, https://github.com/LEW21/pydbus,1343.866273148148,4,10,0,5.0,0.0,0.0,1.0 +pydoctor,-1.42300354787697,-0.333158315694935,-1.82056037046825,https://salsa.debian.org/python-team/packages/pydoctor, https://github.com/twisted/pydoctor,5762.199490740741,10,47,2,30.0,0.0,0.0,0.0 +pydot,0.710705613646775,2.1401436391668,0.087853757877001,https://salsa.debian.org/python-team/packages/pydot, https://github.com/pydot/pydot.git,4914.85730324074,17,9,0,25.0,0.0,0.0,0.0 +pyee,-1.37452658573351,2.14458250633493,-2.18648828344339,https://salsa.debian.org/python-team/packages/pyee, https://github.com/jfhbrook/pyee,4518.116736111111,13,8,0,14.0,49.0,0.0,0.0 +pyephem,-0.0227131662678818,2.35290106480548,-0.451666876474429,https://salsa.debian.org/debian-astro-team/pyephem, https://github.com/brandon-rhodes/pyephem.git,5699.002222222222,31,9,0,28.0,0.0,0.0,0.0 +pyFAI,0.480600339912094,2.23082133459337,-0.240573976533518,https://salsa.debian.org/science-team/pyfai, https://github.com/silx-kit/pyFAI,3860.899710648149,31,70,7,0.0,0.0,0.0,0.0 +PyFerret,-0.720043450037665,0.50276121700717,-1.02716490070978,https://salsa.debian.org:/science-team/pyferret, https://github.com/NOAA-PMEL/PyFerret.git,4609.900659722222,4,23,0,0.0,0.0,0.0,2.0 +pyFFTW,-0.316398042662329,0.802205199164713,-0.700761335252033,https://salsa.debian.org/science-team/pyfftw, https://github.com/pyFFTW/pyFFTW,4024.0905671296296,11,25,0,0.0,0.0,0.0,0.0 +pyflakes,0.604236477652839,1.35505911780103,0.192331132918715,https://salsa.debian.org/python-team/packages/pyflakes, https://github.com/PyCQA/pyflakes,5606.079027777778,52,38,0,74.0,0.0,0.0,0.0 +pygame,1.0962196098806,1.77966486385471,0.656049853906713,https://salsa.debian.org/python-team/packages/pygame, https://github.com/pygame/pygame.git,2564.220520833333,126,252,0,0.0,0.0,0.0,0.0 +pygame_sdl2,0.0393673282987854,2.24068505179172,-0.449471553978388,https://salsa.debian.org/games-team/pygame-sdl2, https://github.com/renpy/pygame_sdl2,3332.3333796296297,5,23,0,20.0,0.0,0.0,0.0 +pygccxml,-0.495551734191547,0.486492468911825,-0.849138889813691,https://salsa.debian.org/debian/pygccxml, https://github.com/gccxml/pygccxml,5668.97650462963,5,16,0,16.0,74.0,0.0,0.0 +pygments,1.09432846646851,2.3132348209107,0.469362463495908,https://salsa.debian.org/python-team/packages/pygments, https://github.com/pygments/pygments.git,2886.0544328703704,306,558,0,391.0,0.0,0.0,0.0 +pyicu,0.567064416758836,1.69830166492967,0.0840500818354553,https://salsa.debian.org/python-team/packages/pyicu, https://github.com/ovalhub/pyicu.git,2184.9113078703704,5,15,0,17.0,144.0,0.0,0.0 +pyinotify,0.539303811447247,1.55973294924873,0.107010693294791,https://salsa.debian.org/python-team/packages/pyinotify, https://github.com/seb-m/pyinotify.git,2642.343379629629,0,16,0,10.0,0.0,0.0,0.0 +pyjokes,-0.213223143779745,3.54203731545436,-1.22575865798678,https://salsa.debian.org/python-team/packages/pyjokes, https://github.com/pyjokes/pyjokes,3166.3977546296296,9,30,1,38.0,71.0,0.0,1.0 +pyjwt,0.295088879140263,1.37043065299221,-0.0542571025196617,https://salsa.debian.org/python-team/packages/pyjwt, https://github.com/jpadilla/pyjwt.git,4675.897326388889,105,47,0,131.0,0.0,0.0,0.0 +pylint,0.174498715716526,0.4665293327002,-0.0043463956002753,https://salsa.debian.org/python-team/packages/pylint, https://github.com/PyCQA/pylint.git,5621.911319444444,451,185,0,378.0,0.0,0.0,0.0 +pylint-flask,0.121478376037209,2.81446522157007,-0.793312583432087,https://salsa.debian.org/python-team/packages/pylint-flask, https://github.com/jschaf/pylint-flask,2579.0026851851853,3,8,0,0.0,31.0,0.0,0.0 +pylint-plugin-utils,-0.0597596177116391,2.49272348865354,-0.676049395041167,https://salsa.debian.org/python-team/packages/pylint-plugin-utils, https://github.com/PyCQA/pylint-plugin-utils.git,3719.603391203704,6,13,0,12.0,32.0,0.0,0.0 +Pymacs,0.930381569651539,2.71440757575525,0.140125463590492,https://salsa.debian.org/python-team/packages/pymacs, https://github.com/pinard/Pymacs.git,2214.350115740741,2,9,0,7.0,84.0,0.0,0.0 +pymarkups,0.0477864201247166,1.79679903237181,-0.289861290944383,https://salsa.debian.org/python-team/packages/pymarkups, https://github.com/retext-project/pymarkups.git,4159.156273148148,2,3,0,4.0,17.0,0.0,0.0 +pympler,-2.5554616545803,1.3732171766135,-3.6067183245679,https://salsa.debian.org/python-team/packages/pympler, https://github.com/pympler/pympler.git,5079.409039351852,13,20,0,22.0,154.0,0.0,0.0 +pympress,-1.08240230765555,0.610933444579991,-1.39376729482119,https://salsa.debian.org/python-team/packages/pympress, https://github.com/Cimbali/pympress/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 +pymssql,1.04134159755709,3.40258559120885,0.0397901466042378,https://salsa.debian.org/python-team/packages/pymssql, https://github.com/pymssql/pymssql.git,4832.040821759259,33,33,0,37.0,0.0,0.0,4.0 +pyodbc,0.885597744996121,3.48776705118848,0.0174921768342335,https://salsa.debian.org/python-team/packages/pyodbc, https://github.com/mkleehammer/pyodbc.git,5503.078981481482,46,20,0,0.0,271.0,0.0,0.0 +pyopenssl,0.468518289980903,1.10581965565087,0.153109358014596,https://salsa.debian.org/python-team/packages/pyopenssl, https://github.com/pyca/pyopenssl,5770.23,60,60,1,0.0,0.0,0.0,0.0 +pyosmium,-0.485740471775393,1.11244100152356,-0.814987299062785,https://salsa.debian.org/debian-gis-team/pyosmium/, https://github.com/osmcode/pyosmium.git,3345.7311574074074,7,19,0,21.0,0.0,0.0,0.0 +pyotherside,0.0820831316590045,2.69409174321841,-0.717916554547958,https://salsa.debian.org/python-team/packages/pyotherside, https://github.com/thp/pyotherside,4575.2678703703705,2,16,0,13.0,0.0,0.0,0.0 +pyparsing,0.829153777961705,1.89883017408123,0.287084196535926,https://salsa.debian.org/python-team/packages/pyparsing, https://github.com/pyparsing/pyparsing,4066.194490740741,57,14,1,59.0,0.0,0.0,1.0 +pypng,0.657025428296012,3.69424360974505,-0.160382168531365,https://salsa.debian.org/debian/pypng, https://github.com/drj11/pypng,5144.019641203704,4,24,0,22.0,78.0,0.0,0.0 +pyraf,-0.127260534026053,2.09946159976478,-0.564345468370832,https://salsa.debian.org/debian-astro-team/pyraf, https://github.com/iraf-community/pyraf.git,5659.829166666666,7,26,0,17.0,0.0,0.0,0.0 +pyregion,-0.542329876213893,-0.234135264408173,-0.608660181675525,https://salsa.debian.org/debian-astro-team/pyregion/, https://github.com/astropy/pyregion.git,4914.63974537037,1,20,0,14.0,57.0,0.0,0.0 +pyresample,-1.15344876822413,-1.09505537838743,-1.16534539737266,https://salsa.debian.org/debian-gis-team/pyresample, https://github.com/pytroll/pyresample,4965.407013888889,20,51,2,45.0,0.0,0.0,0.0 +pysal,-0.673878057006093,-0.385551627478749,-0.712976291015805,https://salsa.debian.org/debian-gis-team/pysal, https://github.com/pysal/pysal.git,5281.823553240741,17,89,0,0.0,0.0,0.0,27.0 +pysimplesoap,0.554909504649339,2.21506648945914,0.0606250550420368,https://salsa.debian.org/python-team/packages/pysimplesoap, https://github.com/pysimplesoap/pysimplesoap,4858.203993055556,4,57,0,37.0,0.0,0.0,0.0 +PyTables,0.181612795535151,0.514236033227897,-0.0078057701177782,https://salsa.debian.org/science-team/pytables, https://github.com/PyTables/PyTables,5755.91300925926,18,124,2,102.0,0.0,0.0,14.0 +pytaglib,0.490833307822017,3.79837683881992,-0.646536884650869,https://salsa.debian.org/python-team/packages/pytaglib, https://github.com/supermihi/pytaglib,4465.748599537037,1,9,0,7.0,97.0,0.0,0.0 +pyte,0.363748544509015,3.5348771032266,-0.546637713523735,https://salsa.debian.org/python-team/modules/pyte, https://github.com/selectel/pyte,4528.145405092592,19,17,0,31.0,0.0,0.0,1.0 +pytest,-0.0946842032874001,-0.0017053723348632,-0.134620684989344,https://salsa.debian.org/python-team/packages/pytest, https://github.com/pytest-dev/pytest.git,5788.108738425926,365,661,0,380.0,0.0,0.0,32.0 +pytest-django,-0.547512504106694,2.38212809870776,-1.32335023590007,https://salsa.debian.org/python-team/packages/pytest-django, https://github.com/pytest-dev/pytest-django,5190.7967708333335,98,53,2,0.0,0.0,0.0,0.0 +pytest-forked,-0.283596560280026,2.29514601749755,-0.853292027559784,https://salsa.debian.org/python-team/packages/pytest-forked, https://github.com/pytest-dev/pytest-forked.git,2315.652442129629,5,15,0,14.0,0.0,0.0,0.0 +pytest-httpbin,-2.03594697551207,-0.142189710639132,-2.55876256343517,https://salsa.debian.org/python-team/packages/pytest-httpbin, https://github.com/kevin1024/pytest-httpbin,3280.740266203704,1,13,0,12.0,26.0,0.0,0.0 +pytest-mock,-0.251565725072969,1.69811506806052,-0.974021991086496,https://salsa.debian.org/python-team/packages/pytest-mock, https://github.com/pytest-dev/pytest-mock.git,3405.9988541666667,26,48,0,65.0,0.0,0.0,1.0 +pytest-openfiles,0.0198117055865297,1.53487457139493,-0.246139013033888,https://salsa.debian.org/python-team/packages/pytest-openfiles, https://github.com/astropy/pytest-openfiles,4143.710324074074,7,35,1,0.0,16.0,0.0,1.0 +aiosmtpd,-0.670307013829362,1.48445222707364,-1.11600762028611,https://salsa.debian.org/python-team/packages/python-aiosmtpd, https://github.com/aio-libs/aiosmtpd,2704.0818171296296,23,23,3,35.0,45.0,0.0,1.0 +argon2-cffi,-0.507428695626086,2.47954626772091,-1.24583720203671,https://salsa.debian.org/python-team/packages/python-argon2, https://github.com/hynek/argon2-cffi,2912.679050925926,15,4,0,17.0,90.0,0.0,0.0 +arrow,-0.0155472431025059,1.37635812822856,-0.296265816143172,https://salsa.debian.org/debian/python-arrow, https://github.com/crsmithdev/arrow.git,3968.0696527777777,101,197,0,239.0,717.0,0.0,0.0 +asteval,0.125972288937792,2.77679984697409,-0.53943895529481,https://salsa.debian.org/science-team/python-asteval, https://github.com/newville/asteval.git,4236.665451388889,4,25,0,22.0,85.0,0.0,0.0 +bitarray,0.1853646535503,2.71696211707387,-0.389856738541388,https://salsa.debian.org/python-team/packages/python-bitarray, https://github.com/ilanschnell/bitarray.git,5492.002303240741,4,24,0,22.0,174.0,0.0,0.0 +BitBucket-api,-1.80768047140336,0.655321433075774,-2.42711934359575,https://salsa.debian.org/python-team/packages/python-bitbucket-api, https://github.com/Sheeprider/BitBucket-api,2673.033715277778,1,9,0,4.0,15.0,0.0,1.0 +blessed,0.232652358552523,3.20605056891515,-0.718351254037988,https://salsa.debian.org/python-team/packages/python-blessed, https://github.com/jquast/blessed,4419.870092592592,11,20,0,23.0,100.0,0.0,0.0 +BTrees,0.131771356743149,2.79278179856863,-0.632603814290702,https://salsa.debian.org/python-team/packages/python-btrees, https://github.com/zopefoundation/BTrees.git,4005.382384259259,5,28,0,19.0,54.0,0.0,0.0 +python-bugzilla,-0.563366997607635,2.10695252748837,-1.21240516258286,https://salsa.debian.org/python-team/packages/python-bugzilla, https://github.com/python-bugzilla/python-bugzilla,5775.498171296296,51,11,0,52.0,135.0,0.0,0.0 +python-can,-1.20066338058102,0.794195621456955,-1.69593692380182,https://salsa.debian.org/python-team/packages/python-can, https://github.com/hardbyte/python-can.git,3258.697708333333,133,94,0,145.0,591.0,0.0,0.0 +letsencrypt,0.0530697005848172,0.205062033778056,-0.034501071006792,https://salsa.debian.org/letsencrypt-team/certbot/certbot, https://github.com/letsencrypt/letsencrypt.git,4226.966990740741,268,343,0,391.0,0.0,0.0,143.0 +letsencrypt,0.164376385123369,1.1569070052723,-0.113658319351683,https://salsa.debian.org/letsencrypt-team/certbot/certbot-apache, https://github.com/letsencrypt/letsencrypt,4226.966990740741,268,343,2,391.0,0.0,0.0,143.0 +certbot,-0.0402097724502475,2.61410988299018,-0.711802185480417,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-cloudflare, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 +certbot,-1.40219072428383,0.970004158695313,-1.95674155999233,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-digitalocean, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 +click,0.533261133725363,1.86963549867411,0.0413641366647804,https://salsa.debian.org/python-team/packages/python-click, https://github.com/pallets/click.git,3511.524525462963,222,172,0,330.0,478.0,0.0,0.0 +clint,-0.0438781208296862,1.71074973976383,-0.429437396504159,https://salsa.debian.org/python-team/packages/python-clint, https://github.com/kennethreitz/clint,2517.082002314815,3,67,1,52.0,193.0,0.0,0.0 +python-cloudflare,0.0381996032608938,2.77406419988188,-0.666375037689694,https://salsa.debian.org/python-team/packages/python-cloudflare, https://github.com/cloudflare/python-cloudflare,3286.4968981481484,13,32,0,35.0,159.0,0.0,2.0 +python-cluster,-0.559555280381538,1.74450964876915,-1.27322096237344,https://salsa.debian.org/python-team/packages/python-cluster, https://github.com/exhuma/python-cluster.git,2854.787951388889,1,7,0,4.0,14.0,0.0,0.0 +py-cpuinfo,0.210056549819962,2.84171853313126,-0.377044596104247,https://salsa.debian.org/python-team/packages/python-cpuinfo, https://github.com/workhorsy/py-cpuinfo,3300.573159722222,1,24,0,15.0,92.0,0.0,0.0 +cryptography,0.0542953295686275,2.87199250330208,-0.555070287642916,https://salsa.debian.org/python-team/packages/python-cryptography-vectors, https://github.com/pyca/cryptography/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +cs,-1.58638712281207,0.481665568993578,-2.23329067501132,https://salsa.debian.org/python-team/packages/python-cs, https://github.com/exoscale/cs,3277.6950578703704,6,20,0,18.0,35.0,0.0,0.0 +django-celery-beat,-1.53400001056745,1.88710259850437,-2.39053964577473,https://salsa.debian.org/python-team/packages/python-django-celery-beat, https://github.com/celery/django-celery-beat,2687.879664351852,111,13,1,108.0,427.0,0.0,0.0 +django-csp,-1.45831743267382,1.33984311418151,-2.16861147719032,https://salsa.debian.org/python-team/packages/python-django-csp, https://github.com/mozilla/django-csp.git,4885.718310185185,17,40,0,46.0,145.0,0.0,0.0 +django-debug-toolbar,-0.794791716705528,-0.149717856397106,-1.02400006654311,https://salsa.debian.org/python-team/packages/python-django-debug-toolbar, https://github.com/jazzband/django-debug-toolbar.git,5583.444155092592,108,202,0,246.0,112.0,0.0,26.0 +django-ordered-model,-1.24083503715617,1.32905395625878,-1.87733775304822,https://salsa.debian.org/python-team/packages/python-django-ordered-model, https://github.com/bfirsh/django-ordered-model.git,5015.315243055556,29,40,0,50.0,244.0,0.0,1.0 +django-push-notifications,-2.88352714154921,1.1630797643721,-4.06008617589567,https://salsa.debian.org/python-team/packages/python-django-push-notifications, https://github.com/jazzband/django-push-notifications,3892.0095254629623,69,44,1,87.0,594.0,0.0,5.0 +python-djvulibre,1.83430171603396,4.14861860289277,0.733031973392286,https://salsa.debian.org/python-team/packages/python-djvulibre, https://github.com/jwilk/python-djvulibre,5340.873275462963,0,1,0,1.0,12.0,0.0,0.0 +eventlet,0.252115609807978,1.15186457181384,-0.198055516809458,https://salsa.debian.org/openstack-team/third-party/python-eventlet, https://github.com/eventlet/eventlet.git,5751.265034722223,91,103,0,136.0,688.0,0.0,0.0 +feather,-1.25068288454204,1.70492416407619,-2.43608687570517,https://salsa.debian.org/python-team/packages/python-feather-format, https://github.com/wesm/feather,1834.8181597222224,30,9,0,30.0,331.0,0.0,0.0 +python-fedora,-2.29967407391479,0.484863817047441,-3.14279644361132,https://salsa.debian.org/python-team/packages/python-fedora, https://github.com/fedora-infra/python-fedora,4670.561863425926,38,64,0,41.0,65.0,0.0,0.0 +py-filelock,0.25864042246865,2.56448428979434,-0.205671902682833,https://salsa.debian.org/debian/python-filelock, https://github.com/tox-dev/py-filelock,3582.474849537037,31,14,0,41.0,104.0,0.0,0.0 +python-fitbit,-1.68563475320931,-1.0235675077146,-1.816362836865,https://salsa.debian.org/med-team/python-fitbit, https://github.com/orcasgit/python-fitbit,2733.117696759259,1,37,1,26.0,181.0,0.0,0.0 +fswrap,-2.10651306806468,0.310291029018578,-2.73445256296084,https://salsa.debian.org/debian/python-fswrap, https://github.com/hyde/fswrap,1272.071238425926,0,7,0,3.0,6.0,0.0,0.0 +fudge,-1.65644390810741,-0.304248052417325,-1.92122880751373,https://salsa.debian.org/python-team/packages/python-fudge, https://github.com/fudge-py/fudge,3423.978506944444,2,11,0,7.0,13.0,0.0,0.0 +python-future,0.503059489203248,1.68720030424491,0.0486866337929686,https://salsa.debian.org/python-team/packages/python-future, https://github.com/PythonCharmers/python-future,3485.568784722222,22,94,0,106.0,493.0,0.0,0.0 +gitdb,-0.0108595084789796,1.21489590869819,-0.300716932513031,https://salsa.debian.org/python-team/packages/python-gitdb, https://github.com/gitpython-developers/gitdb,4929.933865740741,7,31,0,29.0,67.0,0.0,0.0 +python-gitlab,0.220589704011694,1.52429893960614,-0.205214686101085,https://salsa.debian.org/debian/python-pygitlab, https://github.com/python-gitlab/python-gitlab.git,3961.124108796296,129,178,0,222.0,130.0,0.0,0.0 +http-parser,0.155151774589016,3.18380891504713,-0.640356279887151,https://salsa.debian.org/python-team/packages/python-http-parser, https://github.com/benoitc/http-parser,3280.316724537037,14,48,2,29.0,90.0,0.0,0.0 +hug,-3.03973805631588,1.04039550324097,-4.50484302225035,https://salsa.debian.org/debian/python-hug, https://github.com/timothycrosley/hug.git,2905.4028935185183,23,104,0,96.0,464.0,0.0,5.0 +humanize,0.206016004968924,2.32118743308446,-0.279157364985436,https://salsa.debian.org/python-team/packages/python-humanize, https://github.com/jmoiron/humanize,3901.559085648148,11,59,0,53.0,157.0,0.0,0.0 +hyperframe,0.183494579463071,2.89676769623262,-0.381648875212278,https://salsa.debian.org/debian/python-hyperframe, https://github.com/python-hyper/hyperframe.git,2262.714363425926,4,18,0,16.0,26.0,0.0,0.0 +python-ilorest-library,-2.00009801063097,0.337848801444391,-2.47080554403403,https://salsa.debian.org/tijuca/python-ilorest, https://github.com/HewlettPackard/python-ilorest-library.git,1431.336134259259,12,11,0,18.0,145.0,0.0,5.0 +inflect,-0.830879998371281,1.37567925173832,-1.43639488329342,https://salsa.debian.org/python-team/packages/python-inflect, https://github.com/jazzband/inflect.git,4917.082638888889,24,37,0,50.0,152.0,0.0,0.0 +python-iniparse,0.605974173936543,3.1142228173649,-0.100886785208172,https://salsa.debian.org/debian/python-iniparse, https://github.com/candlepin/python-iniparse,5579.407858796297,6,8,0,13.0,25.0,0.0,0.0 +internetarchive,-1.21320060842117,-0.227281650263067,-1.37656063197664,https://salsa.debian.org/python-team/packages/python-internetarchive, https://github.com/jjjake/internetarchive.git,4122.965370370371,16,46,0,49.0,270.0,0.0,0.0 +json-rpc,-1.03454449289022,1.89018329970566,-1.82477718457792,https://salsa.debian.org/python-team/packages/python-jsonrpc, https://github.com/pavlov99/json-rpc,3540.9974421296297,17,29,0,27.0,76.0,0.0,0.0 +langdetect,-0.358621578481637,1.81810975299951,-0.796341757795692,https://salsa.debian.org/python-team/packages/python-langdetect, https://github.com/Mimino666/langdetect,2551.662488425926,2,11,0,9.0,151.0,0.0,0.0 +latexcodec,0.0827349547035988,1.88136424198425,-0.356864006660853,https://salsa.debian.org/python-team/packages/python-latexcodec, https://github.com/mcmtroffaes/latexcodec,3743.919965277778,5,9,0,8.0,31.0,0.0,0.0 +line_profiler,-0.171840946989225,2.57842674496517,-0.918337546009102,https://salsa.debian.org/python-team/packages/python-line-profiler, https://github.com/pyutils/line_profiler,5567.713310185185,22,30,0,39.0,110.0,0.0,0.0 +python-livereload,0.107629861462521,1.59693242173507,-0.353457889372476,https://salsa.debian.org/debian/python-livereload, https://github.com/lepture/python-livereload,4103.893969907407,16,51,1,51.0,159.0,0.0,0.0 +python-llfuse,0.419862830066885,1.27033335940079,0.0164187330742263,https://salsa.debian.org/python-team/packages/python-llfuse, https://github.com/python-llfuse/python-llfuse.git,4733.746342592593,11,9,0,15.0,32.0,0.0,0.0 +lupa,-0.954137149067827,2.14983595509208,-1.89504130086398,https://salsa.debian.org/python-team/packages/python-lupa, https://github.com/scoder/lupa,4904.859849537037,9,18,1,23.0,74.0,0.0,0.0 +python-measurement,-1.3916124319226,1.26850387586932,-1.96155033515476,https://salsa.debian.org/python-team/packages/python-measurement, https://github.com/coddingtonbear/python-measurement,3798.2584953703695,10,14,0,13.0,57.0,0.0,0.0 +mock,0.165979302419957,0.744540067878074,-0.0468504603130108,https://salsa.debian.org/python-team/packages/python-mock, https://github.com/testing-cabal/mock,4146.630486111111,84,22,0,89.0,247.0,0.0,0.0 +molotov,-2.88276850245155,-0.980473075631627,-3.30813935868335,https://salsa.debian.org/python-team/packages/python-molotov, https://github.com/loads/molotov.git,3129.6588194444444,9,11,0,15.0,47.0,0.0,0.0 +multidict,0.479208549500178,3.12807590463098,-0.199532776277039,https://salsa.debian.org/python-team/packages/python-multidict, https://github.com/aio-libs/multidict.git,2868.3713194444445,43,8,0,52.0,109.0,0.0,0.0 +munch,-0.246501339414158,0.598382084242946,-0.418050250509477,https://salsa.debian.org/python-team/packages/python-munch, https://github.com/Infinidat/munch.git,4904.2753125,6,26,0,20.0,72.0,0.0,0.0 +mysqlclient,0.436295905512352,0.861066234678428,0.179430934603889,https://salsa.debian.org/python-team/packages/python-mysqldb, https://github.com/PyMySQL/mysqlclient,5425.159363425926,54,38,1,72.0,445.0,0.0,4.0 +ofxclient,-0.470102582055492,2.15093353115901,-1.37870903178206,https://salsa.debian.org/python-team/packages/python-ofxclient, https://github.com/captin411/ofxclient,2154.9641203703704,2,13,0,12.0,102.0,0.0,0.0 +python-opcua,-0.97328830284469,0.815420320297958,-1.59838933545828,https://salsa.debian.org/python-team/modules/python-opcua, https://github.com/FreeOpcUa/python-opcua,2848.7678356481483,95,42,1,87.0,31.0,0.0,2.0 +osmapi,-0.352056618498373,1.84498408927228,-0.782152601269039,https://salsa.debian.org/debian-gis-team/python-osmapi, https://github.com/metaodi/osmapi.git,3568.77837962963,2,9,0,7.0,37.0,0.0,0.0 +paho.mqtt.python,-0.26385690320408,1.51784573778608,-0.63787308457193,https://salsa.debian.org/debian/python-paho-mqtt, https://github.com/eclipse/paho.mqtt.python.git,3273.1238194444445,17,55,0,64.0,202.0,0.0,0.0 +pbcommand,-0.560074431295294,1.38129287745035,-1.12293844781845,https://salsa.debian.org/med-team/python-pbcommand, https://github.com/PacificBiosciences/pbcommand,3024.5842592592594,0,28,1,11.0,17.0,0.0,0.0 +pbcore,-0.465250971692481,1.03081850291822,-0.971268367521537,https://salsa.debian.org/med-team/python-pbcore, https://github.com/PacificBiosciences/pbcore,4123.129305555555,2,42,0,15.0,57.0,0.0,0.0 +python-pcl,-2.48956573632986,-0.89963330295256,-2.79241451066553,https://salsa.debian.org/python-team/packages/python-pcl, https://github.com/strawlab/python-pcl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +py_zipkin,-0.749831772430786,1.66372016233673,-1.27858003886142,https://salsa.debian.org/python-team/packages/python-py-zipkin, https://github.com/Yelp/py_zipkin,2422.062048611111,16,29,1,25.0,71.0,0.0,0.0 +pyasn1-modules,0.880366492732551,3.44639951931467,0.0828398688507482,https://salsa.debian.org/python-team/packages/python-pyasn1-modules, https://github.com/etingof/pyasn1-modules.git,3319.679317129629,3,11,0,7.0,43.0,0.0,0.0 +pyelftools,-0.159782903870593,0.952114214528198,-0.436867136215813,https://salsa.debian.org/debian/python-pyelftools, https://github.com/eliben/pyelftools.git,4475.251006944444,75,34,0,86.0,286.0,0.0,8.0 +pykka,-0.128480958414865,1.40113639421173,-0.446569578796732,https://salsa.debian.org/python-team/packages/python-pykka, https://github.com/jodal/pykka.git,4770.51550925926,5,9,0,11.0,42.0,0.0,1.0 +pyld,-1.1864691928245,0.855480737337874,-1.61991395432354,https://salsa.debian.org/python-team/packages/python-pyld, https://github.com/digitalbazaar/pyld,4498.300578703704,14,14,1,23.0,104.0,0.0,0.0 +pylibacl,0.131528837376331,1.00713150206336,-0.132374615279565,https://salsa.debian.org/debian/python-pylibacl, https://github.com/iustin/pylibacl,5414.658530092593,1,3,0,2.0,19.0,0.0,0.0 +PyPump,-1.95077230562065,0.332799268189091,-2.56602633210496,https://salsa.debian.org/python-team/packages/python-pypump, https://github.com/xray7224/PyPump,1973.6342824074077,0,28,2,14.0,34.0,0.0,0.0 +pyqrcode,0.356900356562613,2.94209030158286,-0.219337592691645,https://salsa.debian.org/debian/python-pyqrcode, https://github.com/mnooner256/pyqrcode.git,1108.5763078703703,0,8,0,6.0,59.0,0.0,0.0 +pyqtgraph,0.564161547918785,2.40518051592864,-0.0614102206070495,https://salsa.debian.org/science-team/python-pyqtgraph, https://github.com/pyqtgraph/pyqtgraph.git,4007.3308217592594,135,173,0,229.0,0.0,0.0,7.0 +pyramid_chameleon,-3.39014661132606,-0.280976693069101,-4.23557657958116,https://salsa.debian.org/python-team/packages/python-pyramid-chameleon, https://github.com/Pylons/pyramid_chameleon,4187.212569444445,2,17,0,11.0,25.0,0.0,0.0 +pywebview,-1.31751976724405,1.12206991269327,-1.80202998207921,https://salsa.debian.org/python-team/packages/python-pywebview, https://github.com/r0x0r/pywebview,3307.0006597222223,61,74,0,101.0,158.0,0.0,1.0 +python-qrcode,0.276571432870141,1.79750466921465,-0.157682766587389,https://salsa.debian.org/python-team/packages/python-qrcode, https://github.com/lincolnloop/python-qrcode.git,4693.745821759259,11,50,0,46.0,387.0,0.0,3.0 +releases,-1.91185739418786,-0.0482016172746844,-2.42474926732471,https://salsa.debian.org/python-team/packages/python-releases, https://github.com/bitprophet/releases.git,3728.633414351852,2,9,0,9.0,54.0,0.0,0.0 +requests-cache,0.0096011448688481,2.34072487083404,-0.463486914026279,https://salsa.debian.org/python-team/packages/python-requests-cache, https://github.com/requests-cache/requests-cache,4266.393923611111,17,43,3,51.0,224.0,0.0,0.0 +schema_salad,-0.116017361266221,1.53059926612304,-0.514023281621855,https://salsa.debian.org/python-team/packages/python-schema-salad, https://github.com/common-workflow-language/schema_salad,3066.416192129629,34,21,0,36.0,72.0,0.0,0.0 +shellescape,0.216102898821056,2.95304752231742,-0.478184520234403,https://salsa.debian.org/python-team/packages/python-shellescape, https://github.com/chrissimpkins/shellescape,2183.791458333333,2,2,0,2.0,5.0,0.0,0.0 +shodan-python,-0.0231660335595108,2.27534196489807,-0.562754026031234,https://salsa.debian.org/python-team/packages/python-shodan, https://github.com/achillean/shodan-python,4784.580127314815,12,27,0,24.0,85.0,0.0,1.0 +sievelib,-1.49534307318991,1.30516239770556,-2.32989278557723,https://salsa.debian.org/python-team/packages/python-sievelib, https://github.com/tonioo/sievelib,3482.887233796296,4,23,1,16.0,39.0,0.0,0.0 +uritemplate,-0.942591012539653,1.70560748767681,-1.49041305963889,https://salsa.debian.org/debian/python-sigmavirus24-urltemplate, https://github.com/python-hyper/uritemplate.git,3887.772662037037,5,19,0,17.0,38.0,0.0,1.0 +stetl,-0.380951869732433,1.85992160222997,-0.815818728622616,https://salsa.debian.org/debian-gis-team/python-stetl, https://github.com/geopython/stetl.git,4123.303784722222,1,12,0,9.0,17.0,0.0,0.0 +python-swiftclient,-0.333099361712944,0.597745666944376,-0.614475827420347,https://salsa.debian.org/openstack-team/clients/python-swiftclient, https://github.com/openstack/python-swiftclient.git,4179.361851851852,20,194,0,118.0,34.0,0.0,0.0 +tmdbsimple,-2.14441266097874,0.346488550190115,-2.75436844080196,https://salsa.debian.org/python-team/packages/python-tmdbsimple, https://github.com/celiao/tmdbsimple,2973.5930324074075,10,20,0,20.0,89.0,0.0,0.0 +twilio-python,-1.44341258639509,1.00650092133662,-2.03598164526984,https://salsa.debian.org/python-team/packages/python-twilio, https://github.com/twilio/twilio-python,5203.348668981482,54,122,0,106.0,273.0,0.0,0.0 +python-twitter,0.418895042591163,2.60845172198667,-0.560887813528878,https://salsa.debian.org/python-team/packages/python-twitter, https://github.com/bear/python-twitter.git,3385.4683449074078,27,157,0,138.0,567.0,0.0,10.0 +webob,0.269248114414342,0.939408926616269,-0.0205851245589964,https://salsa.debian.org/python-team/packages/python-webob, https://github.com/Pylons/webob,5771.468935185185,14,108,0,94.0,224.0,0.0,0.0 +websockets,0.821434798697177,2.80004322389045,0.0649687211872258,https://salsa.debian.org/python-team/packages/python-websockets, https://github.com/aaugustin/websockets.git,2952.859398148148,59,16,0,63.0,363.0,0.0,0.0 +python-zeep,-0.308243113662642,1.52801230282343,-0.697542519772299,https://salsa.debian.org/tryton-team/python-zeep, https://github.com/mvantellingen/python-zeep.git,2573.7169907407406,110,44,0,114.0,549.0,0.0,0.0 +python3-lxc,0.378488308112486,2.85424123094581,-0.156269480475037,https://salsa.debian.org/lxc-team/python3-lxc, https://github.com/lxc/python3-lxc.git,1985.898935185185,0,11,0,9.0,38.0,0.0,0.0 +proselint,-0.256056454127872,1.5321180857264,-0.808081838125919,https://salsa.debian.org/python-team/packages/python3-proselint, https://github.com/amperser/proselint,3160.1412962962963,47,44,5,71.0,295.0,0.0,0.0 +typed_ast,0.187764234770539,2.5189505626835,-0.252025964650492,https://salsa.debian.org/python-team/packages/python3-typed-ast, https://github.com/python/typed_ast.git,2639.050300925926,22,9,0,25.0,82.0,0.0,0.0 +pyvows,-3.58551376510932,-1.4150725383474,-4.24534641758732,https://salsa.debian.org/python-team/packages/pyvows, https://github.com/heynemann/pyvows.git,4554.961076388889,1,29,0,13.0,44.0,0.0,3.0 +pywt,0.541606427789053,2.18930347224667,-0.0802426890426814,https://salsa.debian.org/python-team/packages/pywavelets, https://github.com/PyWavelets/pywt.git,5734.799560185185,25,28,0,44.0,303.0,0.0,1.0 +qgit,0.392741865383721,1.27795033678636,-0.0312896728271155,https://salsa.debian.org/debian/qgit, https://github.com/tibirna/qgit.git,5665.688206018519,28,35,0,46.0,79.0,0.0,1.0 +qhull,0.404244927753499,1.36220865514522,0.0359891539047283,https://salsa.debian.org/science-team/qhull, https://github.com/qhull/qhull,1796.1123958333333,6,20,0,27.0,120.0,0.0,1.0 +qps,1.51097704828947,2.60616501600994,0.845280056568653,https://salsa.debian.org/lxqt-team/qps, https://github.com/lxqt/qps.git,3468.927199074074,55,15,0,47.0,54.0,0.0,0.0 +QR-Code-generator,0.389843379095431,2.76920702989891,-0.0955378774297983,https://salsa.debian.org/yangfl-guest/QR-Code-generator, https://github.com/nayuki/QR-Code-generator,2688.5360069444446,1,6,0,6.0,205.0,0.0,0.0 +qtkeychain,0.0558876134224342,0.44246954990915,-0.0879663492093869,https://salsa.debian.org/qt-kde-team/extras/qtkeychain, https://github.com/frankosterfeld/qtkeychain,4430.699548611111,28,41,0,56.0,171.0,0.0,6.0 +qtltools,-0.81443123075593,0.855524996672882,-1.12232114351183,https://salsa.debian.org/med-team/qtltools, https://github.com/qtltools/qtltools/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +qTox,-0.186338231464814,1.55035477819234,-0.494760472921222,https://salsa.debian.org/yangfl-guest/qTox, https://github.com/qTox/qTox,3154.688668981481,156,294,7,243.0,272.0,0.0,41.0 +qwinff,-0.0728687395832074,2.35415592103433,-0.614807949382776,https://salsa.debian.org/multimedia-team/qwinff, https://github.com/qwinff/qwinff,3333.9424189814813,0,10,0,6.0,45.0,0.0,0.0 +callr,0.115138385563855,2.37177972751741,-0.344825316603976,https://salsa.debian.org/r-pkg-team/r-cran-callr, https://github.com/r-lib/callr.git,2730.1466203703703,8,18,0,18.0,57.0,0.0,0.0 +caret,-0.158911509202771,1.37470649956735,-0.441038106924103,https://salsa.debian.org/r-pkg-team/r-cran-caret, https://github.com/topepo/caret.git,3231.0891319444445,48,79,0,97.0,710.0,0.0,0.0 +curl,0.077091534438309,1.50470953659052,-0.260737954025918,https://salsa.debian.org/r-pkg-team/r-cran-curl, https://github.com/jeroen/curl,3312.506412037037,11,17,0,20.0,85.0,0.0,0.0 +dygraphs,-0.0490909843109079,3.39358348954332,-0.913506460568269,https://salsa.debian.org/r-pkg-team/r-cran-dygraphs, https://github.com/rstudio/dygraphs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +lubridate,0.260151310883355,2.70092580430642,-0.24300364732261,https://salsa.debian.org/r-pkg-team/r-cran-lubridate, https://github.com/tidyverse/lubridate.git,5324.846898148148,53,93,0,89.0,831.0,0.0,0.0 +raster,-0.0742369850961889,2.25679648386161,-0.523290840169459,https://salsa.debian.org/r-pkg-team/r-cran-raster, https://github.com/rspatial/raster.git,1952.0897800925925,9,23,0,25.0,267.0,0.0,0.0 +RNeXML,-0.307546135054736,1.80867512306941,-0.79915015729506,https://salsa.debian.org/r-pkg-team/r-cran-rnexml, https://github.com/ropensci/RNeXML.git,3480.1707407407407,2,22,0,12.0,26.0,0.0,0.0 +scales,0.339304747745806,2.67541230737203,-0.18233206889075,https://salsa.debian.org/r-pkg-team/r-cran-scales, https://github.com/r-lib/scales,4768.619074074074,32,47,1,48.0,231.0,0.0,0.0 +scatterD3,-0.535656644392216,0.99411321932811,-0.809953264867216,https://salsa.debian.org/r-pkg-team/r-cran-scatterd3, https://github.com/juba/scatterD3.git,3041.2167939814813,1,11,0,5.0,46.0,0.0,0.0 +sendmailR,-0.310367019043398,1.27318906199562,-0.586067363523717,https://salsa.debian.org/r-pkg-team/r-cran-sendmailr, https://github.com/olafmersmann/sendmailR/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sjmisc,-0.397357618721593,1.88980482031592,-0.848413921848364,https://salsa.debian.org/r-pkg-team/r-cran-sjmisc, https://github.com/strengejacke/sjmisc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sjPlot,-0.423579227455836,1.7243482083958,-0.862471834321145,https://salsa.debian.org/r-pkg-team/r-cran-sjplot, https://github.com/strengejacke/sjPlot/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sp,0.0394136667023216,1.27230166723756,-0.229566443741296,https://salsa.debian.org/r-pkg-team/r-cran-sp, https://github.com/edzer/sp.git,2848.9715277777777,1,18,0,9.0,78.0,0.0,0.0 +tibble,0.335422047522137,2.23920900578415,-0.16353602555831,https://salsa.debian.org/r-pkg-team/r-cran-tibble, https://github.com/tidyverse/tibble/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rabbit,-1.0753863465153,-0.452461320473391,-1.25152304417292,https://salsa.debian.org/ruby-team/rabbit, https://github.com/rabbit-shocker/rabbit,5766.766296296296,8,40,0,38.0,62.0,0.0,0.0 +rally,-2.87869359307887,-1.55225765607196,-3.27600983949173,https://salsa.debian.org/openstack-team/services/rally, https://github.com/openstack/rally.git,3774.9832175925926,69,441,0,282.0,33.0,0.0,0.0 +ranger,0.158557832942648,0.887452810426949,-0.118876488946076,https://salsa.debian.org/debian/ranger, https://github.com/ranger/ranger.git,5250.545347222223,73,205,0,197.0,480.0,0.0,158.0 +RBDOOM-3-BFG,-0.492504028084634,0.802143110089703,-0.84281399652303,https://salsa.debian.org/games-team/rbdoom3bfg, https://github.com/RobertBeckebans/RBDOOM-3-BFG,4030.942662037037,14,74,0,63.0,321.0,0.0,0.0 +rbenv,0.566539915958547,3.41510922632661,-0.301697211783975,https://salsa.debian.org/ruby-team/rbenv, https://github.com/rbenv/rbenv,4512.975162037037,36,100,0,106.0,1162.0,0.0,87.0 +rblcheck,0.244294100136855,1.16990268652702,-0.176956618224791,https://github.com/rfc1036/rblcheck,https://github.com/rfc1036/rblcheck,5711.447627314815,2,1,0,3.0,3.0,0.0,0.0 +rc,3.26364583749779,5.89194735951154,1.96439915463499,https://salsa.debian.org/debian/rc, https://github.com/rakitzis/rc,3601.3893981481483,12,15,1,10.0,45.0,0.0,0.0 +rclone,0.33204200535613,1.71723277880513,-0.123665624108888,https://salsa.debian.org/go-team/packages/rclone, https://github.com/rclone/rclone.git,4043.695185185185,821,36,0,394.0,491.0,0.0,87.0 +re2c,0.049047964610728,0.536436632360368,-0.093390292337921,https://salsa.debian.org/jcfp/re2c, https://github.com/skvadrik/re2c,5784.050370370371,20,22,0,29.0,117.0,0.0,1.0 +rear,-0.314712315367848,0.588088744437776,-0.648431856214207,https://salsa.debian.org/debian/rear, https://github.com/rear/rear.git,5387.781423611111,35,162,0,105.0,43.0,0.0,10.0 +recommonmark,0.0137812846115271,1.86099194261938,-0.364642881828289,https://salsa.debian.org/python-team/packages/recommonmark, https://github.com/readthedocs/recommonmark.git,2822.8469328703704,10,35,0,34.0,262.0,0.0,0.0 +reflex,-0.974725206595286,2.01787465644879,-1.63618860105416,https://salsa.debian.org/debian/reflex, https://github.com/cespare/reflex.git,3024.801863425926,4,7,0,8.0,114.0,0.0,0.0 +renderdoc,-0.571652215528999,1.36822849692371,-1.076460589554,https://salsa.debian.org/xorg-team/app/renderdoc, https://github.com/baldurk/renderdoc.git,3576.978726851852,255,31,0,221.0,435.0,0.0,12.0 +reptyr,0.95907542468885,3.54103164497108,0.0685934083853369,https://github.com/nelhage/reptyr/tree/debian,https://github.com/nelhage/reptyr,4619.470868055556,13,37,0,39.0,113.0,0.0,0.0 +selinux,0.567588551889924,4.5013957134859,-0.824730361279045,https://salsa.debian.org/selinux-team/restorecond, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 +alternative-toolbar,-0.296742282819441,1.13315191862386,-0.5644700994867,https://github.com/fossfreedom/alternative-toolbar/tree/debian,https://github.com/fossfreedom/alternative-toolbar,3255.9015277777776,2,19,0,16.0,90.0,0.0,0.0 +catkin,-0.489039781480851,0.118129140741579,-0.603039077347013,https://salsa.debian.org/science-team/ros-catkin, https://github.com/ros/catkin.git,3969.001458333333,64,80,0,84.0,279.0,0.0,0.0 +catkin_pkg,-0.167203497358372,1.2861285448403,-0.485635068001556,https://salsa.debian.org/science-team/ros-catkin-pkg, https://github.com/ros-infrastructure/catkin_pkg.git,4009.4744097222224,38,38,0,54.0,133.0,0.0,0.0 +common_msgs,-0.260735685857777,1.64188464097169,-0.68752787368347,https://salsa.debian.org/science-team/ros-common-msgs, https://github.com/ros/common_msgs,4220.657847222222,11,81,1,36.0,156.0,0.0,0.0 +gencpp,-0.160091149063917,2.2557178524457,-0.719103076323962,https://salsa.debian.org/science-team/ros-gencpp, https://github.com/ros/gencpp,4002.012303240741,11,18,1,17.0,47.0,0.0,0.0 +genlisp,-0.166354322533981,2.24866950739751,-0.730196442265192,https://salsa.debian.org/science-team/ros-genlisp, https://github.com/ros/genlisp.git,2913.208993055556,2,16,0,9.0,11.0,0.0,0.0 +robot_state_publisher,-0.592455886619176,1.35766053965836,-1.01093645133637,https://salsa.debian.org/science-team/ros-robot-state-publisher, https://github.com/ros/robot_state_publisher,4113.0053356481485,37,41,0,43.0,181.0,0.0,0.0 +ros,-0.174542217173464,1.74371986214792,-0.570506770557411,https://salsa.debian.org/science-team/ros-ros, https://github.com/ros/ros.git,4392.927650462963,48,77,0,74.0,82.0,0.0,0.0 +roscpp_core,-0.033152535279659,2.36549991232184,-0.501119620770985,https://salsa.debian.org/science-team/ros-roscpp-core, https://github.com/ros/roscpp_core,4254.705671296297,25,32,1,37.0,98.0,0.0,0.0 +rosinstall_generator,-0.143025821600952,2.21106586662489,-0.69934292908189,https://salsa.debian.org/science-team/ros-rosinstall-generator, https://github.com/ros-infrastructure/rosinstall_generator,3820.013842592593,11,14,2,15.0,43.0,0.0,0.0 +rows,-0.501673824942345,1.99965107262537,-1.29990789232841,https://salsa.debian.org/debian/rows, https://github.com/turicas/rows,3317.3650115740743,11,25,2,29.0,122.0,0.0,0.0 +rubberband,0.918234975772985,2.62268885869139,0.214842324053143,https://salsa.debian.org/multimedia-team/rubberband, https://github.com/breakfastquay/rubberband.git,5683.900474537037,0,9,0,4.0,95.0,0.0,0.0 +arel,0.310658972557814,2.47463109703822,-0.21779483610281,https://salsa.debian.org/ruby-team/ruby-arel, https://github.com/rails/arel,3724.669027777778,28,165,0,149.0,506.0,0.0,0.0 +aruba,-1.36248515337412,0.743065431760748,-1.98539293413176,https://salsa.debian.org/ruby-team/ruby-aruba, https://github.com/cucumber/aruba.git,5041.539664351852,15,94,0,78.0,252.0,0.0,0.0 +ascii85gem,0.220682438911098,2.56872140292753,-0.209003065278562,https://salsa.debian.org/ruby-team/ruby-ascii85, https://github.com/datawraith/ascii85gem,5104.970185185185,3,5,0,5.0,5.0,0.0,0.0 +ruby-atomic,0.457757311957647,3.003545568227,-0.148860402089449,https://salsa.debian.org/ruby-team/ruby-atomic, https://github.com/headius/ruby-atomic,1459.8353125,0,15,2,11.0,70.0,0.0,0.0 +rcairo,0.158164567061363,1.80859599070589,-0.244958071363958,https://salsa.debian.org/ruby-team/ruby-cairo, https://github.com/rcairo/rcairo,5677.594305555555,5,14,0,12.0,60.0,0.0,0.0 +charlock_holmes,-0.27414687778017,2.01520035456465,-0.834403772991921,https://salsa.debian.org/ruby-team/ruby-charlock-holmes, https://github.com/brianmario/charlock_holmes,3398.828090277778,5,21,0,20.0,348.0,0.0,6.0 +childprocess,0.652622912536639,3.23319286308203,-0.0924023392956883,https://salsa.debian.org/ruby-team/ruby-childprocess, https://github.com/jarib/childprocess.git,4814.209652777778,16,34,0,43.0,160.0,0.0,1.0 +do,-1.00904402256637,0.617540968332533,-1.30029321205638,https://salsa.debian.org/ruby-team/ruby-dataobjects-postgres, https://github.com/datamapper/do,2417.1817939814814,23,80,0,57.0,110.0,0.0,14.0 +faye,-2.00693218272051,1.4374394085277,-2.90993526775194,https://salsa.debian.org/ruby-team/ruby-faye, https://github.com/faye/faye,4073.248483796296,5,46,0,33.0,166.0,0.0,8.0 +ffi-yajl,0.0311669559746006,2.34139322033609,-0.404647741092596,https://salsa.debian.org/ruby-team/ruby-ffi-yajl, https://github.com/chef/ffi-yajl.git,3568.588298611111,5,25,0,21.0,68.0,0.0,0.0 +flipper,-1.21253738932967,1.21489209769407,-1.85799545175152,https://salsa.debian.org/ruby-team/ruby-flipper, https://github.com/jnunemaker/flipper,4162.091701388889,31,105,1,108.0,284.0,0.0,0.0 +fog-libvirt,0.217863287846909,2.50351307596338,-0.236950089821332,https://salsa.debian.org/ruby-team/ruby-fog-libvirt, https://github.com/fog/fog-libvirt,3115.761516203704,9,33,0,29.0,79.0,0.0,0.0 +grape-entity,-0.541811296821899,2.00045621748763,-1.19901009991805,https://salsa.debian.org/ruby-team/ruby-grape-entity, https://github.com/intridea/grape-entity,3988.035358796296,43,59,0,76.0,303.0,0.0,0.0 +gruff,-1.42880636005629,1.00953687084435,-2.24425388199573,https://salsa.debian.org/ruby-team/ruby-gruff, https://github.com/topfunky/gruff,5638.625555555555,13,44,1,40.0,157.0,0.0,2.0 +http_parser.rb,0.185483539780022,2.30025907431261,-0.258298363804737,https://salsa.debian.org/ruby-team/ruby-http-parser.rb, https://github.com/tmm1/http_parser.rb.git,4794.161111111112,3,23,0,23.0,111.0,0.0,0.0 +httpclient,3.15602227822802,6.33967013332377,1.79331322235043,https://salsa.debian.org/ruby-team/ruby-httpclient, https://github.com/nahi/httpclient,4669.173564814815,7,81,0,65.0,355.0,0.0,2.0 +licensee,-0.55948107153302,1.99789361583985,-1.13384652936332,https://salsa.debian.org/ruby-team/ruby-licensee, https://github.com/licensee/licensee,3404.3053819444444,14,56,2,55.0,112.0,0.0,0.0 +loofah,0.283654649580742,2.33072355969229,-0.235889640246842,https://salsa.debian.org/ruby-team/ruby-loofah, https://github.com/flavorjones/loofah,5476.03337962963,22,39,1,49.0,244.0,0.0,2.0 +mail,0.569824391096844,2.94293194786905,-0.128185244140694,https://salsa.debian.org/ruby-team/ruby-mail, https://github.com/mikel/mail,5260.285740740741,90,197,6,216.0,80.0,0.0,16.0 +maruku,-0.216540430898513,2.43948015322271,-0.770076020372455,https://salsa.debian.org/ruby-team/ruby-maruku, https://github.com/bhollis/maruku,3523.0504282407405,0,23,2,16.0,132.0,0.0,0.0 +ruby-net-ldap,0.247373085030764,1.93903824820872,-0.292711252233112,https://salsa.debian.org/ruby-team/ruby-net-ldap, https://github.com/ruby-ldap/ruby-net-ldap.git,5396.769085648149,19,114,0,83.0,0.0,0.0,0.0 +nio4r,0.40656514695811,3.34025237171565,-0.350924625736781,https://salsa.debian.org/ruby-team/ruby-nio4r, https://github.com/socketry/nio4r,5508.923969907408,25,41,8,48.0,171.0,0.0,3.0 +nokogumbo,0.0754524159369966,3.17700900735038,-0.752017734490445,https://salsa.debian.org/ruby-team/ruby-nokogumbo, https://github.com/rubys/nokogumbo,3061.6749537037035,9,20,1,24.0,120.0,0.0,0.0 +omniauth-facebook,-0.441980618406242,2.42414527178039,-1.18102722181732,https://salsa.debian.org/ruby-team/ruby-omniauth-facebook, https://github.com/simi/omniauth-facebook,4035.138842592593,21,43,0,49.0,471.0,0.0,3.0 +ruby-prof,-0.194910751417617,1.33267203442195,-0.840733494398847,https://salsa.debian.org/ruby-team/ruby-prof, https://github.com/ruby-prof/ruby-prof,5272.258287037037,11,69,0,60.0,258.0,0.0,1.0 +pundit,-0.81828289247634,2.78819104516578,-1.78787902387636,https://salsa.debian.org/ruby-team/ruby-pundit, https://github.com/varvet/pundit,3993.962199074074,28,115,2,114.0,792.0,0.0,0.0 +rabl,-0.395350806776283,1.92981539670029,-1.123738466312,https://salsa.debian.org/ruby-team/ruby-rabl, https://github.com/nesquena/rabl,4283.3594907407405,15,107,3,97.0,589.0,0.0,65.0 +perfect-scrollbar,-0.374351450994704,3.36511536906709,-1.67154886221496,https://salsa.debian.org/ruby-team/ruby-rails-assets-perfect-scrollbar, https://github.com/mdbootstrap/perfect-scrollbar,4.933356481481481,1,3,0,2.0,327.0,0.0,0.0 +redis-store,-0.695028864407541,1.47032729523593,-1.25288555418833,https://salsa.debian.org/ruby-team/ruby-redis-store, https://github.com/redis-store/redis-store,5265.79619212963,10,85,1,66.0,392.0,0.0,0.0 +responders,-0.15330835598425,2.50289434539084,-0.950455381858559,https://salsa.debian.org/ruby-team/ruby-responders, https://github.com/heartcombo/responders/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +rest-client,0.862100138006452,3.06031048364358,0.07121209837491,https://salsa.debian.org/ruby-team/ruby-rest-client, https://github.com/rest-client/rest-client/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +sidekiq-cron,-0.460965442978789,1.89557658666716,-1.14176049181417,https://salsa.debian.org/ruby-team/ruby-sidekiq-cron, https://github.com/sidekiq-cron/sidekiq-cron,3762.236180555556,37,72,0,93.0,171.0,0.0,0.0 +sshkit,-0.0935961701361413,2.62044656197821,-0.913399959677309,https://salsa.debian.org/ruby-team/ruby-sshkit, https://github.com/capistrano/sshkit.git,3961.9651041666666,23,112,0,111.0,240.0,0.0,0.0 +state_machines,-0.862727506727865,0.738079157532498,-1.17169688542903,https://salsa.debian.org/ruby-team/ruby-state-machines, https://github.com/state-machines/state_machines,3342.349050925926,10,20,0,25.0,102.0,0.0,0.0 +virtus,-0.411418344093543,2.20061342245076,-1.06613131592634,https://salsa.debian.org/ruby-team/ruby-virtus, https://github.com/solnic/virtus.git,3718.9197800925926,2,63,0,54.0,322.0,0.0,2.0 +warden,-0.483453656332785,2.18850334520879,-1.14592743404215,https://salsa.debian.org/ruby-team/ruby-warden, https://github.com/hassox/warden,4887.532384259259,10,50,1,40.0,244.0,0.0,76.0 +websocket-driver-ruby,0.0321691446396087,2.32602763541323,-0.44016561045075,https://salsa.debian.org/ruby-team/ruby-websocket-driver, https://github.com/faye/websocket-driver-ruby,4307.723252314815,5,15,0,17.0,113.0,0.0,1.0 +safeclib,-1.46541924129083,0.986318726090318,-1.91892595175024,https://github.com/kilobyte/safeclib/tree/debian,https://github.com/kilobyte/safeclib,3855.424849537037,10,8,0,8.0,0.0,0.0,0.0 +SafeEyes,0.149015816941472,2.7053025272624,-0.630061457331699,https://salsa.debian.org/debian/safeeyes, https://github.com/slgobinath/SafeEyes.git,2228.7321180555555,169,36,0,134.0,329.0,0.0,1.0 +emacs-scala-mode,0.715851547017848,3.82621072464823,-0.398440121840251,https://salsa.debian.org/emacsen-team/scala-mode-el, https://github.com/hvesalai/emacs-scala-mode,3670.9045486111113,14,21,1,28.0,117.0,0.0,0.0 +scanmem,0.670925394719566,3.40388194703282,-0.241299981019016,https://salsa.debian.org/debian/scanmem, https://github.com/scanmem/scanmem.git,5016.30787037037,17,24,0,21.0,138.0,0.0,2.0 +scour,0.262403226060344,1.28944804880019,-0.0279418889182137,https://salsa.debian.org/debian/scour, https://github.com/codedread/scour.git,2869.134756944444,6,14,0,15.0,106.0,0.0,1.0 +shadow,0.837547936751078,0.972120546827943,0.718830912642781,https://salsa.debian.org/debian/shadow, https://github.com/shadow-maint/shadow,5786.8523958333335,108,113,0,162.0,238.0,0.0,0.0 +shadowsocks-libev,0.146155619802358,1.3775967683102,-0.342459202956474,https://salsa.debian.org/bridges-team/shadowsocks-libev, https://github.com/shadowsocks/shadowsocks-libev,3913.842800925926,124,129,0,189.0,77.0,0.0,0.0 +Sigil,-0.323308348587395,-0.116184004888836,-0.36947687564949,https://salsa.debian.org/debian/sigil, https://github.com/Sigil-Ebook/Sigil.git,5247.695578703704,9,52,0,33.0,366.0,0.0,0.0 +sigviewer,0.711761571633753,3.98949524360161,-0.306494447507988,https://salsa.debian.org/med-team/sigviewer, https://github.com/cbrnr/sigviewer.git,5107.777777777777,5,12,0,7.0,21.0,0.0,0.0 +silverjuke,0.103595622739308,3.11595746776886,-0.811889940249741,https://salsa.debian.org/debian/silverjuke, https://github.com/silverjuke/silverjuke.git,1877.2067592592596,5,8,0,8.0,31.0,0.0,0.0 +siridb-server,-3.63207643109074,-1.50415633583536,-4.26146957846803,https://salsa.debian.org/siridb-team/siridb-server, https://github.com/transceptor-technology/siridb-server.git,2764.489212962963,4,15,0,9.0,48.0,0.0,0.0 +sirikali,0.196083927078078,2.71706034314805,-0.540511922289614,https://github.com/davesteele/sirikali,https://github.com/davesteele/sirikali,2544.706099537037,10,19,0,17.0,1.0,0.0,0.0 +six,0.236432266853317,1.3996579195264,-0.0008290346827076,https://salsa.debian.org/python-team/packages/six, https://github.com/benjaminp/six,4717.273831018519,33,35,0,57.0,171.0,0.0,0.0 +slirp4netns,-0.378373829466941,1.42945025502983,-0.836749478446671,https://salsa.debian.org/debian/slirp4netns, https://github.com/rootless-containers/slirp4netns.git,1916.5166203703704,4,19,0,13.0,123.0,0.0,0.0 +slop,0.0256215961075906,2.45311354514318,-0.421261828310582,https://salsa.debian.org/debian/slop, https://github.com/naelstrof/slop,3674.1057638888888,8,37,0,33.0,147.0,0.0,0.0 +snapd-glib,0.445838997796278,2.31111804219363,-0.199812079793849,https://salsa.debian.org/debian-ayatana-team/snapd-glib, https://github.com/snapcore/snapd-glib,2535.747037037037,8,7,0,9.0,21.0,0.0,0.0 +snapper,0.129296198577568,1.09017049489567,-0.260152133283937,https://salsa.debian.org/debian/snapper, https://github.com/openSUSE/snapper.git,4746.816643518519,93,64,0,90.0,438.0,0.0,3.0 +app,-0.301338451833309,1.86709531843907,-1.06968262078306,https://github.com/socnetv/app/tree/master/,https://github.com/socnetv/app,5571.654675925926,1,6,1,3.0,59.0,0.0,0.0 +sogo,0.10209166671418,0.747413281918718,-0.235558272838706,https://salsa.debian.org/debian/sogo, https://github.com/inverse-inc/sogo.git,5788.112997685185,39,76,0,64.0,32.0,0.0,0.0 +Solaar,1.429922041869,3.86329499060927,0.424051977140571,https://salsa.debian.org/debian/solaar, https://github.com/pwr/Solaar.git,4403.731666666667,124,59,0,148.0,676.0,0.0,3.0 +sparqlwrapper,0.329621999659475,1.7050780354957,-0.145721053438597,https://salsa.debian.org/python-team/packages/sparql-wrapper-python, https://github.com/RDFLib/sparqlwrapper.git,3062.5503703703703,8,32,0,25.0,152.0,0.0,0.0 +libspatialindex,0.378346817539736,1.92195571516466,-0.146304498974042,https://salsa.debian.org/debian-gis-team/libspatialindex, https://github.com/libspatialindex/libspatialindex.git,5433.052118055555,20,25,0,34.0,104.0,0.0,5.0 +speechd,-1.10658923706591,-0.723077412570435,-1.16530086770019,https://salsa.debian.org/tts-team/speech-dispatcher, https://github.com/brailcom/speechd,5766.346284722223,67,19,0,53.0,120.0,0.0,0.0 +spyder-kernels,0.555849164092982,3.55619390632733,-0.191381956314294,https://salsa.debian.org/science-team/spyder-kernels, https://github.com/spyder-ide/spyder-kernels,1977.064375,17,27,1,31.0,102.0,0.0,0.0 +spyder-reports,-0.385959125205035,2.14277517505884,-1.10947796042442,https://salsa.debian.org/science-team/spyder-reports, https://github.com/spyder-ide/spyder-reports/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 +spyder-unittest,-0.361483755206695,2.64062718865038,-1.15320126676733,https://salsa.debian.org/science-team/spyder-unittest, https://github.com/spyder-ide/spyder-unittest.git,3668.976446759259,5,13,0,11.0,46.0,0.0,1.0 +squashfuse,0.310431919105569,3.2539784341741,-0.44046120680797,https://salsa.debian.org/sgmoore/squashfuse, https://github.com/vasi/squashfuse.git,4403.080740740741,10,20,0,23.0,78.0,0.0,0.0 +stk,0.161350986961681,0.635151894250557,-0.0757101643146169,https://salsa.debian.org/multimedia-team/stk, https://github.com/thestk/stk,5255.633298611111,6,33,2,23.0,67.0,0.0,0.0 +stumpwm,0.244744366061042,1.16892369336062,-0.266497312403179,https://salsa.debian.org/common-lisp-team/stumpwm, https://github.com/stumpwm/stumpwm.git,5783.58130787037,82,149,0,153.0,245.0,0.0,75.0 +suricata-update,-0.875566862243854,1.43351539555108,-1.31573448531461,https://salsa.debian.org/pkg-suricata-team/pkg-suricata-update, https://github.com/OISF/suricata-update,2073.188449074074,16,11,0,18.0,43.0,0.0,0.0 +syncthing,0.116551399825498,0.685220699884462,-0.109925509533538,https://salsa.debian.org/go-team/packages/syncthing, https://github.com/syncthing/syncthing.git,3650.0363310185194,277,155,0,304.0,478.0,0.0,52.0 +systemd,0.206981263276473,0.233535317681592,0.182347659621236,https://salsa.debian.org/systemd-team/systemd, https://github.com/systemd/systemd,5140.484525462963,2040,582,2,383.0,27.0,0.0,0.0 +taglib,0.636911281526059,1.17664097241677,0.319697620200093,https://salsa.debian.org/multimedia-team/taglib, https://github.com/taglib/taglib.git,5783.547962962963,42,108,0,120.0,230.0,0.0,0.0 +TCPDF,1.43620503068368,4.03650783735055,0.445692893073574,https://salsa.debian.org/phpmyadmin-team/tcpdf, https://github.com/tecnickcom/TCPDF,5278.855648148148,85,42,0,113.0,703.0,0.0,0.0 +tenace,0.597887409824028,2.57748271511221,-0.227459824540816,https://github.com/df7cb/tenace,https://github.com/df7cb/tenace,4952.623784722222,1,5,0,3.0,5.0,0.0,0.0 +tenshi,0.0367580557286976,2.66820756632001,-1.10944291002974,https://salsa.debian.org/debian/tenshi, https://github.com/f-secure-foundry/tenshi,3173.510578703704,3,9,0,8.0,10.0,0.0,0.0 +termbox,-0.332071725272558,1.77596898541166,-0.759186002019704,https://salsa.debian.org/debian/termbox, https://github.com/nsf/termbox.git,4364.220393518519,12,41,0,44.0,113.0,0.0,1.0 +thefuck,0.585395647883879,2.87730809158881,-0.22945139954812,https://salsa.debian.org/debian/thefuck, https://github.com/nvbn/thefuck.git,3035.171388888889,98,108,0,169.0,134.0,0.0,37.0 +tidy-html5,2.58506214231347,3.66271559825143,1.85867571563008,https://salsa.debian.org/debian/tidy-html5, https://github.com/htacg/tidy-html5,3722.5229050925927,18,85,3,79.0,135.0,0.0,2.0 +timeshift,0.0156315640585256,1.06811864928072,-0.301132204362499,https://salsa.debian.org/debian/timeshift, https://github.com/linuxmint/timeshift.git,3711.4258449074073,52,39,0,75.0,364.0,0.0,0.0 +tinymux,-0.358104556573467,1.21116943335798,-0.974126882100601,https://github.com/brazilofmux/tinymux,https://github.com/brazilofmux/tinymux,5573.2325925925925,10,7,0,5.0,12.0,0.0,0.0 +tinyows,-1.98511151844238,-0.212331690029963,-2.347873619432,https://salsa.debian.org/debian-gis-team/tinyows, https://github.com/mapserver/tinyows.git,4838.973368055556,4,22,0,8.0,43.0,0.0,2.0 +todoman,-0.633941656040399,1.01466560147069,-1.15564134757205,https://salsa.debian.org/python-team/packages/todoman, https://github.com/pimutils/todoman.git,3181.1360069444445,24,26,0,35.0,119.0,0.0,0.0 +todo.txt-cli,0.0577600851525939,2.76685230170656,-0.554622830248362,https://salsa.debian.org/debian/todotxt-cli/, https://github.com/todotxt/todo.txt-cli.git,5276.743842592593,43,48,0,54.0,14.0,0.0,144.0 +Tomb,-0.519440159582384,0.614700205390144,-0.853511595703441,https://salsa.debian.org/pkg-security-team/tomb, https://github.com/dyne/Tomb,4854.520347222222,29,55,3,55.0,38.0,0.0,11.0 +toolz,-0.0387707331718257,1.25079389482048,-0.32093010605156,https://salsa.debian.org/python-team/packages/toolz, https://github.com/pytoolz/toolz.git,3458.670486111111,19,61,0,63.0,243.0,0.0,0.0 +trash-cli,1.06684138530451,2.39764011651376,0.357979356353325,https://salsa.debian.org/debian/trash-cli, https://github.com/andreafrancia/trash-cli.git,5751.461631944445,18,35,0,41.0,247.0,0.0,0.0 +ttygif,-0.778474708141422,1.48512235508045,-1.29229074560786,https://salsa.debian.org/debian/ttygif, https://github.com/icholy/ttygif.git,3670.9607175925926,6,36,0,36.0,98.0,0.0,0.0 +tvdb_api,-0.533375297627363,2.09673545239005,-1.08109425650425,https://salsa.debian.org/python-team/packages/tvdb-api, https://github.com/dbr/tvdb_api.git,5264.897824074074,6,18,0,19.0,82.0,0.0,3.0 +ucblogo-code,0.551656527477274,2.14944337584563,-0.219713222671356,https://salsa.debian.org/debian/ucblogo, https://github.com/jrincayc/ucblogo-code.git,5543.044212962963,8,20,0,13.0,14.0,0.0,2.0 +ucimf,-2.75218812211195,-0.0969608973488465,-3.57333436547928,https://salsa.debian.org/input-method-team/ucimf-sunpinyin, https://github.com/matlinuxer2/ucimf,2036.6533564814813,0,12,0,6.0,6.0,0.0,2.0 +udevil,0.693950478906608,2.69290241163787,-0.0993242318069802,https://github.com/mati75/udevil.git,https://github.com/mati75/udevil.git,2023.2994675925927,0,4,0,3.0,5.0,0.0,0.0 +udiskie,-0.303120067863482,0.358049612944352,-0.443415750379262,https://salsa.debian.org/debian/udiskie, https://github.com/coldfix/udiskie.git,4957.808217592593,8,28,0,24.0,131.0,0.0,18.0 +uftrace,-0.131657265816516,1.55514517845974,-0.754379279470194,https://salsa.debian.org/debian/uftrace, https://github.com/namhyung/uftrace,3614.265717592592,76,47,1,88.0,162.0,0.0,28.0 +ultrajson,-0.108236142708293,1.85161089732626,-0.619527986386755,https://salsa.debian.org/python-team/packages/ujson, https://github.com/ultrajson/ultrajson,4669.042858796296,23,77,1,71.0,597.0,0.0,0.0 +ulfius,-0.458742321847904,2.08972839714509,-1.01536367073215,https://salsa.debian.org/debian-iot-team/oauth2/ulfius.git, https://github.com/babelouest/ulfius,2934.047835648148,8,24,0,21.0,111.0,0.0,0.0 +umockdev,0.131802460657025,1.53535382972005,-0.476066381561041,https://salsa.debian.org/debian/umockdev, https://github.com/martinpitt/umockdev,4165.230092592593,25,7,1,22.0,93.0,0.0,2.0 +uncertainties,0.719641640370187,3.29605667037932,-0.218762785384588,https://salsa.debian.org/debian/python-uncertainties, https://github.com/lebigot/uncertainties.git,4894.045891203704,5,16,0,14.0,97.0,0.0,0.0 +uriparser,0.789373414154612,2.19271181736327,0.201592645076251,https://jff.email/cgit/uriparser.git, https://github.com/uriparser/uriparser.git,5735.865532407407,19,13,0,27.0,75.0,0.0,0.0 +urlscan,1.3847799551226,3.38941091988752,0.382608734670069,https://salsa.debian.org/debian/urlscan, https://github.com/firecat53/urlscan,5177.948009259259,10,13,0,16.0,29.0,0.0,0.0 +debian-urweb,-1.89586621324589,-0.570523369804673,-2.36517696157143,https://github.com/urweb/debian-urweb,https://github.com/urweb/debian-urweb,4447.221539351852,3,56,0,38.0,0.0,0.0,0.0 +urwid,0.555397851954473,1.39105322984086,0.115376558887944,https://salsa.debian.org/python-team/packages/urwid, https://github.com/urwid/urwid.git,5781.652222222222,48,112,0,122.0,409.0,0.0,43.0 +use-package,-0.264934557891152,2.07260727757563,-0.69435255362102,https://salsa.debian.org/emacsen-team/use-package, https://github.com/jwiegley/use-package.git,3965.777685185185,21,110,0,103.0,525.0,0.0,1.0 +usepackage,-0.97958224407164,1.52805547431667,-1.75977269436821,https://salsa.debian.org/debian/usepackage, https://github.com/jonathanhogg/usepackage.git,3462.962337962963,0,2,0,1.0,2.0,0.0,0.0 +utf8proc,0.0898643883809924,0.803464856892609,-0.0749520007022019,https://salsa.debian.org/julia-team/utf8proc, https://github.com/JuliaStrings/utf8proc,3420.271493055556,31,18,0,42.0,143.0,0.0,0.0 +utidylib,0.431774858776101,1.49340949551563,0.028883751052801,https://salsa.debian.org/python-team/packages/utidylib, https://github.com/nijel/utidylib.git,5086.384525462963,8,4,0,8.0,13.0,0.0,0.0 +uTox,0.381321219098594,3.91894124338963,-0.561164523552396,https://salsa.debian.org/yangfl-guest/uTox, https://github.com/uTox/uTox.git,2920.6360069444445,25,159,0,109.0,132.0,0.0,0.0 +variety,-0.0519547059832828,0.90567764048997,-0.340837093516861,https://salsa.debian.org/jlu-guest/variety, https://github.com/varietywalls/variety.git,4151.289224537037,39,13,0,46.0,234.0,0.0,0.0 +vcrpy,-0.572001835712735,0.836044556932713,-0.929665685959647,https://salsa.debian.org/python-team/packages/vcr.py, https://github.com/kevin1024/vcrpy,4215.454189814815,65,92,2,114.0,547.0,0.0,0.0 +vdirsyncer,0.384354624689491,2.37349353862651,-0.296882334954882,https://salsa.debian.org/python-team/packages/vdirsyncer, https://github.com/pimutils/vdirsyncer,3574.7769560185184,36,34,3,61.0,521.0,0.0,0.0 +vifm,0.590788082058191,1.84167994191702,-0.0079146509705635,https://salsa.debian.org/debian/vifm, https://github.com/vifm/vifm.git,5419.5621875,29,42,0,55.0,113.0,0.0,0.0 +vim-snipmate,-0.116572717140896,2.3205562099979,-0.668019296747243,https://salsa.debian.org/debian/vim-snipmate, https://github.com/garbas/vim-snipmate.git,5137.284826388889,35,58,0,59.0,323.0,0.0,0.0 +vim-snippets,0.284398153213413,3.63847090473935,-0.458271240949462,https://salsa.debian.org/debian/vim-snippets, https://github.com/honza/vim-snippets.git,4556.771770833333,295,399,0,367.0,775.0,0.0,5.0 +vine,0.0090321357145147,2.39078861911377,-0.45113111473157,https://salsa.debian.org/python-team/packages/vine, https://github.com/celery/vine,2839.858310185185,19,6,1,24.0,22.0,0.0,0.0 +virt-manager,1.48542145426514,1.93187998181028,1.13233443238518,https://salsa.debian.org/libvirt-team/virt-manager, https://github.com/virt-manager/virt-manager,5726.728657407408,246,65,0,215.0,211.0,0.0,1.0 +virtualenv-clone,0.578602468279995,2.77082120867057,-0.115751121187041,https://salsa.debian.org/debian/virtualenv-clone, https://github.com/edwardgeorge/virtualenv-clone,3835.1669675925928,11,10,0,18.0,63.0,0.0,0.0 +virtuoso-opensource,1.69839747071231,3.00302489720183,0.954025041428312,https://salsa.debian.org/science-team/virtuoso-opensource, https://github.com/openlink/virtuoso-opensource,5789.126331018519,14,14,0,16.0,594.0,0.0,0.0 +vis,-0.114611962348205,2.32530079944326,-0.828150147708027,https://salsa.debian.org/debian/vis, https://github.com/martanne/vis,3439.6246875,66,84,0,109.0,337.0,0.0,70.0 +vit,0.0632096362254321,2.19418889832411,-0.575356221444179,https://salsa.debian.org/tasktools-team/vit, https://github.com/scottkosty/vit.git,3775.4418171296297,6,22,0,22.0,122.0,0.0,0.0 +vitetris,-0.324046869699416,1.25227578653804,-0.610507528658787,https://salsa.debian.org/debian/vitetris, https://github.com/vicgeralds/vitetris,918.6513310185184,0,4,0,2.0,24.0,0.0,0.0 +vlsub-deb,0.381592360955553,2.14539147499431,-0.187705052723262,https://github.com/simongareste/vlsub-deb,https://github.com/simongareste/vlsub-deb,2.1037731481481483,1,2,0,1.0,1.0,0.0,0.0 +VMDK-stream-converter,-0.616171347781387,2.03715813958988,-1.40038375477191,https://salsa.debian.org/python-team/packages/vmdk-stream-converter, https://github.com/imcleod/VMDK-stream-converter.git,2430.6944328703703,1,3,0,2.0,12.0,0.0,0.0 +emacs-w3m,0.0908536375899957,0.591510526314486,-0.17944561094957,https://salsa.debian.org/debian/w3m-el, https://github.com/emacs-w3m/emacs-w3m,5732.875613425926,8,17,0,19.0,38.0,0.0,2.0 +wabt,-0.215021509071835,1.53413133705831,-0.580080174118336,https://salsa.debian.org/debian/wabt, https://github.com/WebAssembly/wabt,3027.9831828703705,131,19,0,126.0,144.0,0.0,0.0 +websocket-client,0.528626147884189,1.91779650029756,0.0141068119268952,https://salsa.debian.org/python-team/packages/websocket-client, https://github.com/websocket-client/websocket-client,4734.967708333334,73,159,1,187.0,707.0,0.0,5.0 +whipper,-1.00398472018607,-0.683619117439365,-1.05147392210145,https://salsa.debian.org/python-team/packages/whipper, https://github.com/whipper-team/whipper.git,4941.070474537037,23,44,0,49.0,219.0,0.0,0.0 +whois,0.0221996534200785,0.0551054976679655,0.0006342142927265,https://github.com/rfc1036/whois,https://github.com/rfc1036/whois,3907.4041550925926,44,4,0,40.0,119.0,0.0,0.0 +xhtml2pdf,0.31979327115304,2.76807642207541,-0.633079702057243,https://salsa.debian.org/python-team/packages/xhtml2pdf, https://github.com/xhtml2pdf/xhtml2pdf,4912.199826388889,44,134,0,133.0,766.0,0.0,0.0 +xl2tpd,1.75211845757271,3.55517088281134,0.815289827436144,https://github.com/xelerance/xl2tpd,https://github.com/xelerance/xl2tpd,5585.42306712963,26,42,0,43.0,281.0,0.0,1.0 +xqf,0.408563556878546,1.72223408414337,-0.290956621728465,https://salsa.debian.org/debian/xqf, https://github.com/XQF/xqf,4749.099050925926,9,17,1,18.0,26.0,0.0,3.0 +yank,-0.486981797429971,0.321536388587433,-0.872965607135782,https://salsa.debian.org/debian/yank, https://github.com/mptre/yank,2596.2438310185184,12,9,0,15.0,63.0,0.0,0.0 +yapf,-0.0722503180851905,0.997143004238659,-0.509532828712209,https://salsa.debian.org/python-team/packages/yapf, https://github.com/google/yapf.git,3193.809224537037,72,102,0,139.0,61.0,7.0,2.0 +yara,-0.105583037284771,0.102384022920219,-0.165940329485104,https://salsa.debian.org/pkg-security-team/yara, https://github.com/VirusTotal/yara.git,5553.008252314815,173,61,0,186.0,560.0,0.0,1.0 +yotta,-3.01359857305743,-1.26445581786377,-3.32872420631888,https://salsa.debian.org/python-team/packages/yotta, https://github.com/ARMmbed/yotta.git,2536.0050925925925,9,55,0,36.0,157.0,0.0,3.0 +youtube-dl,0.25633398444058,0.432077804875997,0.127697632849977,https://salsa.debian.org/debian/youtube-dl, https://github.com/ytdl-org/youtube-dl.git,5615.23136574074,601,455,0,388.0,41.0,0.0,0.0 +yquake2,0.0785847680516405,1.95970971645533,-0.456273436433834,https://salsa.debian.org/games-team/yquake2, https://github.com/yquake2/yquake2,5404.035983796296,28,60,0,65.0,122.0,0.0,2.0 +zzz-to-char,-1.007512241683,0.849707901616413,-1.4231838868665,https://salsa.debian.org/emacsen-team/zzz-to-char, https://github.com/mrkkrp/zzz-to-char.git,3016.886180555556,1,3,0,2.0,4.0,0.0,0.0 diff --git a/final_data/.DS_Store b/final_data/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/final_data/.DS_Store differ diff --git a/final_data/deb_octo_data.csv b/final_data/deb_octo_data.csv index be047cb..31c57a5 100644 --- a/final_data/deb_octo_data.csv +++ b/final_data/deb_octo_data.csv @@ -1,3843 +1,3061 @@ -project_name,underproduction_mean,underproduction_low,underproduction_high,debian_vcs_link,upstream_vcs_link,age_of_project,contributors,collaborators,milestone_count,api_contrib_count,issue_contrib_count,file_contrib_count,wiki_contrib_count -0xFFFF,-0.510168673014387,1.45279943111322,-1.00117086618243,https://salsa.debian.org/debian/0xffff, https://github.com/pali/0xFFFF,5557.842777777778,3,11,0,6.0,9.0,0.0,0.0 -3270font,0.795626592579791,4.35746269027599,-0.214217071018684,https://github.com/kilobyte/3270font/tree/debian,https://github.com/kilobyte/3270font,3596.6082060185186,6,15,0,9.0,3.0,0.0,0.0 -4pane-debian-dir,-0.242627942451996,2.29989480702703,-0.819422099435506,https://github.com/dghart/4pane-debian-dir/tree/master/,https://github.com/dghart/4pane-debian-dir,2236.685972222222,0,2,0,1.0,2.0,0.0,0.0 -4ti2,0.476440833737227,3.0285400273249,-0.219194365566797,https://salsa.debian.org/math-team/4ti2, https://github.com/4ti2/4ti2.git,5656.560381944444,3,11,0,6.0,18.0,0.0,0.0 -6tunnel,-0.563131581951037,0.346490727983096,-0.839859948356692,https://salsa.debian.org/debian/6tunnel, https://github.com/wojtekka/6tunnel,2673.0241203703704,1,7,0,5.0,18.0,0.0,1.0 -a2jmidid,0.359466917341911,1.94843440395128,-0.156227733435732,https://salsa.debian.org/multimedia-team/a2jmidid, https://github.com/linuxaudio/a2jmidid.git,4551.794791666666,8,8,0,12.0,23.0,0.0,0.0 -abGate,0.170683343407432,2.31288851659804,-0.444716742427934,https://salsa.debian.org/multimedia-team/abgate, https://github.com/antanasbruzas/abGate.git,1677.578622685185,2,8,0,4.0,5.0,0.0,0.0 -link,0.24190624984189,3.45214605429943,-0.714154937378648,https://salsa.debian.org/multimedia-team/ableton-link, https://github.com/Ableton/link.git,2835.8410648148147,20,10,0,19.0,81.0,0.0,0.0 -acme-tiny,-0.0997740414324175,0.698285251666775,-0.357256083455663,https://salsa.debian.org/letsencrypt-team/acme-tiny, https://github.com/diafygi/acme-tiny.git,2161.2252314814814,7,34,0,36.0,354.0,0.0,0.0 -acpi_call,0.105692079347462,1.31966601416273,-0.230983048552108,https://salsa.debian.org/moonsweep/acpi-call, https://github.com/nix-community/acpi_call.git,4711.2498958333335,14,26,0,29.0,24.0,0.0,0.0 -adapta-kde,-0.0885623802323334,2.08899063570217,-0.531363678282838,https://salsa.debian.org/debian/adapta-kde, https://github.com/PapirusDevelopmentTeam/adapta-kde.git,636.9053819444445,2,5,0,3.0,0.0,0.0,0.0 -admesh,0.126087687547782,1.81004815315567,-0.381631878995558,https://salsa.debian.org/science-team/admesh, https://github.com/admesh/admesh,3319.1463078703705,15,9,1,20.0,42.0,0.0,0.0 -ADMS,-0.674637302613584,2.08369083985849,-1.26384529492003,https://salsa.debian.org/science-team/adms, https://github.com/Qucs/ADMS.git,3397.3394444444443,6,10,0,12.0,44.0,0.0,3.0 -ADOL-C,-0.218347665039878,0.298998807070195,-0.420097301634624,https://salsa.debian.org/science-team/adolc, https://github.com/coin-or/ADOL-C,5292.595347222222,11,44,0,11.0,43.0,0.0,2.0 -taplib,-0.160732025116376,2.2507776055854,-0.654429732393435,https://salsa.debian.org/debian-astro-team/adql, https://github.com/gmantele/taplib.git,3533.9449074074078,2,12,0,7.0,26.0,0.0,0.0 -adwaita-qt,0.20520102503331,2.35604851930854,-0.287329460126735,https://salsa.debian.org/debian/adwaita-qt, https://github.com/FedoraQt/adwaita-qt.git,3324.8509953703706,3,11,0,9.0,135.0,0.0,0.0 -aeskulap,-0.0079946863672042,0.736060248382803,-0.280025211041137,https://salsa.debian.org/med-team/aeskulap, https://github.com/pipelka/aeskulap.git,0.1217013888888888,0,2,0,2.0,3.0,0.0,0.0 -afew,-0.174094467011175,3.09143638082015,-1.08293165491561,https://salsa.debian.org/python-team/packages/afew, https://github.com/afewmail/afew,4444.563113425926,14,62,1,59.0,188.0,0.0,0.0 -AFFLIBv3,0.485538307170435,1.29662314566269,0.0866885422979764,https://salsa.debian.org/pkg-security-team/afflib, https://github.com/sshock/AFFLIBv3,3923.2419675925926,1,18,0,14.0,23.0,0.0,0.0 -afio,0.747197510388286,2.0817065145595,0.0678453147004074,https://salsa.debian.org/debian/afio, https://github.com/kholtman/afio,3009.1574652777776,0,6,0,4.0,8.0,0.0,0.0 -AFLplusplus,-0.686637531101834,2.56987917132519,-1.47664664720389,https://salsa.debian.org/pkg-security-team/aflplusplus, https://github.com/AFLplusplus/AFLplusplus.git,1658.7534375,94,190,0,201.0,0.0,0.0,0.0 -aggdraw,-1.07382835714099,1.08967225466761,-1.53119433014289,https://salsa.debian.org/debian-gis-team/aggdraw, https://github.com/pytroll/aggdraw,4403.477824074074,4,15,2,15.0,48.0,0.0,0.0 -aha,-0.0329000286867077,2.2809487303377,-0.533748136594285,https://salsa.debian.org/debian/aha, https://github.com/theZiz/aha.git,3422.3746180555554,1,26,0,18.0,0.0,0.0,1.0 -aiodns,0.165682622787304,1.9021756707542,-0.278362239529697,https://salsa.debian.org/python-team/packages/aiodns, https://github.com/saghul/aiodns.git,3490.347627314815,13,17,0,27.0,96.0,0.0,0.0 -aioprocessing,-1.81061727232512,-0.403150642885575,-2.07004751938444,https://github.com/davesteele/aioprocessing,https://github.com/davesteele/aioprocessing,3054.801087962963,3,13,0,8.0,1.0,0.0,0.0 -airspyone_host,0.135032826004998,1.76380044815631,-0.226663426706937,https://salsa.debian.org/bottoms/pkg-airspy-host, https://github.com/airspy/airspyone_host.git,3592.9147685185185,9,15,0,21.0,60.0,0.0,6.0 -airspyhf,0.427779244708739,3.1863173208831,-0.243105119199454,https://salsa.debian.org/debian-hamradio-team/airspyhf, https://github.com/airspy/airspyhf.git,2334.5221527777776,3,13,0,13.0,36.0,0.0,0.0 -aiscm,-2.12660277467281,-0.902299849194399,-2.44827575241459,https://github.com/wedesoft/aiscm,https://github.com/wedesoft/aiscm,3606.191886574074,0,8,0,3.0,7.0,0.0,0.0 -alabaster,1.58400342307142,5.01808713483245,0.375411668055358,https://github.com/jbouse-debian/alabaster,https://github.com/jbouse-debian/alabaster,3086.3917592592597,1,6,0,4.0,4.0,0.0,0.0 -amavisd-milter,0.615386064993919,3.58791746330739,-0.470593396980749,https://salsa.debian.org/debian/amavisd-milter, https://github.com/prehor/amavisd-milter,5582.939282407408,1,5,0,3.0,7.0,0.0,0.0 -amazon-ecr-credential-helper,-1.29350179960878,1.33757148943728,-1.88556025790644,https://github.com/awslabs/amazon-ecr-credential-helper/tree/debian,https://github.com/awslabs/amazon-ecr-credential-helper,2759.79707175926,31,49,1,56.0,371.0,0.0,0.0 -amora,-0.638598553710922,1.53381287298563,-1.33733542687029,https://github.com/amora/amora/tree/master/amora-server,https://github.com/amora/amora,4404.234166666667,0,11,0,6.0,5.0,0.0,0.0 -amsynth,0.330636481205025,1.22096174668993,-0.126935944721445,https://salsa.debian.org/multimedia-team/amsynth, https://github.com/nixxcode/amsynth.git ,5332.927199074074,11,24,0,21.0,100.0,0.0,3.0 -amule,0.483943008568694,0.687632642276388,0.323873644784891,https://salsa.debian.org/debian/amule, https://github.com/amule-project/amule.git,5047.608055555555,11,25,0,16.0,46.0,0.0,0.0 -amule-emc,-0.35842492549173,1.85783039290765,-0.805888050424067,https://salsa.debian.org/morph/amule-emc, https://github.com/palopezv/amule-emc,2735.137662037037,0,2,0,0.0,1.0,0.0,0.0 -analog-ce,0.310010033709121,0.630895138146135,0.112953472819103,https://salsa.debian.org/debian/analog, https://github.com/c-amie/analog-ce.git,798.2990509259259,2,1,0,1.0,4.0,0.0,0.0 -anfo,-0.516434387853255,1.11412287457208,-0.885801240207339,https://salsa.debian.org/med-team/anfo, https://github.com/udo-stenzel/anfo,2083.773831018518,0,5,0,1.0,1.0,0.0,1.0 -anomaly,-2.69792324322731,-0.929443293100317,-3.01576616380581,https://github.com/mogaal/anomaly,https://github.com/mogaal/anomaly,224.8161226851852,0,2,0,1.0,2.0,0.0,0.0 -anosql,-1.75319624841393,0.617887353067759,-2.32130372860723,https://salsa.debian.org/python-team/packages/anosql, https://github.com/honza/anosql,2207.993252314815,1,18,0,12.0,24.0,0.0,0.0 -ansible-lint,0.211320028568518,2.3970134544815,-0.419254984826276,https://salsa.debian.org/python-team/packages/ansible-lint, https://github.com/ansible/ansible-lint,3772.125497685185,239,77,4,263.0,0.0,0.0,0.0 -antpm,-0.425797777129549,1.24994179184445,-0.909726437737696,https://salsa.debian.org/debian/antpm, https://github.com/ralovich/antpm,5246.650289351852,2,16,0,6.0,4.0,0.0,0.0 -anypaper,-0.836678133184714,1.82939574661697,-1.52533132104935,https://github.com/mogaal/anypaper,https://github.com/mogaal/anypaper,358.82306712962964,0,1,0,1.0,0.0,0.0,0.0 -aoeui,-1.57537450782922,-0.101833059663743,-2.0145689051822,https://salsa.debian.org/debian/aoeui, https://github.com/pklausler/aoeui.git,0.0311342592592592,0,4,0,1.0,2.0,0.0,0.0 -apachetop,-0.143396865464015,0.138479110564189,-0.243618701858805,https://salsa.debian.org/debian/apachetop, https://github.com/tessus/apachetop.git,4171.428784722222,1,5,0,3.0,11.0,0.0,0.0 -apel,-0.169991167552123,0.0467119456793215,-0.250388459902794,https://salsa.debian.org/debian/apel, https://github.com/wanderlust/apel,5064.915416666667,2,8,0,5.0,0.0,0.0,0.0 -apipkg,0.184852309301291,2.33864121667993,-0.297646362982771,https://salsa.debian.org/python-team/packages/apipkg, https://github.com/pytest-dev/apipkg,4796.353657407408,4,14,0,15.0,32.0,0.0,0.0 -aplpy,-0.0173305787238414,1.63947414572158,-0.5266587064989,https://salsa.debian.org/debian-astro-team/aplpy, https://github.com/aplpy/aplpy.git,4761.81462962963,3,44,0,33.0,0.0,0.0,1.0 -appdirs,0.345827763928743,1.95777273592346,-0.1122252660673,https://salsa.debian.org/python-team/packages/appdirs, https://github.com/ActiveState/appdirs.git,4580.797060185185,5,36,0,28.0,143.0,0.0,0.0 -appstream-generator,-1.13327130705794,-0.106054630060675,-1.48245214164576,https://salsa.debian.org/pkgutopia-team/appstream-generator, https://github.com/ximion/appstream-generator,2846.9885185185185,14,5,0,14.0,47.0,0.0,0.0 -apriltag,-1.11792448520614,1.09172581797555,-1.60478369927801,https://salsa.debian.org/science-team/apriltag, https://github.com/AprilRobotics/apriltag.git,1884.050208333333,21,28,0,42.0,0.0,0.0,0.0 -aprsdigi,0.178115776781859,2.74040042620765,-0.734339569554546,https://salsa.debian.org/debian-hamradio-team/aprsdigi, https://github.com/n2ygk/aprsdigi.git,5178.246157407408,2,9,0,4.0,7.0,0.0,0.0 -aprx,-0.270432687731495,2.12334679437291,-0.928014463668959,https://salsa.debian.org/debian-hamradio-team/aprx, https://github.com/PhirePhly/aprx,4964.077986111111,6,4,1,7.0,43.0,0.0,0.0 -apt-forktracer,0.0547352043403831,1.11225907504004,-0.240127558405969,https://github.com/porridge/apt-forktracer,https://github.com/porridge/apt-forktracer,5457.924699074074,1,3,0,2.0,1.0,0.0,0.0 -apt-offline,0.768191027819902,1.80772812578453,0.14873991524389,https://github.com/rickysarraf/apt-offline,https://github.com/rickysarraf/apt-offline,5588.93,4,18,3,12.0,62.0,0.0,2.0 -apt-venv,0.598527814932702,4.8192892934729,-0.729186428346901,https://salsa.debian.org/debian/apt-venv, https://github.com/LeoIannacone/apt-venv,1672.1250694444443,0,3,0,1.0,7.0,0.0,0.0 -aptitude-robot,0.0330441367843519,2.69876434953211,-0.675886625136312,https://github.com/elmar/aptitude-robot,https://github.com/elmar/aptitude-robot,3822.3247685185183,3,7,1,6.0,9.0,0.0,0.0 -apulse-debian,-0.17717245694643,1.29973697966089,-0.457689776114603,https://github.com/exaexa/apulse-debian,https://github.com/exaexa/apulse-debian,2693.7106712962964,2,11,0,9.0,2.0,0.0,0.0 -apvlv,0.802618607627995,2.49129268373325,-0.0110446925998544,https://salsa.debian.org/debian/apvlv, https://github.com/naihe2010/apvlv,4571.194467592592,1,28,0,18.0,92.0,0.0,0.0 -arachne-pnr,-0.239398811946727,0.905582303267077,-0.512849948602523,https://salsa.debian.org/science-team/arachne-pnr, https://github.com/cseed/arachne-pnr.git,1523.5826388888888,1,29,0,24.0,90.0,0.0,0.0 -ArbiterJS,-0.937225020502237,1.30941715563241,-1.36792845588423,https://salsa.debian.org/js-team/arbiterjs, https://github.com/ArbiterJS/ArbiterJS,777.6784722222222,0,1,0,0.0,0.0,0.0,0.0 -arc,1.00343051924479,2.95692526003554,0.170462970292605,https://git.hadrons.org/cgit/debian/pkgs/arc.git, https://github.com/ani6al/arc,0.1011921296296296,1,1,0,1.0,0.0,0.0,0.0 -arc-theme,0.0557512099432434,0.947010638316818,-0.178866228103829,https://github.com/UbuntuBudgie/arc-theme/tree/debian,https://github.com/UbuntuBudgie/arc-theme,2773.5425578703703,36,30,0,2.0,2.0,0.0,0.0 -arch-test,0.0607618911495027,0.902121307048674,-0.111650473265456,https://github.com/kilobyte/arch-test/tree/debian,https://github.com/kilobyte/arch-test,2721.055891203704,2,7,0,6.0,10.0,0.0,0.0 -archmage,-0.576675011074068,-0.303765149491576,-0.66643977901654,https://salsa.debian.org/python-team/packages/archmage, https://github.com/dottedmag/archmage,4875.184641203704,1,4,0,3.0,16.0,0.0,0.0 -arcp-py,-5.04003096550869,-2.68378015115337,-5.48022562431772,https://salsa.debian.org/python-team/packages/arcp, https://github.com/stain/arcp-py.git,744.5613194444444,0,3,0,2.0,4.0,0.0,0.0 -ardentryst,1.6336595560978,4.79019636159861,0.411496119890012,https://salsa.debian.org/games-team/ardentryst, https://github.com/ardentryst/ardentryst,3087.714386574074,4,6,0,6.0,7.0,0.0,0.0 -arename,-0.775437519802333,0.964651401264811,-1.13021327762464,https://salsa.debian.org/perl-team/modules/packages/arename, https://github.com/ft/arename.git,5509.574097222222,2,1,0,3.0,3.0,0.0,0.0 -phc-winner-argon2,0.743835667031226,2.53001733258646,0.120353018604403,https://salsa.debian.org/pkg-security-team/argon2, https://github.com/P-H-C/phc-winner-argon2,2090.997083333333,21,70,0,62.0,101.0,0.0,0.0 -aif,-0.0994853604563674,0.238247100664681,-0.28857380307344,https://salsa.debian.org/pkg-security-team/arno-iptables-firewall, https://github.com/arno-iptables-firewall/aif.git,5173.18931712963,1,13,0,3.0,50.0,0.0,0.0 -arp-scan,0.797385402380103,2.15787074804071,0.191351546468569,https://salsa.debian.org/pkg-security-team/arp-scan, https://github.com/royhills/arp-scan,5689.268958333333,1,16,0,11.0,61.0,0.0,1.0 -arpack-ng,0.383731858572043,0.90281659714996,0.109037111073968,https://salsa.debian.org/science-team/arpack, https://github.com/opencollab/arpack-ng.git,4374.647488425926,45,30,0,53.0,0.0,0.0,0.0 -arping,0.530645087037964,1.29700118051615,0.131538230952086,https://salsa.debian.org/debian/arping, https://github.com/ThomasHabets/arping,5640.3308564814815,6,8,1,10.0,48.0,0.0,0.0 -assess,-1.40003217092266,1.13321839319326,-2.02785078876853,https://salsa.debian.org/emacsen-team/assess-el, https://github.com/phillord/assess.git,2948.009340277778,0,8,0,6.0,12.0,0.0,0.0 -astLib,-0.495336351891529,0.608015445387811,-0.672906049388893,https://salsa.debian.org/debian-astro-team/astlib, https://github.com/mattyowl/astLib.git,2666.6349305555555,0,4,0,2.0,5.0,0.0,0.0 -astromenace,-0.408368489260551,0.580436103347323,-0.617588634321928,https://salsa.debian.org/games-team/astromenace, https://github.com/viewizard/astromenace.git,5567.492789351852,5,4,0,7.0,21.0,0.0,0.0 -astropy-healpix,-0.49444740252525,0.228063170215548,-0.722061408568394,https://salsa.debian.org/debian-astro-team/astropy-healpix, https://github.com/astropy/astropy-healpix,2653.9758333333334,3,14,5,12.0,33.0,0.0,2.0 -atig,-1.86484932436433,0.279641993042784,-2.4212366268619,https://salsa.debian.org/ruby-team/atig, https://github.com/atig/atig,4572.51880787037,2,14,1,10.0,17.0,0.0,0.0 -atlas-cpp,0.0341726982762952,1.17604381513103,-0.472138155533536,https://salsa.debian.org/games-team/atlas-cpp, https://github.com/worldforge/atlas-cpp,5588.922164351852,1,7,0,7.0,9.0,0.0,0.0 -audacious-plugins,1.72247171834969,2.52845544067147,1.16381708545179,https://salsa.debian.org/multimedia-team/audacious-plugins, https://github.com/audacious-media-player/audacious-plugins,5769.387013888889,19,100,0,83.0,0.0,0.0,0.0 -audiofile,0.422362872962016,1.13708828319636,0.0919717084661777,https://salsa.debian.org/multimedia-team/audiofile, https://github.com/mpruett/audiofile,1573.8945023148149,10,2,0,8.0,60.0,0.0,0.0 -austin,-1.98858852892086,0.974958297295704,-2.7198737393518,https://github.com/P403n1x87/austin,https://github.com/P403n1x87/austin,1837.728599537037,4,7,8,7.0,31.0,0.0,1.0 -autocutsel-debian,0.179784385400598,2.4764961712794,-0.387389100269758,https://github.com/elmar/autocutsel-debian,https://github.com/elmar/autocutsel-debian,3741.755243055556,3,8,0,7.0,1.0,0.0,0.0 -autolog,-0.458646695482971,0.523863618104121,-1.08434604225924,https://salsa.debian.org/pkg-security-team/autolog, https://github.com/JKDingwall/autolog.git,1891.041099537037,4,11,0,5.0,2.0,0.0,0.0 -automx-debian,-0.602057717962991,1.66065748723862,-1.37814875072612,https://github.com/wreiner/automx-debian.git,https://github.com/wreiner/automx-debian.git,38.18844907407407,1,1,0,1.0,0.0,0.0,0.0 -autopostgresqlbackup,0.0717331465361871,1.17795098215516,-0.397378227547243,https://salsa.debian.org/kolter/autopostgresqlbackup, https://github.com/k0lter/autopostgresqlbackup,1670.5722222222223,8,3,0,6.0,19.0,0.0,0.0 -autorenamer,-0.387619242637331,1.62524040114515,-0.886762447634072,https://github.com/porridge/autorenamer,https://github.com/porridge/autorenamer,3637.0090277777776,4,1,0,1.0,3.0,0.0,0.0 -averell,-3.39170600349659,-0.26243257747773,-4.23121536245205,https://github.com/jeanparpaillon/averell,https://github.com/jeanparpaillon/averell,585.8797453703704,0,1,0,0.0,2.0,0.0,0.0 -pkg-avr-evtd,0.755271395491288,5.63934271407374,-0.829494080541009,https://github.com/rbrito/pkg-avr-evtd,https://github.com/rbrito/pkg-avr-evtd,3784.563078703704,0,1,0,0.0,1.0,0.0,0.0 -awesfx,0.870533101226705,2.21630178301874,0.156143202155603,https://salsa.debian.org/multimedia-team/awesfx, https://github.com/tiwai/awesfx.git,1324.8292592592593,0,1,0,1.0,2.0,0.0,0.0 -biber,0.0255972490490973,0.397529493523627,-0.113970940798544,https://github.com/debian-tex/biber,https://github.com/debian-tex/biber,5232.948425925926,2,17,0,7.0,1.0,0.0,0.0 -biblesync,0.325069114209177,3.36910240068842,-0.454746471221156,https://salsa.debian.org/pkg-crosswire-team/biblesync, https://github.com/karlkleinpaste/biblesync.git,2205.173877314815,0,6,0,3.0,7.0,0.0,0.0 -bibtool,0.67899184842312,1.77532496580043,0.129925599871968,https://salsa.debian.org/tex-team/bibtool, https://github.com/ge-ne/bibtool.git,4734.066354166666,1,5,0,3.0,29.0,0.0,0.0 -binkd,-1.52911487316923,-0.720899386825205,-1.8984875134446,https://salsa.debian.org/md/binkd, https://github.com/pgul/binkd,5661.947349537037,4,23,0,12.0,24.0,0.0,0.0 -bino,0.195257650160866,1.88170602761767,-0.477460599883246,https://github.com/schaal/bino,https://github.com/schaal/bino,3762.760949074074,0,4,0,2.0,1.0,0.0,0.0 -binwalk,0.223750881111973,1.33453734812974,-0.151364007244613,https://salsa.debian.org/pkg-security-team/binwalk, https://github.com/ReFirmLabs/binwalk,3364.812650462963,24,70,1,71.0,16.0,0.0,25.0 -biometric-authentication,-0.485933223014382,1.53460316722766,-1.05540820789117,https://github.com/ukui/biometric-authentication,https://github.com/ukui/biometric-authentication,1286.1941203703705,2,8,0,4.0,14.0,0.0,0.0 -bitstruct,-1.04221111689686,1.67587334368042,-1.74083643825012,https://salsa.debian.org/python-team/packages/bitstruct, https://github.com/eerimoq/bitstruct,3110.3722916666666,2,10,0,6.0,34.0,0.0,0.0 -blackboxwm,0.924067069407153,1.54859497059993,0.49552529995811,https://salsa.debian.org/debian/blackbox, https://github.com/bbidulock/blackboxwm,5638.59306712963,4,7,0,8.0,24.0,0.0,0.0 -pkg-blahtexml,-0.848977997693807,1.48264420883758,-1.46630499643819,http://github.com/abhidg/pkg-blahtexml,http://github.com/abhidg/pkg-blahtexml,103.99862268518518,0,1,0,0.0,0.0,0.0,0.0 -Bluebird,1.1380974192667,4.27679649907411,0.156297008688033,https://salsa.debian.org/desktop-themes-team/bluebird-gtk-theme, https://github.com/shimmerproject/Bluebird,2956.8580092592592,3,16,0,11.0,26.0,0.0,0.0 -bmap-tools,-0.150405205584776,1.12527328019887,-0.487915123133271,https://salsa.debian.org/debian/bmap-tools, https://github.com/intel/bmap-tools,4042.210324074074,15,24,3,22.0,30.0,0.0,1.0 -boinctui,-0.143241370303535,1.42078631201341,-0.551211578534268,https://github.com/suleman1971/boinctui,https://github.com/suleman1971/boinctui,3939.330289351852,1,7,0,5.0,21.0,0.0,0.0 -bootinfoscript,-0.380931310220602,1.1240423782693,-0.708241731837265,https://salsa.debian.org/debian/boot-info-script, https://github.com/arvidjaar/bootinfoscript,3172.7375,1,7,0,3.0,19.0,0.0,0.0 -booth,-2.58824334072441,-1.37680108542551,-2.95829241505189,https://salsa.debian.org/ha-team/booth, https://github.com/ClusterLabs/booth.git,4438.4447337962965,6,37,0,22.0,34.0,0.0,0.0 -btchip-python,-1.18126727565667,1.40233755830126,-1.74149210073441,https://salsa.debian.org/python-team/packages/btchip-python, https://github.com/LedgerHQ/btchip-python.git,3019.882118055556,5,10,0,10.0,36.0,0.0,0.0 -btfs,-0.169232571549437,2.67737572993722,-0.890342282945852,https://salsa.debian.org/debian/btfs, https://github.com/johang/btfs,2774.3356481481483,11,11,0,15.0,32.0,0.0,0.0 -bti,-0.258899790920775,0.719543827742079,-0.728355222098141,https://git.toastfreeware.priv.at/debian/bti.git, https://github.com/gregkh/bti.git,3076.666469907407,14,25,0,25.0,36.0,0.0,0.0 -btrbk-packaging,0.115661714812478,2.28486375421134,-0.528665037688743,https://github.com/digint/btrbk-packaging,https://github.com/digint/btrbk-packaging,2807.899606481481,1,3,0,1.0,4.0,0.0,0.0 -compsize,0.105824084946372,2.80496949324477,-0.483145807159615,https://github.com/kilobyte/compsize/tree/debian,https://github.com/kilobyte/compsize,1814.023148148148,0,8,0,7.0,52.0,0.0,0.0 -budgie-desktop,-0.386390958459653,-0.105065504385218,-0.472234935184176,https://github.com/ubuntubudgie/budgie-desktop/tree/debian,https://github.com/ubuntubudgie/budgie-desktop,3652.422164351852,35,69,1,5.0,47.0,0.0,0.0 -budgie-extras,-0.354986420486241,1.91887121098529,-0.884811147535145,https://github.com/UbuntuBudgie/budgie-extras/tree/debian,https://github.com/UbuntuBudgie/budgie-extras,2299.353599537037,13,15,6,20.0,6.0,0.0,0.0 -budgie-indicator-applet,-0.316571005570996,1.8644335275796,-0.771503970333106,https://github.com/UbuntuBudgie/budgie-indicator-applet/tree/debian,https://github.com/UbuntuBudgie/budgie-indicator-applet,2410.5153935185185,0,6,1,2.0,24.0,0.0,0.0 -buildapp,-0.63064476325835,1.6220492356019,-1.34203914519867,https://salsa.debian.org/common-lisp-team/buildapp, https://github.com/xach/buildapp,2095.158275462963,0,6,0,6.0,25.0,0.0,0.0 -bwm-ng,1.40121922638423,3.17070056112281,0.556698761606925,https://salsa.debian.org/debian/bwm-ng, https://github.com/vgropp/bwm-ng,5022.657708333333,1,12,0,7.0,29.0,0.0,0.0 -cafeobj,-1.81043132765264,-1.01537341316671,-2.04973002943085,https://github.com/CafeOBJ/cafeobj,https://github.com/CafeOBJ/cafeobj,3212.0939699074074,0,7,0,3.0,3.0,0.0,2.0 -capnproto-debian,0.268831217820633,0.976027409602492,-0.0981830891894599,https://github.com/thomaslee/capnproto-debian,https://github.com/thomaslee/capnproto-debian,3752.338587962963,3,4,0,3.0,5.0,0.0,0.0 -carbon-c-relay,-1.72067037974238,2.11869981422391,-2.79128175183474,https://salsa.debian.org/debian/carbon-c-relay, https://github.com/grobian/carbon-c-relay.git,3376.0489467592597,8,36,0,25.0,0.0,0.0,1.0 -CARE-debian,-0.283623715441212,3.50380717493441,-1.34600107840302,https://github.com/ivoire/CARE-debian,https://github.com/ivoire/CARE-debian,2.719085648148148,0,2,0,1.0,1.0,0.0,0.0 -observatories-table,-0.193209856940157,1.24126511547144,-0.456590678476781,https://salsa.debian.org/debian-astro-team/casacore-data-observatories, https://github.com/casacore/observatories-table.git,766.9570138888889,1,3,0,2.0,2.0,0.0,0.0 -cassbeam,-0.259045108732969,0.99925176795752,-0.64497459970991,https://salsa.debian.org/debian-astro-team/cassbeam, https://github.com/ratt-ru/cassbeam,1099.9010185185184,0,5,0,3.0,3.0,0.0,0.0 -casync,-1.01620040906362,-0.313916552001019,-1.22652686269664,https://salsa.debian.org/systemd-team/casync, https://github.com/systemd/casync,2466.758460648148,38,15,0,44.0,38.0,0.0,0.0 -catcodec,-1.16856097988268,1.07727622127783,-1.61838805183779,https://salsa.debian.org/openttd-team/catcodec, https://github.com/OpenTTD/catcodec.git,4292.817731481481,2,4,0,3.0,2.0,0.0,0.0 -catimg,-0.095358226892815,2.16059280461038,-0.684470800131645,https://salsa.debian.org/debian/catimg, https://github.com/posva/catimg.git,3000.6790046296296,7,14,0,12.0,58.0,0.0,0.0 -caveexpress,-0.4341110970634,0.569471844099123,-0.596582894640061,https://salsa.debian.org/games-team/caveexpress, https://github.com/mgerhardy/caveexpress,2582.468125,2,6,0,4.0,11.0,0.0,3.0 -Cavez-of-Phear-packaging,0.0722256397124372,3.40949806890074,-0.719928552689934,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,23.047060185185185,0,1,0,1.0,1.0,0.0,0.0 -cbatticon,-0.663419875564642,2.03340349247728,-1.26388333093062,https://salsa.debian.org/debian/cbatticon, https://github.com/valr/cbatticon.git,4175.712280092593,3,25,0,19.0,61.0,0.0,2.0 -cbflib,0.93542859469883,4.35392030923547,-0.192952620584131,https://salsa.debian.org/science-team/cbflib, https://github.com/yayahjb/cbflib,5636.079074074074,1,18,0,8.0,16.0,0.0,0.0 -cbm,0.21754416509263,1.98271593846827,-0.387294516619196,https://salsa.debian.org/debian/cbm, https://github.com/resurrecting-open-source-projects/cbm,918.9922337962964,1,3,0,2.0,11.0,0.0,0.0 -ccbuild,-0.962946960309181,0.114636713661811,-1.38364630293163,https://salsa.debian.org/debian/ccbuild, https://github.com/bneijt/ccbuild.git,4764.88787037037,1,5,0,2.0,9.0,0.0,0.0 -cccc,1.16306556252959,3.77237240672707,0.0933849485786392,https://salsa.debian.org/debian/cccc, https://github.com/sarnold/cccc,2703.078263888889,1,7,0,3.0,10.0,0.0,0.0 -ccd2iso-debian,0.361667663026416,2.3145122267346,-0.282934292614776,https://github.com/paulproteus/ccd2iso-debian,https://github.com/paulproteus/ccd2iso-debian,10.083055555555555,1,1,0,2.0,1.0,0.0,0.0 -cclive,0.307502373439416,1.02460368794776,-0.0680117934195265,https://github.com/mogaal/cclive,https://github.com/mogaal/cclive,1632.909375,1,4,0,2.0,0.0,0.0,0.0 -cd-discid,0.692531699194494,3.31714740439398,-0.0825478540875517,https://github.com/taem/cd-discid/tree/deb,https://github.com/taem/cd-discid,2591.008657407408,2,2,0,3.0,8.0,0.0,0.0 -cellwriter,1.0089121851132,3.16829611372249,-0.0123490019388128,https://salsa.debian.org/debian/cellwriter, https://github.com/risujin/cellwriter,1174.0054050925926,1,2,0,2.0,8.0,0.0,1.0 -cen64-debian,-0.029911283215682,2.26144224386536,-0.656674834422946,https://github.com/dh4/cen64-debian/,https://github.com/dh4/cen64-debian,1926.2346064814813,0,5,0,3.0,1.0,0.0,0.0 -cen64-qt-debian,-0.75249983700087,1.46037636686185,-1.3157313925883,https://github.com/dh4/cen64-qt-debian/,https://github.com/dh4/cen64-qt-debian,1637.485798611111,0,4,0,3.0,1.0,0.0,0.0 -centreon-clib,-3.28683340227343,-0.861496330752058,-3.74980450462126,https://salsa.debian.org/centreon-team/centreon-clib, https://github.com/centreon/centreon-clib.git,4179.851145833333,9,17,0,12.0,14.0,0.0,0.0 -certspotter,-1.03336899144768,-0.0755768851187664,-1.23321678033423,https://salsa.debian.org/go-team/packages/certspotter, https://github.com/sslmate/certspotter,2838.790173611111,7,8,2,11.0,9.0,0.0,0.0 -CeWL,-0.0142294381514053,1.81401970760581,-0.3642449143816,https://salsa.debian.org/pkg-security-team/cewl, https://github.com/digininja/CeWL.git,2751.2389351851853,7,13,0,13.0,22.0,0.0,0.0 -cgroupfs-mount,0.595007950900762,2.24623334497127,0.0389645238605131,https://github.com/tianon/cgroupfs-mount,https://github.com/tianon/cgroupfs-mount,2931.2437847222222,0,7,0,5.0,13.0,0.0,0.0 -chafa,0.272945474595222,2.52779998751645,-0.163744365589759,https://salsa.debian.org/debian/chafa, https://github.com/hpjansson/chafa.git,2095.0478819444443,25,6,0,27.0,29.0,0.0,1.0 -Chaosreader,0.0512197310285199,1.96603100420262,-0.369285280047979,https://salsa.debian.org/pkg-security-team/chaosreader, https://github.com/brendangregg/Chaosreader,66.77311342592593,0,4,0,3.0,13.0,0.0,0.0 -charls,0.0895204965616005,0.743307844318276,-0.074607345455957,https://salsa.debian.org/med-team/charls, https://github.com/team-charls/charls.git,5412.763923611111,9,14,0,14.0,20.0,0.0,2.0 -cjk,0.96971045192412,1.67956459925518,0.507884270602392,https://github.com/debian-tex/cjk,https://github.com/debian-tex/cjk,4969.946932870371,1,7,0,4.0,2.0,0.0,0.0 -cjose,0.295403894225127,3.32408154360737,-0.620603569312427,https://salsa.debian.org/debian/cjose, https://github.com/zmartzone/cjose.git,2698.734525462963,9,16,0,16.0,4.0,0.0,0.0 -cjs,0.333425494754278,1.2158627920863,-0.0031931609189193,https://salsa.debian.org/cinnamon-team/cjs, https://github.com/linuxmint/cjs.git,3771.5652546296296,71,77,0,93.0,33.0,0.0,0.0 -ckbuilder,-1.34868158730321,1.76031609091417,-2.14728019209048,https://salsa.debian.org/js-team/ckbuilder, https://github.com/ckeditor/ckbuilder.git,3366.2307291666666,1,11,0,10.0,31.0,0.0,0.0 -cl-csv,-0.184313614747289,2.2825016420111,-0.96073562232821,https://salsa.debian.org/common-lisp-team/cl-csv, https://github.com/AccelerationNet/cl-csv,3373.83613425926,0,10,0,9.0,30.0,0.0,0.0 -cl-ftp,-0.620575027091736,2.04071728583489,-1.43486349328461,https://github.com/pinterface/cl-ftp,https://github.com/pinterface/cl-ftp,3252.967800925926,1,3,0,2.0,5.0,0.0,0.0 -cl-github-v3,-0.525886754158901,3.14869829126253,-1.57786858265274,https://github.com/hanshuebner/cl-github-v3,https://github.com/hanshuebner/cl-github-v3,2986.6350810185186,1,3,0,2.0,3.0,0.0,0.0 -ironclad,-0.292619474112447,2.54629736188643,-0.922896652786111,https://salsa.debian.org/common-lisp-team/cl-ironclad, https://github.com/sharplispers/ironclad,5005.706145833334,20,31,0,38.0,63.0,0.0,0.0 -local-time,-0.115573501850646,3.19884844019897,-1.05826046015465,http://github.com/dlowe-net/local-time,http://github.com/dlowe-net/local-time,5698.714988425926,7,50,0,0.0,0.0,0.0,0.0 -lparallel,-0.321212710190555,2.53460680683082,-1.09783355160211,https://github.com/lmj/lparallel,https://github.com/lmj/lparallel,2019.918599537037,0,5,0,4.0,49.0,0.0,0.0 -cl-markdown,-0.704735027971642,1.45184776406069,-1.14067274074447,https://github.com/gwkkwg/cl-markdown,https://github.com/gwkkwg/cl-markdown,5675.890451388889,2,4,0,3.0,15.0,0.0,0.0 -debian-coinor-ipopt,0.583213862110971,1.84678405520125,-0.0234312409683467,https://github.com/ghorn/debian-coinor-ipopt.git,https://github.com/ghorn/debian-coinor-ipopt.git,39.84579861111112,1,2,0,3.0,6.0,0.0,0.0 -coinst,-2.11911563959485,-0.175813398653396,-2.70071674016248,https://salsa.debian.org/ocaml-team/coinst, https://github.com/vouillon/coinst,2037.998599537037,0,10,0,3.0,4.0,0.0,0.0 -CoinUtils,0.517305852879183,1.72351671374194,0.0836708659931843,https://salsa.debian.org/science-team/coinutils, https://github.com/coin-or/CoinUtils,5778.888067129629,5,20,0,19.0,32.0,0.0,0.0 -collada-dom,0.691454203040474,3.66249206375898,-0.134321500846446,https://salsa.debian.org/science-team/collada-dom, https://github.com/rdiankov/collada-dom,2502.508460648148,0,12,0,6.0,37.0,0.0,0.0 -colord-gtk,0.769755293149984,2.98266391249002,0.0770418790099909,https://salsa.debian.org/debian/colord-gtk, https://github.com/hughsie/colord-gtk.git,4151.426111111111,7,4,0,8.0,20.0,0.0,0.0 -Colormake,0.495748907183494,1.69796875790221,-0.100333617807014,https://salsa.debian.org/debian/colormake, https://github.com/pagekite/Colormake,1830.174016203704,0,12,0,7.0,19.0,0.0,0.0 -colorspacious,-0.582161446637875,2.00413195982339,-1.1596382364804,https://salsa.debian.org/python-team/packages/colorspacious, https://github.com/njsmith/colorspacious.git,1894.8289351851847,2,10,0,9.0,30.0,0.0,0.0 -terminal-colors,-0.385784518377601,0.918857234529672,-0.806313357128645,https://salsa.debian.org/python-team/packages/colortest-python, https://github.com/eikenb/terminal-colors,4692.335277777778,1,2,0,2.0,11.0,0.0,0.0 -ColPack,0.201786704303149,1.93022602918197,-0.369590338773087,https://salsa.debian.org/science-team/colpack, https://github.com/CSCsw/ColPack,1916.7757175925929,1,22,0,9.0,0.0,0.0,0.0 -CommonMark-py,-0.11416500838552,1.25116861936766,-0.370232748261099,https://salsa.debian.org/python-team/packages/commonmark-bkrs, https://github.com/rolandshoemaker/CommonMark-py,472.4580902777778,0,5,0,4.0,23.0,0.0,0.0 -concordance,-0.462505057253659,0.313950398378314,-0.757335484243348,https://salsa.debian.org/debian/concordance, https://github.com/jaymzh/concordance.git,5701.118645833333,1,3,0,2.0,16.0,0.0,0.0 -config-package-dev,-0.205622525599008,1.25227242344213,-0.663386036163591,https://github.com/sipb/config-package-dev,https://github.com/sipb/config-package-dev,3585.0969444444445,4,6,0,9.0,9.0,0.0,0.0 -ssh-connect,0.663929963393126,3.49432697612261,-0.262388666763748,https://salsa.debian.org/debian/connect-proxy, https://github.com/gotoh/ssh-connect,3911.032627314815,0,6,0,3.0,7.0,0.0,0.0 -workbench,0.0811043258468287,2.67880223287002,-0.752864478646339,http://github.com/neurodebian/workbench,http://github.com/neurodebian/workbench,3495.7424652777777,3,16,0,0.0,0.0,0.0,0.0 -conserver,-0.552268878270219,0.057058802324775,-0.882189154355052,https://salsa.debian.org/debian/conserver, https://github.com/conserver/conserver.git,4671.668912037037,1,15,0,9.0,21.0,0.0,0.0 -constantly,0.850928447450448,3.76185287361888,0.0151388634103646,https://salsa.debian.org/python-team/packages/constantly, https://github.com/twisted/constantly.git,2708.6915162037035,2,14,0,8.0,30.0,0.0,0.0 -context,0.344932688438594,0.843880747316441,0.0662940567739085,https://github.com/debian-tex/context,https://github.com/debian-tex/context,5666.629780092592,2,10,0,4.0,3.0,0.0,0.0 -context-modules,0.280565146336701,2.52001699963819,-0.144175883889574,https://github.com/debian-tex/context-modules,https://github.com/debian-tex/context-modules,4444.346076388889,3,7,0,4.0,3.0,0.0,0.0 -context-free,-0.344235576793784,0.756294578766934,-0.832158475394757,https://github.com/MtnViewJohn/context-free,https://github.com/MtnViewJohn/context-free,2911.319537037037,1,9,0,3.0,27.0,0.0,9.0 -ConvertAll,0.17718959925243,1.87090042227686,-0.385587912227108,https://salsa.debian.org/qt-kde-team/extras/convertall, https://github.com/doug-101/ConvertAll.git,72.02152777777778,1,2,0,1.0,0.0,0.0,0.0 -convertdate,-1.07797049264342,1.52635035805152,-1.637269668297,https://salsa.debian.org/python-team/packages/convertdate, https://github.com/fitnr/convertdate,2873.5651041666665,10,11,0,11.0,44.0,0.0,0.0 -project--copyright-update,-0.552197160511787,1.80663899291966,-1.14317611874124,https://salsa.debian.org/debian/copyright-update, https://github.com/jaalto/project--copyright-update,3367.86224537037,0,1,0,1.0,0.0,0.0,0.0 -core.cache,-0.561021563903902,2.40885140581525,-1.30307388825199,https://salsa.debian.org/clojure-team/core-cache-clojure, https://github.com/clojure/core.cache,4284.517013888889,8,15,0,13.0,17.0,0.0,18.0 -cruft,1.80166164497765,2.73609258052625,1.15018799751513,https://github.com/a-detiste/cruft,https://github.com/a-detiste/cruft,5211.506574074074,2,8,0,7.0,3.0,0.0,0.0 -cruft-ng,0.142059123983331,2.30970880347388,-0.517173950214686,https://github.com/a-detiste/cruft-ng,https://github.com/a-detiste/cruft-ng,3368.403101851852,2,10,0,10.0,11.0,0.0,1.0 -cryfs,-0.132351299256985,0.869380622104774,-0.369453027315021,https://github.com/davesteele/cryfs,https://github.com/davesteele/cryfs,3180.9594560185187,28,15,0,27.0,1.0,0.0,0.0 -CTDConverter,-2.85255153038538,-0.454986667446423,-3.32075962513198,https://salsa.debian.org/med-team/ctdconverter, https://github.com/WorkflowConversion/CTDConverter,2616.914618055556,5,13,0,9.0,15.0,0.0,0.0 -cupt,-0.785166248865459,-0.741356000388487,-0.810209813689326,https://github.com/jackyf/cupt/tree/master,https://github.com/jackyf/cupt,3964.469525462963,4,7,0,6.0,9.0,0.0,1.0 -curvedns,-1.14617069868587,0.112741442647767,-1.37381298923115,https://salsa.debian.org/pkg-security-team/curvedns, https://github.com/curvedns/curvedns.git,3466.7757291666667,0,3,0,2.0,9.0,0.0,0.0 -cwm,-0.500204428130531,1.5042184567307,-0.935282538869387,https://github.com/jamesmcdonald/cwm,https://github.com/jamesmcdonald/cwm,5679.896053240741,1,30,0,0.0,1.0,0.0,0.0 -cycle,-0.313126048987607,0.695465190317994,-0.784417881760549,https://salsa.debian.org/med-team/cycle, https://github.com/metlov/cycle.git,229.95253472222225,0,1,0,1.0,0.0,0.0,0.0 -project--perl-ddir,-0.912637206116603,1.42468411057732,-1.47148394747172,https://salsa.debian.org/debian/ddir, https://github.com/jaalto/project--perl-ddir.git,3338.2834722222224,0,1,0,1.0,2.0,0.0,0.0 -debomatic,-0.81580971969394,-0.137115679074174,-1.08219980726607,https://salsa.debian.org/python-team/packages/debomatic, https://github.com/debomatic/debomatic,5739.495,4,16,0,13.0,18.0,0.0,0.0 -debootstick,-0.508717038467695,0.838230754407855,-0.881558905514112,https://github.com/drakkar-lig/debootstick,https://github.com/drakkar-lig/debootstick,3036.077210648148,5,8,0,8.0,20.0,0.0,2.0 -debian-debuerreotype,-1.06317343402172,1.46487811831655,-1.62978734955743,https://github.com/debuerreotype/debian-debuerreotype,https://github.com/debuerreotype/debian-debuerreotype,2712.8558217592595,0,4,0,2.0,2.0,0.0,0.0 -deepin-notifications,0.34744427251328,3.65477856026676,-0.432180899283793,https://salsa.debian.org/pkg-deepin-team/deepin-notifications, https://github.com/linuxdeepin/deepin-notifications,2025.0469791666667,4,26,0,14.0,18.0,0.0,0.0 -dicteval,-2.95369863336871,-0.13208757085462,-3.68895558088223,https://salsa.debian.org/debian/dicteval, https://github.com/osantana/dicteval.git,1110.6433217592592,3,12,0,10.0,14.0,0.0,0.0 -ding-libs,0.383342255623489,2.49364247157588,-0.138147012901626,https://salsa.debian.org/sssd-team/ding-libs, https://github.com/SSSD/ding-libs,5249.620081018518,15,12,0,14.0,16.0,0.0,0.0 -dir2ogg,0.239694684529411,1.64152149103211,-0.319092918386963,https://github.com/julian-klode/dir2ogg,https://github.com/julian-klode/dir2ogg,1310.029988425926,1,5,1,3.0,9.0,0.0,0.0 -direnv-deb,-0.0068848379529366,1.75857064726267,-0.451160585745145,https://github.com/direnv/direnv-deb,https://github.com/direnv/direnv-deb,3256.5212847222224,1,6,0,1.0,1.0,0.0,0.0 -node-dirty,-0.890988573271716,2.62270164954084,-1.95121575670237,https://salsa.debian.org/js-team/dirty.js, https://github.com/felixge/node-dirty.git,4940.328217592592,7,21,0,20.0,52.0,0.0,0.0 -discus,1.17050209388181,3.7454601143753,0.0821077036260994,https://salsa.debian.org/debian/discus, https://github.com/ncarrier/discus.git,1119.0192592592591,0,4,0,1.0,3.0,0.0,0.0 -diskscan,-0.280844219583857,0.383638380054831,-0.419348469516611,https://salsa.debian.org/debian/diskscan, https://github.com/baruch/diskscan.git,1436.448587962963,0,3,0,3.0,32.0,0.0,0.0 -ditaa,1.14456117412936,3.55385867527915,0.142833129763842,https://salsa.debian.org/java-team/ditaa, https://github.com/stathissideris/ditaa,4647.896041666667,3,17,0,12.0,73.0,0.0,0.0 -dizzy,0.520793755568244,2.80204550149747,-0.216143515141367,https://salsa.debian.org/perl-team/modules/packages/dizzy, https://github.com/penma/dizzy.git,1717.3470949074074,4,6,0,4.0,1.0,0.0,0.0 -django-bitfield,-1.16477034913538,1.67677395120211,-1.90983423918484,https://salsa.debian.org/python-team/packages/django-bitfield, https://github.com/disqus/django-bitfield,4482.6217939814815,15,33,0,35.0,84.0,0.0,0.0 -django-cas-server,-1.30889605800658,2.22928155508197,-2.31585064165671,https://salsa.debian.org/python-team/packages/django-cas-server, https://github.com/nitmir/django-cas-server.git,3041.6335532407406,8,9,0,13.0,46.0,0.0,0.0 -pkg-django-compat,-1.3241602950543,-0.188608342685688,-1.76573419272312,https://github.com/Linaro/pkg-django-compat.git,https://github.com/Linaro/pkg-django-compat.git,1206.0878819444445,0,6,0,3.0,3.0,0.0,0.0 -django-cors-headers,-1.11394108758359,0.0671040287419646,-1.33673891031328,https://salsa.debian.org/python-team/packages/django-cors-headers, https://github.com/adamchainz/django-cors-headers,3979.5858333333335,47,28,0,63.0,10.0,0.0,0.0 -django-guardian,-0.631840562330008,-0.175666538081989,-0.763973423985717,https://salsa.debian.org/python-team/packages/django-guardian, https://github.com/lukaszb/django-guardian,4311.932407407408,74,100,0,127.0,8.0,0.0,0.0 -pkg-django-restricted-resource,-1.28697318749763,0.227913210920117,-1.75195429034595,https://github.com/Linaro/pkg-django-restricted-resource,https://github.com/Linaro/pkg-django-restricted-resource,3194.8619212962963,0,7,0,4.0,3.0,0.0,0.0 -django-reversion,-0.777150964031435,0.998338835547634,-1.41528755792732,https://salsa.debian.org/python-team/packages/django-reversion, https://github.com/etianen/django-reversion.git,5522.85568287037,31,173,0,144.0,17.0,0.0,14.0 -django-setuptest,-1.00398830268751,1.89173998079783,-1.73987964391938,https://salsa.debian.org/python-team/packages/django-setuptest, https://github.com/praekelt/django-setuptest.git,1589.0550810185184,0,22,0,14.0,37.0,0.0,0.0 -pkg-django-testproject,-0.799939510918389,1.64354352492061,-1.44945239463122,https://github.com/Linaro/pkg-django-testproject,https://github.com/Linaro/pkg-django-testproject,3196.2780324074074,0,5,0,3.0,4.0,0.0,0.0 -pkg-django-testscenarios,-1.32571469322239,-0.0322578005939973,-1.66580907161116,https://github.com/Linaro/pkg-django-testscenarios,https://github.com/Linaro/pkg-django-testscenarios,3196.290115740741,0,7,0,4.0,5.0,0.0,0.0 -django-xmlrpc,-1.05007079848215,0.674157923649932,-1.51575190788338,https://salsa.debian.org/python-team/packages/django-xmlrpc, https://github.com/Fantomas42/django-xmlrpc,2632.308738425926,1,5,0,2.0,8.0,0.0,0.0 -dmarc-cat,-0.148389439253667,3.37717563751846,-1.19012336227191,https://salsa.debian.org/go-team/packages/dmarc-cat, https://github.com/keltia/dmarc-cat.git,1521.780300925926,0,4,0,3.0,19.0,0.0,0.0 -dms,-1.79235609405398,0.949013949455289,-3.00405896670681,https://github.com/grantma/dms,https://github.com/grantma/dms,1425.0333101851852,0,7,0,1.0,0.0,0.0,0.0 -dnstap-ldns,-1.96300285476509,0.490838248116668,-2.57881243839486,https://salsa.debian.org/dns-team/dnstap-ldns, https://github.com/dnstap/dnstap-ldns.git,2977.030300925926,3,7,0,5.0,6.0,0.0,0.0 -dnswalk,1.90066134270794,5.30649558843814,0.587989273593071,https://salsa.debian.org/debian/dnswalk, https://github.com/davebarr/dnswalk.git,3790.913483796296,0,2,0,2.0,5.0,0.0,0.0 -docdiff,-0.363775606360358,0.689503034880956,-0.723612814035272,https://salsa.debian.org/debian/docdiff, https://github.com/hisashim/docdiff,3912.654814814815,0,6,1,5.0,11.0,0.0,2.0 -Droopy,-0.89398694325989,1.3787169177303,-1.33370261042345,https://salsa.debian.org/debian/droopy, https://github.com/stackp/Droopy.git,5280.214768518518,0,7,0,4.0,33.0,0.0,0.0 -drumkv1,-0.195646303841167,1.07067209089277,-0.459428091573063,https://salsa.debian.org/multimedia-team/drumkv1, https://github.com/rncbc/drumkv1.git,4115.909027777778,1,13,0,4.0,23.0,0.0,1.0 -dtach,0.472092738388935,2.05322582228663,-0.0564635600433057,https://salsa.debian.org/voelkel-guest/dtach, https://github.com/crigler/dtach.git,1708.1544328703703,2,2,0,3.0,25.0,0.0,0.0 -dtfabric,0.0544342307870755,2.34172880310567,-0.479367618131588,https://salsa.debian.org/debian/dtfabric, https://github.com/libyal/dtfabric.git,2597.957638888889,0,1,0,1.0,6.0,0.0,1.0 -dumpet,0.811956716178272,4.83296464467065,-0.595687566980936,https://salsa.debian.org/debian/dumpet, https://github.com/rhboot/dumpet.git,4953.931909722222,2,5,0,3.0,2.0,0.0,0.0 -dvbcut-deb,-0.140015948042476,0.399549472596794,-0.360309815738839,https://github.com/bernhardu/dvbcut-deb,https://github.com/bernhardu/dvbcut-deb,2301.5843402777778,21,3,0,13.0,12.0,0.0,0.0 -dvisvgm,0.171998282183947,1.55084136410994,-0.142662310021075,https://github.com/debian-tex/dvisvgm,https://github.com/debian-tex/dvisvgm,1541.3238194444446,1,6,0,3.0,2.0,0.0,0.0 -dymo-cups-drivers,0.169549098118807,1.26534235036264,-0.0340436610527709,https://salsa.debian.org/printing-team/dymo-cups-drivers, https://github.com/matthiasbock/dymo-cups-drivers,4079.640983796297,4,11,0,5.0,30.0,0.0,0.0 -e2tools,-0.31548264769242,0.572945917024269,-0.592896826629012,https://salsa.debian.org/debian/e2tools, https://github.com/e2tools/e2tools,1196.5083217592592,2,6,3,6.0,14.0,0.0,0.0 -easygit,0.383586011018572,3.59575944736992,-0.580757122704697,https://salsa.debian.org/debian/easygit, https://github.com/newren/easygit,3676.0657175925926,399,15,0,318.0,0.0,0.0,0.0 -easyprocess,-0.53799173320537,1.94599701982545,-1.02194320670944,https://salsa.debian.org/python-team/packages/easyprocess, https://github.com/ponty/easyprocess.git,4652.397800925926,3,9,0,6.0,23.0,0.0,0.0 -ecdsautils,-0.584218908434214,1.61127583977002,-1.01705206899644,https://salsa.debian.org/communitywlan-team/ecdsautils, https://github.com/freifunk-gluon/ecdsautils,3436.625625,1,8,0,5.0,0.0,0.0,0.0 -edbrowse,0.370832211502124,1.58291273937709,-0.194120259542338,https://salsa.debian.org/a11y-team/edbrowse, https://github.com/CMB/edbrowse.git,5783.51974537037,9,22,0,20.0,30.0,0.0,10.0 -emacs-python-environment,-0.649779646433018,0.888158589770637,-0.925484796949458,https://salsa.debian.org/emacsen-team/emacs-python-environment, https://github.com/tkf/emacs-python-environment.git,626.8352777777778,0,3,0,3.0,12.0,0.0,0.0 -engauge_debian,0.468318437833274,1.88446333899741,-0.132199812189396,https://github.com/winchen/engauge_debian,https://github.com/winchen/engauge_debian,3059.142997685185,0,6,0,2.0,1.0,0.0,0.0 -enjarify,0.427359644725641,3.15080798032506,-0.369092656100407,https://salsa.debian.org/android-tools-team/enjarify, https://github.com/Storyyeller/enjarify,1738.110949074074,3,12,0,10.0,26.0,0.0,0.0 -entrypoints,0.857419697011272,4.10478343532811,0.0074721980594274,https://salsa.debian.org/python-team/packages/entrypoints, https://github.com/takluyver/entrypoints,2468.1372569444443,5,10,0,10.0,52.0,0.0,0.0 -enzyme,0.220928112203971,2.75082274669523,-0.536278177153044,https://salsa.debian.org/python-team/packages/enzyme, https://github.com/Diaoul/enzyme,665.1386111111111,0,3,0,2.0,20.0,0.0,0.0 -epoptes,-0.542451972754831,0.373723502712433,-0.839677995870044,https://github.com/epoptes/epoptes,https://github.com/epoptes/epoptes,4351.406793981481,4,10,0,8.0,6.0,0.0,0.0 -epr-api,-0.18355944237455,2.54906287161903,-0.893126650478525,https://salsa.debian.org/debian-gis-team/epr-api, https://github.com/bcdev/epr-api,4843.189861111111,0,19,0,7.0,3.0,0.0,0.0 -erfa,0.262633232067465,2.31782689876188,-0.183508382360506,https://salsa.debian.org/debian-astro-team/erfa, https://github.com/liberfa/erfa,3687.085324074074,3,14,0,13.0,25.0,0.0,0.0 -eris,-0.632476632964692,0.613394085601497,-1.19935072425888,https://salsa.debian.org/games-team/eris, https://github.com/worldforge/eris,5633.240509259259,2,7,0,8.0,6.0,0.0,0.0 -bear,-1.55987070079877,0.774057185069086,-2.05495667348586,https://salsa.debian.org/erlang-team/packages/erlang-bear, https://github.com/boundary/bear.git,985.0124652777778,0,11,0,6.0,17.0,0.0,0.0 -cuttlefish,-1.15701693005491,1.40793711612312,-1.97224413027031,https://salsa.debian.org/erlang-team/packages/erlang-cuttlefish, https://github.com/Kyorai/cuttlefish.git,3504.207511574074,6,42,0,29.0,12.0,0.0,17.0 -getopt,-1.24640146881314,1.24055252773571,-1.75273510466258,https://salsa.debian.org/erlang-team/packages/erlang-getopt, https://github.com/jcomellas/getopt,5121.0564583333335,4,19,0,16.0,31.0,0.0,0.0 -extrace,-0.716911995983522,1.64180015266931,-1.26212145910812,https://salsa.debian.org/debian/extrace, https://github.com/chneukirchen/extrace,3149.892662037037,4,2,0,5.0,5.0,0.0,0.0 -eyeD3-debian,1.23632208346383,2.32250673725634,0.591986174485483,https://github.com/gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian,2546.8571180555555,1,6,0,1.0,2.0,0.0,0.0 -faac,0.408637631433611,1.78820560884343,-0.0272312250909511,https://salsa.debian.org/multimedia-team/faac, https://github.com/knik0/faac,5409.507118055555,6,12,0,10.0,30.0,0.0,0.0 -faad2,1.05441750561477,2.23396241847788,0.471664053362126,https://salsa.debian.org/multimedia-team/faad2, https://github.com/knik0/faad2.git,5741.370833333333,16,14,0,22.0,44.0,0.0,0.0 -faba-icon-theme,0.891121238708099,4.43847406760927,-0.114244381250684,https://github.com/ubuntubudgie/faba-icon-theme/tree/debian,https://github.com/ubuntubudgie/faba-icon-theme,1592.9366782407408,0,6,0,2.0,0.0,0.0,0.0 -fabulous,-1.900421627324,-0.0667224501676742,-2.49350299164384,https://salsa.debian.org/python-team/packages/fabulous, https://github.com/jart/fabulous.git,4223.1852546296295,4,8,0,7.0,25.0,5.0,0.0 -fadecut,-0.667350092463335,1.85383645777287,-1.13854409825705,https://github.com/fadecut/fadecut/tree/debian,https://github.com/fadecut/fadecut,2792.815474537037,1,14,5,2.0,11.0,0.0,1.0 -fai,-0.141029003062567,-0.0834131887446058,-0.187507023426249,https://github.com/faiproject/fai,https://github.com/faiproject/fai,5773.004537037037,75,16,0,54.0,6.0,0.0,0.0 -fakesleep,-2.48126536481237,0.0741874263754914,-3.00289319258141,https://salsa.debian.org/python-team/packages/fakesleep, https://github.com/wearpants/fakesleep,0.0144907407407407,0,1,0,1.0,3.0,0.0,0.0 -fastd,0.333514221887181,3.12787150801173,-0.517000559553248,https://salsa.debian.org/communitywlan-team/fastd, https://github.com/NeoRaider/fastd.git,4199.101087962963,7,5,0,10.0,31.0,0.0,1.0 -ft2-clone,-1.40046242909984,1.30557026771413,-2.13381470047187,https://salsa.debian.org/multimedia-team/fasttracker2, https://github.com/8bitbubsy/ft2-clone,1461.167395833333,1,7,0,7.0,46.0,0.0,0.0 -fastx_toolkit,-0.345788605712488,1.09299754636222,-0.780912212098643,https://salsa.debian.org/med-team/fastx-toolkit, https://github.com/agordon/fastx_toolkit.git,3133.6998726851853,1,6,0,3.0,38.0,0.0,0.0 -fatcat,0.484244234595616,3.27011211542871,-0.26926443972348,https://salsa.debian.org/pkg-security-team/fatcat, https://github.com/gregwar/fatcat,3248.511898148148,2,7,0,6.0,33.0,0.0,0.0 -fatresize,1.78148207308487,4.9928976783678,0.533041051742402,https://salsa.debian.org/parted-team/fatresize, https://github.com/ya-mouse/fatresize,2189.5325,0,6,0,4.0,33.0,0.0,0.0 -fbpager,1.58823801856965,4.00012622311752,0.50196164463335,https://salsa.debian.org/debian/fbpager, https://github.com/fluxbox/fbpager,37.65318287037037,0,2,0,1.0,2.0,0.0,0.0 -fbset,1.31343177622143,2.3999244160546,0.655961770934684,https://github.com/sudipm-mukherjee/fbset.git,https://github.com/sudipm-mukherjee/fbset.git,5178.7434375,2,3,0,1.0,1.0,0.0,0.0 -fcgiwrap,0.313457792128019,1.1712166292828,-0.0802338795231698,https://salsa.debian.org/debian/fcgiwrap, https://github.com/gnosek/fcgiwrap,2589.724513888889,5,10,0,10.0,65.0,0.0,0.0 -fcitx-libpinyin,1.39043144689308,5.58305392877006,-0.0318276844096985,https://salsa.debian.org/input-method-team/fcitx-libpinyin, https://github.com/fcitx/fcitx-libpinyin,4359.651828703703,2,6,0,6.0,22.0,0.0,0.0 -pkg-fdm,0.367216892864716,2.19386340439911,-0.462639406832624,https://github.com/ft/pkg-fdm/,https://github.com/ft/pkg-fdm,5107.6653125,0,3,0,2.0,1.0,0.0,0.0 -fizmo-ncursesw,-0.203260447661615,2.2028162183293,-0.777045143620456,https://github.com/chrender/fizmo-ncursesw,https://github.com/chrender/fizmo-ncursesw,4851.414270833333,0,5,0,2.0,1.0,0.0,0.0 -flake8-polyfill,-0.290509698927459,2.15006672717983,-0.831786942179057,https://salsa.debian.org/python-team/packages/flake8-polyfill, https://github.com/PyCQA/flake8-polyfill.git,2673.183090277778,0,6,0,4.0,5.0,0.0,0.0 -flam3,0.783107292468659,3.7427433820312,-0.265060915265368,https://salsa.debian.org/debian/flam3, https://github.com/scottdraves/flam3,1152.1052083333334,1,7,0,3.0,25.0,0.0,4.0 -flask-jwt-simple,-3.74100421556996,-1.19160534497848,-4.32012170593659,https://salsa.debian.org/python-team/packages/flask-jwt-simple, https://github.com/vimalloc/flask-jwt-simple.git,1518.8651041666667,3,4,0,3.0,21.0,0.0,0.0 -flask-ldapconn,-1.08168170594019,1.85475959550756,-1.94217483827094,https://salsa.debian.org/python-team/packages/flask-ldapconn, https://github.com/rroemhild/flask-ldapconn,3190.6329976851853,4,10,0,11.0,32.0,0.0,0.0 -flask-silk,-0.0747361696036186,1.01910654442886,-0.341329221279819,https://salsa.debian.org/python-team/packages/flask-silk, https://github.com/sublee/flask-silk.git,2842.474108796296,0,7,0,3.0,4.0,0.0,0.0 -Junicode-font,0.974912303527955,2.35283220785299,0.319530132515262,https://salsa.debian.org/fonts-team/fonts-junicode, https://github.com/psb1558/Junicode-font,1677.9374305555557,3,4,0,6.0,15.0,0.0,0.0 -font-abyssinica,1.19124184578817,4.47035187308855,0.0766166907759292,https://salsa.debian.org/fonts-team/fonts-sil-abyssinica, https://github.com/silnrsi/font-abyssinica,1729.864050925926,1,8,0,7.0,2.0,0.0,0.0 -font-andika,0.226819752990735,1.73023566653979,-0.152119962769353,https://salsa.debian.org/fonts-team/fonts-sil-andika, https://github.com/silnrsi/font-andika,2361.704618055556,0,9,0,6.0,6.0,0.0,0.0 -foomatic-db,1.52097988119048,2.57857919950378,0.87665393025699,https://salsa.debian.org/printing-team/foomatic-db, https://github.com/OpenPrinting/foomatic-db.git,5681.190208333333,5,53,0,16.0,22.0,0.0,0.0 -formiko-debian,0.162847167151378,3.12972432185322,-0.606131131317192,https://github.com/ondratu/formiko-debian,https://github.com/ondratu/formiko-debian,1770.974849537037,2,2,0,3.0,3.0,0.0,0.0 -fortunes-br,0.382603091861005,2.47263573506667,-0.423938387085185,https://github.com/leitao/fortunes-br.git,https://github.com/leitao/fortunes-br.git,0.0056944444444444,0,1,0,1.0,0.0,0.0,0.0 -fortunes-mario-deb,0.274619658131346,1.87733323973623,-0.319371444076809,http://github.com/fike/fortunes-mario-deb,http://github.com/fike/fortunes-mario-deb,1606.775150462963,3,8,0,0.0,0.0,0.0,0.0 -fpgatools,0.263317733632337,3.62302416150927,-0.617914371101901,https://github.com/Wolfgang-Spraul/fpgatools,https://github.com/Wolfgang-Spraul/fpgatools,1132.0893287037038,1,6,0,5.0,0.0,0.0,0.0 -fqterm,-1.47783361153791,-0.410002791422599,-1.88643834830968,https://salsa.debian.org/chinese-team/fqterm, https://github.com/mytbk/fqterm,3515.765625,5,7,0,7.0,21.0,0.0,1.0 -FreeAlchemist,0.0594496950411277,2.2746437450724,-0.470758238747303,https://salsa.debian.org/python-team/packages/freealchemist, https://github.com/dakk/FreeAlchemist,3586.183032407408,0,3,0,1.0,0.0,0.0,0.0 -tools,0.0533159837796709,3.77655540826837,-1.29913035007012,https://salsa.debian.org/freedict-team/freedict-tools, https://github.com/freedict/tools.git,2348.65375,1,10,0,9.0,17.0,0.0,0.0 -freedv-gui,-0.321380589116011,1.14269359486899,-0.737833311519897,https://salsa.debian.org/debian-hamradio-team/freedv, https://github.com/drowe67/freedv-gui,3043.6515972222223,1,33,0,13.0,0.0,0.0,0.0 -freewheeling,0.57929039917913,2.50716578190389,-0.253456796640715,https://salsa.debian.org/multimedia-team/freewheeling, https://github.com/free-wheeling/freewheeling,5218.87306712963,1,3,0,3.0,28.0,0.0,2.0 -frozen-bubble,0.165035777228148,0.460197722494619,-0.0231433031569209,https://salsa.debian.org/perl-team/modules/packages/frozen-bubble, https://github.com/kthakore/frozen-bubble.git,3389.417650462963,4,17,0,10.0,23.0,0.0,0.0 -fyba,0.475498625383177,2.62895458120477,-0.0402028003181061,https://salsa.debian.org/debian-gis-team/fyba, https://github.com/kartverket/fyba.git,1185.3266203703704,1,10,0,5.0,17.0,0.0,0.0 -g2,-0.232798927583725,0.480081823717711,-0.573745503227334,https://salsa.debian.org/med-team/g2, https://github.com/danielrmeyer/g2,0.0,0,1,0,0.0,3.0,0.0,0.0 -ganeti-os-noop,-0.228103612944439,2.15469639223046,-0.852366861019704,https://salsa.debian.org/ganeti-team/ganeti-os-noop, https://github.com/grnet/ganeti-os-noop,677.1858449074074,0,6,0,2.0,5.0,1.0,0.0 -ganglia-modules-linux,0.0664199187930569,1.29560667255327,-0.272928032988035,https://salsa.debian.org/debian/ganglia-modules-linux, https://github.com/ganglia/ganglia-modules-linux.git,1617.3040972222225,0,6,0,3.0,4.0,0.0,0.0 -sonata,-0.529426882518877,1.06124614808373,-0.831456731478739,https://salsa.debian.org/science-team/gap-sonata, https://github.com/gap-packages/sonata.git,4006.9744907407407,4,7,0,4.0,8.0,0.0,0.0 -toric,-0.245145645400494,2.49491676474835,-0.818626096822567,https://salsa.debian.org/science-team/gap-toric, https://github.com/gap-packages/toric.git,3029.62,4,5,0,5.0,6.0,0.0,0.0 -garmintools,-0.21743425080625,0.536608891166221,-0.517674515044991,https://salsa.debian.org/debian/garmin-forerunner-tools, https://github.com/jorgesca/garmintools.git,2685.798298611111,0,5,0,3.0,1.0,0.0,0.0 -gatk-native-bindings,-0.100986588709375,2.46240098272391,-0.676296383991726,https://salsa.debian.org/java-team/gatk-native-bindings, https://github.com/broadinstitute/gatk-native-bindings,505.80189814814815,1,4,0,3.0,6.0,0.0,0.0 -gau2grid,-0.815898808955968,1.13429271732607,-1.40690475029843,https://salsa.debian.org/debichem-team/gau2grid, https://github.com/dgasmith/gau2grid,1166.9793981481482,4,10,0,8.0,18.0,0.0,0.0 -gconjugue,-1.19339536101734,0.61341419506809,-1.71179876451413,https://salsa.debian.org/debian/gconjugue, https://github.com/jalvesaq/gconjugue,2752.153888888889,0,4,0,1.0,3.0,0.0,0.0 -gdnsd,-2.96783921653793,-0.39790549938739,-3.67190541100761,https://github.com/paravoid/gdnsd,https://github.com/paravoid/gdnsd,4241.3566550925925,2,11,0,9.0,3.0,0.0,0.0 -geki2,-0.258574180554736,1.13020964582534,-0.602596537838345,https://salsa.debian.org/games-team/geki2, https://github.com/Quipyowert2/geki2,1827.8569328703704,0,3,0,1.0,1.0,0.0,0.0 -gelemental,0.101871491885225,1.2000806540432,-0.308055090869883,https://salsa.debian.org/debichem-team/gelemental, https://github.com/ginggs/gelemental,1560.5809722222225,8,4,0,9.0,9.0,0.0,0.0 -gsl,-1.78734710744917,-0.17508623401531,-2.06894845508284,https://github.com/bluca/gsl,https://github.com/bluca/gsl,3538.601678240741,4,35,0,24.0,1.0,0.0,0.0 -genetic,0.270772615288209,2.70696739683723,-0.438075928444894,https://salsa.debian.org/science-team/genetic, https://github.com/skoblov-lab/genetic,1118.9616550925923,2,4,0,1.0,1.0,0.0,0.0 -genext2fs,-0.288257654556958,0.206342373917604,-0.5033680475232,https://salsa.debian.org/debian/genext2fs, https://github.com/bestouff/genext2fs,3682.290104166667,0,10,0,5.0,18.0,0.0,0.0 -gimp-texturize,0.155585557161129,1.26629801322369,-0.194566602740913,https://salsa.debian.org/debian/gimp-texturize, https://github.com/lmanul/gimp-texturize.git,3625.7350810185194,1,11,0,4.0,8.0,0.0,0.0 -ginkgocadx,-0.262848364130749,0.261946365484675,-0.473858603741579,https://salsa.debian.org/med-team/ginkgocadx, https://github.com/gerddie/ginkgocadx.git,2123.806111111111,1,5,0,5.0,27.0,0.0,0.0 -git-lfs,0.10850806546047,1.28879399830704,-0.211778678166103,https://salsa.debian.org/go-team/packages/git-lfs, https://github.com/github/git-lfs.git,3479.309016203704,54,197,0,202.0,5.0,0.0,124.0 -git-remote-hg,1.38041870165709,3.90908821951378,0.287352123060667,https://salsa.debian.org/debian/git-remote-hg, https://github.com/mnauw/git-remote-hg/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -debian,-0.513550947087722,0.0361166657458587,-0.732066503862449,https://salsa.debian.org/debian/github-backup,https://salsa.debian.org/debian/github-backup,3299.6675694444443,9,13,0,0.0,0.0,0.0,0.0 -gitless,-1.01294721721959,1.17454442756473,-1.55328553128069,https://salsa.debian.org/python-team/packages/gitless, https://github.com/sdg-mit/gitless.git,1580.4098032407408,8,31,0,24.0,19.0,0.0,0.0 -gitmagic,0.0058626792252935,1.39680236467479,-0.411777383585704,https://salsa.debian.org/debian/gitmagic, https://github.com/blynn/gitmagic,4774.439953703703,12,73,0,47.0,40.0,0.0,3.0 -giza,-0.0821548043704013,1.7697955981988,-0.433099872352207,https://salsa.debian.org/debian-astro-team/giza, https://github.com/danieljprice/giza,4755.9934837962965,2,14,0,9.0,20.0,0.0,1.0 -gjots2,0.494722277557668,2.20920550502522,-0.349273527502639,https://github.com/leggewie-DM/gjots2,https://github.com/leggewie-DM/gjots2,4231.040023148148,3,4,0,1.0,2.0,0.0,0.0 -gkrellm-cpufreq-debian,0.520662810261337,3.09832773332327,-0.290811488089151,https://github.com/glaubitz/gkrellm-cpufreq-debian,https://github.com/glaubitz/gkrellm-cpufreq-debian,3039.783865740741,1,2,0,1.0,3.0,0.0,0.0 -gkrelluim,-1.25246985745735,0.701045689976412,-1.62024310513475,https://salsa.debian.org/debian/gkrelluim, https://github.com/dai-vdr/gkrelluim.git,5001.253333333333,0,1,0,0.0,0.0,0.0,0.0 -glimpse,4.84219789067736,8.06243279158319,3.38459316763573,https://github.com/az143/glimpse,https://github.com/az143/glimpse,3292.598958333333,0,6,0,2.0,2.0,0.0,0.0 -global,0.925106943891178,1.80298075221874,0.395670583842805,https://github.com/punitagrawal/global,https://github.com/punitagrawal/global,2253.924212962963,4,4,0,5.0,4.0,0.0,0.0 -gmetric4j,-2.75986928766789,-0.590610246331083,-3.29509205415348,https://github.com/ganglia/gmetric4j,https://github.com/ganglia/gmetric4j,3040.700127314815,1,11,0,5.0,21.0,0.0,2.0 -gnarwl,-1.00912731780396,-0.119732536714327,-1.47832568928384,https://salsa.debian.org/debian/gnarwl, https://github.com/fln/gnarwl,2570.5118287037035,1,9,0,5.0,7.0,0.0,0.0 -dash-to-panel,0.112497150565975,2.19074418636135,-0.424673425471541,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dash-to-panel, https://github.com/home-sweet-gnome/dash-to-panel.git,2629.753946759259,40,85,0,86.0,104.0,0.0,2.0 -dash-to-dock,-0.0287596469367206,0.983041172753154,-0.301129726005059,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dashtodock, https://github.com/micheleg/dash-to-dock.git,4172.053009259259,157,30,0,142.0,64.0,0.0,0.0 -GoldenEye,0.291422342120509,3.23766478434891,-0.422802284339128,https://salsa.debian.org/pkg-security-team/goldeneye, https://github.com/jseidl/GoldenEye,3012.1110532407406,1,7,0,5.0,0.0,0.0,0.0 -apps-gorm,0.379214595573564,1.50539380252219,-0.0975198397004308,https://salsa.debian.org/gnustep-team/gorm.app, https://github.com/gnustep/apps-gorm,5785.686678240741,3,22,0,21.0,13.0,0.0,0.0 -gosa-core,-0.3775685335741,-0.218913245151997,-0.490142989776367,https://salsa.debian.org/debian-edu-pkg-team/gosa, https://github.com/gosa-project/gosa-core,5676.765821759259,7,31,0,8.0,18.0,0.0,0.0 -gosa-plugins-mailaddress,-2.33839798824977,0.264356858694085,-2.98564755573703,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-mailaddress, https://github.com/gosa-project/gosa-plugins-mailaddress,2274.676365740741,0,4,0,2.0,4.0,0.0,0.0 -gosa-plugins-netgroups,-0.991400762891599,0.477737244370405,-1.38270096634839,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-netgroups, https://github.com/gosa-project/gosa-plugins-netgroups,1422.7270023148149,0,3,0,1.0,2.0,0.0,0.0 -gosa-plugins-pwreset,-1.35983377184844,0.287923337303386,-1.62929317992199,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-pwreset, https://github.com/gosa-project/gosa-plugins-pwreset,2184.168125,0,3,0,1.0,1.0,0.0,0.0 -linux-crypto,-2.36115638748562,-0.86455846759555,-2.62341468211892,https://salsa.debian.org/lumag/gost-crypto, https://github.com/GostCrypt/linux-crypto.git,1726.5372222222222,2,3,0,2.0,3.0,0.0,0.0 -gpicview,2.07026716447993,4.21859764899317,1.05394216899283,https://salsa.debian.org/lxde-team/gpicview, https://github.com/lxde/gpicview,5713.732662037037,76,42,0,59.0,6.0,0.0,0.0 -gpp,0.629564590648757,3.86571206671939,-0.308981221820961,https://salsa.debian.org/debian/gpp, https://github.com/logological/gpp/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -gpustat,-0.741403160392273,1.67386030509305,-1.1885003927339,https://salsa.debian.org/nvidia-team/gpustat, https://github.com/wookayin/gpustat,2769.873078703704,16,5,3,17.0,31.0,0.0,0.0 -gpyfft,-0.0412032188187653,3.09310643757917,-0.922104196637825,https://salsa.debian.org/science-team/gpyfft, https://github.com/geggo/gpyfft,2840.725300925926,4,10,0,8.0,33.0,0.0,0.0 -gss-ntlmssp,-1.07585140078542,0.718744628304251,-1.51478530983583,https://salsa.debian.org/freeipa-team/gss-ntlmssp, https://github.com/gssapi/gss-ntlmssp,3594.9212152777777,10,4,0,7.0,12.0,0.0,1.0 -gtkguitune,-0.249127738628021,0.382618678459193,-0.459149545237519,https://github.com/bobek/gtkguitune,https://github.com/bobek/gtkguitune,3186.2603587962963,1,3,0,2.0,1.0,0.0,0.0 -gtkterm,1.66141581433244,3.22367868482496,0.801083568030018,https://salsa.debian.org/debian/gtkterm, https://github.com/Jeija/gtkterm.git,4575.4452083333335,6,17,0,14.0,44.0,0.0,0.0 -gtranscribe,-0.52598532093121,1.68552447049882,-0.950618828955398,https://salsa.debian.org/debian/gtranscribe, https://github.com/innir/gtranscribe,3558.9036921296297,0,5,1,2.0,14.0,0.0,0.0 -guake-indicator,0.225084840589738,2.50139112834453,-0.537897622387219,https://salsa.debian.org/debian/guake-indicator/, https://github.com/Ozzyboshi/guake-indicator,2489.141122685185,1,8,0,4.0,11.0,0.0,0.0 -gufw,1.82170657320495,4.36249019311549,0.73445987540299,https://salsa.debian.org/python-team/packages/gui-ufw, https://github.com/costales/gufw.git,1462.9175578703705,0,7,0,8.0,66.0,0.0,0.0 -guidedog,-1.21278206618604,0.0904612736593897,-1.69262749618264,https://github.com/antocm/guidedog/tree/debian,https://github.com/antocm/guidedog,2480.661736111111,0,5,0,2.0,1.0,0.0,1.0 -guile-ssh,-0.898003176566419,3.15796707178121,-2.08007087259509,https://salsa.debian.org/debian/guile-ssh, https://github.com/artyom-poptsov/guile-ssh.git,3867.355983796296,0,10,0,8.0,28.0,0.0,0.0 -gup,-5.16957026468003,-4.44854545374036,-5.42895905623184,https://github.com/rfc1036/gup,https://github.com/rfc1036/gup,3593.8147453703705,0,1,0,1.0,0.0,0.0,0.0 -guzzle_sphinx_theme,-0.870402263256846,0.681504728971643,-1.1374775257454,https://salsa.debian.org/python-team/packages/guzzle-sphinx-theme, https://github.com/guzzle/guzzle_sphinx_theme.git,2860.313402777778,3,11,0,12.0,42.0,0.0,0.0 -debian-gwaei,-0.241530181808764,1.20814974222975,-0.872223429611782,https://github.com/norbusan/debian-gwaei,https://github.com/norbusan/debian-gwaei,2765.6634375,2,2,0,2.0,3.0,0.0,0.0 -gwakeonlan,0.853516994065889,3.06274146318228,-0.0322068922641137,https://salsa.debian.org/debian/gwakeonlan, https://github.com/muflone/gwakeonlan.git,4933.515127314815,2,13,0,10.0,35.0,0.0,0.0 -gwc,0.608752042959984,1.62897330411708,0.0519069421770505,https://salsa.debian.org/multimedia-team/gwc, https://github.com/AlisterH/gwc.git,3165.170532407408,1,5,0,3.0,6.0,0.0,0.0 -gxkb,0.378793618102741,4.06984648812116,-0.633487570844487,https://github.com/mati75/gxkb.git,https://github.com/mati75/gxkb.git,2732.567650462963,0,4,0,2.0,2.0,0.0,0.0 -gxtuner,1.26252365881053,4.75338294151494,0.0339744565712773,https://salsa.debian.org/multimedia-team/gxtuner, https://github.com/brummer10/gxtuner,1914.189201388889,3,6,0,4.0,9.0,0.0,0.0 -h2o,-0.732154034912123,0.815719717951388,-1.28127323117718,https://salsa.debian.org/debian/h2o, https://github.com/h2o/h2o,4716.585949074074,44,155,4,123.0,17.0,0.0,22.0 -h5utils,-0.0466394354620323,0.620050047907465,-0.315947352633772,https://salsa.debian.org/debian-gis-team/h5utils, https://github.com/NanoComp/h5utils.git,5379.830416666667,0,6,0,3.0,18.0,0.0,0.0 -hacktv,-2.00826730577902,0.152267044037194,-2.47275412010978,https://salsa.debian.org/debian-hamradio-team/hacktv, https://github.com/fsphil/hacktv,2394.743078703704,3,7,0,8.0,43.0,0.0,0.0 -HandBrake,1.390484339078,2.68514870700298,0.64515826171242,https://salsa.debian.org/multimedia-team/handbrake, https://github.com/HandBrake/HandBrake,5786.367523148148,105,51,3,108.0,0.0,0.0,2.0 -hexedit,1.48881421467303,3.48586859691273,0.561731376761798,https://salsa.debian.org/debian/hexedit, https://github.com/pixel/hexedit.git,5414.790706018519,8,14,0,14.0,45.0,0.0,0.0 -hexter,0.408060348118351,2.76030001415653,-0.344323176379156,https://salsa.debian.org/multimedia-team/hexter, https://github.com/smbolton/hexter.git ,4380.352847222222,0,6,0,5.0,17.0,0.0,0.0 -hfst-ospell,0.259192073708983,1.3643095913664,-0.0408851514528968,https://salsa.debian.org/science-team/hfst-ospell, https://github.com/hfst/hfst-ospell.git,4745.75769675926,1,17,0,8.0,24.0,0.0,1.0 -hijra,-1.15210447252993,0.901978485933006,-1.98964059526422,https://salsa.debian.org/islamic-team/hijra, https://github.com/ojuba-org/hijra.git,4311.288414351852,0,8,0,4.0,4.0,0.0,0.0 -hinawa-utils,-1.80364309063727,0.940925857099933,-2.44228018023471,https://salsa.debian.org/debian/hinawa-utils/, https://github.com/takaswie/hinawa-utils.git,2264.298796296296,1,2,0,2.0,8.0,0.0,0.0 -hiro,-3.12301135787983,-1.14023553381057,-3.69314465756504,https://salsa.debian.org/python-team/packages/hiro, https://github.com/alisaifee/hiro,3329.753263888889,1,3,0,3.0,6.0,0.0,0.0 -hmat-oss,0.302795748495868,3.08224049554587,-0.630153054299577,https://salsa.debian.org/science-team/hmat-oss, https://github.com/jeromerobert/hmat-oss.git,3261.6730555555555,6,19,0,14.0,7.0,0.0,0.0 -hodie,-0.839827098753095,0.847259008084228,-1.20596126816846,https://salsa.debian.org/cts/hodie, https://github.com/michiexile/hodie,1318.6005671296296,0,5,0,1.0,2.0,0.0,0.0 -hoel,-2.62622621697402,-0.673459335408438,-3.01125437253336,https://salsa.debian.org/debian-iot-team/oauth2/hoel.git, https://github.com/babelouest/hoel,1340.3941203703705,3,9,0,7.0,12.0,0.0,0.0 -html2text,1.33403803979287,2.32152554452253,0.727545163261413,https://salsa.debian.org/debian/html2text, https://github.com/grobian/html2text,1388.0924421296295,5,7,0,7.0,21.0,0.0,0.0 -html5-parser,0.458800578494514,2.4674305886851,-0.0847285940270142,https://github.com/debian-calibre/html5-parser,https://github.com/debian-calibre/html5-parser,2309.525925925926,1,6,0,5.0,4.0,0.0,0.0 -hyphen,0.431472953444581,1.60395404929647,0.0503177928932619,https://salsa.debian.org/libreoffice-team/hyphen, https://github.com/hunspell/hyphen.git,2824.9621875,2,9,0,6.0,18.0,0.0,0.0 -hyphen-ru,1.36394021241656,5.60995268002231,0.017512985101694,http://github.com/Protagores/hyphen-ru,http://github.com/Protagores/hyphen-ru,3.0971875,0,1,0,0.0,0.0,0.0,0.0 -i18nspector,-0.313015622769601,1.34702827047449,-0.821005946432485,https://salsa.debian.org/debian/i18nspector, https://github.com/jwilk/i18nspector,3956.454016203704,0,2,0,2.0,6.0,0.0,0.0 -i2pd,-0.85878278022978,0.149294279481958,-1.15455770054614,https://salsa.debian.org/yangfl-guest/i2pd, https://github.com/PurpleI2P/i2pd,3747.131585648148,37,139,2,97.0,14.0,0.0,23.0 -i7z,0.0808738408514938,1.26223617887634,-0.243091165882832,https://salsa.debian.org/debian/i7z, https://github.com/ajaiantilal/i7z,310.0352199074074,0,7,0,3.0,33.0,0.0,0.0 -IanniX,-0.18807323044584,2.14869055414818,-0.87546624741016,https://salsa.debian.org/multimedia-team/iannix, https://github.com/buzzinglight/IanniX,4212.690243055556,7,14,0,10.0,41.0,0.0,3.0 -ibuffer-projectile,-0.722806195261783,1.81540772308371,-1.29214807400522,https://salsa.debian.org/emacsen-team/ibuffer-projectile, https://github.com/purcell/ibuffer-projectile.git,3152.389108796296,1,7,0,7.0,14.0,0.0,0.0 -ice-builder-gradle-debian-packaging,-1.18494857071322,0.940607993180076,-1.63914293753475,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2370.9240625,0,3,0,2.0,3.0,0.0,0.0 -icebreaker,0.469225637128789,1.84119572041145,-0.176942105980292,https://salsa.debian.org/games-team/icebreaker, https://github.com/mattdm/icebreaker.git,3923.769930555556,0,5,0,4.0,7.0,0.0,0.0 -icemon,0.703092293725719,3.58351003456912,-0.29590599853479,https://salsa.debian.org/qt-kde-team/extras/icemon, https://github.com/icecc/icemon.git,4527.72,9,27,0,37.0,45.0,0.0,1.0 -icecream-sundae,-1.03853764893726,1.81493250427221,-1.71495059042769,https://salsa.debian.org/debian/icecream-sundae, https://github.com/JPEWdev/icecream-sundae,638.2833796296296,3,6,0,6.0,16.0,0.0,0.0 -ifetch-tools,-1.77631166835684,-1.41794350156919,-1.86446506771438,https://github.com/unixabg/ifetch-tools,https://github.com/unixabg/ifetch-tools,5167.966319444445,0,4,0,3.0,2.0,0.0,0.0 -ifupdown-multi,-0.000891109304905,3.57957149248289,-1.03563713495261,https://github.com/edmonds/ifupdown-multi,https://github.com/edmonds/ifupdown-multi,2598.182175925926,0,2,0,1.0,1.0,0.0,0.0 -inn,-0.504610683048708,-0.419983646964629,-0.570339528426107,https://salsa.debian.org/md/inn2, https://github.com/InterNetNews/inn.git,5725.585011574074,6,6,0,10.0,0.0,0.0,0.0 -iodine,-0.272251022107355,-0.141218742848917,-0.33085250197786,https://git.toastfreeware.priv.at/debian/iodine.git/, https://github.com/yarrick/iodine.git,5593.126863425926,29,23,0,31.0,45.0,0.0,0.0 -ionit,-2.56769805015944,-0.998151936758215,-2.98444937682541,https://github.com/bdrung/ionit/tree/debian/unstable,https://github.com/bdrung/ionit,1307.9435069444444,2,5,0,2.0,4.0,0.0,0.0 -ip4r,-1.46327455556285,-0.46779578486403,-1.71199333845707,https://salsa.debian.org/postgresql/ip4r, https://github.com/RhodiumToad/ip4r.git,3711.2765972222223,1,6,0,5.0,22.0,0.0,0.0 -ipheth-debian,0.943090802667325,3.76382585272279,-0.13743487302787,https://github.com/pmcenery/ipheth-debian,https://github.com/pmcenery/ipheth-debian,4243.605381944444,0,4,0,2.0,1.0,0.0,0.0 -ipmctl,-1.80380628845051,-0.234444738513806,-2.06963966567453,https://github.com/kilobyte/ipmctl/tree/debian,https://github.com/kilobyte/ipmctl,1854.5950810185184,32,11,0,22.0,0.0,0.0,0.0 -ippusbxd,0.0111748533285641,2.66002786497703,-0.722026887945832,https://salsa.debian.org/printing-team/ippusbxd, https://github.com/OpenPrinting/ippusbxd,2327.077696759259,1,12,0,6.0,11.0,0.0,0.0 -iprange,0.648037588830882,3.95974953639138,-0.294516128273265,https://salsa.debian.org/debian/iprange, https://github.com/firehol/iprange.git,1873.7119328703704,0,7,0,3.0,20.0,0.0,1.0 -iprutils,-1.90302314060055,0.333968509203932,-2.44604336862968,https://salsa.debian.org/debian/iprutils, https://github.com/bjking1/iprutils,5119.04505787037,18,20,0,15.0,14.0,0.0,0.0 -ipv6calc,0.543298857583,1.76348144592324,-0.0022190697373333,https://salsa.debian.org/debian/ipv6calc, https://github.com/pbiering/ipv6calc,5498.61324074074,2,10,5,7.0,16.0,0.0,0.0 -ipv6toolkit,0.155618378638467,2.6785840103418,-0.553670011158937,https://github.com/alvarezp/ipv6toolkit/tree/debian,https://github.com/alvarezp/ipv6toolkit,3020.5637962962965,1,17,0,8.0,0.0,0.0,0.0 -pkg-ipvsadm,1.61908553590761,2.78315854014052,0.905629891911793,https://github.com/formorer/pkg-ipvsadm,https://github.com/formorer/pkg-ipvsadm,3173.692650462963,1,2,0,2.0,3.0,0.0,0.0 -ipython_genutils,0.530177331159466,3.23732216372701,-0.0754853282825387,https://salsa.debian.org/python-team/packages/ipython-genutils, https://github.com/ipython/ipython_genutils,4920.52525462963,2,28,3,27.0,23.0,0.0,0.0 -ir.lv2,0.0482033804799324,1.80727862952251,-0.420434877989828,https://salsa.debian.org/multimedia-team/ir.lv2, https://github.com/tomszilagyi/ir.lv2.git,901.637175925926,2,4,0,0.0,1.0,0.0,0.0 -sptable,-0.357289537612694,2.89104688412438,-1.14398316665318,https://salsa.debian.org/debian-astro-team/iraf-sptable, https://github.com/iraf-community/sptable,2001.9924189814813,2,4,0,1.0,3.0,0.0,0.0 -ircmarkers,-1.44359281417606,0.758311846290358,-1.91259895279885,https://github.com/df7cb/ircmarkers,https://github.com/df7cb/ircmarkers,5694.884652777778,1,3,0,3.0,1.0,0.0,0.0 -jack_midi_clock,0.311892005219808,2.95526744630425,-0.405657357283279,https://salsa.debian.org/multimedia-team/jack-midi-clock, https://github.com/x42/jack_midi_clock,4775.637094907407,0,4,0,3.0,3.0,0.0,0.0 -jackson-dataformat-yaml,-0.305012260019323,2.80829889504518,-1.24553614944756,https://salsa.debian.org/java-team/jackson-dataformat-yaml, https://github.com/FasterXML/jackson-dataformat-yaml.git,2094.170972222222,1,22,0,16.0,0.0,0.0,4.0 -jaraco.itertools,-2.17707155845664,0.444418251427644,-2.90534259730026,https://salsa.debian.org/python-team/packages/jaraco.itertools, https://github.com/jaraco/jaraco.itertools.git,3229.339699074074,17,5,0,18.0,7.0,0.0,0.0 -java-atk-wrapper,0.561521276968394,1.24498345336031,0.204264214561703,https://salsa.debian.org/a11y-team/java-atk-wrapper, https://github.com/GNOME/java-atk-wrapper,5298.576481481481,11,11,0,8.0,3.0,0.0,0.0 -JDim,-1.06254556293429,0.959946482851881,-1.47215937444498,https://salsa.debian.org/debian/jdim, https://github.com/JDimproved/JDim.git,5782.991446759259,2,15,0,8.0,9.0,0.0,0.0 -jhead,-0.104696216854107,0.0128556712069062,-0.161995278111666,https://salsa.debian.org/reichel/jhead, https://github.com/Matthias-Wandel/jhead,974.1013078703704,4,13,0,10.0,49.0,0.0,0.0 -jinja2-time,-0.469855593594599,1.15700255667956,-0.765624870746036,https://salsa.debian.org/python-team/packages/jinja2-time, https://github.com/hackebrot/jinja2-time,2112.113865740741,0,3,0,2.0,20.0,0.0,0.0 -jitterdebugger,-2.34850289021288,-0.153305583740891,-2.78597412958911,https://salsa.debian.org/debian/jitterdebugger, https://github.com/igaw/jitterdebugger.git,1214.2022916666667,8,3,0,9.0,12.0,0.0,0.0 -jitterentropy-rngd,-1.05689833744364,-0.269418208237385,-1.18678360666823,https://salsa.debian.org/debian/jitterentropy-rngd, https://github.com/smuellerDD/jitterentropy-rngd,2267.9794675925928,9,1,0,10.0,33.0,0.0,0.0 -jmxetric,-2.90173269580308,-0.736327467665169,-3.32435528351605,https://github.com/ganglia/jmxetric,https://github.com/ganglia/jmxetric,2292.7484027777778,0,9,0,5.0,14.0,0.0,0.0 -jp2a,0.90449830665757,3.53924486148421,-0.035152028233776,https://salsa.debian.org/debian/jp2a, https://github.com/Talinx/jp2a,2190.7298032407407,3,4,0,6.0,11.0,0.0,0.0 -jupyter-sphinx-theme,-0.409104944658621,-0.0453166630361136,-0.489960530338634,https://salsa.debian.org/python-team/packages/jupyter-sphinx-theme, https://github.com/jupyter/jupyter-sphinx-theme,1834.3539467592595,2,32,0,24.0,12.0,0.0,0.0 -kamcli,-4.77863888246194,-2.41825417083059,-5.41794032912643,https://salsa.debian.org/pkg-voip-team/kamcli/, https://github.com/kamailio/kamcli,3121.915613425926,1,5,0,5.0,8.0,0.0,0.0 -kamerka,0.874312432154536,3.7857646392802,-0.131221834186747,http://github.com/dos1/kamerka,http://github.com/dos1/kamerka,2873.9879282407405,7,12,1,0.0,0.0,0.0,0.0 -debian-karlyriceditor,-0.114559294607774,2.74446814581886,-1.06888085948574,https://github.com/martin-steghoefer/debian-karlyriceditor,https://github.com/martin-steghoefer/debian-karlyriceditor,1746.032951388889,1,1,0,2.0,0.0,0.0,0.0 -kbtin,-0.288549712057774,1.24720454478505,-0.639846297022434,https://github.com/kilobyte/kbtin/tree/debian,https://github.com/kilobyte/kbtin,5761.034421296296,1,4,0,3.0,7.0,0.0,0.0 -kcemu-debian,-1.54653182143857,-0.396554760130113,-1.84525690547919,https://github.com/glaubitz/kcemu-debian,https://github.com/glaubitz/kcemu-debian,4222.827384259259,2,2,0,1.0,0.0,0.0,0.0 -kchmviewer,0.93820662178197,2.37580504033689,0.261336739546184,https://salsa.debian.org/qt-kde-team/extras/kchmviewer, https://github.com/gyunaev/kchmviewer,2255.6306481481483,1,6,0,4.0,23.0,0.0,0.0 -kcmsystemd-debian,0.759962900165511,3.93884947872597,-0.157727067888915,https://github.com/shsorbom/kcmsystemd-debian.git,https://github.com/shsorbom/kcmsystemd-debian.git,684.1522685185186,1,12,0,8.0,3.0,0.0,0.0 -keychain,1.09333931055728,2.27523860593191,0.436036226574602,https://salsa.debian.org/debian/keychain, https://github.com/funtoo/keychain,3125.510335648148,23,18,0,32.0,53.0,0.0,0.0 -khard,0.0842088928565309,2.53505362152663,-0.577783913713889,https://salsa.debian.org/python-team/packages/khard, https://github.com/lucc/khard,3364.343252314815,16,20,1,32.0,41.0,0.0,0.0 -kim-api,-0.84238574718087,1.43936931025803,-1.29131340105252,https://salsa.debian.org/science-team/kim-api, https://github.com/openkim/kim-api,4210.4546527777775,1,26,1,10.0,24.0,0.0,1.0 -kindleclip,-0.897428336753415,0.95694298072959,-1.34493936657523,https://github.com/gwolf/kindleclip,https://github.com/gwolf/kindleclip,1841.0025925925927,0,1,0,1.0,7.0,0.0,0.0 -javadev,-0.406165740995511,0.763204212274886,-0.700075074205343,https://salsa.debian.org/med-team/king, https://github.com/rlabduke/javadev.git,5017.593321759259,0,15,0,1.0,3.0,0.0,0.0 -kismet-debian,1.93354168906184,2.95707792512029,1.27565983236249,https://github.com/andrikos/kismet-debian,https://github.com/andrikos/kismet-debian,1415.5860300925926,0,1,0,1.0,0.0,0.0,0.0 -clj-kitchensink,-0.603912685759974,2.58491383360333,-1.56003564470341,https://salsa.debian.org/clojure-team/kitchensink-clojure, https://github.com/puppetlabs/clj-kitchensink.git,3697.849513888889,12,47,0,34.0,0.0,0.0,0.0 -klatexformula_debian,-0.260216607100692,0.570546910004265,-0.533087067152199,https://github.com/TobiasWinchen/klatexformula_debian,https://github.com/TobiasWinchen/klatexformula_debian,3554.8463541666665,0,6,0,3.0,1.0,0.0,0.0 -debian-ksmtuned,0.646860672362004,3.79046478818789,-0.316952623223276,https://github.com/bzed/debian-ksmtuned,https://github.com/bzed/debian-ksmtuned,2027.7201157407408,1,1,0,2.0,2.0,0.0,0.0 -kylin-burner,0.589186392716584,3.70026389459128,-0.323169363713414,https://github.com/ukui/kylin-burner,https://github.com/ukui/kylin-burner,1294.0143055555557,2,9,0,4.0,7.0,0.0,0.0 -kylin-display-switch,-1.73669784855691,1.72525864535503,-2.55888479295058,https://github.com/ukui/kylin-display-switch,https://github.com/ukui/kylin-display-switch,1387.1396296296296,4,11,0,10.0,8.0,0.0,0.0 -lablgtk-extras,-0.875622819527657,2.0634481167041,-1.81863867107358,https://salsa.debian.org/ocaml-team/lablgtk-extras, https://github.com/zoggy/lablgtk-extras.git,3792.513993055556,0,3,0,1.0,2.0,0.0,0.0 -labltk,-0.149699500232681,2.0785630826913,-0.594072233009189,https://salsa.debian.org/ocaml-team/labltk, https://github.com/garrigue/labltk.git,3339.163726851852,1,3,0,3.0,27.0,0.0,0.0 -laby,1.66559486704987,5.31988652273022,0.363489103578681,https://salsa.debian.org/ocaml-team/laby, https://github.com/sgimenez/laby.git,2556.982488425926,11,12,0,15.0,44.0,0.0,7.0 -coffee,-0.808406208185641,0.153961816122418,-0.967422887806145,https://salsa.debian.org/debian/latex-coffee-stains, https://github.com/Echsecutor/coffee,1954.8484027777777,1,7,0,3.0,2.0,0.0,0.0 -latexmk,2.31421691584301,4.88702496788656,1.18951476263909,https://github.com/debian-tex/latexmk,https://github.com/debian-tex/latexmk,1865.2669907407408,3,7,0,5.0,3.0,0.0,0.0 -latexml,0.54261846305742,2.96554000638401,-0.327187748398835,https://github.com/debian-tex/latexml,https://github.com/debian-tex/latexml,2055.920833333333,2,6,0,4.0,1.0,0.0,0.0 -pkg-lava-tool,-1.55531712907973,-0.409262776090778,-1.88250714100602,https://github.com/Linaro/pkg-lava-tool,https://github.com/Linaro/pkg-lava-tool,2892.9631481481483,0,21,0,7.0,2.0,0.0,0.0 -pkg-lavapdu,-1.36019013800191,0.657602704230426,-1.96606438025235,https://github.com/Linaro/pkg-lavapdu,https://github.com/Linaro/pkg-lavapdu,1898.0415972222224,9,22,0,16.0,6.0,0.0,0.0 -lazyarray,-1.69308762567003,1.50971549729651,-2.52626040435176,https://salsa.debian.org/science-team/lazyarray, https://github.com/NeuralEnsemble/lazyarray,3518.1808333333333,0,8,0,4.0,5.0,0.0,0.0 -lbzip2,0.455341312482129,1.92068726890908,-0.0826154573108765,https://github.com/kjn/lbzip2/tree/debian,https://github.com/kjn/lbzip2,2710.187037037037,0,3,0,1.0,4.0,0.0,1.0 -lcdf-typetools,0.58507577130595,1.66109971662088,0.0976153045151779,https://salsa.debian.org/fonts-team/lcdf-typetools, https://github.com/kohler/lcdf-typetools.git,5649.369733796297,4,5,0,6.0,27.0,0.0,0.0 -acme-poe-knee,-1.84449687364852,-0.737744175866493,-2.06614662838924,https://salsa.debian.org/perl-team/modules/packages/libacme-poe-knee-perl, https://github.com/jib/acme-poe-knee.git,0.0,0,1,0,1.0,0.0,0.0,0.0 -Alien-SDL,-0.0977796475509862,0.352980875093779,-0.196993100241036,https://salsa.debian.org/perl-team/modules/packages/libalien-sdl-perl, https://github.com/PerlGameDev/Alien-SDL.git,2024.7772222222225,0,15,0,7.0,10.0,0.0,0.0 -ambix,-0.289176138137127,1.59564396027712,-0.687016111902386,https://salsa.debian.org/multimedia-team/libambix, https://github.com/iem-projects/ambix.git,2332.8963194444445,2,15,0,3.0,2.0,0.0,0.0 -apache-singleton,-1.49187580345858,1.06305630921166,-2.24278252148668,https://salsa.debian.org/perl-team/modules/packages/libapache-singleton-perl, https://github.com/mschout/apache-singleton.git,2808.970277777778,2,1,0,2.0,0.0,0.0,0.0 -mod_authnz_pam,-0.171493579444976,2.2098425672121,-0.807482786059824,https://salsa.debian.org/freeipa-team/mod-authnz-pam, https://github.com/adelton/mod_authnz_pam.git,3451.97412037037,6,1,0,5.0,17.0,0.0,0.0 -App-CPANTS-Lint,-0.210887319557571,3.00227103174808,-1.19316653911583,https://salsa.debian.org/perl-team/modules/packages/libapp-cpants-lint-perl, https://github.com/charsbar/App-CPANTS-Lint.git,177.50917824074074,0,3,0,3.0,4.0,0.0,0.0 -p5-app-perlrdf-command-query,-2.51957168210821,-0.172808532499257,-3.00600909784156,https://salsa.debian.org/perl-team/modules/packages/libapp-perlrdf-command-query-perl, https://github.com/tobyink/p5-app-perlrdf-command-query,786.4794675925926,0,1,0,1.0,1.0,0.0,0.0 -Archive-Ar,-0.71531738452492,1.42189925112464,-1.42620083593273,https://salsa.debian.org/perl-team/modules/packages/libarchive-ar-perl, https://github.com/jbazik/Archive-Ar.git,1734.3291435185183,1,5,0,2.0,4.0,0.0,0.0 -libaria,-0.428707675191208,2.53338676919594,-1.5521033494237,https://github.com/jksrecko/libaria,https://github.com/jksrecko/libaria,1255.0196875,1,2,0,2.0,3.0,0.0,0.0 -perl-Array-Iterator,-1.15205088514643,1.00621865951028,-1.58992109441508,https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl, https://github.com/perlancar/perl-Array-Iterator.git,4456.128819444444,1,16,0,6.0,7.0,0.0,0.0 -Astro-FITS-CFITSIO,-0.284600425980382,1.07282475745656,-0.745324073043926,https://salsa.debian.org/perl-team/modules/packages/libastro-fits-cfitsio-perl, https://github.com/pratzlaff/Astro-FITS-CFITSIO,41.81601851851852,1,3,0,2.0,1.0,0.0,0.0 -AtomBus,-2.91849755028402,-0.982392531095765,-3.31825175924226,https://salsa.debian.org/perl-team/modules/packages/libatombus-perl, https://github.com/ironcamel/AtomBus.git,574.4602777777778,0,2,0,2.0,4.0,0.0,0.0 -p5-atteanx-compatibility-trine,-5.22135593701404,-3.80318807546455,-5.48633171256616,https://salsa.debian.org/perl-team/modules/packages/libatteanx-compatibility-trine-perl, https://github.com/kjetilk/p5-atteanx-compatibility-trine.git,174.84822916666667,0,1,0,2.0,4.0,0.0,0.0 -atteanx-endpoint,-5.05245814008373,-2.96367698752262,-5.47981100244117,https://salsa.debian.org/perl-team/modules/packages/libatteanx-endpoint-perl, https://github.com/kasei/atteanx-endpoint.git,581.8788078703703,0,3,0,2.0,1.0,0.0,0.0 -p5-atteanx-store-sparql,-3.65476325026021,-1.11409279227118,-4.30123236800764,https://salsa.debian.org/perl-team/modules/packages/libatteanx-store-sparql-perl, https://github.com/kjetilk/p5-atteanx-store-sparql.git,1578.1186458333334,1,3,0,4.0,5.0,0.0,0.0 -perl-Authen-Captcha,-0.818923462273046,0.262039817002478,-1.09025276036136,https://salsa.debian.org/perl-team/modules/packages/libauthen-captcha-perl, https://github.com/lkundrak/perl-Authen-Captcha.git,604.0063194444444,4,2,0,4.0,1.0,0.0,0.0 -B-Hooks-OP-Check,0.626322505912957,3.42503431358663,-0.0183739613238044,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-op-check-perl, https://github.com/karenetheridge/B-Hooks-OP-Check,4225.852743055556,1,3,0,3.0,0.0,0.0,0.0 -B-Hooks-Parser,-1.17250550970678,-0.0976957026841385,-1.34187041612142,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-parser-perl, https://github.com/karenetheridge/B-Hooks-Parser.git,3844.972962962963,4,3,0,6.0,6.0,0.0,0.0 -b-utils,-0.223357706433193,1.28995519192297,-0.554196127235344,https://salsa.debian.org/perl-team/modules/packages/libb-utils-perl, https://github.com/jbenjore/b-utils.git,1697.3214351851852,0,9,0,2.0,12.0,0.0,0.0 -libb2,0.434492648437129,2.40595874241059,-0.0945466725319232,https://salsa.debian.org/debian/libb2, https://github.com/BLAKE2/libb2.git,2769.1435185185187,5,14,0,15.0,43.0,0.0,0.0 -backuppc-xs,0.0682740706788018,4.01112170792808,-0.993297530938372,https://salsa.debian.org/debian/libbackuppc-xs-perl, https://github.com/backuppc/backuppc-xs.git,1496.3014004629629,2,5,0,2.0,11.0,0.0,0.0 -libbase58,-0.389939172071052,2.46800026126513,-1.14873224026754,https://salsa.debian.org/debian/libbase58, https://github.com/luke-jr/libbase58,2238.1648148148147,3,7,0,8.0,0.0,0.0,0.0 -libbde,0.371557995740405,2.35314653128062,-0.26791692513328,https://salsa.debian.org/pkg-security-team/libbde, https://github.com/libyal/libbde,2546.627939814815,2,1,0,3.0,54.0,0.0,2.0 -BerkeleyDB,0.0941918810204488,0.610418765724799,-0.0890236718572083,https://salsa.debian.org/md/libberkeleydb-perl, https://github.com/pmqs/BerkeleyDB.git,5644.912708333333,1,4,0,3.0,5.0,0.0,0.0 -bio-alignio-stockholm,-4.98359309327353,-2.63492488806894,-5.47134285585201,https://salsa.debian.org/med-team/libbio-alignio-stockholm-perl, https://github.com/bioperl/bio-alignio-stockholm.git,10.219930555555557,0,2,0,2.0,0.0,0.0,0.0 -bio-cluster,-0.799786679945149,1.44017702946909,-1.32146786939763,https://salsa.debian.org/med-team/libbio-cluster-perl, https://github.com/bioperl/bio-cluster.git,7.36181712962963,0,2,0,2.0,2.0,0.0,0.0 -bio-db-embl,-3.9031050099171,-1.61332024209617,-4.34259364321851,https://salsa.debian.org/med-team/libbio-db-embl-perl, https://github.com/bioperl/bio-db-embl.git,156.30994212962963,0,2,0,2.0,2.0,0.0,0.0 -bioparser,-1.08373202424909,1.81606023628075,-1.76182554973011,https://salsa.debian.org/med-team/libbioparser-dev, https://github.com/rvaser/bioparser,2526.044467592593,2,4,0,2.0,7.0,0.0,0.0 -bot-training,-3.27507453363212,-1.12810114994616,-3.74062506514963,https://salsa.debian.org/perl-team/modules/packages/libbot-training-perl, https://github.com/avar/bot-training.git,3166.806180555556,0,2,0,2.0,3.0,0.0,0.0 -bpp-core,-0.305508300184024,1.34277738657172,-0.926682080336262,https://salsa.debian.org/med-team/libbpp-core, https://github.com/BioPP/bpp-core,4797.182592592592,3,24,0,9.0,13.0,0.0,0.0 -bpp-phyl,-0.690831866570964,0.510825623765991,-1.09879198049711,https://salsa.debian.org/med-team/libbpp-phyl, https://github.com/BioPP/bpp-phyl.git,5775.35337962963,2,40,0,11.0,26.0,0.0,0.0 -bpp-phyl-omics,-0.359895885705015,2.06352724748729,-1.10739933873049,https://salsa.debian.org/med-team/libbpp-phyl-omics, https://github.com/BioPP/bpp-phyl-omics.git,4025.941504629629,0,9,0,3.0,3.0,0.0,0.0 -bpp-popgen,-0.52715335068207,1.12516828093041,-1.10423338211461,https://salsa.debian.org/med-team/libbpp-popgen, https://github.com/BioPP/bpp-popgen,5514.957303240741,1,13,0,4.0,2.0,0.0,0.0 -bpp-qt,-0.0541983728834032,2.88651489322735,-1.0203907927126,https://salsa.debian.org/med-team/libbpp-qt, https://github.com/BioPP/bpp-qt,5024.875405092593,0,12,0,3.0,1.0,0.0,0.0 -bpp-raa,-0.469533407646168,2.42360881452285,-1.43715046438339,https://salsa.debian.org/med-team/libbpp-raa, https://github.com/BioPP/bpp-raa,5066.236296296296,0,17,0,4.0,1.0,0.0,0.0 -bpp-seq,-0.7192518957179,0.639487538052811,-1.12339073370082,https://salsa.debian.org/med-team/libbpp-seq, https://github.com/BioPP/bpp-seq,5747.750347222222,1,22,0,5.0,7.0,0.0,0.0 -bpp-seq-omics,-0.456933536859396,1.1913544638617,-1.06020960411164,https://salsa.debian.org/med-team/libbpp-seq-omics, https://github.com/BioPP/bpp-seq-omics.git,4806.927708333334,0,14,0,4.0,5.0,0.0,0.0 -bultitude,-1.47739279941611,1.11637729354484,-2.10734817800803,https://salsa.debian.org/clojure-team/libbultitude-clojure, https://github.com/TimoFreiberg/bultitude.git,2812.2660300925927,1,20,0,15.0,5.0,0.0,0.0 -Business-EDI,-3.91445005775242,-1.66062729378522,-4.34443150895097,https://salsa.debian.org/perl-team/modules/packages/libbusiness-edi-perl, https://github.com/atz/Business-EDI.git,1031.8625925925926,0,2,0,1.0,2.0,0.0,0.0 -business-isbn,0.445633593785377,2.26446843527189,-0.0741413599516852,https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl, https://github.com/briandfoy/business-isbn.git,5456.629849537037,2,8,0,6.0,17.0,0.0,0.0 -libcaca,1.71582611475539,2.89520234793643,1.00943954206487,https://salsa.debian.org/multimedia-team/libcaca, https://github.com/cacalabs/libcaca.git,5032.472719907408,5,18,0,13.0,72.0,0.0,0.0 -cache-historical-perl,-2.39546917813327,0.151997287990525,-2.98535466833354,https://salsa.debian.org/perl-team/modules/packages/libcache-historical-perl, https://github.com/mschilli/cache-historical-perl.git,1172.6421064814815,1,1,0,2.0,0.0,0.0,0.0 -Cache-Memcached-Fast,0.499032957628515,3.91729136130268,-0.435081154087133,https://salsa.debian.org/perl-team/modules/packages/libcache-memcached-fast-perl, https://github.com/JRaspass/Cache-Memcached-Fast.git,5347.568032407407,1,11,0,8.0,23.0,0.0,0.0 -libcap-ng,0.839670026529806,1.68148066895671,0.38961988470801,https://salsa.debian.org/debian/libcap-ng, https://github.com/stevegrubb/libcap-ng,2330.445636574074,16,5,0,19.0,22.0,0.0,0.0 -libcapi20,0.836881386149714,2.39310410592819,0.20317721975515,https://github.com/leggewie-DM/libcapi20,https://github.com/leggewie-DM/libcapi20,1469.2789236111112,0,1,0,1.0,1.0,0.0,0.0 -Catalyst-Authentication-Credential-HTTP,-0.544586959051202,1.72372401732191,-0.984891698566424,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-authentication-credential-http-perl, https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,3862.908715277778,0,7,0,7.0,0.0,0.0,0.0 -catalyst-dispatch-regex,-0.260617385620325,1.84559522516076,-0.690893343307126,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-dispatchtype-regex-perl, https://github.com/mvgrimes/catalyst-dispatch-regex.git,733.893287037037,0,2,0,2.0,3.0,0.0,0.0 -Catalyst-Model-DBIC-Schema,0.0213319889022422,2.94093546704044,-0.716478592326738,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl, https://github.com/perl-catalyst/Catalyst-Model-DBIC-Schema,5560.308182870371,1,18,0,13.0,3.0,0.0,0.0 -Catmandu-Atom,-2.04489225214707,-0.0901925189999215,-2.46895081507721,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-atom-perl, https://github.com/LibreCat/Catmandu-Atom.git,2313.0128472222223,0,6,0,5.0,2.0,0.0,0.0 -Catmandu-FileStore,-4.67516034270954,-1.94167863581073,-5.40675422276224,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-filestore-perl, https://github.com/LibreCat/Catmandu-FileStore.git,1680.9195138888888,0,7,0,6.0,8.0,0.0,0.0 -Catmandu-Importer-getJSON,-1.1909213365812,1.10956530068731,-1.91384748855888,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-importer-getjson-perl, https://github.com/nichtich/Catmandu-Importer-getJSON.git,2053.850451388889,2,5,0,5.0,11.0,0.0,0.0 -Catmandu-MAB2,-2.19951681724105,-0.597061273551498,-2.59576371835463,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-mab2-perl, https://github.com/jorol/Catmandu-MAB2.git,2364.960335648148,0,4,0,2.0,7.0,0.0,0.0 -Catmandu-RDF,-1.56740048472914,0.787312450154127,-2.11566994828594,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-rdf-perl, https://github.com/LibreCat/Catmandu-RDF.git,3436.103472222222,1,7,0,4.0,19.0,0.0,1.0 -Catmandu-SRU,-1.63474446252057,0.78564739371543,-2.21316911400086,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-sru-perl, https://github.com/LibreCat/Catmandu-SRU.git,3182.483275462963,4,14,0,8.0,13.0,0.0,0.0 -Catmandu-Store-MongoDB,-2.1900265393602,0.0427518930586047,-2.61767130429254,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-store-mongodb-perl, https://github.com/LibreCat/Catmandu-Store-MongoDB.git,3318.004826388889,0,6,0,4.0,6.0,0.0,0.0 -Catmandu-Wikidata,-1.87511712583925,0.710680555891489,-2.45456938930886,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-wikidata-perl, https://github.com/nichtich/Catmandu-Wikidata.git,3124.955462962963,0,3,0,1.0,4.0,0.0,1.0 -cgi-application-server,-1.35036849249102,1.11634713627467,-2.06065945310525,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-server-perl, https://github.com/rjbs/cgi-application-server.git,2084.016111111111,0,3,0,2.0,2.0,0.0,0.0 -CGI-Expand,-0.599511907686873,1.6030547825179,-1.08677298424467,https://salsa.debian.org/perl-team/modules/packages/libcgi-expand-perl, https://github.com/bowman/CGI-Expand.git,1724.5804629629629,2,5,0,2.0,1.0,0.0,0.0 -CGI-Session-ExpireSessions,-2.14112586282376,-0.617520504117339,-2.47229079355589,https://salsa.debian.org/perl-team/modules/packages/libcgi-session-expiresessions-perl, https://github.com/ronsavage/CGI-Session-ExpireSessions,152.66833333333332,0,1,0,1.0,2.0,0.0,0.0 -Chatbot-Eliza,-1.31449350426372,1.236256832299,-1.89655576545199,https://salsa.debian.org/perl-team/modules/packages/libchatbot-eliza-perl, https://github.com/ggruen/Chatbot-Eliza,2872.7296875,1,4,0,2.0,0.0,0.0,0.0 -chi-driver-redis,-1.05628319308502,1.25009921134522,-1.52730469888866,https://salsa.debian.org/perl-team/modules/packages/libchi-driver-redis-perl, https://github.com/rentrak/chi-driver-redis,2250.50630787037,1,6,0,4.0,5.0,0.0,0.0 -libcitygml,-1.08987563239087,0.0704593831664847,-1.42266032798209,https://salsa.debian.org/debian-gis-team/libcitygml, https://github.com/jklimke/libcitygml.git,4063.004247685185,3,34,0,18.0,41.0,0.0,0.0 -class-c3-adopt-next,-0.163979536958511,2.01506094104541,-0.601255754329458,https://salsa.debian.org/perl-team/modules/packages/libclass-c3-adopt-next-perl, https://github.com/rafl/class-c3-adopt-next.git,539.1778587962963,0,4,0,2.0,0.0,0.0,0.0 -Class-Container,-0.0506280246429037,1.66438436343495,-0.403669563546539,https://salsa.debian.org/perl-team/modules/packages/libclass-container-perl, https://github.com/kenahoo/Class-Container.git,1.6649189814814815,1,3,0,3.0,3.0,0.0,0.0 -class-insideout,-0.678352344690154,1.04541323920504,-0.97115967310205,https://salsa.debian.org/perl-team/modules/packages/libclass-insideout-perl, https://github.com/dagolden/class-insideout.git,3195.8285300925927,0,3,0,2.0,8.0,0.0,0.0 -class-meta,-2.15881558350204,0.14075896482123,-2.6165631942791,https://salsa.debian.org/perl-team/modules/packages/libclass-meta-perl, https://github.com/theory/class-meta.git,2689.2590856481484,0,3,0,2.0,3.0,0.0,0.0 -class-refresh,-1.6945342202961,0.520783525916502,-2.14753434399534,https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl, https://github.com/doy/class-refresh.git,1057.1042708333334,0,3,0,3.0,6.0,0.0,0.0 -libcleri,-2.6428568290907,0.0499127530635172,-3.28649977004622,https://salsa.debian.org/siridb-team/libcleri, https://github.com/cesbit/libcleri.git,2711.969259259259,2,9,0,4.0,7.0,0.0,0.0 -config-auto,0.233385477718996,2.06610472361022,-0.239618471601792,https://salsa.debian.org/perl-team/modules/packages/libconfig-auto-perl, https://github.com/jib/config-auto.git,2192.371273148148,2,3,0,1.0,2.0,0.0,0.0 -Config-Identity,-1.129265412311,1.04574522231088,-1.56242377687895,https://salsa.debian.org/perl-team/modules/packages/libconfig-identity-perl, https://github.com/dagolden/Config-Identity.git,2902.57318287037,0,4,0,3.0,2.0,0.0,0.0 -perl-Convert-ASN1,0.419794898053812,1.94729964801752,-0.0317401556640202,https://salsa.debian.org/perl-team/modules/packages/libconvert-asn1-perl, https://github.com/gbarr/perl-Convert-ASN1.git,5538.404745370371,6,11,0,13.0,39.0,0.0,0.0 -convert-binhex,0.529709039060214,2.61582830552676,-0.0231792705203415,https://salsa.debian.org/perl-team/modules/packages/libconvert-binhex-perl, https://github.com/stephenenelson/convert-binhex.git,816.5657407407407,0,2,0,2.0,2.0,0.0,0.0 -CPAN-DistnameInfo,0.252239952864869,2.02125361505163,-0.171465155423167,https://salsa.debian.org/perl-team/modules/packages/libcpan-distnameinfo-perl, https://github.com/gbarr/CPAN-DistnameInfo.git,2596.9826157407406,4,4,0,6.0,11.0,0.0,0.0 -perl-crypt-cracklib,-0.65435420358181,2.05698864183903,-1.41052925856148,https://salsa.debian.org/perl-team/modules/packages/libcrypt-cracklib-perl, https://github.com/dsully/perl-crypt-cracklib.git,1122.667164351852,0,2,0,1.0,5.0,0.0,0.0 -Crypt-DH-GMP,-0.252110483547694,0.859231572492236,-0.460005687711896,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-gmp-perl, https://github.com/lestrrat/Crypt-DH-GMP.git,1507.2044791666667,0,3,0,2.0,2.0,0.0,0.0 -crypt-dh,-0.350596725004508,1.42268759936621,-0.742243187014457,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-perl, https://github.com/wchristian/crypt-dh.git,6.734872685185185,0,3,0,2.0,0.0,0.0,0.0 -perl-Crypt-OpenSSL-Bignum,0.573671133014678,2.81767307204475,-0.0231679045971852,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-bignum-perl, https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git,1031.4781134259258,1,6,0,3.0,7.0,0.0,0.0 -perl-crypt-openssl-pkcs10,-0.343109822890731,2.50779094362159,-1.11358892422623,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-pkcs10-perl, https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git,84.9646875,1,2,0,1.0,1.0,0.0,0.0 -Crypt-OpenSSL-RSA,0.468502078925036,2.48091743646101,-0.0400198202668383,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-rsa-perl, https://github.com/toddr/Crypt-OpenSSL-RSA.git,4592.847384259259,12,12,0,16.0,31.0,0.0,0.0 -crypt-saltedhash,-0.4905719307211,1.64024676105544,-0.934415329371285,https://salsa.debian.org/perl-team/modules/packages/libcrypt-saltedhash-perl, https://github.com/campus-explorer/crypt-saltedhash,137.03401620370371,2,4,0,4.0,7.0,0.0,0.0 -CSS-Tiny,-0.218715773814563,2.05468986638088,-0.96146265117124,https://salsa.debian.org/perl-team/modules/packages/libcss-tiny-perl, https://github.com/chorny/CSS-Tiny.git,2896.0719791666666,1,2,0,3.0,0.0,0.0,0.0 -libcue,1.32805273658989,4.56460981557363,0.252853490660642,https://salsa.debian.org/debian/libcue, https://github.com/lipnitsk/libcue,5295.136643518518,10,5,0,13.0,29.0,0.0,0.0 -libcypher-parser,-0.512286836062366,1.70433584305484,-0.950571479404257,https://github.com/cleishm/libcypher-parser,https://github.com/cleishm/libcypher-parser,2052.113113425926,4,8,0,4.0,34.0,0.0,1.0 -Dancer-Plugin-REST,-1.33219354498241,1.34672558198526,-1.94826239209436,https://salsa.debian.org/perl-team/modules/packages/libdancer-plugin-rest-perl, https://github.com/perldancer/Dancer-Plugin-REST.git,1451.9472800925926,1,5,0,2.0,4.0,0.0,0.0 -perl-Data-Alias,0.13786050485189,2.14863540110046,-0.59774663848673,https://salsa.debian.org/perl-team/modules/packages/libdata-alias-perl, https://github.com/mvduin/perl-Data-Alias,610.4551041666666,0,2,0,2.0,4.0,0.0,0.0 -Data-Dumper-Concise,0.266376219738567,2.5519999594901,-0.214468320591165,https://salsa.debian.org/perl-team/modules/packages/libdata-dumper-concise-perl, https://github.com/p5sagit/Data-Dumper-Concise,2778.042824074074,1,3,0,2.0,0.0,0.0,0.0 -Data-FormValidator,-0.45258754497388,1.18338314982585,-0.804155609034666,https://salsa.debian.org/perl-team/modules/packages/libdata-formvalidator-perl, https://github.com/dnmfarrell/Data-FormValidator.git,2189.7575578703704,3,6,0,6.0,10.0,0.0,0.0 -data-hal,-0.770858799752407,2.2387120211772,-1.72989030653014,https://salsa.debian.org/perl-team/modules/packages/libdata-hal-perl, https://github.com/sipwise/data-hal.git,3620.849722222222,0,13,0,10.0,4.0,0.0,0.0 -Data-OptList,0.475207897773845,2.78157274811564,-0.0271116591451956,https://salsa.debian.org/perl-team/modules/packages/libdata-optlist-perl, https://github.com/rjbs/Data-OptList.git,5253.301597222222,0,2,0,2.0,5.0,0.0,0.0 -data-phrasebook,-2.01734551847377,0.505391897753403,-2.5982578959812,https://salsa.debian.org/perl-team/modules/packages/libdata-phrasebook-perl, https://github.com/barbie/data-phrasebook.git,3782.0208333333335,0,1,0,1.0,0.0,0.0,0.0 -perl-database-dumptruck,-2.63547120163211,-0.0532919359770311,-3.28003114864831,https://salsa.debian.org/perl-team/modules/packages/libdatabase-dumptruck-perl, https://github.com/lkundrak/perl-database-dumptruck.git,85.85665509259259,0,1,0,1.0,1.0,0.0,0.0 -DateTime-Format-Mail,0.384147121548033,2.86153098635143,-0.176516925774215,https://salsa.debian.org/perl-team/modules/packages/libdatetime-format-mail-perl, https://github.com/book/DateTime-Format-Mail.git,809.9546875,2,1,0,3.0,7.0,0.0,0.0 -DBD-ODBC,-0.449258658863497,-0.364703919915002,-0.460569682754974,https://salsa.debian.org/perl-team/modules/packages/libdbd-odbc-perl, https://github.com/perl5-dbi/DBD-ODBC.git,4357.050034722222,1,12,0,8.0,22.0,0.0,0.0 -DBD-SQLite2,-0.224262645662366,0.859942918234476,-0.439189710062929,https://salsa.debian.org/perl-team/modules/packages/libdbd-sqlite2-perl, https://github.com/rurban/DBD-SQLite2,1683.3107175925925,3,5,0,1.0,0.0,0.0,0.0 -DBIx-Abstract,-0.766399669130522,0.986002005750937,-1.21681199680077,https://salsa.debian.org/perl-team/modules/packages/libdbix-abstract-perl, https://github.com/iarna/DBIx-Abstract.git,3028.229884259259,1,6,0,3.0,3.0,0.0,0.0 -dbix-class-schema-loader,0.89990218704414,3.27432627136939,-0.0171547790581848,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-schema-loader-perl, https://github.com/dbsrgits/dbix-class-schema-loader,5369.710428240741,13,29,0,32.0,33.0,0.0,0.0 -Debian-Copyright,0.0036003397421843,1.98259658529217,-0.556601221378198,https://salsa.debian.org/perl-team/modules/packages/libdebian-copyright-perl, https://github.com/periapt/Debian-Copyright.git,467.6439236111111,0,1,0,1.0,1.0,0.0,0.0 -Devel-bt,-0.592688876556296,2.1164194626675,-1.63740000907631,https://salsa.debian.org/perl-team/modules/packages/libdevel-bt-perl, http://github.com/rafl/Devel-bt,563.5733796296296,0,1,0,0.0,0.0,0.0,0.0 -Devel-Cycle,0.297571705512991,2.36286761372623,-0.168993723239249,https://salsa.debian.org/perl-team/modules/packages/libdevel-cycle-perl, https://github.com/lstein/Devel-Cycle.git,24.43947916666667,1,2,0,1.0,0.0,0.0,0.0 -devel-symdump,0.199576191193946,1.34056313934649,-0.0953876401382176,https://salsa.debian.org/debian/libdevel-symdump-perl, https://github.com/andk/devel-symdump,2899.582337962963,0,6,0,4.0,4.0,0.0,0.0 -Perl-Device-Cdio,-1.37044892859906,-0.77266816598082,-1.56986386541455,https://salsa.debian.org/perl-team/modules/packages/libdevice-cdio-perl, https://github.com/rocky/Perl-Device-Cdio.git,3711.374328703704,0,4,0,1.0,6.0,0.0,0.0 -directory-scratch,-0.357823412563771,3.29365450830587,-1.41078954620383,https://salsa.debian.org/perl-team/modules/packages/libdirectory-scratch-perl, https://github.com/bobtfish/directory-scratch.git,1951.386898148148,1,5,0,4.0,1.0,0.0,0.0 -p5-dist-inkt,-1.65279023959925,0.791052072723341,-2.14105439365199,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-perl, https://github.com/tobyink/p5-dist-inkt,2915.0334953703705,0,1,0,1.0,4.0,0.0,0.0 -p5-dist-inkt-role-test,-1.59420052729208,1.67834253175514,-2.40986098895479,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-role-test-perl, https://github.com/tobyink/p5-dist-inkt-role-test,0.0739467592592592,0,1,0,1.0,0.0,0.0,0.0 -dist-zilla-plugins-cjm,-0.713512093421909,1.91378513486864,-1.4906069541154,https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-plugins-cjm-perl, https://github.com/madsen/dist-zilla-plugins-cjm,3005.914583333333,0,4,0,4.0,10.0,0.0,0.0 -libdivsufsort,0.380281967565474,3.16393071678085,-0.250352894348317,https://salsa.debian.org/med-team/libdivsufsort, https://github.com/y-256/libdivsufsort.git,2687.775405092593,0,6,0,2.0,28.0,0.0,0.0 -libdogleg,-0.266710118406638,1.72454983506092,-0.671141966061006,https://salsa.debian.org/science-team/libdogleg, https://github.com/dkogan/libdogleg.git,4490.860775462963,0,5,0,2.0,1.0,0.0,0.0 -libeatmydata,0.37630008167934,1.13756083942558,0.0117248362272004,https://salsa.debian.org/debian/libeatmydata, https://github.com/stewartsmith/libeatmydata.git,5640.288402777778,11,12,0,16.0,27.0,0.0,0.0 -Email-MIME-CreateHTML,-0.598597254011203,0.939646451821147,-0.986646924334629,https://salsa.debian.org/perl-team/modules/packages/libemail-mime-createhtml-perl, https://github.com/vanstyn/Email-MIME-CreateHTML.git,1257.2075810185186,1,3,0,3.0,9.0,0.0,0.0 -end,-1.69522310014399,0.28599806094986,-2.1369126329462,https://salsa.debian.org/perl-team/modules/packages/libend-perl, https://github.com/Abigail/end.git,519.9620023148149,0,1,0,0.0,1.0,0.0,0.0 -libeot,0.423161778651438,2.67505498459498,-0.0161024184366224,https://salsa.debian.org/fonts-team/libeot, https://github.com/umanwizard/libeot.git,3660.845810185185,1,5,0,4.0,6.0,0.0,0.0 -eval-closure,0.372593106926558,2.60258253063066,-0.0711445028701896,https://salsa.debian.org/perl-team/modules/packages/libeval-closure-perl, https://github.com/doy/eval-closure.git,2047.9688310185184,1,4,0,5.0,11.0,0.0,0.0 -libevt,0.323158064550001,2.93880386185079,-0.346454351849185,https://salsa.debian.org/pkg-security-team/libevt, https://github.com/libyal/libevt,2794.588125,1,2,0,2.0,3.0,0.0,2.0 -libevtx,0.467904020555896,3.39412035752315,-0.312819654242962,https://salsa.debian.org/pkg-security-team/libevtx, https://github.com/libyal/libevtx,2794.5568055555555,0,1,0,1.0,24.0,0.0,2.0 -libeXaDrums,-1.5757657499677,0.465583492343728,-2.04715858021389,https://github.com/SpintroniK/libeXaDrums/tree/debian,https://github.com/SpintroniK/libeXaDrums,2888.0486342592594,2,6,0,3.0,6.0,0.0,0.0 -libexif-gtk,0.689902820789787,2.40945855479862,0.0374998073843081,https://salsa.debian.org/debian-phototools-team/libexif-gtk, https://github.com/libexif/libexif-gtk.git,5131.870740740741,2,5,0,6.0,4.0,0.0,0.0 -ExtUtils-CBuilder,-0.503646513449252,1.03449994745768,-0.986378757811456,https://salsa.debian.org/perl-team/modules/packages/libextutils-cbuilder-perl, https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder.git,4657.334675925926,8,12,0,11.0,12.0,0.0,0.0 -extutils-modulemaker,-1.62871770525338,0.494975147829164,-2.0632435210871,https://salsa.debian.org/perl-team/modules/packages/libextutils-modulemaker-perl, https://github.com/jkeenan/extutils-modulemaker.git,3844.1565972222224,0,2,0,1.0,4.0,0.0,0.0 -libfcgi-debian,2.40257909492813,4.86016916774602,1.24157296748068,https://github.com/tehnick/libfcgi-debian,https://github.com/tehnick/libfcgi-debian,1176.160451388889,0,1,0,1.0,1.0,0.0,0.0 -File-MimeInfo,1.31465824728545,3.14462338384238,0.477590629243755,https://salsa.debian.org/perl-team/modules/packages/libfile-mimeinfo-perl, https://github.com/mbeijen/File-MimeInfo.git,3834.7099189814817,10,12,0,18.0,50.0,0.0,0.0 -File-Modified,-0.14543119621438,1.40115857614676,-0.504112448898396,https://salsa.debian.org/perl-team/modules/packages/libfile-modified-perl, https://github.com/neilb/File-Modified,2145.0378472222224,1,2,0,1.0,0.0,0.0,0.0 -file-save-home,-1.80078184282679,0.360448766779334,-2.23762980034239,https://salsa.debian.org/perl-team/modules/packages/libfile-save-home-perl, https://github.com/jkeenan/file-save-home,1776.9554861111112,0,2,0,1.0,0.0,0.0,0.0 -File-Touch,0.0982847029607248,1.83362628207572,-0.256095919435532,https://salsa.debian.org/perl-team/modules/packages/libfile-touch-perl, https://github.com/neilb/File-Touch,4116.497048611112,1,3,0,2.0,3.0,0.0,0.0 -perl-File-Write-Rotate,-1.02965565727428,1.34590846292153,-1.50055666713275,https://salsa.debian.org/perl-team/modules/packages/libfile-write-rotate-perl, https://github.com/sharyanto/perl-File-Write-Rotate.git,3146.811388888889,0,17,0,5.0,6.0,0.0,0.0 -filehandle-unget,0.006382388461796,1.59403727039346,-0.275660120132887,https://salsa.debian.org/perl-team/modules/packages/libfilehandle-unget-perl, https://github.com/coppit/filehandle-unget.git,3647.096493055556,0,3,0,1.0,0.0,0.0,0.0 -Filesys-Notify-Simple,0.192457779636544,2.72358801313718,-0.246444055582868,https://salsa.debian.org/perl-team/modules/packages/libfilesys-notify-simple-perl, https://github.com/miyagawa/Filesys-Notify-Simple.git,4730.416481481481,0,13,0,9.0,27.0,0.0,0.0 -Filter,-0.255535639743574,0.0318054425186413,-0.307743574225788,https://salsa.debian.org/debian/libfilter-perl, https://github.com/rurban/Filter,4868.305486111111,5,12,0,11.0,13.0,0.0,0.0 -filter-template,-1.0581574356645,1.19033145952756,-1.57732486605528,https://salsa.debian.org/perl-team/modules/packages/libfilter-template-perl, https://github.com/rcaputo/filter-template,1475.562013888889,0,1,0,1.0,0.0,0.0,0.0 -libfixposix,-0.420611457701383,2.08913962281545,-0.980646791686086,https://salsa.debian.org/common-lisp-team/libfixposix, https://github.com/sionescu/libfixposix.git,4611.074537037037,9,4,0,10.0,24.0,0.0,0.0 -libfizmo,0.627328452133396,4.56921020590766,-0.487828541567491,https://github.com/chrender/libfizmo,https://github.com/chrender/libfizmo,4850.527395833334,1,7,0,3.0,3.0,0.0,0.0 -libfsntfs,0.331790789788397,2.82328509978561,-0.275189207603366,https://salsa.debian.org/pkg-security-team/libfsntfs, https://github.com/libyal/libfsntfs.git,3331.7044212962965,0,1,0,1.0,16.0,0.0,2.0 -libfte,-1.92682557271572,0.482897517427581,-2.55573996881726,https://github.com/kpdyer/libfte/tree/debian/unstable,https://github.com/kpdyer/libfte,519.2035763888889,0,6,1,3.0,6.0,0.0,0.0 -libfvde,0.956903500165177,4.51034102255231,-0.136541327675116,https://salsa.debian.org/pkg-security-team/libfvde, https://github.com/libyal/libfvde.git,3327.7584953703704,0,1,0,1.0,79.0,0.0,2.0 -libfwnt,0.467849319478135,3.45031754421071,-0.315591020305446,https://salsa.debian.org/pkg-security-team/libfwnt, https://github.com/libyal/libfwnt,3707.817083333333,2,1,0,3.0,9.0,0.0,2.0 -libfwsi,0.476745135518984,3.28246115681856,-0.324451907406893,https://salsa.debian.org/pkg-security-team/libfwsi, https://github.com/libyal/libfwsi.git,3356.517939814815,0,1,0,1.0,19.0,0.0,2.0 -gclib,-1.2540063751135,1.23935064340759,-1.79397930397421,https://salsa.debian.org/med-team/libgclib, https://github.com/gpertea/gclib,2782.2130555555555,2,2,0,3.0,11.0,0.0,0.0 -gdal-grass,0.178547049625118,2.12292907891647,-0.469838334134553,https://salsa.debian.org/debian-gis-team/gdal-grass, https://github.com/OSGeo/gdal-grass.git,695.4440625,6,4,0,13.0,3.0,0.0,0.0 -geo-google-mapobject,-0.873636438099119,1.4566987693908,-1.31398698076915,https://salsa.debian.org/perl-team/modules/packages/libgeo-google-mapobject-perl, https://github.com/periapt/geo-google-mapobject.git,50.64109953703704,0,1,0,1.0,1.0,0.0,0.0 -geoip-api-perl,-0.133611196143978,0.522308388905415,-0.297696092577808,https://salsa.debian.org/perl-team/modules/packages/libgeo-ip-perl, https://github.com/maxmind/geoip-api-perl.git,4739.876516203703,5,12,0,10.0,18.0,0.0,0.0 -git-pureperl,-0.927053139470002,0.744963626975721,-1.39019653031615,https://salsa.debian.org/perl-team/modules/packages/libgit-pureperl-perl, https://github.com/broquaint/git-pureperl.git,2866.3317824074074,3,22,0,14.0,6.0,0.0,0.0 -libgit2,0.742684346702617,1.48996278809533,0.311843826472492,https://salsa.debian.org/debian/libgit2, https://github.com/libgit2/libgit2.git,5520.89537037037,104,508,0,399.0,0.0,0.0,0.0 -gnupg-interface,0.161583038884558,0.739184756002484,-0.110459047620561,https://salsa.debian.org/perl-team/modules/packages/libgnupg-interface-perl, https://github.com/bestpractical/gnupg-interface.git,5505.203530092593,4,10,0,13.0,15.0,0.0,0.0 -Graph-D3,-2.01038793657804,0.581517663859652,-2.59231812459341,https://salsa.debian.org/perl-team/modules/packages/libgraph-d3-perl, https://github.com/shoheik/Graph-D3.git,1331.9675925925926,1,3,0,3.0,3.0,0.0,0.0 -Graph-ReadWrite,0.0013928295658517,2.59587383646985,-0.736153594207741,https://salsa.debian.org/perl-team/modules/packages/libgraph-readwrite-perl, https://github.com/neilb/Graph-ReadWrite.git,2428.8532986111118,0,5,0,3.0,3.0,0.0,0.0 -p5-graph-writer-dsm,-2.83596805730607,-0.700752628701255,-3.30757825947649,https://salsa.debian.org/perl-team/modules/packages/libgraph-writer-dsm-perl, https://github.com/joenio/p5-graph-writer-dsm.git,1743.0827777777777,0,2,0,1.0,0.0,0.0,0.0 -Graphics-ColorNames-WWW,-0.88460985143656,1.11849009005437,-1.36747130387901,https://salsa.debian.org/perl-team/modules/packages/libgraphics-colornames-www-perl, https://github.com/cfaerber/Graphics-ColorNames-WWW,3881.265960648148,0,3,0,1.0,0.0,0.0,0.0 -GraphViz,-0.0292832904495931,0.874891106216712,-0.213177080658366,https://salsa.debian.org/perl-team/modules/packages/libgraphviz-perl, https://github.com/ronsavage/GraphViz.git,4149.564768518519,0,8,0,6.0,5.0,0.0,0.0 -libgtextutils,0.18107998983877,2.31422265375572,-0.633302611667991,https://salsa.debian.org/med-team/libgtextutils, https://github.com/agordon/libgtextutils.git,1379.9043171296296,1,2,0,1.0,21.0,0.0,0.0 -gzstream,-0.460427174775033,1.0639003315321,-0.728042296265996,https://salsa.debian.org/med-team/libgzstream, https://github.com/kanedo/gzstream.git,1271.815011574074,0,2,0,1.0,4.0,0.0,0.0 -perl-html-stripscripts,-0.360680107455353,1.79508020243341,-0.787087963735414,https://salsa.debian.org/perl-team/modules/packages/libhtml-stripscripts-perl, https://github.com/clintongormley/perl-html-stripscripts.git,634.9694444444444,1,1,0,2.0,4.0,0.0,0.0 -html-template,0.262399831160294,1.27876100434538,-0.0168521747450782,https://salsa.debian.org/perl-team/modules/packages/libhtml-template-perl, https://github.com/mpeters/html-template.git,2360.5546296296297,1,10,0,6.0,17.0,0.0,0.0 -HTML-Tiny,-0.274204964539277,2.11584952732761,-0.803423421637951,https://salsa.debian.org/perl-team/modules/packages/libhtml-tiny-perl, https://github.com/ap/HTML-Tiny.git,5143.924953703704,0,2,0,2.0,0.0,0.0,0.0 -HTTP-Message,1.22405742344076,4.08227207317498,0.277166760595612,https://salsa.debian.org/perl-team/modules/packages/libhttp-message-perl, https://github.com/libwww-perl/HTTP-Message.git,5655.126851851852,76,18,0,56.0,26.0,0.0,1.0 -HTTP-Proxy,-0.0949217120593665,1.2455203169444,-0.635012392432945,https://salsa.debian.org/perl-team/modules/packages/libhttp-proxy-perl, https://github.com/book/HTTP-Proxy.git,4041.041539351852,7,1,0,8.0,15.0,0.0,0.0 -http-server-simple,0.823119522613044,2.85274649929505,0.0853932498155173,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-perl, https://github.com/bestpractical/http-server-simple,2910.7674074074075,4,11,0,11.0,4.0,0.0,0.0 -HTTP-Server-Simple-PSGI,-0.197712609482771,1.91803650261317,-0.628530926125277,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-psgi-perl, https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git,1409.5210763888888,0,2,0,2.0,3.0,0.0,0.0 -libhugetlbfs,-0.658388726093722,1.40818106083284,-1.17912709896999,https://github.com/punitagrawal/libhugetlbfs.git,https://github.com/punitagrawal/libhugetlbfs.git,2039.1172800925929,1,1,0,2.0,1.0,0.0,0.0 -libics,-1.54875714770234,-0.797716011379056,-1.72373430156596,https://salsa.debian.org/med-team/libics, https://github.com/svi-opensource/libics,4511.101527777778,4,15,0,9.0,13.0,0.0,0.0 -Net-IDN-Encode,0.0249334358955235,3.97227604118717,-1.06592890954293,https://salsa.debian.org/perl-team/modules/packages/libidna-punycode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.639594907408,6,7,0,3.0,12.0,0.0,0.0 -iksemel,1.40567067167507,3.301003501109,0.531380273002264,https://salsa.debian.org/debian/libiksemel, https://github.com/meduketto/iksemel,2285.3264351851853,0,3,0,0.0,15.0,0.0,0.0 -p5-image-exif,-0.356621075413228,0.802761541852296,-0.610345556971281,https://salsa.debian.org/perl-team/modules/packages/libimage-exif-perl, https://github.com/arc/p5-image-exif.git,101.2955787037037,2,2,0,1.0,1.0,0.0,0.0 -Image-MetaData-JPEG,0.178247493087967,2.80157895707243,-0.571723996659595,https://salsa.debian.org/perl-team/modules/packages/libimage-metadata-jpeg-perl, https://github.com/rjbs/Image-MetaData-JPEG.git,1915.8586921296296,1,3,0,2.0,0.0,0.0,0.0 -image-size,0.272891509746704,1.59419369349031,-0.145996324790789,https://salsa.debian.org/perl-team/modules/packages/libimage-size-perl, https://github.com/rjray/image-size.git,4527.537858796296,0,12,0,10.0,14.0,0.0,0.0 -libinstpatch,0.306371504286247,2.06827310595229,-0.0894533027777747,https://salsa.debian.org/multimedia-team/libinstpatch, https://github.com/swami/libinstpatch,4470.764583333334,4,11,0,8.0,17.0,0.0,0.0 -p5-io-callback,-2.02122954763607,0.669477436474041,-2.72119693576599,https://salsa.debian.org/perl-team/modules/packages/libio-callback-perl, https://github.com/tobyink/p5-io-callback.git,2909.5988078703704,0,1,0,1.0,0.0,0.0,0.0 -IO-Digest,-0.176999858307328,2.43534422389143,-0.855332929595617,https://salsa.debian.org/perl-team/modules/packages/libio-digest-perl, https://github.com/clkao/IO-Digest.git,1863.099710648148,1,4,0,3.0,4.0,0.0,0.0 -File-Flock,0.217024179697917,2.8246432585759,-0.63601674251534,https://salsa.debian.org/perl-team/modules/packages/libio-event-perl, https://github.com/muir/File-Flock.git,474.8396990740741,0,4,0,4.0,6.0,0.0,0.0 -LibIO-Interface-Perl,1.0184295464928,4.14764748469928,0.0508969183914208,https://salsa.debian.org/perl-team/modules/packages/libio-interface-perl, https://github.com/lstein/LibIO-Interface-Perl.git,2278.4801041666665,0,2,0,1.0,6.0,0.0,0.0 -perl-io-socket-inet6,1.05361058182567,2.55415908896728,0.360368514702543,https://salsa.debian.org/perl-team/modules/packages/libio-socket-inet6-perl, https://github.com/shlomif/perl-io-socket-inet6.git,5052.830706018519,0,3,0,1.0,0.0,0.0,0.0 -IPC-Run3,0.563072317431629,3.20249246798755,-0.0863000735851595,https://salsa.debian.org/perl-team/modules/packages/libipc-run3-perl, https://github.com/rjbs/IPC-Run3.git,1899.0353819444445,8,2,0,10.0,19.0,0.0,0.0 -ipc-system-simple,0.702506806357814,3.37307823313289,0.0378027177660786,https://salsa.debian.org/perl-team/modules/packages/libipc-system-simple-perl, https://github.com/pjf/ipc-system-simple.git,5306.457638888889,4,11,0,8.0,42.0,0.0,0.0 -ITL,0.0254308756570228,1.55467054599278,-0.427459048128751,https://salsa.debian.org/islamic-team/libitl, https://github.com/arabeyes-org/ITL,3251.473090277778,2,13,0,6.0,19.0,0.0,0.0 -libitl-gobject,-0.743991329234141,1.48353017572794,-1.36908980309503,https://salsa.debian.org/islamic-team/libitl-gobject, https://github.com/aelmahmoudy/libitl-gobject.git,2211.2291898148146,0,2,0,1.0,0.0,0.0,0.0 -jbzip2,-0.111762555314467,1.76451539915625,-0.553204654470051,https://salsa.debian.org/java-team/libjbzip2-java, https://github.com/routeKIT/jbzip2.git,1394.2040046296297,0,2,0,1.0,0.0,0.0,0.0 -libjcat,-2.96652961883189,-1.13865549089184,-3.32297511016998,https://salsa.debian.org/efi-team/libjcat, https://github.com/hughsie/libjcat.git,1373.0888425925923,7,5,0,7.0,13.0,0.0,0.0 -jifty-dbi,-1.61466795584401,0.785230687618362,-2.27076034379016,https://salsa.debian.org/perl-team/modules/packages/libjifty-dbi-perl, https://github.com/bestpractical/jifty-dbi.git,2518.146388888889,1,16,0,21.0,6.0,0.0,0.0 -Lingua-EN-Inflect-Number,0.128032689867242,2.5007020447864,-0.401786300359941,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-inflect-number-perl, https://github.com/neilbowers/Lingua-EN-Inflect-Number,2030.0671527777777,1,2,0,1.0,0.0,0.0,0.0 -Lingua-EN-Numbers-Ordinate,-0.528739698770259,1.71367679038345,-0.95685749031336,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-numbers-ordinate-perl, https://github.com/neilb/Lingua-EN-Numbers-Ordinate,4119.229085648148,1,2,0,1.0,0.0,0.0,0.0 -Lingua-PT-Stemmer,-0.0370378021163652,1.75560599769747,-0.405294301299482,https://salsa.debian.org/perl-team/modules/packages/liblingua-pt-stemmer-perl, https://github.com/neilb/Lingua-PT-Stemmer.git,472.7143518518519,1,2,0,1.0,0.0,0.0,0.0 -list-compare,0.391313448822763,2.69306808066932,-0.0910990526566794,https://salsa.debian.org/perl-team/modules/packages/liblist-compare-perl, https://github.com/jkeenan/list-compare.git,5186.55181712963,4,4,0,6.0,7.0,0.0,0.0 -Locale-Maketext-Gettext,-0.498869475594542,1.13023375711277,-0.82798089589324,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-gettext-perl, https://github.com/imacat/Locale-Maketext-Gettext.git,519.6569444444444,0,2,0,1.0,0.0,0.0,0.0 -locale-maketext-lexicon,0.161275632049051,1.89696025323471,-0.284099785121201,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-lexicon-perl, https://github.com/clintongormley/locale-maketext-lexicon.git,1951.7074074074076,1,9,0,7.0,17.0,0.0,0.0 -p5-Locales,-1.04391245581118,1.14085517175161,-1.47854564563719,https://salsa.debian.org/perl-team/modules/packages/liblocales-perl, https://github.com/drmuey/p5-Locales.git,1740.6568287037037,0,3,0,2.0,4.0,0.0,0.0 -liblockfile-debian,1.34528048506525,2.16203178683404,0.834960494457955,https://github.com/miquels/liblockfile-debian,https://github.com/miquels/liblockfile-debian,1484.1868055555556,0,2,0,1.0,0.0,0.0,0.0 -log-message-simple,0.207617298002529,1.66317485535803,-0.0635138373050909,https://salsa.debian.org/perl-team/modules/packages/liblog-message-simple-perl, https://github.com/jib/log-message-simple.git,1230.0807175925927,0,3,0,2.0,1.0,0.0,0.0 -libltc,0.25462320273444,2.48146198812678,-0.195451051854273,https://salsa.debian.org/multimedia-team/libltc, https://github.com/x42/libltc,3674.491215277778,2,8,0,6.0,48.0,0.0,0.0 -p5-lwp-useragent-chicaching,-0.794221914108557,1.51789164766528,-1.22722810427765,https://salsa.debian.org/perl-team/modules/packages/liblwp-useragent-chicaching-perl, https://github.com/kjetilk/p5-lwp-useragent-chicaching.git,1283.769074074074,0,1,0,1.0,3.0,0.0,0.0 -magpie,-1.71586351135262,1.1978848249893,-2.52089829827459,https://salsa.debian.org/perl-team/modules/packages/libmagpie-perl, https://github.com/tamarou/magpie.git,2275.6417824074074,0,6,0,5.0,5.0,0.0,3.0 -mail-mbox-messageparser,-0.0992180028765262,0.383308459256174,-0.254928133610786,https://salsa.debian.org/perl-team/modules/packages/libmail-mbox-messageparser-perl, https://github.com/coppit/mail-mbox-messageparser.git,3258.3029513888887,0,3,0,1.0,0.0,0.0,0.0 -perl5-MailTools,1.05296856677644,2.15207135791342,0.469020884464135,https://salsa.debian.org/perl-team/modules/packages/libmailtools-perl, https://github.com/markov2/perl5-MailTools,1648.7267013888888,0,2,0,1.0,4.0,0.0,0.0 -libmatemixer,0.519077651770942,2.87142669869048,-0.0439618763861113,https://salsa.debian.org/debian-mate-team/libmatemixer, https://github.com/mate-desktop/libmatemixer.git,3404.5255092592597,7,20,0,15.0,31.0,0.0,0.0 -perl-math-basecalc,-1.04929713915701,0.776247486414709,-1.60691357416815,https://salsa.debian.org/perl-team/modules/packages/libmath-basecalc-perl, https://github.com/kenahoo/perl-math-basecalc.git,3269.0290740740743,0,8,0,2.0,5.0,0.0,0.0 -Math-GMP,-0.497770031800226,1.2717897116415,-0.979192756759848,https://salsa.debian.org/perl-team/modules/packages/libmath-gmp-perl, https://github.com/turnstep/Math-GMP.git,2969.082974537037,1,6,0,5.0,6.0,0.0,0.0 -Math-Random-ISAAC,0.647713767893043,3.36094723709202,-0.0377506361166474,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-perl, https://github.com/jawnsy/Math-Random-ISAAC,2416.308032407408,0,1,0,1.0,1.0,0.0,0.0 -Math-Random-ISAAC-XS,0.420044115350087,2.42617679498187,-0.0688144674619528,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-xs-perl, https://github.com/jawnsy/Math-Random-ISAAC-XS.git,2412.8853703703703,0,1,0,1.0,0.0,0.0,0.0 -math-random-oo,-1.35187489411529,0.998777142068624,-1.80721660160684,https://salsa.debian.org/perl-team/modules/packages/libmath-random-oo-perl, https://github.com/dagolden/math-random-oo.git,1499.3150694444444,0,1,0,1.0,2.0,0.0,0.0 -mce-perl,-0.240648845381619,2.07944154167984,-0.673322484241476,https://salsa.debian.org/perl-team/modules/packages/libmce-perl, https://github.com/marioroy/mce-perl.git,2944.7772337962965,1,6,0,6.0,17.0,0.0,0.0 -Memoize-ExpireLRU,0.193651801444528,2.93098175326362,-0.401914517363021,https://salsa.debian.org/perl-team/modules/packages/libmemoize-expirelru-perl, https://github.com/neilb/Memoize-ExpireLRU,624.640474537037,1,2,0,1.0,0.0,0.0,0.0 -Message-Passing,-1.57217074451121,-0.58317998885584,-1.7635460332697,https://salsa.debian.org/perl-team/modules/packages/libmessage-passing-perl, https://github.com/suretec/Message-Passing.git,2987.778923611111,1,15,0,11.0,14.0,0.0,0.0 -method-signatures-simple,-0.505171814610598,2.28798951395145,-1.1367149384271,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-simple-perl, https://github.com/rhesa/method-signatures-simple.git,4262.9309953703705,0,6,0,2.0,4.0,0.0,0.0 -minIni,-0.45273006696408,0.830257974649423,-0.745676424048719,https://salsa.debian.org/yangfl-guest/minIni, https://github.com/compuphase/minIni,2280.3336342592597,2,6,0,4.0,22.0,0.0,0.0 -MLDBM,0.255685088884825,2.21713282261784,-0.141370053434749,https://salsa.debian.org/perl-team/modules/packages/libmldbm-perl, https://github.com/chorny/MLDBM.git,1906.0319791666664,3,2,0,2.0,0.0,0.0,0.0 -Module-CPANTS-Analyse,0.609245808655205,3.47889052553453,-0.468888102677164,https://salsa.debian.org/perl-team/modules/packages/libmodule-cpants-analyse-perl, https://github.com/cpants/Module-CPANTS-Analyse.git,5647.731215277778,8,20,0,23.0,21.0,0.0,0.0 -module-extract-use,-1.42148872513497,0.722346225431496,-1.86166140766187,https://salsa.debian.org/perl-team/modules/packages/libmodule-extract-use-perl, https://github.com/briandfoy/module-extract-use.git,2918.7995717592594,0,7,0,4.0,8.0,0.0,0.0 -Module-Find,0.530689072476863,2.96191107462692,-0.0631954530758141,https://salsa.debian.org/perl-team/modules/packages/libmodule-find-perl, https://github.com/crenz/Module-Find.git,4710.686875,2,8,0,7.0,14.0,0.0,0.0 -module-install-readmefrompod,-1.83121316421891,-0.803308246618474,-2.06158147084299,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-readmefrompod-perl, https://github.com/bingos/module-install-readmefrompod.git,2847.0250694444444,0,7,0,6.0,4.0,0.0,0.0 -Perl-Module-Install-XSUtil,-1.95286814843256,-0.416199022673938,-2.2440219120537,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-xsutil-perl, https://github.com/gfx/Perl-Module-Install-XSUtil.git,1649.8556828703704,0,9,0,3.0,4.0,0.0,0.0 -Module-Manifest,-0.275080980203051,2.04126647656298,-0.707206931063704,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-perl, https://github.com/karenetheridge/Module-Manifest,3547.187893518518,0,3,0,3.0,0.0,0.0,0.0 -module-manifest-skip-pm,-0.331104704504746,2.08964832134239,-0.861124086399516,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-skip-perl, https://github.com/ingydotnet/module-manifest-skip-pm.git,1169.1213194444445,0,5,0,3.0,11.0,0.0,0.0 -p5-module-package-rdf,-1.9996964424579,0.808957985695429,-2.72477826606109,https://salsa.debian.org/perl-team/modules/packages/libmodule-package-rdf-perl, https://github.com/tobyink/p5-module-package-rdf,668.6822106481482,0,1,0,1.0,0.0,0.0,0.0 -module-signature,0.615393347672838,2.30814388681991,0.0588548984962523,https://salsa.debian.org/perl-team/modules/packages/libmodule-signature-perl, https://github.com/audreyt/module-signature.git,4414.52917824074,0,17,0,11.0,23.0,0.0,0.0 -Module-Starter-Plugin-CGIApp,-1.0772217684868,1.77744216289853,-2.03621850623778,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,4024.0661921296296,0,7,0,4.0,4.0,0.0,0.0 -p5-moops,-2.01602412276297,0.184857935561608,-2.57476905541738,https://salsa.debian.org/perl-team/modules/packages/libmoops-perl, https://github.com/tobyink/p5-moops,2419.9678819444443,0,3,0,2.0,7.0,0.0,0.0 -p5-moosex-attributetags,-1.48444699100229,0.712280225199573,-1.91694570169781,https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributetags-perl, https://github.com/tobyink/p5-moosex-attributetags,2042.2449074074077,0,1,0,1.0,4.0,0.0,0.0 -perl-mp3-info,0.972200522358068,3.06359046848305,0.14597462639865,https://salsa.debian.org/perl-team/modules/packages/libmp3-info-perl, https://github.com/JJ/perl-mp3-info.git,3267.4327777777776,1,4,0,1.0,3.0,0.0,0.0 -libmsiecf,0.46552312906009,3.43022127806562,-0.320200298445252,https://salsa.debian.org/pkg-security-team/libmsiecf, https://github.com/libyal/libmsiecf.git,3548.1866898148146,0,1,0,1.0,5.0,0.0,2.0 -multidimensional,0.637848870853986,3.40591300570569,-0.108805795385123,https://salsa.debian.org/perl-team/modules/packages/libmultidimensional-perl, https://github.com/ilmari/multidimensional,4293.3777314814815,1,3,0,4.0,4.0,0.0,0.0 -libmurmurhash,-1.16067502145436,1.24196568505228,-1.59222127523527,https://salsa.debian.org/med-team/libmurmurhash, https://github.com/kloetzl/libmurmurhash.git,1568.0675578703704,0,1,0,1.0,0.0,0.0,0.0 -perl-nagios-object,-0.0287280625874169,2.41658250392272,-0.514503755554881,https://salsa.debian.org/perl-team/modules/packages/libnagios-object-perl, https://github.com/duncs/perl-nagios-object.git,4719.336793981482,1,14,0,9.0,10.0,0.0,0.0 -libnatpmp,0.254340902214523,1.1083518392238,4.5219738185424e-05,https://salsa.debian.org/miniupnp-team/libnatpmp, https://github.com/miniupnp/libnatpmp,3832.098252314815,3,20,0,19.0,24.0,0.0,0.0 -libnbcompat,-5.04706956390868,-2.61580162813559,-5.47995498785397,https://github.com/jgoerzen/libnbcompat,https://github.com/jgoerzen/libnbcompat,3888.0046759259258,0,19,0,0.0,2.0,0.0,0.0 -libndp,0.413875636023979,2.26088219753132,0.0018314312966356,https://salsa.debian.org/debian/libndp, https://github.com/jpirko/libndp.git,3924.0402314814814,9,4,0,9.0,18.0,0.0,0.0 -libneo4j-client,-0.44200445507635,1.82260432303787,-1.19625097352374,https://github.com/cleishm/libneo4j-client,https://github.com/cleishm/libneo4j-client,1826.306435185185,2,5,0,3.0,62.0,0.0,1.0 -p5-Net-DNS-Lite,-0.388600875739514,1.73875559764193,-0.810307744985523,https://salsa.debian.org/perl-team/modules/packages/libnet-dns-lite-perl, https://github.com/kazuho/p5-Net-DNS-Lite.git,2215.071388888889,0,7,0,6.0,9.0,0.0,0.0 -Net-IDN-Encode,0.202120296662982,2.48699815996222,-0.240749262969265,https://salsa.debian.org/perl-team/modules/packages/libnet-idn-encode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.639594907408,6,7,0,3.0,12.0,0.0,0.0 -perl-net-jabber-bot,-1.40647099245218,2.21383625500312,-2.3398369660299,https://salsa.debian.org/perl-team/modules/packages/libnet-jabber-bot-perl, https://github.com/toddr/perl-net-jabber-bot.git,4656.943171296296,0,12,0,5.0,11.0,0.0,1.0 -Net-LDAP-FilterBuilder,-1.03116738256461,1.31644249513134,-1.55059074652219,https://salsa.debian.org/perl-team/modules/packages/libnet-ldap-filterbuilder-perl, https://github.com/ollyg/Net-LDAP-FilterBuilder.git,3727.993148148148,1,4,0,2.0,2.0,0.0,0.0 -libnet-ldapapi-perl,0.329801233060665,4.21712292515636,-0.93758425895926,https://github.com/whm/libnet-ldapapi-perl,https://github.com/whm/libnet-ldapapi-perl,2319.3761458333333,0,8,0,3.0,3.0,0.0,0.0 -Net-Netmask,0.194909018374484,1.29739745595377,-0.0893189593134,https://salsa.debian.org/perl-team/modules/packages/libnet-netmask-perl, https://github.com/jmaslak/Net-Netmask.git,4478.38675925926,1,7,0,6.0,3.0,0.0,0.0 -Net-OpenID-Server,-1.09555440281624,0.684539371669913,-1.53725150822958,https://salsa.debian.org/perl-team/modules/packages/libnet-openid-server-perl, https://github.com/robn/Net-OpenID-Server.git,848.2155092592593,2,3,0,3.0,3.0,0.0,0.0 -Net-SMTP-TLS,-0.113211376060407,2.6114896609769,-0.702491846232613,https://salsa.debian.org/perl-team/modules/packages/libnet-smtp-tls-butmaintained-perl, https://github.com/fayland/Net-SMTP-TLS,3215.150324074074,2,5,0,4.0,4.0,0.0,0.0 -libnfo,-1.67562099042326,0.120641287739072,-2.18697726172515,https://salsa.debian.org/debian/libnfo, https://github.com/GeeXboX/libnfo,1108.031238425926,0,6,0,3.0,0.0,0.0,0.0 -libnids,1.48070068944423,2.86889934498414,0.725429802558325,https://salsa.debian.org/pkg-security-team/libnids, https://github.com/MITRECND/libnids.git,3593.0894791666665,1,9,0,6.0,10.0,0.0,0.0 -number-fraction,-1.54009992200597,1.00799051030491,-2.12164752767652,https://salsa.debian.org/perl-team/modules/packages/libnumber-fraction-perl, https://github.com/p5-number-fraction/number-fraction.git,5664.8216203703705,3,11,0,5.0,9.0,0.0,0.0 -libofa,0.47335821093708,1.43356884961668,0.0963115974952011,https://salsa.debian.org/debian/libofa, https://github.com/tanob/libofa.git,2279.4909837962964,1,2,0,1.0,3.0,0.0,0.0 -libolecf,0.462165542271876,3.32672178633661,-0.317708482986411,https://salsa.debian.org/pkg-security-team/libolecf, https://github.com/libyal/libolecf.git,3351.053310185185,0,1,0,1.0,5.0,0.0,2.0 -libopenaptx,-1.76978937147399,0.402104648829942,-2.23189383047556,https://salsa.debian.org/debian/libopenaptx, https://github.com/pali/libopenaptx,1024.2505671296296,0,2,0,2.0,31.0,0.0,0.0 -pal,-0.743616408890405,0.798812895611161,-1.02496439640612,https://salsa.debian.org/med-team/libpal-java, https://github.com/tamuri/pal,382.9409953703704,0,2,0,1.0,0.0,0.0,0.0 -p5-Palm,0.0204029609200805,1.21979890093133,-0.348294954995836,https://salsa.debian.org/perl-team/modules/packages/libpalm-perl, https://github.com/madsen/p5-Palm,2036.3955092592596,2,5,0,5.0,0.0,0.0,0.0 -pam-encfs,-0.0672752006332246,1.03918901778327,-0.551441000800444,https://salsa.debian.org/debian/libpam-encfs, https://github.com/tinti/pam-encfs,2773.2122222222224,0,4,0,2.0,2.0,0.0,0.0 -libpam-pwdfile,-0.106743202581158,0.500255871782442,-0.322631680806691,https://github.com/tiwe-de/libpam-pwdfile/tree/debian,https://github.com/tiwe-de/libpam-pwdfile,923.3027546296296,2,2,0,2.0,8.0,0.0,0.0 -PGObject-Type-DateTime,-1.48153978983064,0.670943023248935,-1.915973171553,https://salsa.debian.org/perl-team/modules/packages/libpgobject-type-datetime-perl, https://github.com/ledgersmb/PGObject-Type-DateTime.git,3652.6989467592593,0,8,0,4.0,6.0,0.0,0.0 -PGObject-Util-DBAdmin,-1.54489086293298,0.601409032824626,-1.98253889024086,https://salsa.debian.org/perl-team/modules/packages/libpgobject-util-dbadmin-perl, https://github.com/ledgersmb/PGObject-Util-DBAdmin.git,2615.949641203704,0,5,0,3.0,10.0,0.0,0.0 -pgp-sign,-0.503791011658959,2.24402219243158,-1.33246533923206,https://salsa.debian.org/rra/libpgp-sign-perl, https://github.com/rra/pgp-sign,2555.095613425926,1,5,0,2.0,2.0,0.0,0.0 -perl5-PGPLOT,-0.198681417470982,1.80326443154908,-0.928918103160525,https://salsa.debian.org/perl-team/modules/packages/libpgplot-perl, https://github.com/PDLPorters/perl5-PGPLOT.git,2564.25125,4,7,0,6.0,6.0,0.0,0.0 -Plack-Middleware-CSRFBlock,-2.88989675535782,-0.719836486790939,-3.32408331985609,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-csrfblock-perl, https://github.com/mattp-/Plack-Middleware-CSRFBlock,1436.9725347222222,1,7,0,3.0,3.0,0.0,0.0 -Plack-Middleware-Deflater,-0.868604600480895,1.4026303205951,-1.34095502952361,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl, https://github.com/miyagawa/Plack-Middleware-Deflater.git,4308.662222222222,0,5,0,3.0,10.0,0.0,0.0 -Plack-Middleware-File-Sass,-3.74262183296797,-1.21094665420884,-4.32021382111369,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-file-sass-perl, https://github.com/miyagawa/Plack-Middleware-File-Sass.git,372.7359490740741,0,1,0,1.0,4.0,0.0,0.0 -plack-test-anyevent,-2.2481916187177,0.456054424993921,-2.95550062704452,https://salsa.debian.org/perl-team/modules/packages/libplack-test-anyevent-perl, https://github.com/hoelzro/plack-test-anyevent.git,2226.702013888889,0,6,0,3.0,7.0,0.0,0.0 -pod-2-docbook,-2.18584394371273,0.12252816735333,-2.61706839567257,https://salsa.debian.org/perl-team/modules/packages/libpod-2-docbook-perl, https://github.com/jozef/pod-2-docbook,1292.6652546296295,0,6,0,3.0,2.0,0.0,0.0 -libpod-webserver-perl,-0.420499708143128,2.37146990894034,-1.53685095216261,https://github.com/mogaal/libpod-webserver-perl,https://github.com/mogaal/libpod-webserver-perl,801.0357291666667,1,1,0,1.0,1.0,0.0,0.0 -Pod-Wordlist-hanekomu,-2.35247628682149,-0.0387599898094948,-2.78606413640892,https://salsa.debian.org/perl-team/modules/packages/libpod-wordlist-hanekomu-perl, https://github.com/dagolden/Pod-Wordlist-hanekomu,1571.103576388889,0,3,0,2.0,0.0,0.0,0.0 -poe-component-client-http,-1.05015036849306,-0.26446186447687,-1.32838779114614,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-http-perl, https://github.com/rcaputo/poe-component-client-http,2297.0143402777776,1,4,0,7.0,6.0,0.0,0.0 -poe-component-client-ident,-2.74078918210574,-1.39695331454504,-3.01424759559606,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-ident-perl, https://github.com/bingos/poe-component-client-ident.git,49.70814814814815,0,1,0,1.0,0.0,0.0,0.0 -poe-component-client-keepalive,-0.912307219691627,1.38958661839801,-1.34891728809416,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-keepalive-perl, https://github.com/rcaputo/poe-component-client-keepalive.git,2357.5085300925925,2,4,0,8.0,6.0,0.0,0.0 -poe-filter-ircd,-0.374557942849074,1.93583892146358,-0.831515046781277,https://salsa.debian.org/perl-team/modules/packages/libpoe-filter-ircd-perl, https://github.com/bingos/poe-filter-ircd.git,1552.6868865740742,0,4,0,3.0,1.0,0.0,0.0 -poe-loop-tk,-0.195847077988649,2.02375545200345,-0.755381301293398,https://salsa.debian.org/perl-team/modules/packages/libpoe-loop-tk-perl, https://github.com/rcaputo/poe-loop-tk,2011.4116435185183,0,7,0,11.0,1.0,0.0,0.0 -Probe-Perl,-0.120869478301789,2.68264316932431,-0.746852827696491,https://salsa.debian.org/perl-team/modules/packages/libprobe-perl-perl, https://github.com/kenahoo/Probe-Perl,112.02817129629628,0,2,0,1.0,0.0,0.0,0.0 -perl-proc-processtable,0.0374994029564422,0.48248435291711,-0.0771518619204283,https://salsa.debian.org/perl-team/modules/packages/libproc-processtable-perl, https://github.com/jwbargsten/perl-proc-processtable,3896.737118055556,1,25,0,20.0,24.0,0.0,0.0 -libpuzzle,-0.668014026669582,0.652955703084538,-1.12433312368326,https://salsa.debian.org/debian-phototools-team/libpuzzle, https://github.com/jedisct1/libpuzzle,2324.9386458333333,1,8,0,5.0,25.0,0.0,0.0 -libpwquality,0.510351431411485,1.87787850612544,0.0684762008403447,https://salsa.debian.org/gnome-team/libpwquality, https://github.com/libpwquality/libpwquality.git,4429.906377314815,51,15,0,49.0,43.0,0.0,0.0 -libqcow,0.434557263537964,3.15015521965935,-0.291421202425118,https://salsa.debian.org/pkg-security-team/libqcow, https://github.com/libyal/libqcow.git,3715.767152777778,0,1,0,1.0,19.0,0.0,2.0 -p5-rdf-acl,-2.0654979490634,1.28090823759533,-3.07339107233876,https://salsa.debian.org/perl-team/modules/packages/librdf-acl-perl, https://github.com/tobyink/p5-rdf-acl,1688.9962731481482,0,1,0,1.0,0.0,0.0,0.0 -RDF-aREF,-1.63216559742988,0.51267312940242,-2.0632435210871,https://salsa.debian.org/perl-team/modules/packages/librdf-aref-perl, https://github.com/nichtich/RDF-aREF.git,2565.866770833333,2,8,0,4.0,11.0,0.0,1.0 -RDF-Generator-Void,-1.63319542972363,0.625956949556484,-2.06342802293264,https://salsa.debian.org/perl-team/modules/packages/librdf-generator-void-perl, https://github.com/kjetilk/RDF-Generator-Void.git,1725.5093171296296,0,6,0,4.0,4.0,0.0,0.0 -RDF-Helper-Properties,-1.4850797676548,1.07499452260591,-2.1065327244584,https://salsa.debian.org/perl-team/modules/packages/librdf-helper-properties-perl, https://github.com/kjetilk/RDF-Helper-Properties.git,2324.5435416666664,0,5,0,3.0,5.0,0.0,0.0 -RDF-LinkedData,-1.52971899967862,-0.067842436919694,-2.08400212272878,https://salsa.debian.org/perl-team/modules/packages/librdf-linkeddata-perl, https://github.com/kjetilk/RDF-LinkedData.git,4060.5603472222224,0,7,0,4.0,7.0,0.0,0.0 -p5-rdf-ns-curated,-1.18462978482918,1.01719315039781,-1.62134295307884,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-curated-perl, https://github.com/kjetilk/p5-rdf-ns-curated.git,2949.0642245370373,0,4,0,3.0,5.0,0.0,0.0 -RDF-NS,-0.52501600994773,1.01221794001187,-0.872083603299781,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-perl, https://github.com/nichtich/RDF-NS.git,4253.416851851852,2,5,0,4.0,13.0,0.0,0.0 -p5-rdf-query-client,-1.19131397245775,0.750204607793778,-1.75482893581306,https://salsa.debian.org/perl-team/modules/packages/librdf-query-client-perl, https://github.com/tobyink/p5-rdf-query-client,1767.4564930555557,0,1,0,1.0,2.0,0.0,0.0 -libSavitar,-0.0624513387530921,1.31074037796173,-0.382634692042406,https://salsa.debian.org/3dprinting-team/libsavitar, https://github.com/Ultimaker/libSavitar.git,2417.888148148148,12,19,0,17.0,35.0,0.0,0.0 -libsbsms,0.167875397062312,1.64214052262321,-0.131354146421564,https://salsa.debian.org/multimedia-team/libsbsms, https://github.com/claytonotey/libsbsms.git,571.9734837962963,2,6,0,5.0,9.0,0.0,0.0 -p5-scalar-does,-0.53666515553433,1.22778989488429,-0.950471364107704,https://salsa.debian.org/perl-team/modules/packages/libscalar-does-perl, https://github.com/tobyink/p5-scalar-does,1614.181099537037,0,3,0,1.0,2.0,0.0,0.0 -libscca,0.46368276972707,3.52041926177531,-0.331124382950878,https://salsa.debian.org/pkg-security-team/libscca, https://github.com/libyal/libscca,3348.012650462963,1,1,0,2.0,11.0,0.0,2.0 -SDL_net,0.287925601835457,2.70482829766967,-0.176557931964796,https://salsa.debian.org/sdl-team/libsdl2-net, https://github.com/libsdl-org/SDL_net.git,5565.033611111111,10,12,0,14.0,0.0,0.0,0.0 -perl-SHARYANTO-Utils,-2.34414656253823,-0.0852227274110705,-2.78556091741264,https://salsa.debian.org/perl-team/modules/packages/libsharyanto-utils-perl, https://github.com/perlancar/perl-SHARYANTO-Utils.git,2945.597754629629,0,13,0,2.0,4.0,0.0,0.0 -simpleini,-3.1256993278502,-0.524309938879686,-3.72794076397833,https://salsa.debian.org/yangfl-guest/simpleini, https://github.com/brofield/simpleini,5767.129050925926,12,11,0,17.0,66.0,0.0,0.0 -libsmdev,0.490191263592225,3.54730228444253,-0.318165930819659,https://salsa.debian.org/pkg-security-team/libsmdev, https://github.com/libyal/libsmdev,2801.6257060185185,0,1,0,1.0,7.0,0.0,2.0 -libsml,-2.55837529881451,0.0607386648107673,-3.2378106609148,https://github.com/volkszaehler/libsml/tree/debian,https://github.com/volkszaehler/libsml,4561.306574074074,12,15,0,19.0,11.0,0.0,0.0 -libsmraw,0.47410590340377,3.39663211123058,-0.321025674201182,https://salsa.debian.org/pkg-security-team/libsmraw, https://github.com/libyal/libsmraw.git,2800.5750925925927,0,1,0,1.0,3.0,0.0,2.0 -SNMP-Extension-PassPersist,0.122684641538774,3.08053336090536,-0.739812883216525,https://salsa.debian.org/perl-team/modules/packages/libsnmp-extension-passpersist-perl, https://github.com/maddingue/SNMP-Extension-PassPersist.git,1526.080787037037,0,1,0,1.0,2.0,0.0,0.0 -SOAP-WSDL,0.24944731263946,2.22137007210412,-0.215176538120953,https://salsa.debian.org/perl-team/modules/packages/libsoap-wsdl-perl, https://github.com/scrottie/SOAP-WSDL,3956.848634259259,2,7,0,5.0,8.0,0.0,0.0 -debian-libsodium,0.765244085135836,2.64803550783215,0.125530797539089,https://github.com/gcsideal/debian-libsodium,https://github.com/gcsideal/debian-libsodium,2198.6639814814816,0,2,0,2.0,3.0,0.0,0.0 -sort-naturally,0.734479252349759,3.73541621778303,-0.0108935716486266,https://salsa.debian.org/perl-team/modules/packages/libsort-naturally-perl, https://github.com/bingos/sort-naturally.git,681.4402893518519,0,3,0,3.0,6.0,0.0,0.0 -term-ui,0.398065193240985,2.59889297858378,-0.0533124700759042,https://salsa.debian.org/perl-team/modules/packages/libterm-ui-perl, https://github.com/jib/term-ui.git,4487.122407407407,4,10,0,11.0,10.0,0.0,0.0 -Test-Cmd,-1.4068778672912,-0.243767507585069,-1.62828796025182,https://salsa.debian.org/perl-team/modules/packages/libtest-cmd-perl, https://github.com/neilb/Test-Cmd.git,4572.228310185185,1,7,0,4.0,6.0,0.0,0.0 -test-compile,-0.175779081431813,2.26305679363941,-0.803073855123069,https://salsa.debian.org/perl-team/modules/packages/libtest-compile-perl, https://github.com/egiles/test-compile,5567.375601851852,2,14,0,11.0,11.0,0.0,0.0 -test-corpus-audio-mpd,-2.74135833573926,-1.39926735845413,-3.01594906527937,https://salsa.debian.org/perl-team/modules/packages/libtest-corpus-audio-mpd-perl, http://github.com/jquelin/test-corpus-audio-mpd,904.9165856481482,0,2,0,0.0,0.0,0.0,0.0 -Test-Database,-1.83380913497229,0.613327463187255,-2.34008679884277,https://salsa.debian.org/perl-team/modules/packages/libtest-database-perl, https://github.com/book/Test-Database.git,2702.254953703704,3,2,0,5.0,6.0,0.0,0.0 -Test-File-Contents,-1.18096229775599,0.434377868320852,-1.48264698647843,https://salsa.debian.org/perl-team/modules/packages/libtest-file-contents-perl, https://github.com/ap/Test-File-Contents.git,4644.347511574074,2,4,0,3.0,8.0,0.0,0.0 -Test-Perl-Critic,0.264206027251901,2.90168344557812,-0.523782562876993,https://salsa.debian.org/perl-team/modules/packages/libtest-perl-critic-perl, https://github.com/Perl-Critic/Test-Perl-Critic.git,4634.745844907407,0,9,0,6.0,19.0,0.0,0.0 -Test-Pod-Coverage,-0.201777392019441,1.08314758829641,-0.432747700797595,https://salsa.debian.org/perl-team/modules/packages/libtest-pod-coverage-perl, https://github.com/neilbowers/Test-Pod-Coverage,1677.1204166666666,1,2,0,2.0,4.0,0.0,0.0 -test-prereq,-1.88960570834042,-0.367653369623538,-2.15461171930815,https://salsa.debian.org/perl-team/modules/packages/libtest-prereq-perl, https://github.com/briandfoy/test-prereq.git,2918.7659375,4,8,0,7.0,13.0,0.0,0.0 -Test-RDF,-1.52737405933553,1.1507063443416,-2.12297090884194,https://salsa.debian.org/perl-team/modules/packages/libtest-rdf-perl, https://github.com/kjetilk/Test-RDF.git,2744.08443287037,0,3,0,2.0,4.0,0.0,0.0 -Test-RedisServer,-2.94083493267149,-0.0880954322803377,-3.66851510228242,https://salsa.debian.org/perl-team/modules/packages/libtest-redisserver-perl, https://github.com/typester/Test-RedisServer.git,3497.317025462963,0,12,0,6.0,19.0,0.0,0.0 -Test-Strict,0.0413930214920238,1.971000323689,-0.491725485595185,https://salsa.debian.org/perl-team/modules/packages/libtest-strict-perl, https://github.com/manwar/Test-Strict.git,2362.520509259259,1,15,0,11.0,23.0,0.0,0.0 -Test-XPath,-1.69700412757212,0.582725427839162,-2.14674756098572,https://salsa.debian.org/perl-team/modules/packages/libtest-xpath-perl, https://github.com/manwar/Test-XPath.git,4673.896469907408,1,7,0,5.0,9.0,0.0,0.0 -Text-CSV_XS,0.321044338398603,2.30356481785881,-0.0928202392731093,https://salsa.debian.org/perl-team/modules/packages/libtext-csv-xs-perl, https://github.com/Tux/Text-CSV_XS.git,5755.1094907407405,9,17,0,13.0,37.0,0.0,0.0 -Text-Diff,0.318625038543993,2.49178187060109,-0.168554791579662,https://salsa.debian.org/perl-team/modules/packages/libtext-diff-perl, https://github.com/neilb/Text-Diff,2314.185601851852,0,6,0,3.0,4.0,0.0,0.0 -p5-Text-FindIndent,-0.555513183475546,1.67112528991827,-1.00832526739478,https://salsa.debian.org/perl-team/modules/packages/libtext-findindent-perl, https://github.com/tsee/p5-Text-FindIndent.git,3337.124328703704,0,6,0,2.0,1.0,0.0,0.0 -text-markdown,0.934319761936114,4.33297705496069,-0.166685437504858,https://salsa.debian.org/perl-team/modules/packages/libtext-markdown-perl, https://github.com/bobtfish/text-markdown.git,2874.5088194444443,0,12,0,7.0,40.0,0.0,0.0 -text-multimarkdown,0.251726289263937,2.93013200166338,-0.554049890835888,https://salsa.debian.org/perl-team/modules/packages/libtext-multimarkdown-perl, https://github.com/bobtfish/text-multimarkdown.git,2348.7609953703704,0,10,0,6.0,15.0,0.0,0.0 -Text-Soundex,0.813169646070408,4.20540820560788,0.0081736989336309,https://salsa.debian.org/perl-team/modules/packages/libtext-soundex-perl, https://github.com/rjbs/Text-Soundex,1152.2136342592592,3,2,0,3.0,0.0,0.0,0.0 -perl-Text-sprintfn,-0.817958965788847,2.15007124945723,-1.60695349482585,https://salsa.debian.org/perl-team/modules/packages/libtext-sprintfn-perl, https://github.com/perlancar/perl-Text-sprintfn,2949.61625,0,11,0,2.0,2.0,0.0,0.0 -thread_pool,-0.540663626276791,1.50526353603252,-1.07288308787208,https://salsa.debian.org/med-team/libthread-pool, https://github.com/rvaser/thread_pool,1629.2300810185186,1,4,0,1.0,6.0,0.0,0.0 -libthumbor,-3.09799425599102,-0.437018346915755,-3.71717021447499,https://salsa.debian.org/python-team/packages/libthumbor, https://github.com/thumbor/libthumbor,4029.2128125,6,18,0,14.0,40.0,0.0,7.0 -Tie-IxHash,0.730873545729144,3.27475066745528,0.0615000077631298,https://salsa.debian.org/perl-team/modules/packages/libtie-ixhash-perl, https://github.com/chorny/Tie-IxHash.git,1314.8113773148148,1,4,0,2.0,6.0,0.0,0.0 -tools.logging,-0.0293820524135521,2.73352207490157,-0.667351571787989,https://salsa.debian.org/clojure-team/libtools-logging-clojure, https://github.com/clojure/tools.logging.git,4541.119618055555,3,16,0,7.0,0.0,0.0,0.0 -p5-types-datetime,-1.22242531036125,1.1350772402848,-1.71343703820229,https://salsa.debian.org/perl-team/modules/packages/libtypes-datetime-perl, https://github.com/tobyink/p5-types-datetime,1190.8059837962962,1,4,0,3.0,5.0,0.0,0.0 -libunibreak,0.391070731401678,2.53841337301907,-0.123480715889143,https://salsa.debian.org/qt-kde-team/3rdparty/libunibreak, https://github.com/adah1972/libunibreak.git,5748.020740740741,6,11,0,12.0,26.0,0.0,3.0 -libuninameslist,0.487513273800329,2.48630016931597,-0.0941545187032333,https://salsa.debian.org/fonts-team/libuninameslist, https://github.com/fontforge/libuninameslist,5640.186574074074,5,13,0,13.0,19.0,0.0,0.0 -usbauth-all,-0.601487574640931,1.9320845324868,-1.22518035577705,https://salsa.debian.org/debian/libusbauth-configparser, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0,2.0,7.0,0.0,0.0 -vcs-lite,-0.854288642725774,1.46043999521999,-1.32941773389118,https://salsa.debian.org/perl-team/modules/packages/libvcs-lite-perl, http://github.com/barbie/vcs-lite,1975.3471527777776,0,1,0,0.0,0.0,0.0,0.0 -libverto,2.41895367773709,5.94720677902277,1.01589189254594,https://salsa.debian.org/debian/libverto, https://github.com/latchset/libverto,3721.924490740741,8,2,0,9.0,9.0,0.0,0.0 -libvhdi,0.648102145419946,3.13520528751691,-0.167154547293664,https://salsa.debian.org/pkg-security-team/libvhdi, https://github.com/libyal/libvhdi.git,3717.622407407408,1,1,0,2.0,16.0,0.0,2.0 -vitacilina,-3.60211801359306,-0.769754564008352,-4.29247813265034,https://salsa.debian.org/perl-team/modules/packages/libvitacilina-perl, https://github.com/damog/vitacilina.git,2796.749988425926,1,5,0,4.0,5.0,0.0,0.0 -libvmdk,0.96647885593189,4.38842861799146,-0.0908861019951137,https://salsa.debian.org/pkg-security-team/libvmdk, https://github.com/libyal/libvmdk.git,2936.766087962963,2,1,0,3.0,29.0,0.0,2.0 -perl5-XML-Compile-WSDL11,-1.43102862157411,0.741938827310165,-1.85944467446204,https://salsa.debian.org/perl-team/modules/packages/libxml-compile-wsdl11-perl, https://github.com/markov2/perl5-XML-Compile-WSDL11,1204.3164351851851,0,2,0,1.0,0.0,0.0,0.0 -XML-Encoding,-0.709322274153065,1.48980743096261,-1.18751789181575,https://salsa.debian.org/perl-team/modules/packages/libxml-encoding-perl, https://github.com/steve-m-hay/XML-Encoding.git,2428.8622685185187,1,1,0,1.0,0.0,0.0,0.0 -perl-XML-Generator,-0.485968992312904,1.02798418665572,-0.830160727545501,https://salsa.debian.org/perl-team/modules/packages/libxml-generator-perl, https://github.com/timlegge/perl-XML-Generator,442.0406828703704,0,3,0,2.0,0.0,0.0,0.0 -XML-SAX-Expat,0.708441292515007,2.92271712476809,0.0786452436347989,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-expat-perl, https://github.com/hoehrmann/XML-SAX-Expat,2544.4844675925924,0,4,0,2.0,2.0,0.0,0.0 -xml-sax-machines,-0.962860473725603,0.425340458563971,-1.26975404899833,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-machines-perl, https://github.com/perigrin/xml-sax-machines.git,1529.9486111111112,1,2,0,1.0,2.0,0.0,0.0 -xml-sax,0.996402311975507,2.25773121479724,0.391482823766641,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-perl, https://github.com/grantm/xml-sax,3966.257372685185,0,6,0,3.0,4.0,0.0,0.0 -p5-xml-saxon-xslt2,-1.00661250511358,2.28472673392841,-1.86458025649904,https://salsa.debian.org/perl-team/modules/packages/libxml-saxon-xslt2-perl, https://github.com/tobyink/p5-xml-saxon-xslt2,1518.5208564814816,0,1,0,1.0,2.0,0.0,0.0 -xmlbird,0.392931324098745,3.14776528674364,-0.438139231609347,https://salsa.debian.org/fonts-team/libxmlbird, https://github.com/johanmattssonm/xmlbird.git,3048.260277777778,1,7,0,6.0,9.0,0.0,0.0 -YAML-AppConfig,-0.280666544672343,2.15384258713683,-0.99668897545926,https://salsa.debian.org/perl-team/modules/packages/libyaml-appconfig-perl, https://github.com/Xaerxess/YAML-AppConfig,1551.237361111111,5,2,0,4.0,0.0,0.0,0.0 -libydpdict,-1.33679122898043,0.311079451576597,-1.74074276078311,https://github.com/porridge/libydpdict,https://github.com/porridge/libydpdict,5005.956967592592,1,3,0,2.0,1.0,0.0,0.0 -libzeep,-1.52790920901661,-0.646859418196531,-1.75485723290627,https://salsa.debian.org/med-team/libzeep, https://github.com/mhekkel/libzeep.git,5502.828634259259,2,5,0,2.0,10.0,0.0,0.0 -20kly,1.43422348850863,4.37833833439974,0.266715256234677,https://salsa.debian.org/python-team/packages/lightyears, https://github.com/20kly/20kly.git,4073.732349537037,0,3,0,1.0,5.0,0.0,0.0 -lilv,0.373195495390768,1.17831410260903,0.0585307699086615,https://salsa.debian.org/multimedia-team/lilv, https://github.com/lv2/lilv.git ,5733.844351851852,8,1,0,9.0,44.0,0.0,0.0 -limereg,0.236071407499813,2.90928891702837,-0.724726085369987,https://salsa.debian.org/science-team/limereg, https://github.com/RoelofBerg/limereg.git,1172.0418171296296,0,3,0,2.0,6.0,0.0,0.0 -logtop,0.349809666203344,3.71453083438433,-0.528348008657722,https://github.com/JulienPalard/logtop,https://github.com/JulienPalard/logtop,3192.2077430555555,0,9,0,4.0,8.0,0.0,0.0 -lolcat,0.672126293491262,3.17654320523077,-0.108840544461704,https://salsa.debian.org/ruby-team/lolcat, https://github.com/busyloop/lolcat.git,3767.915451388889,1,19,0,15.0,63.0,0.0,0.0 -loqui,-1.70079847884635,0.603996740702985,-2.14647400312162,https://salsa.debian.org/debian/loqui, https://github.com/sunnyone/loqui.git,4178.25380787037,1,9,0,3.0,2.0,0.0,0.0 -lsmount,0.241790672994827,3.2370471304323,-0.615190830342454,https://github.com/Llandon/lsmount,https://github.com/Llandon/lsmount,2894.883425925926,1,4,0,1.0,3.0,0.0,0.0 -ltsp,-0.260538969092853,-0.12702304328263,-0.357622790045197,https://github.com/ltsp/ltsp/,https://github.com/ltsp/ltsp,1481.8791782407409,11,5,0,10.0,11.0,0.0,25.0 -luadbi,0.15858131476338,2.68635146603853,-0.494955321624535,https://salsa.debian.org/lua-team/lua-dbi, https://github.com/mwild1/luadbi,2870.1189699074075,1,15,0,9.0,30.0,0.0,0.0 -luaexpat,0.0739779285984903,0.731738421595142,-0.042551661594947,https://salsa.debian.org/lua-team/lua-expat, https://github.com/lunarmodules/luaexpat,4256.833136574074,4,6,0,7.0,11.0,0.0,0.0 -linotify,-0.577989098351131,2.14392695201471,-1.22384955006102,https://salsa.debian.org/lua-team/lua-inotify, https://github.com/hoelzro/linotify.git,2964.312476851852,3,9,0,8.0,16.0,0.0,0.0 -lualdap,0.0504029107376684,1.73492235969394,-0.442531212295876,https://salsa.debian.org/lua-team/lua-ldap, https://github.com/lualdap/lualdap.git,4408.706979166666,7,12,0,13.0,25.0,0.0,0.0 -say,0.0600475564933599,3.43550606394514,-0.826292348408664,https://salsa.debian.org/lua-team/lua-say, https://github.com/lunarmodules/say.git,4008.0407638888887,1,11,0,8.0,11.0,0.0,0.0 -lyaml,-0.345498399406386,1.95837097623919,-0.798092863642857,https://salsa.debian.org/lua-team/lua-yaml/, https://github.com/gvvaughan/lyaml,3607.291111111111,1,7,1,6.0,63.0,0.0,0.0 -lunar-date,-1.09013250659012,-0.0609883227276274,-1.37419240455209,https://salsa.debian.org/chinese-team/lunar-date, https://github.com/yetist/lunar-date,5400.152511574074,1,8,0,2.0,12.0,0.0,0.0 -luola,-0.273628043096639,0.455422113672505,-0.570925483236996,https://salsa.debian.org/debian/luola, https://github.com/callaa/luola.git,0.009537037037037,0,1,0,1.0,2.0,0.0,0.0 -lv2,0.228928854296114,2.24238536076862,-0.280197366302975,https://salsa.debian.org/multimedia-team/lv2, https://github.com/lv2/lv2.git ,4741.717118055555,18,5,0,16.0,31.0,0.0,8.0 -lv2file,0.62671181749622,3.5316112472614,-0.33646141639388,https://salsa.debian.org/multimedia-team/lv2file, https://github.com/jeremysalwen/lv2file.git,4139.535844907407,2,9,0,4.0,7.0,0.0,0.0 -lwt,-0.134408788950251,0.913721687429713,-0.525463939625241,https://salsa.debian.org/ocaml-team/lwt, https://github.com/ocsigen/lwt.git,5681.656030092593,82,99,0,111.0,0.0,0.0,0.0 -lxappearance,2.81897548079455,5.13075810379885,1.6743807598685,https://salsa.debian.org/lxde-team/lxappearance, https://github.com/lxde/lxappearance.git,4801.901712962963,111,38,0,71.0,12.0,0.0,0.0 -lxsession,1.21161126131848,1.94330642054952,0.730043207292079,https://salsa.debian.org/lxde-team/lxsession, https://github.com/lxde/lxsession.git,5699.888217592593,92,44,0,68.0,24.0,0.0,0.0 -lz4json,-0.449253717062924,1.9714794784722,-0.963936688317348,https://github.com/kilobyte/lz4json/tree/debian,https://github.com/kilobyte/lz4json,1639.7853125,4,5,0,5.0,0.0,0.0,0.0 -mac-fdisk-debian,2.78807804405186,5.78644617890451,1.44607483621445,https://github.com/glaubitz/mac-fdisk-debian,https://github.com/glaubitz/mac-fdisk-debian,0.0261342592592592,1,1,0,1.0,1.0,0.0,0.0 -MACTelnet-Debian-Packaging,0.225958933485464,2.9645776480681,-0.541025290810861,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,1885.954872685185,0,3,0,1.0,3.0,0.0,0.0 -madwimax,0.538681645395499,4.84334308584582,-0.945045842558766,http://github.com/ago/madwimax,http://github.com/ago/madwimax,1040.9560532407406,1,3,0,0.0,0.0,0.0,0.0 -magicrescue,0.563858891668318,1.90926582030483,-0.0393062112510008,https://salsa.debian.org/pkg-security-team/magicrescue, https://github.com/jbj/magicrescue,1064.0338194444444,1,3,0,2.0,2.0,0.0,0.0 -magit-popup,0.257126882140113,2.50851860032197,-0.226004161916933,https://salsa.debian.org/emacsen-team/magit-popup, https://github.com/magit/magit-popup.git,3610.5775925925927,17,32,0,43.0,14.0,0.0,0.0 -emacsen-team,-0.915348517808773,0.287860470390552,-1.14845336720673,https://salsa.debian.org/emacsen-team/magithub,https://salsa.debian.org/emacsen-team/magithub,1074.2872569444444,13,18,0,0.0,0.0,0.0,0.0 -mando,-0.846804438538855,1.21547677845818,-1.3465386927714,https://salsa.debian.org/python-team/packages/mando, https://github.com/rubik/mando.git,3495.724976851852,7,5,0,9.0,21.0,0.0,0.0 -manpages-zh,0.301386440943916,1.48017485509722,-0.136667326869418,https://salsa.debian.org/chinese-team/manpages-zh, https://github.com/man-pages-zh/manpages-zh,5615.642997685185,2,12,2,8.0,40.0,0.0,0.0 -manuel,-1.81889274764173,0.917080683728173,-2.54909100406239,https://salsa.debian.org/python-team/packages/manuel, https://github.com/benji-york/manuel,5520.68181712963,2,23,0,16.0,26.0,0.0,0.0 -marisa-trie,-0.277005958138721,0.413076227789777,-0.552378814436184,https://salsa.debian.org/input-method-team/marisa, https://github.com/s-yata/marisa-trie.git,1648.6119675925927,1,9,0,7.0,42.0,0.0,0.0 -mate-backgrounds,0.515935631539252,3.13814567556382,-0.0659273195942037,https://salsa.debian.org/debian-mate-team/mate-backgrounds, https://github.com/mate-desktop/mate-backgrounds.git,4154.560983796297,7,18,0,16.0,26.0,0.0,0.0 -mate-user-guide,0.509453660333917,3.34014863452368,-0.0704353392956133,https://salsa.debian.org/debian-mate-team/mate-user-guide, https://github.com/mate-desktop/mate-user-guide.git,2933.239976851852,5,16,0,11.0,19.0,0.0,0.0 -mate-user-share,-0.0144878954693426,0.728790486575383,-0.214296600445842,https://salsa.debian.org/debian-mate-team/mate-user-share, https://github.com/mate-desktop/mate-user-share.git,4144.689560185185,7,22,0,16.0,27.0,0.0,0.0 -mate-window-applets,-0.186625862006892,1.9636663587303,-0.631316052138279,https://salsa.debian.org/debian-mate-team/mate-window-applets, https://github.com/ubuntu-mate/mate-window-applets.git,1140.5334375,6,3,0,6.0,20.0,0.0,0.0 -materia-theme,0.104523439166075,1.98911237952869,-0.322056337075137,https://salsa.debian.org/desktop-themes-team/materia-gtk-theme, https://github.com/nana-4/materia-theme/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -maybe,-0.652177660962719,1.93149932274197,-1.16866022133638,https://salsa.debian.org/debian/maybe, https://github.com/p-e-w/maybe,363.71996527777776,0,2,1,2.0,60.0,0.0,0.0 -marionette-collective,0.217220103404235,1.72252198514271,-0.431550566565911,https://salsa.debian.org/puppet-team/mcollective, https://github.com/puppetlabs/marionette-collective,3620.684814814815,74,101,0,96.0,3.0,0.0,0.0 -meanwhile,1.62254944680273,3.58133278579298,0.721415453862569,https://salsa.debian.org/debian/meanwhile, https://github.com/obriencj/meanwhile.git,352.0019560185185,1,1,0,2.0,2.0,0.0,0.0 -medusa,0.741883479621951,1.84163370329508,0.147300046663789,https://salsa.debian.org/pkg-security-team/medusa, https://github.com/jmk-foofus/medusa,2618.444803240741,4,10,0,10.0,71.0,0.0,0.0 -memkind,-2.33387552471405,-0.433038043535726,-2.77548730545927,https://github.com/kilobyte/memkind/tree/debian,https://github.com/kilobyte/memkind,3438.672719907408,30,85,0,50.0,2.0,0.0,0.0 -memtest86plus,2.26018528628274,3.30212897485253,1.55769243684764,https://salsa.debian.org/debian/memtest86plus, https://github.com/memtest86plus/memtest86plus.git,663.5358564814815,15,10,0,12.0,7.0,0.0,0.0 -mercator,-0.234086840652156,1.6571874231603,-0.993372483998148,https://salsa.debian.org/games-team/mercator, https://github.com/worldforge/mercator,5633.239039351852,0,7,0,5.0,5.0,0.0,0.0 -minidb,-0.45256841907941,1.7891094238408,-0.901882065554934,https://salsa.debian.org/mwerlen/minidb, https://github.com/thp/minidb.git,4339.298495370371,2,5,0,6.0,13.0,0.0,0.0 -minieigen,-0.209769675603415,0.786065492510597,-0.499567475024185,https://salsa.debian.org/science-team/minieigen, https://github.com/eudoxos/minieigen,4093.450752314815,0,12,0,7.0,18.0,0.0,0.0 -minisat,0.0818650829524057,0.863791765665042,-0.15323867669451,http://github.com/niklasso/minisat,http://github.com/niklasso/minisat,2028.9114699074075,1,5,0,0.0,0.0,0.0,0.0 -mkalias,-0.740847515735731,2.3071375002201,-1.57621282814895,https://salsa.debian.org/ruby-team/mkalias, https://github.com/LucianoPC/mkalias,68.21174768518519,0,3,0,2.0,2.0,0.0,0.0 -mktorrent,0.271181439442618,1.91015156083863,-0.315832001818897,https://salsa.debian.org/debian/mktorrent, https://github.com/pobrn/mktorrent,4360.041099537037,6,10,1,14.0,72.0,0.0,4.0 -mmtf-java,-5.03760231596504,-2.85148861820668,-5.47815425531561,https://salsa.debian.org/debichem-team/mmtf-java, https://github.com/rcsb/mmtf-java.git,2412.847696759259,1,12,0,6.0,13.0,0.0,0.0 -mmv,1.55973476794188,2.94192603962731,0.773988539168809,https://salsa.debian.org/debian/mmv, https://github.com/rrthomas/mmv.git,971.7580902777778,1,1,0,2.0,10.0,0.0,0.0 -mod_proxy_msrpc,-0.468677179433164,2.40360308588261,-1.24270834324212,https://github.com/bombadil/mod_proxy_msrpc/tree/debian/unstable,https://github.com/bombadil/mod_proxy_msrpc,805.3717013888889,0,4,0,1.0,20.0,0.0,1.0 -modem-cmd,-0.605289894259069,1.75550138408221,-1.15870302120442,https://salsa.debian.org/debian/modem-cmd, https://github.com/imZack/modem-cmd.git,939.0309143518518,1,4,0,2.0,5.0,0.0,0.0 -modplug-tools,0.463298821112483,2.94935695533041,-0.471250617669065,https://salsa.debian.org/multimedia-team/modplugtools, https://github.com/alexmyczko/modplug-tools,1743.9280324074075,2,5,0,3.0,4.0,0.0,0.0 -mom,-0.677784916058875,1.9853085783476,-1.50728694118819,https://salsa.debian.org/debian/mom, https://github.com/oVirt/mom,4972.782615740741,31,16,1,25.0,13.0,0.0,0.0 -mongo-c-driver,0.391595473477886,1.65193424172172,-0.0863313882600918,https://github.com/mongodb/mongo-c-driver/tree/master,https://github.com/mongodb/mongo-c-driver,5226.526793981481,106,124,0,112.0,0.0,0.0,0.0 -montage-wrapper,-0.386527472910265,1.18098125307059,-0.668011703348263,https://salsa.debian.org/debian-astro-team/montage-wrapper, https://github.com/astropy/montage-wrapper,3566.7960416666665,2,16,3,14.0,39.0,0.0,0.0 -mopidy-alsamixer,-0.09870874302379,2.93036560441422,-0.881097199259371,https://salsa.debian.org/mopidy-team/mopidy-alsamixer, https://github.com/mopidy/mopidy-alsamixer,3286.448043981481,1,5,0,5.0,39.0,0.0,0.0 -mopidy-beets,-0.60468876716376,2.36764996189768,-1.39229735541233,https://salsa.debian.org/mopidy-team/mopidy-beets, https://github.com/mopidy/mopidy-beets,3887.541516203704,2,10,0,7.0,27.0,0.0,0.0 -mopidy-dleyna,-0.615038725844887,1.86266196394951,-1.27641626402764,https://salsa.debian.org/mopidy-team/mopidy-dleyna, https://github.com/tkem/mopidy-dleyna.git,2554.961435185185,1,6,0,4.0,25.0,0.0,0.0 -mp3wrap,0.151188324867718,2.40476259056656,-0.40725515518371,https://github.com/marciosouza20/mp3wrap.git,https://github.com/marciosouza20/mp3wrap.git,36.62663194444445,0,2,0,1.0,0.0,0.0,0.0 -mpc123,0.851583607973775,3.56922845277816,-0.236625915855961,https://salsa.debian.org/debian/mpc123, https://github.com/bucciarati/mpc123,4095.704571759259,0,4,0,1.0,2.0,0.0,0.0 -mpdscribble,-0.723310154425429,-0.598143845452287,-0.765881663312659,https://salsa.debian.org/mpd-team/mpdscribble, https://github.com/MusicPlayerDaemon/mpdscribble.git,5474.359548611111,22,17,0,29.0,73.0,0.0,0.0 -mruby,-1.55143909996595,-1.30194929065207,-1.62438574917646,https://github.com/mruby-debian/mruby,https://github.com/mruby-debian/mruby,4156.842152777778,37,353,0,255.0,2.0,0.0,32.0 -msgpuck,-1.93451017963427,0.753860640813869,-2.5762644187483,https://github.com/rtsisyk/msgpuck,https://github.com/rtsisyk/msgpuck,1946.1415046296297,3,13,1,11.0,15.0,0.0,0.0 -msitools,0.96857864755185,3.44374449162624,0.0488138918020949,https://salsa.debian.org/debian/msitools, https://github.com/GNOME/msitools,4016.1692361111113,45,59,0,69.0,4.0,0.0,0.0 -mt-st,0.108214275192562,0.698343961100699,-0.160819349688546,https://salsa.debian.org/debian/mt-st, https://github.com/iustin/mt-st,3093.7365972222224,14,5,0,10.0,19.0,0.0,0.0 -mtpolicyd,-1.33115066473906,1.09540393332349,-1.99159053719769,https://salsa.debian.org/debian/mtpolicyd, https://github.com/benningm/mtpolicyd.git,2186.992615740741,1,4,0,3.0,21.0,0.0,0.0 -mtree-netbsd,-1.52166383626568,0.572560043278904,-2.03556084093468,https://github.com/jgoerzen/mtree-netbsd,https://github.com/jgoerzen/mtree-netbsd,1538.1956712962965,1,7,0,0.0,1.0,0.0,0.0 -MU-CITE,-0.925616528159329,0.961302198182606,-1.30986782122688,https://salsa.debian.org/debian/mu-cite, https://github.com/cvs-m17n-org/MU-CITE,4190.520243055556,2,3,0,4.0,3.0,0.0,0.0 -mudita24,-0.0566417904610256,1.52710694552876,-0.456890960392167,https://salsa.debian.org/multimedia-team/mudita24, https://github.com/NielsMayer/mudita24,2005.0215046296296,0,5,0,2.0,9.0,0.0,0.0 -mugshot,0.731663001564658,2.79600372787142,-0.155405937283755,https://salsa.debian.org/python-team/packages/mugshot, https://github.com/bluesabre/mugshot,3560.174490740741,3,9,0,7.0,25.0,0.0,1.0 -mupen64plus-video-glide64,0.116030911407292,2.32420182705417,-0.318535188077387,https://salsa.debian.org/games-team/mupen64plus-video-glide64, https://github.com/mupen64plus/mupen64plus-video-glide64,4871.843831018518,2,17,0,10.0,7.0,0.0,0.0 -mupen64plus-video-z64,-0.0630178118737083,1.30753012602191,-0.326353184052343,https://salsa.debian.org/games-team/mupen64plus-video-z64, https://github.com/mupen64plus/mupen64plus-video-z64,4885.85150462963,2,17,0,10.0,9.0,0.0,0.0 -muse,0.983489297580252,2.86043146231553,0.0726359101978075,https://salsa.debian.org/emacsen-team/muse-el, https://github.com/alexott/muse,5662.627488425926,5,7,0,9.0,14.0,0.0,0.0 -mwrap,-0.60552133436639,1.7500683414578,-1.36207792757055,https://salsa.debian.org/pkg-octave-team/mwrap, https://github.com/zgimbutas/mwrap,3042.604085648148,0,5,0,3.0,5.0,0.0,0.0 -nasty,1.73986227881638,6.04062879096075,0.355975741680568,https://salsa.debian.org/pkg-security-team/nasty, https://github.com/folkertvanheusden/nasty,2093.112141203704,0,4,0,2.0,1.0,0.0,0.0 -natsort,0.230739500706296,2.10957873454759,-0.239786098611584,https://salsa.debian.org/python-team/packages/natsort, https://github.com/SethMMorton/natsort.git,4065.054710648148,9,17,0,19.0,20.0,0.0,1.0 -repairer,0.924989159011341,3.22801093240111,0.0005519878433564,https://salsa.debian.org/l10n-korean-team/nautilus-filename-repairer, https://github.com/choehwanjin/repairer,2878.1959953703704,0,1,0,1.0,3.0,0.0,1.0 -nb2plots,-1.17067066899969,1.558936665396,-1.74337414795107,https://salsa.debian.org/python-team/packages/nb2plots, https://github.com/matthew-brett/nb2plots.git,2904.445428240741,2,7,0,6.0,21.0,0.0,0.0 -nbtscan,0.298999259572459,1.09081084898162,-0.072258625771159,https://salsa.debian.org/pkg-security-team/nbtscan, https://github.com/resurrecting-open-source-projects/nbtscan,1167.6364699074074,1,3,0,3.0,5.0,0.0,0.0 -ncbi-vdb,-0.656936156929907,-0.26758908733846,-0.775351605537836,https://salsa.debian.org/med-team/ncbi-vdb, https://github.com/ncbi/ncbi-vdb,3367.922349537037,2,70,0,18.0,30.0,0.0,5.0 -ncompress,0.636027623628673,1.86633446586061,0.0985497422934872,https://salsa.debian.org/debian/ncompress, https://github.com/vapier/ncompress.git,4740.116585648148,11,4,0,11.0,22.0,0.0,0.0 -ndctl,-0.302677153206692,0.473161468964432,-0.493948873656966,https://github.com/kilobyte/ndctl/tree/debian,https://github.com/kilobyte/ndctl,3210.136550925926,74,5,0,51.0,3.0,0.0,0.0 -ndg_httpsclient,0.154665527223133,1.0783288298941,-0.0773848972549682,https://salsa.debian.org/debian/ndg-httpsclient, https://github.com/cedadev/ndg_httpsclient,3360.013634259259,2,11,0,6.0,22.0,0.0,0.0 -neard-deb,0.531144467946746,4.09536046112595,-0.529664666273204,https://github.com/sameo/neard-deb,https://github.com/sameo/neard-deb,1126.7503587962965,0,4,0,2.0,2.0,0.0,0.0 -neartree,-0.026948666800543,2.39931456404801,-0.536624577915971,https://salsa.debian.org/science-team/neartree, https://github.com/yayahjb/neartree,4773.070625,0,3,0,2.0,2.0,0.0,0.0 -neko-debian,-0.347611667280448,0.402467422255248,-0.652059806336647,https://github.com/HaxeFoundation/neko-debian,https://github.com/HaxeFoundation/neko-debian,5577.663611111111,6,3,0,5.0,2.0,0.0,0.0 -neomutt,1.06606856927625,2.73514034016519,0.293529978768261,https://salsa.debian.org/mutt-team/neomutt, https://github.com/neomutt/neomutt,5650.5290625,268,117,0,322.0,9.0,0.0,0.0 -netconsole,-1.22008733076531,0.812746842992176,-1.64492554545763,https://salsa.debian.org/debian/netconsole, https://github.com/ionos-cloud/netconsole,558.8093865740741,0,1,0,1.0,2.0,0.0,0.0 -nfoview,-0.0498945428525614,1.66639642436479,-0.673619570770205,https://salsa.debian.org/python-team/packages/nfoview, https://github.com/otsaloma/nfoview,5657.375486111111,14,5,0,10.0,8.0,0.0,0.0 -nfstrace,0.716914155261743,2.64899839973439,-0.0935466194169699,https://salsa.debian.org/debian/nfstrace, https://github.com/epam/nfstrace,2137.7810300925926,9,42,0,16.0,32.0,0.0,0.0 -nifti2dicom,-0.118660725884591,1.29914234704403,-0.690326613808782,https://salsa.debian.org/med-team/nifti2dicom, https://github.com/biolab-unige/nifti2dicom.git,2963.076689814815,0,2,0,2.0,17.0,0.0,0.0 -ninka,-1.24279269841902,1.03386185307708,-1.68422465225299,https://salsa.debian.org/debian/ninka, https://github.com/dmgerman/ninka,4166.381226851852,0,17,0,10.0,27.0,0.0,0.0 -nload,0.692028657183034,1.96620387362066,0.124898373210051,https://github.com/marciosouza20/nload.git,https://github.com/marciosouza20/nload.git,5.863414351851852,0,1,0,1.0,0.0,0.0,0.0 -nm-tray,0.240241998372959,2.98991863506518,-0.450969541576458,https://salsa.debian.org/lxqt-team/nm-tray, https://github.com/palinek/nm-tray.git,2973.374907407408,57,7,0,43.0,49.0,0.0,0.0 -nocache,0.632372085509384,2.88030065921643,-0.0685290560079679,https://salsa.debian.org/debian/nocache, https://github.com/Feh/nocache,3331.9030902777777,2,12,0,11.0,42.0,0.0,0.0 -nodau,-1.59918098332055,-0.380553834464518,-1.90579865504737,https://salsa.debian.org/carnil/nodau, https://github.com/TicklishHoneyBee/nodau,4073.180266203704,2,7,0,3.0,6.0,0.0,0.0 -abbrev-js,0.316722509197571,2.542411628883,-0.116508926135461,https://salsa.debian.org/js-team/node-abbrev, https://github.com/npm/abbrev-js,5021.0522106481485,6,4,0,8.0,4.0,0.0,0.0 -node-active-x-obfuscator,-1.71020774505304,0.493982295689758,-2.1488227767458,https://salsa.debian.org/js-team/node-active-x-obfuscator, https://github.com/felixge/node-active-x-obfuscator.git,979.9255902777778,0,5,0,3.0,0.0,0.0,0.0 -address,-2.35128297317918,-0.229649289142757,-2.78518795649704,https://salsa.debian.org/js-team/node-address, https://github.com/node-modules/address.git,3756.583020833333,7,6,0,10.0,40.0,0.0,0.0 -ansi.js,0.651738311031233,3.38014235064764,-0.0622958721762609,https://salsa.debian.org/js-team/node-ansi, https://github.com/TooTallNate/ansi.js.git,2003.1949884259257,2,6,0,6.0,9.0,0.0,0.0 -applause,-2.60250313131545,0.0354812348524657,-3.27688620176222,https://salsa.debian.org/js-team/node-applause, https://github.com/outatime/applause.git,2600.159259259259,1,6,0,4.0,30.0,0.0,0.0 -node-cross-spawn-async,-0.478930722598944,0.528776497426984,-0.656856316148003,https://salsa.debian.org/js-team/node-cross-spawn-async, https://github.com/IndigoUnited/node-cross-spawn-async.git,674.7693981481482,1,12,0,8.0,0.0,0.0,0.0 -CSSStyleDeclaration,0.0239557667809956,3.78822964041075,-1.19987219826631,https://salsa.debian.org/js-team/node-cssstyle, https://github.com/chad3814/CSSStyleDeclaration.git,2137.453703703704,0,9,0,5.0,0.0,0.0,0.0 -d3-color,-0.567705875800697,2.34534257603246,-1.2646061130172,https://salsa.debian.org/js-team/node-d3-color, https://github.com/d3/d3-color,3047.924004629629,6,8,0,11.0,41.0,0.0,0.0 -node-dashdash,0.812623388044188,3.80261070206085,-0.0104465218940569,https://salsa.debian.org/js-team/node-dashdash, https://github.com/trentm/node-dashdash,3657.7330671296295,5,4,0,5.0,28.0,0.0,0.0 -node-deep-extend,0.307438417466485,2.59637205168232,-0.125693488111904,https://salsa.debian.org/js-team/node-deep-extend, https://github.com/unclechu/node-deep-extend.git,2469.077951388889,2,14,0,9.0,1.0,0.0,0.0 -dryice,-1.67778512157904,0.500982202464185,-2.14402133875302,https://salsa.debian.org/js-team/node-dryice, https://github.com/mozilla/dryice,1261.6348842592593,1,13,0,12.0,13.0,0.0,0.0 -node-errno,0.741995179761301,3.98601218296453,-0.0698570251612158,https://salsa.debian.org/js-team/node-errno, https://github.com/rvagg/node-errno,3152.3664699074075,3,11,0,11.0,31.0,0.0,0.0 -node-error-ex,-0.19943076513987,1.9233568791881,-0.626826184769078,https://salsa.debian.org/js-team/node-error-ex, https://github.com/qix-/node-error-ex.git,1448.5513425925926,4,8,0,5.0,25.0,0.0,0.0 -node-extend,0.700412932796901,3.61225818919211,-0.0527431496560251,https://salsa.debian.org/js-team/node-extend, https://github.com/justmoon/node-extend,4212.296400462963,1,15,0,13.0,1.0,0.0,0.0 -extend-shallow,-0.100692136205994,1.39274847089215,-0.363671536434426,https://salsa.debian.org/js-team/node-extend-shallow, https://github.com/jonschlinkert/extend-shallow,1170.6065046296296,0,5,0,3.0,4.0,0.0,0.0 -file-entry-cache,-0.78553361572232,1.96735490701636,-1.50114745977769,https://salsa.debian.org/js-team/node-file-entry-cache, https://github.com/royriojas/file-entry-cache.git,3181.554513888889,1,11,0,7.0,28.0,0.0,0.0 -node-findit,-0.205126007199742,2.73554935807846,-1.12092089615555,https://salsa.debian.org/js-team/node-findit2, https://github.com/andrewrk/node-findit.git,1811.444560185185,1,5,0,4.0,4.0,0.0,0.0 -fined,-0.163742539394668,2.12424520338368,-0.598287199531069,https://salsa.debian.org/js-team/node-fined, https://github.com/js-cli/fined,1982.843368055556,5,3,0,4.0,10.0,0.0,0.0 -node-form-data,0.507407617885221,3.03438749006499,-0.0886742860872058,https://salsa.debian.org/js-team/node-form-data, https://github.com/felixge/node-form-data.git,3563.1111111111118,9,36,0,35.0,5.0,0.0,0.0 -node-fresh,-0.345055731141623,2.00399135029319,-0.811249460027619,https://salsa.debian.org/js-team/node-fresh, https://github.com/visionmedia/node-fresh.git,3886.792523148148,11,3,0,12.0,37.0,0.0,0.0 -is-npm,0.978505177551384,4.50080521665299,0.0095997285176371,https://salsa.debian.org/js-team/node-is-npm, https://github.com/sindresorhus/is-npm,2619.041863425926,7,2,0,7.0,17.0,0.0,0.0 -is-typedarray,0.398097881605519,2.52872054104809,-0.0976776714706169,https://salsa.debian.org/js-team/node-is-typedarray, https://github.com/hughsk/is-typedarray,349.2442476851852,0,2,0,2.0,14.0,0.0,0.0 -isexe,0.309926564616418,2.61556674780173,-0.121825868604509,https://salsa.debian.org/js-team/node-isexe, https://github.com/isaacs/isexe,2832.2716319444444,1,4,0,1.0,26.0,0.0,0.0 -Jed,0.930746440764879,4.53344234930115,-0.0663016053168416,https://salsa.debian.org/js-team/node-jed, https://github.com/messageformat/Jed.git,1857.5029166666664,3,19,0,18.0,61.0,0.0,0.0 -jsesc,0.147810251199857,3.25063593574763,-0.509836101762777,https://salsa.debian.org/js-team/node-jsesc, https://github.com/mathiasbynens/jsesc,2702.1588310185184,6,3,0,8.0,44.0,0.0,0.0 -JSON.minify,-0.169187179320983,2.04088568277682,-0.616269415822788,https://salsa.debian.org/js-team/node-jsonminify, https://github.com/fkei/JSON.minify,3001.0353819444445,2,9,0,8.0,17.0,0.0,0.0 -JSONSelect,0.560182168885194,4.31588308765484,-0.455161948493957,https://salsa.debian.org/js-team/node-jsonselect, https://github.com/lloyd/JSONSelect,984.9768287037036,2,8,0,8.0,38.0,0.0,0.0 -knockout,-1.6817262175752,0.974888800445681,-2.31445041120492,https://salsa.debian.org/js-team/node-knockout, https://github.com/knockout/knockout.git,4081.797268518519,20,115,0,81.0,45.0,0.0,125.0 -lastfm-node,-0.280250257607831,3.23168612717949,-1.20929347459816,https://salsa.debian.org/js-team/node-lastfm, https://github.com/jammus/lastfm-node,4644.450601851852,2,11,2,9.0,28.0,0.0,0.0 -node-macaddress,-2.35780895421623,0.328634487578677,-2.98378560862831,https://salsa.debian.org/js-team/node-macaddress, https://github.com/scravy/node-macaddress,2961.771226851852,5,13,0,12.0,73.0,0.0,0.0 -map-visit,0.0602654466272552,2.34009842947509,-0.382383602841092,https://salsa.debian.org/js-team/node-map-visit, https://github.com/jonschlinkert/map-visit,645.0525115740741,0,3,0,2.0,3.0,0.0,0.0 -media-typer,-0.131455438500662,2.35671832759043,-0.755435114766888,https://salsa.debian.org/js-team/node-media-typer, https://github.com/expressjs/media-typer.git,2488.2450925925928,1,1,0,2.0,14.0,0.0,0.0 -merge-descriptors,-0.236806141078472,2.29012224120798,-0.806977495822024,https://salsa.debian.org/js-team/node-merge-descriptors, https://github.com/component/merge-descriptors.git,3669.9310532407408,3,3,0,6.0,17.0,0.0,0.0 -node-mess,-0.287232767122892,3.30467983678511,-1.21798330724086,https://salsa.debian.org/js-team/node-mess, https://github.com/bobrik/node-mess,420.8625578703704,0,3,0,2.0,2.0,0.0,0.0 -minimist,0.306391694788387,2.52636543620496,-0.122364382703569,https://salsa.debian.org/js-team/node-minimist, https://github.com/minimistjs/minimist.git,3791.1307175925926,12,9,0,15.0,32.0,0.0,0.0 -mixin-deep,0.204101590526034,2.30123186703565,-0.346097003267975,https://salsa.debian.org/js-team/node-mixin-deep, https://github.com/jonschlinkert/mixin-deep.git,1736.2018171296295,0,4,0,2.0,14.0,0.0,0.0 -node-mocks-http,-1.71384544531774,1.12901205397518,-2.42387043918479,https://salsa.debian.org/js-team/node-mocks-http, https://github.com/howardabrams/node-mocks-http,4315.254907407408,38,62,0,71.0,2.0,0.0,0.0 -repeat-element,0.0303018924920797,2.20505202148755,-0.399164761000657,https://salsa.debian.org/js-team/node-repeat-element, https://github.com/jonschlinkert/repeat-element,2277.980902777778,1,7,0,3.0,6.0,0.0,0.0 -semver-diff,0.325708866303715,2.53870067002644,-0.125046441132227,https://salsa.debian.org/js-team/node-semver-diff, https://github.com/sindresorhus/semver-diff,2556.954525462963,4,3,0,6.0,11.0,0.0,0.0 -node-simple-swizzle,-3.38281081414827,-1.53194352673748,-3.75105262783598,https://salsa.debian.org/js-team/node-simple-swizzle, https://github.com/qix-/node-simple-swizzle,2271.2482060185184,1,3,0,1.0,3.0,0.0,0.0 -snapdragon,0.0374783953629951,2.12447209054768,-0.385312660260935,https://salsa.debian.org/js-team/node-snapdragon, https://github.com/jonschlinkert/snapdragon.git,2160.505972222222,3,7,0,4.0,43.0,0.0,0.0 -ssri,0.433174013362414,2.85786683367901,-0.110736752570487,https://salsa.debian.org/js-team/node-ssri, https://github.com/zkat/ssri.git,2084.480960648148,2,3,0,2.0,27.0,0.0,0.0 -starttls,-3.20282716286771,0.312377645378091,-4.16563339474857,https://salsa.debian.org/js-team/node-starttls, https://github.com/mattcg/starttls,960.3696643518518,0,1,0,1.0,4.0,0.0,0.0 -string_decoder,0.432451352149301,3.00065387829445,-0.11388556041529,https://salsa.debian.org/js-team/node-string-decoder, https://github.com/nodejs/string_decoder.git,2072.548344907407,4,7,0,8.0,9.0,0.0,0.0 -test-commonjs,-1.18655279239841,1.20576422158202,-1.62213275829168,https://salsa.debian.org/js-team/node-test, https://github.com/Gozala/test-commonjs,826.1617476851852,0,3,0,1.0,16.0,0.0,0.0 -timed-out,0.534083437007622,2.81845062663013,-0.0696353825300733,https://salsa.debian.org/js-team/node-timed-out, https://github.com/floatdrop/timed-out,2343.4748726851853,6,7,0,8.0,28.0,0.0,0.0 -nodeenv,-0.657064895654331,1.48123278572443,-1.14641202998015,https://github.com/chriskuehl/nodeenv,https://github.com/chriskuehl/nodeenv,2128.729178240741,1,53,0,38.0,2.0,0.0,0.0 -nomacs,-0.119525261879833,0.47997282526778,-0.317632408743415,https://salsa.debian.org/lxqt-team/nomacs, https://github.com/nomacs/nomacs/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -nomnom,0.445291434323681,2.94027066625103,-0.332229597531666,https://github.com/mogaal/nomnom,https://github.com/mogaal/nomnom,917.9151273148148,0,2,0,1.0,0.0,0.0,0.0 -nordlicht,-0.419084010559164,1.2017878416935,-0.727454419469016,https://salsa.debian.org/multimedia-team/nordlicht, https://github.com/nordlicht/nordlicht,1854.1766087962965,0,8,0,6.0,13.0,0.0,0.0 -norm,0.0395894571205532,0.572587985673826,-0.037267926162076,https://salsa.debian.org/debian/norm, https://github.com/USNavalResearchLaboratory/norm,1453.1532523148148,10,9,0,11.0,11.0,0.0,1.0 -notmuch-addrlookup-c,-0.576514327926408,1.18775081367445,-1.01489130805224,https://salsa.debian.org/debian/notmuch-addrlookup, https://github.com/aperezdc/notmuch-addrlookup-c,3177.036828703704,9,8,0,14.0,28.0,0.0,0.0 -nsca-ng,-0.56336585116709,0.840435375497642,-1.12886714315489,https://salsa.debian.org/nagios-team/nsca-ng, https://github.com/weiss/nsca-ng.git,3817.9714236111113,3,6,0,5.0,6.0,0.0,0.0 -nsnake.debian,0.294306693001527,3.11801458646876,-0.512619256999377,https://github.com/alexdantas/nsnake.debian,https://github.com/alexdantas/nsnake.debian,35.09344907407407,0,2,0,0.0,1.0,0.0,0.0 -nsntrace,-0.210709526573928,2.4855302502504,-1.1430329762773,https://salsa.debian.org/sudip/nsntrace, https://github.com/nsntrace/nsntrace,1665.640150462963,1,7,0,6.0,21.0,0.0,0.0 -nss-passwords,0.798288153131981,3.72626608311281,-0.284388678695291,https://salsa.debian.org/ocaml-team/nss-passwords, https://github.com/glondu/nss-passwords,4767.951886574074,1,2,0,2.0,4.0,0.0,0.0 -nulib2,-2.88352813112769,-0.617225292019355,-3.32186220567484,https://salsa.debian.org/debian/nulib2, https://github.com/fadden/nulib2.git,2958.867164351852,0,7,0,4.0,9.0,0.0,0.0 -nuntius-linux,0.0562256061460863,3.00685250214119,-0.757895807437041,https://salsa.debian.org/debian/nuntius-linux, https://github.com/holylobster/nuntius-linux.git,1285.1505324074074,2,13,0,13.0,70.0,0.0,0.0 -nurpawiki,-4.20242583595846,-3.46817243027817,-4.35040398124291,https://salsa.debian.org/ocaml-team/nurpawiki, https://github.com/glondu/nurpawiki.git,5643.41212962963,0,6,0,2.0,2.0,0.0,0.0 -nvidia-modprobe,0.545740999476335,2.63343285523559,-0.0334171669270346,https://salsa.debian.org/nvidia-team/nvidia-modprobe, https://github.com/NVIDIA/nvidia-modprobe,3894.0040972222223,0,3,0,3.0,7.0,0.0,0.0 -nvidia-persistenced,0.554405071820581,2.85212831528211,-0.0537008340595563,https://salsa.debian.org/nvidia-team/nvidia-persistenced, https://github.com/NVIDIA/nvidia-persistenced,3871.020960648148,0,3,0,3.0,13.0,0.0,0.0 -nvidia-settings,0.315147961460213,2.76844051227516,-0.228849959583953,https://salsa.debian.org/nvidia-team/nvidia-settings, https://github.com/NVIDIA/nvidia-settings,5776.464930555556,24,5,0,16.0,143.0,0.0,0.0 -ocaml-ffmpeg,-1.76803246261922,0.621394630828162,-2.2379595426391,https://salsa.debian.org/ocaml-team/ocaml-ffmpeg, https://github.com/savonet/ocaml-ffmpeg.git,4033.376863425926,2,11,0,7.0,20.0,0.0,0.0 -ocaml-fileutils,-1.20786113175008,0.06771540309995,-1.45957569717602,https://salsa.debian.org/ocaml-team/ocaml-fileutils, https://github.com/gildor478/ocaml-fileutils.git,1144.378402777778,5,6,0,7.0,12.0,0.0,0.0 -ocaml-flac,-1.75076236617426,-0.350224532652695,-2.18902158435421,https://salsa.debian.org/ocaml-team/ocaml-flac, https://github.com/savonet/ocaml-flac.git,4915.279699074074,1,7,0,5.0,12.0,0.0,0.0 -gen,-2.91409646418086,-0.992291004321486,-3.31718696811559,https://salsa.debian.org/ocaml-team/ocaml-gen, https://github.com/c-cube/gen.git,3422.9857291666667,3,9,0,7.0,18.0,0.0,0.0 -ocaml-gstreamer,-0.175799754020537,2.60877233085239,-0.943082577639775,https://salsa.debian.org/ocaml-team/ocaml-gstreamer, https://github.com/savonet/ocaml-gstreamer.git,5244.753553240741,0,10,0,5.0,5.0,0.0,0.0 -ocaml-http,-1.54946051282033,1.58641070755953,-2.44654732590304,https://salsa.debian.org/ocaml-team/ocaml-http, https://github.com/sacerdot/ocaml-http.git,3570.2121180555555,1,3,0,2.0,0.0,0.0,0.0 -ocaml-inotify,-1.59844473814278,0.206726915975742,-1.97851302725586,https://salsa.debian.org/ocaml-team/ocaml-inotify, https://github.com/whitequark/ocaml-inotify,3586.280324074074,4,14,0,12.0,18.0,0.0,0.0 -ocaml-ladspa,-0.711865707758547,1.2358767301964,-1.43923132323344,https://salsa.debian.org/ocaml-team/ocaml-ladspa, https://github.com/savonet/ocaml-ladspa.git,4935.873645833333,1,7,0,4.0,4.0,0.0,0.0 -ocaml-ogg,-0.348620775993297,1.64371204997355,-0.96036025032132,https://salsa.debian.org/ocaml-team/ocaml-ogg, https://github.com/savonet/ocaml-ogg.git,5318.851840277778,1,7,0,4.0,2.0,0.0,0.0 -ocaml-opus,-0.945763206767853,1.35136386252887,-1.53810351093048,https://salsa.debian.org/ocaml-team/ocaml-opus, https://github.com/savonet/ocaml-opus.git,3889.197881944445,2,8,0,5.0,6.0,0.0,0.0 -res,-1.66192560718984,0.840438772603249,-2.37466946495814,https://salsa.debian.org/ocaml-team/ocaml-res, https://github.com/mmottl/res,3234.9244791666665,0,3,0,2.0,6.0,0.0,0.0 -ocaml-sha,-2.16157776555031,-1.56248040982033,-2.24745109731745,https://salsa.debian.org/ocaml-team/ocaml-sha, https://github.com/djs55/ocaml-sha.git,5351.19724537037,6,17,0,13.0,26.0,0.0,0.0 -ocaml-shine,-1.65373377007863,1.62127331012907,-2.50151750138973,https://salsa.debian.org/ocaml-team/ocaml-shine, https://github.com/savonet/ocaml-shine.git,3549.8277199074078,1,5,0,4.0,3.0,0.0,0.0 -ocaml-speex,-0.61538468061694,3.15438408626204,-1.9637699192271,https://salsa.debian.org/ocaml-team/ocaml-speex, https://github.com/savonet/ocaml-speex.git,5316.998090277778,1,7,0,4.0,2.0,0.0,0.0 -ocaml-ssl,1.26272191657388,4.06857202274891,0.140167964934891,https://salsa.debian.org/ocaml-team/ocaml-ssl, https://github.com/savonet/ocaml-ssl.git,5405.43818287037,11,30,0,25.0,0.0,0.0,0.0 -ocaml-theora,-0.251229253367388,3.15443606428574,-1.47281718966282,https://salsa.debian.org/ocaml-team/ocaml-theora, https://github.com/savonet/ocaml-theora.git,5316.99707175926,1,8,0,4.0,1.0,0.0,0.0 -ocaml-usb,-0.597368689342733,1.7793339383376,-1.2060915240285,https://salsa.debian.org/ocaml-team/ocaml-usb, https://github.com/letoh/ocaml-usb.git,4549.607326388889,1,8,0,5.0,8.0,0.0,0.0 -ocaml-vorbis,-0.982200132117348,0.998691427331073,-1.55205631917929,https://salsa.debian.org/ocaml-team/ocaml-vorbis, https://github.com/savonet/ocaml-vorbis.git,5459.566967592593,1,7,0,4.0,3.0,0.0,0.0 -ocamlagrep,-2.16520774964579,-1.01216289690604,-2.35724824650124,https://salsa.debian.org/ocaml-team/ocamlagrep, https://github.com/xavierleroy/ocamlagrep,2115.1310300925925,1,2,0,2.0,4.0,0.0,0.0 -gsl-ocaml,0.121644881238371,1.0155865796742,-0.246286652234876,https://salsa.debian.org/ocaml-team/ocamlgsl, https://github.com/mmottl/gsl-ocaml.git,3442.604502314815,1,11,0,10.0,21.0,0.0,0.0 -ocaml-makefile,-0.421444503870647,1.34113958259059,-0.786439559843771,https://salsa.debian.org/ocaml-team/ocamlmakefile, https://github.com/mmottl/ocaml-makefile.git,1922.9826967592592,0,4,0,2.0,8.0,0.0,0.0 -ocl-icd,0.278145441089624,0.851566458814537,0.0330607099598748,https://salsa.debian.org/opencl-team/ocl-icd, https://github.com/OCL-DEV/ocl-icd.git,4207.2761689814815,2,15,0,5.0,27.0,0.0,0.0 -octave-mpi,-0.0320527810472114,2.14923315120322,-0.636483429385765,https://salsa.debian.org/pkg-octave-team/octave-mpi, https://github.com/carlodefalco/octave-mpi,1390.1617245370371,1,3,0,1.0,6.0,0.0,0.0 -odil,-0.831778982805444,-0.397569441970177,-0.935173424395587,https://salsa.debian.org/med-team/odil, https://github.com/lamyj/odil,2678.173935185185,5,12,1,9.0,15.0,0.0,1.0 -odt2txt,0.955245423913758,3.26435998684312,0.092339100573121,https://salsa.debian.org/debian/odt2txt, https://github.com/dstosberg/odt2txt,3417.1558564814814,1,9,0,5.0,28.0,0.0,0.0 -ofxstatement,-0.83877240272067,1.489861656908,-1.29242181476493,https://github.com/gerasiov/ofxstatement,https://github.com/gerasiov/ofxstatement,1632.6686689814817,1,16,0,11.0,3.0,0.0,0.0 -ofxstatement-plugins,-0.555491606281527,2.2730604682278,-1.2542888677083,https://github.com/gerasiov/ofxstatement-plugins,https://github.com/gerasiov/ofxstatement-plugins,1689.0224305555555,0,3,0,1.0,0.0,0.0,0.0 -ogdi,0.463786622249594,1.38273816076166,0.070319022698257,https://salsa.debian.org/debian-gis-team/ogdi-dfsg, https://github.com/libogdi/ogdi.git,5366.5318402777775,1,9,0,9.0,11.0,0.0,0.0 -onesixtyone,-0.0525705363605959,1.79935769724069,-0.440487615518883,https://salsa.debian.org/pkg-security-team/onesixtyone, https://github.com/trailofbits/onesixtyone,3350.054722222222,10,11,0,15.0,26.0,0.0,0.0 -onionbalance,-1.70721970893323,-0.295338348899362,-2.10449057465737,https://salsa.debian.org/debian/onionbalance, https://github.com/asn-d6/onionbalance.git,3123.215324074074,16,8,0,18.0,1.0,0.0,0.0 -Sensor,-0.705184402046312,0.502182003342549,-0.967790766997195,https://salsa.debian.org/multimedia-team/openni-sensor-primesense, https://github.com/PrimeSense/Sensor.git,1069.8803587962964,0,3,0,3.0,28.0,0.0,1.0 -opensysusers,-3.30966318272112,-1.10811188350065,-3.75114493400175,https://salsa.debian.org/debian/opensysusers, https://github.com/cromerc/opensysusers.git,1929.928923611111,4,11,0,5.0,2.0,0.0,0.0 -OpenMSX,0.583206602447851,3.28250279543403,-0.143041661106683,https://salsa.debian.org/openttd-team/openttd-openmsx, https://github.com/OpenTTD/OpenMSX.git,5037.872604166667,7,8,0,10.0,18.0,0.0,0.0 -OpenSFX,0.0341113683294794,1.81042168290464,-0.372304383785565,https://salsa.debian.org/openttd-team/openttd-opensfx, https://github.com/OpenTTD/OpenSFX.git,5073.9709953703705,7,9,0,10.0,14.0,0.0,0.0 -opentyrian,-0.470902051471208,1.81286825060979,-0.900636134856693,https://salsa.debian.org/games-team/opentyrian, https://github.com/opentyrian/opentyrian.git,5445.219652777778,6,17,0,14.0,49.0,0.0,1.0 -platform,0.451088318283465,2.26041531250433,-0.0788317432754388,https://salsa.debian.org/debian/p8-platform, https://github.com/Pulse-Eight/platform.git,2947.354976851852,2,28,0,23.0,43.0,0.0,0.0 -pacemaker,1.1235155798957,1.88496777553281,0.624011358509109,https://salsa.debian.org/ha-team/pacemaker, https://github.com/ClusterLabs/pacemaker,5780.195138888889,21,156,0,106.0,3.0,0.0,0.0 -packit,1.48942834311213,3.95720756313973,0.379462691509891,https://salsa.debian.org/debian/packit, https://github.com/resurrecting-open-source-projects/packit,2522.847418981481,3,11,0,6.0,11.0,0.0,0.0 -pacman4console.debian,0.732053164869324,3.02920056306834,-0.160214161055993,https://github.com/alexdantas/pacman4console.debian,https://github.com/alexdantas/pacman4console.debian,442.21788194444446,0,2,0,2.0,1.0,0.0,0.0 -padthv1,-0.0637358518245524,2.79918411204868,-0.675200257772177,https://salsa.debian.org/multimedia-team/padthv1, https://github.com/rncbc/padthv1.git,2334.0719907407406,2,4,0,3.0,6.0,0.0,0.0 -pajeng,-2.29189452913937,-1.42465217231699,-2.57490979180573,https://salsa.debian.org/debian/pajeng, https://github.com/schnorr/pajeng.git,3890.985347222222,1,24,0,10.0,19.0,0.0,5.0 -pam_p11,-0.548583161526234,0.964446186711403,-1.10646596188949,https://salsa.debian.org/opensc-team/pam-p11, https://github.com/OpenSC/pam_p11.git,5663.13488425926,3,10,0,11.0,24.0,0.0,0.0 -ParaFly,-0.703785079701501,1.18315726331133,-1.09308492113404,https://salsa.debian.org/med-team/parafly, https://github.com/ParaFly/ParaFly,1437.0966666666666,1,4,0,2.0,1.0,0.0,0.0 -parallax,-0.0887932063431924,2.38916268908533,-0.651790373985227,https://salsa.debian.org/python-team/packages/parallax, https://github.com/krig/parallax,5166.3950231481485,4,10,0,8.0,6.0,0.0,0.0 -partd,0.209615305596686,2.61932118029702,-0.319373273551156,https://salsa.debian.org/python-team/packages/partd, https://github.com/dask/partd.git,3130.777800925926,14,10,0,21.0,46.0,0.0,0.0 -pass-extension-tail,-0.357805089713447,2.13667166838152,-0.933380627622862,https://salsa.debian.org/debian/pass-extension-tail, https://github.com/palortoff/pass-extension-tail,1892.8072222222224,4,2,0,5.0,18.0,0.0,0.0 -pastedeploy,0.159009188486497,1.14750716010409,-0.172766059220747,https://salsa.debian.org/python-team/packages/pastedeploy, https://github.com/Pylons/pastedeploy,4320.11724537037,5,24,0,21.0,22.0,0.0,0.0 -pastescript,0.353823270629373,1.35513254390523,-0.0943410822422864,https://salsa.debian.org/python-team/packages/pastescript, https://github.com/cdent/pastescript.git,3347.957789351852,0,24,0,14.0,7.0,0.0,0.0 -libdir,-0.025480314189379,1.53960860686673,-0.434339048580152,https://salsa.debian.org/multimedia-team/pd/pd-libdir, https://github.com/pure-data/libdir,2709.947835648148,1,9,0,3.0,1.0,0.0,0.0 -pd-lua,-0.369383513489571,1.75905614601873,-0.780819933618331,https://salsa.debian.org/multimedia-team/pd/pd-lua, https://github.com/agraef/pd-lua.git,3302.6912962962965,1,8,0,6.0,12.0,0.0,0.0 -moonlib,-0.220576523706958,2.02263054824689,-0.734517258281122,https://salsa.debian.org/multimedia-team/pd/pd-moonlib, https://github.com/MetaluNet/moonlib.git,5328.802453703704,1,11,0,4.0,15.0,0.0,0.0 -PuRestJson,-0.254922486955698,2.32023704201916,-0.819840459329826,https://salsa.debian.org/multimedia-team/pd/pd-purest-json, https://github.com/residuum/PuRestJson.git,4472.353229166667,0,8,0,5.0,24.0,0.0,2.0 -tclpd,-0.547232275125129,1.06538912069422,-0.832098932599204,https://salsa.debian.org/multimedia-team/pd/pd-tclpd, https://github.com/pd-externals/tclpd.git,5367.883101851852,2,12,0,3.0,0.0,0.0,0.0 -vbap,-0.212897524820705,1.75445810869701,-0.743250436269704,https://salsa.debian.org/multimedia-team/pd/pd-vbap, https://github.com/pd-externals/vbap.git,5156.073657407407,1,7,0,2.0,5.0,0.0,0.0 -xsample,-0.381260306551827,1.95255552142034,-0.868159642502604,https://salsa.debian.org/multimedia-team/pd/pd-xsample, https://github.com/grrrr/xsample.git,5672.9809259259255,1,13,0,6.0,6.0,0.0,0.0 -pdd,-0.96846896187884,1.30331332356726,-1.4106955015723,https://salsa.debian.org/debian/pdd, https://github.com/jarun/pdd.git,2233.847233796296,8,9,0,11.0,23.0,0.0,0.0 -pdfresurrect,-0.23996525388638,1.67946261371584,-0.59688237072784,https://salsa.debian.org/debian/pdfresurrect, https://github.com/enferex/pdfresurrect.git,5171.962662037037,2,6,0,6.0,19.0,0.0,0.0 -pkg-pdudaemon,-2.91306680643287,-0.145850824528147,-3.67906102762584,https://github.com/pdudaemon/pkg-pdudaemon,https://github.com/pdudaemon/pkg-pdudaemon,1898.0415972222224,9,22,0,16.0,6.0,0.0,0.0 -peony-extensions,-0.564111606101361,1.86591915571183,-1.18780438162773,https://github.com/ukui/peony-extensions,https://github.com/ukui/peony-extensions,1664.9383333333333,13,33,0,17.0,25.0,0.0,0.0 -pgcharts,-0.330716905200357,2.72524688656416,-1.4219394500185,https://github.com/dimitri/pgcharts,https://github.com/dimitri/pgcharts,2256.897962962963,2,6,0,6.0,31.0,0.0,0.0 -pgextwlist,-2.63340214747954,-0.157692962640915,-3.26209228710891,https://github.com/dimitri/pgextwlist,https://github.com/dimitri/pgextwlist,4298.991944444444,2,19,0,12.0,42.0,0.0,0.0 -pgl_ddl_deploy,-2.51856607601625,0.331077085543538,-3.25977074886732,https://salsa.debian.org/postgresql/pgl-ddl-deploy, https://github.com/enova/pgl_ddl_deploy.git,2403.256342592593,9,12,0,10.0,14.0,0.0,0.0 -pglogical_ticker,-1.99300280945124,1.9160778986305,-3.10566554484295,https://salsa.debian.org/postgresql/pglogical-ticker, https://github.com/enova/pglogical_ticker.git,1787.9691666666668,1,7,0,5.0,4.0,0.0,0.0 -pgpdump,0.36143950333341,1.51893397726003,-0.144183693016058,https://salsa.debian.org/debian/pgpdump, https://github.com/kazu-yamamoto/pgpdump.git,4538.913414351852,4,16,0,16.0,27.0,0.0,0.0 -pgqd,-1.0872351669669,1.05950568376667,-1.53142551702268,https://salsa.debian.org/postgresql/pgqd, https://github.com/pgq/pgqd,2225.1037384259257,0,1,0,1.0,6.0,0.0,0.0 -pgsphere,-0.619432588970695,1.61934040316392,-1.06735716946819,https://salsa.debian.org/postgresql/pgsphere, https://github.com/akorotkov/pgsphere,1961.9147569444444,2,10,0,7.0,24.0,0.0,0.0 -pgsql-asn1oid,-2.13226834673849,0.0065837251058692,-2.97386233799254,https://github.com/df7cb/pgsql-asn1oid,https://github.com/df7cb/pgsql-asn1oid,2425.896435185185,3,4,0,5.0,4.0,0.0,0.0 -pgxnclient,-0.85155888131832,0.370970429938223,-1.10149104887505,https://salsa.debian.org/postgresql/pgxnclient, https://github.com/pgxn/pgxnclient.git,3780.249421296296,0,7,0,7.0,26.0,0.0,1.0 -pgzero,-0.0710203462137889,2.37147323598952,-0.527322234446825,https://github.com/RPi-Distro/pgzero,https://github.com/RPi-Distro/pgzero,1071.605775462963,0,31,0,19.0,0.0,0.0,0.0 -Auth_SASL,0.442191496402906,2.67699921686042,-0.103972592038695,https://salsa.debian.org/php-team/pear/php-auth-sasl, https://github.com/pear/Auth_SASL.git,5614.356469907408,3,10,0,7.0,4.0,0.0,0.0 -ansel,-1.62227992306444,-0.0808757241466176,-1.9210437163213,https://salsa.debian.org/horde-team/php-horde-ansel, https://github.com/horde/ansel.git,3572.815891203704,8,17,0,12.0,3.0,0.0,0.0 -Auth,0.204785208426788,2.94636390757602,-0.554406768101709,https://salsa.debian.org/horde-team/php-horde-auth, https://github.com/horde/Auth.git,5222.153275462963,8,22,0,12.0,3.0,0.0,0.0 -Cache,-0.174470052161785,2.10645961966901,-0.621323731432901,https://salsa.debian.org/horde-team/php-horde-cache, https://github.com/horde/Cache.git,5348.468379629629,2,18,0,8.0,2.0,0.0,0.0 -Compress,-0.0162442715598989,2.573155410047,-0.607693905543425,https://salsa.debian.org/horde-team/php-horde-compress, https://github.com/horde/Compress.git,5217.754375,1,13,0,8.0,5.0,0.0,0.0 -Core,-0.380260796125779,0.352626984782649,-0.604615374728719,https://salsa.debian.org/horde-team/php-horde-core, https://github.com/horde/Core.git,5226.49806712963,21,34,0,20.0,9.0,0.0,0.0 -Crypt,0.187511708701416,2.67518359293262,-0.532965220602124,https://salsa.debian.org/horde-team/php-horde-crypt, https://github.com/horde/Crypt.git,5471.736516203704,3,21,0,13.0,6.0,0.0,0.0 -Css_Parser,-0.0402081222000321,2.52915570961585,-0.602732940546386,https://salsa.debian.org/horde-team/php-horde-css-parser, https://github.com/horde/Css_Parser.git,3874.0563888888887,2,10,0,6.0,4.0,0.0,0.0 -Data,0.183171821003295,3.09938130965899,-0.570655251896387,https://salsa.debian.org/horde-team/php-horde-data, https://github.com/horde/Data.git,5055.593263888889,0,13,0,7.0,3.0,0.0,0.0 -Dav,-0.386658763732866,0.750534238995732,-0.628487162499523,https://salsa.debian.org/horde-team/php-horde-dav, https://github.com/horde/Dav.git,3872.1194328703705,2,9,0,7.0,2.0,0.0,0.0 -Db,-0.264682174789894,1.37929818175092,-0.615400448018519,https://salsa.debian.org/horde-team/php-horde-db, https://github.com/horde/Db.git,5458.164583333333,6,19,0,14.0,13.0,0.0,0.0 -Editor,-0.223426584733947,1.34298704341404,-0.605941186398711,https://salsa.debian.org/horde-team/php-horde-editor, https://github.com/horde/Editor.git,5432.443020833333,0,10,0,4.0,0.0,0.0,0.0 -Form,0.14252789650246,2.56464496021431,-0.550380122776327,https://salsa.debian.org/horde-team/php-horde-form, https://github.com/horde/Form.git,5422.499918981482,3,17,0,11.0,2.0,0.0,0.0 -gollem,-0.171618986615286,2.89817525914709,-0.866777393612127,https://salsa.debian.org/horde-team/php-horde-gollem, https://github.com/horde/gollem.git,3924.770474537037,2,13,0,7.0,0.0,0.0,0.0 -groupware,-0.879575572702774,1.95588867647421,-1.59509283216139,https://salsa.debian.org/horde-team/php-horde-groupware, https://github.com/horde/groupware.git,2932.578773148148,1,6,0,5.0,0.0,0.0,0.0 -Icalendar,0.411178925029687,3.9130953915899,-0.513041815715152,https://salsa.debian.org/horde-team/php-horde-icalendar, https://github.com/horde/Icalendar.git,5159.372430555555,2,18,0,9.0,3.0,0.0,0.0 -Image,0.861625622312404,3.84661135149808,-0.192976466940603,https://salsa.debian.org/horde-team/php-horde-image, https://github.com/horde/Image.git,5265.799756944444,5,20,0,14.0,5.0,0.0,0.0 -Imap_Client,0.0159896158795933,2.45672857559943,-0.594186089846477,https://salsa.debian.org/horde-team/php-horde-imap-client, https://github.com/horde/Imap_Client.git,5506.481261574074,14,23,0,22.0,21.0,0.0,0.0 -imp,-0.387264654144177,1.28922363095689,-0.857146627686056,https://salsa.debian.org/horde-team/php-horde-imp, https://github.com/horde/imp.git,5305.90525462963,15,26,0,24.0,15.0,0.0,0.0 -ingo,-0.738291040308077,0.443103494356446,-0.947574171352426,https://salsa.debian.org/horde-team/php-horde-ingo, https://github.com/horde/ingo.git,4403.567083333333,10,21,0,17.0,4.0,0.0,0.0 -JavascriptMinify_Jsmin,-1.31533346419952,2.29216057565816,-2.4364015778352,https://salsa.debian.org/horde-team/php-horde-javascriptminify-jsmin, https://github.com/horde/JavascriptMinify_Jsmin.git,3603.589363425926,2,12,0,6.0,1.0,0.0,0.0 -kronolith,-0.166253261321685,1.87236583137514,-0.795113908579552,https://salsa.debian.org/horde-team/php-horde-kronolith, https://github.com/horde/kronolith.git,4413.8611458333335,19,29,0,22.0,6.0,0.0,0.0 -ListHeaders,0.496037656791296,4.18984525323947,-0.503645341941662,https://salsa.debian.org/horde-team/php-horde-listheaders, https://github.com/horde/ListHeaders.git,4255.579930555556,2,10,0,6.0,1.0,0.0,0.0 -Mail,-0.363916444363985,1.13321039067331,-0.626998217232575,https://salsa.debian.org/horde-team/php-horde-mail, https://github.com/horde/Mail.git,4915.307268518519,7,13,0,11.0,9.0,0.0,0.0 -Mapi,-0.0661710251511498,2.58767980448231,-0.618532739220528,https://salsa.debian.org/horde-team/php-horde-mapi, https://github.com/horde/Mapi.git,2259.7966087962964,1,5,0,5.0,3.0,0.0,0.0 -Memcache,0.0040161630453602,2.72211667023621,-0.602899602198373,https://salsa.debian.org/horde-team/php-horde-memcache, https://github.com/horde/Memcache.git,4490.554363425926,3,7,0,6.0,1.0,0.0,0.0 -Mime,0.312598091998098,3.61990381078814,-0.539292025154763,https://salsa.debian.org/horde-team/php-horde-mime, https://github.com/horde/Mime.git,5432.603287037037,7,18,0,12.0,8.0,0.0,0.0 -Mime_Viewer,-0.114949450873328,1.94240763174753,-0.601643281374749,https://salsa.debian.org/horde-team/php-horde-mime-viewer, https://github.com/horde/Mime_Viewer.git,4839.7695138888885,2,13,0,7.0,0.0,0.0,0.0 -mnemo,-0.620782744288486,0.974790302662827,-0.892064866876727,https://salsa.debian.org/horde-team/php-horde-mnemo, https://github.com/horde/mnemo.git,4989.44556712963,5,17,0,11.0,4.0,0.0,0.0 -Mongo,0.91677132679345,5.42989372433676,-0.479383727697856,https://salsa.debian.org/horde-team/php-horde-mongo, https://github.com/horde/Mongo.git,3839.649965277778,0,8,0,5.0,0.0,0.0,0.0 -Pack,0.214272562492599,3.19453329251686,-0.549560368021634,https://salsa.debian.org/horde-team/php-horde-pack, https://github.com/horde/Pack.git,3648.4273842592593,1,11,0,5.0,0.0,0.0,0.0 -passwd,-0.961211522570345,1.47321790709633,-1.6779013899252,https://salsa.debian.org/horde-team/php-horde-passwd, https://github.com/horde/passwd.git,4947.638958333333,4,19,0,12.0,5.0,0.0,0.0 -Role,-0.44794183208143,1.17290206026408,-0.767030268859667,https://salsa.debian.org/horde-team/php-horde-role, https://github.com/horde/Role.git,4810.131111111111,0,8,0,5.0,0.0,0.0,0.0 -sesha,-1.16215640136414,1.54504444921965,-1.99219940889212,https://salsa.debian.org/horde-team/php-horde-sesha, https://github.com/horde/sesha.git,2802.3719791666667,3,8,0,7.0,1.0,0.0,0.0 -Test,-0.238823004013114,1.87884049237919,-0.641514352188213,https://salsa.debian.org/horde-team/php-horde-test, https://github.com/horde/Test.git,5359.615,2,15,0,7.0,3.0,0.0,0.0 -Text_Filter,-0.143714547390321,1.07686967436859,-0.555585014115903,https://salsa.debian.org/horde-team/php-horde-text-filter, https://github.com/horde/Text_Filter.git,5251.306493055556,3,17,0,9.0,6.0,0.0,0.0 -Text_Filter_Jsmin,-1.31240451781138,2.12226153886276,-2.42195535802247,https://salsa.debian.org/horde-team/php-horde-text-filter-jsmin, https://github.com/horde/Text_Filter_Jsmin.git,2314.732372685185,0,4,0,5.0,1.0,0.0,0.0 -trean,-0.305868272713468,1.97802468726843,-0.878929578804094,https://salsa.debian.org/horde-team/php-horde-trean, https://github.com/horde/trean.git,3562.835347222222,2,9,0,7.0,2.0,0.0,0.0 -turba,-0.457965055258577,1.31178896235939,-0.885930477256157,https://salsa.debian.org/horde-team/php-horde-turba, https://github.com/horde/turba.git,4857.3907407407405,15,22,0,21.0,16.0,0.0,0.0 -webmail,-0.405335363366864,1.79623636367251,-1.01222555094498,https://salsa.debian.org/horde-team/php-horde-webmail, https://github.com/horde/webmail.git,2950.8800810185185,2,6,0,6.0,2.0,0.0,0.0 -whups,-1.06542308450506,1.99933178965644,-1.89562708427228,https://salsa.debian.org/horde-team/php-horde-whups, https://github.com/horde/whups.git,3431.486701388889,4,18,0,11.0,0.0,0.0,0.0 -wicked,-1.07494338366801,1.99451637104157,-1.89217524542563,https://salsa.debian.org/horde-team/php-horde-wicked, https://github.com/horde/wicked.git,4893.998171296296,5,14,0,9.0,5.0,0.0,0.0 -php-invoker,-0.290512786061908,1.95959461381953,-0.889933414880879,https://salsa.debian.org/php-team/pear/php-invoker, https://github.com/sebastianbergmann/php-invoker,4657.89662037037,2,7,0,5.0,14.0,0.0,0.0 -Mail_Mime,0.0757330812547995,0.668749696907802,-0.124991113420402,https://salsa.debian.org/php-team/pear/php-mail-mime, https://github.com/pear/Mail_Mime.git,5740.767650462963,4,21,0,21.0,26.0,0.0,0.0 -Net_LDAP2,0.639885318257764,2.49018646004348,-0.0984745451090751,https://salsa.debian.org/php-team/pear/php-net-ldap2, https://github.com/pear/Net_LDAP2.git,3594.485416666667,3,10,0,6.0,8.0,0.0,0.0 -Net_Sieve,0.52860867987332,2.55133255454418,-0.107103554773453,https://salsa.debian.org/php-team/pear/php-net-sieve, https://github.com/pear/Net_Sieve.git,4982.018912037037,1,17,0,14.0,13.0,0.0,0.0 -Net_SMTP,0.612479398529543,2.48356959222482,0.0048970818145977,https://salsa.debian.org/php-team/pear/php-net-smtp, https://github.com/pear/Net_SMTP.git,5742.501909722222,6,20,0,18.0,56.0,0.0,0.0 -Net_Socket,0.907994996745038,3.04058139061094,0.117819562938565,https://salsa.debian.org/php-team/pear/php-net-socket, https://github.com/pear/Net_Socket.git,3345.463252314815,1,15,0,13.0,12.0,0.0,0.0 -manifest,0.0385459704976402,2.44553072576695,-0.417874197026899,https://salsa.debian.org/php-team/pear/php-phar-io-manifest, https://github.com/phar-io/manifest.git,2379.9058680555554,3,9,0,9.0,17.0,0.0,0.0 -ReflectionCommon,0.0165590904002181,2.28668639714466,-0.412435710798256,https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-common, https://github.com/phpDocumentor/ReflectionCommon,2836.508460648148,10,9,0,12.0,17.0,0.0,0.0 -proxy-manager-lts,-0.469657562496154,1.74429330828993,-0.900080734206303,https://salsa.debian.org/php-team/pear/php-proxy-manager, https://github.com/FriendsOfPHP/proxy-manager-lts.git,3717.899050925926,21,47,0,55.0,26.0,0.0,0.0 -cache,0.944765666055755,4.16922910379261,-0.0612099303670947,https://salsa.debian.org/php-team/pear/php-psr-cache, https://github.com/php-fig/cache.git,2530.1591435185187,8,10,0,14.0,1.0,0.0,0.0 -http-message,-0.0680426390312836,3.3445895376759,-1.03124991562073,https://salsa.debian.org/php-team/pear/php-psr-http-message, https://github.com/php-fig/http-message,3219.452534722222,3,24,0,21.0,3.0,0.0,0.0 -Base,-0.0522904131714493,2.75253811313558,-0.974338110629934,https://salsa.debian.org/php-team/pear/php-zeta-base, https://github.com/zetacomponents/Base.git,5395.174872685186,0,15,0,9.0,11.0,0.0,0.0 -ConsoleTools,-0.0924800072217611,2.73874415667246,-0.997572383151449,https://salsa.debian.org/php-team/pear/php-zeta-console-tools, https://github.com/zetacomponents/ConsoleTools,5321.850185185185,2,14,0,12.0,14.0,0.0,0.0 -motranslator,0.387530807701854,2.86773161614253,-0.265429509953545,https://salsa.debian.org/phpmyadmin-team/motranslator, https://github.com/phpmyadmin/motranslator,2762.962835648148,6,14,2,15.0,27.0,0.0,0.0 -global-state,0.247922924982528,2.37332354693648,-0.316637866460641,https://salsa.debian.org/php-team/pear/phpunit-global-state, https://github.com/sebastianbergmann/global-state,3396.3039351851853,9,7,0,12.0,28.0,0.0,0.0 -object-enumerator,0.254325420628901,2.97955180600844,-0.337224691437077,https://salsa.debian.org/php-team/pear/phpunit-object-enumerator, https://github.com/sebastianbergmann/object-enumerator,2872.263252314815,6,4,0,8.0,11.0,0.0,0.0 -pkg-pick,0.155165736371546,3.38878984699403,-0.755115262487176,https://github.com/eavgerinos/pkg-pick,https://github.com/eavgerinos/pkg-pick,1591.7380671296296,0,2,0,1.0,0.0,0.0,0.0 -pickleshare,0.371750047160967,2.42431399615297,-0.0927808248876728,https://salsa.debian.org/python-team/packages/pickleshare, https://github.com/pickleshare/pickleshare,3583.9321875,1,14,0,11.0,33.0,0.0,0.0 -picocom,0.716218773749993,2.57220547679763,0.0257322881730791,https://salsa.debian.org/debian/picocom, https://github.com/npat-efault/picocom,2876.49875,2,13,0,11.0,34.0,0.0,0.0 -plexus-interactivity,0.283151966694231,2.33305401763242,-0.173915333794921,https://salsa.debian.org/java-team/plexus-interactivity-api, https://github.com/codehaus-plexus/plexus-interactivity.git,2997.8996759259257,5,11,0,10.0,10.0,0.0,0.0 -plotnetcfg,-1.02202717844307,1.32237398630487,-1.45608020794805,https://salsa.debian.org/debian/plotnetcfg, https://github.com/jbenc/plotnetcfg.git,2530.945150462963,2,3,0,3.0,11.0,0.0,0.0 -pmailq,-0.344401861175758,2.26936376380763,-1.13677995418968,https://salsa.debian.org/kolter/pmailq, https://github.com/k0lter/pmailq,3215.899363425926,0,2,0,1.0,0.0,0.0,0.0 -pmemkv,-2.56665635042394,-0.187433663300834,-3.01323085854248,https://github.com/kilobyte/pmemkv/tree/debian,https://github.com/kilobyte/pmemkv,2071.5010185185183,11,29,0,21.0,1.0,0.0,0.0 -pnscan,0.047464548494991,1.17591376502643,-0.337696201463,https://salsa.debian.org/pkg-security-team/pnscan, https://github.com/ptrrkssn/pnscan,1864.9276967592596,1,4,0,2.0,6.0,0.0,0.0 -podcastparser,0.110247366439153,2.4024478230949,-0.341238094638426,https://salsa.debian.org/debian/podcastparser, https://github.com/gpodder/podcastparser.git,3885.408865740741,6,16,0,18.0,26.0,0.0,0.0 -podget,0.0442858046342972,1.25920981629234,-0.458457840240292,https://salsa.debian.org/debian/podget, https://github.com/dvehrs/podget.git,2945.994837962963,1,10,0,8.0,35.0,0.0,1.0 -policyd-rate-limit,-1.54838919382906,0.860310983855883,-1.98558249586634,https://salsa.debian.org/python-team/packages/policyd-rate-limit, https://github.com/nitmir/policyd-rate-limit.git,2604.465451388889,1,4,0,4.0,24.0,0.0,0.0 -pps-tools,0.747248796270144,4.48143059549159,-0.437477846254583,https://github.com/bzed/pps-tools,https://github.com/bzed/pps-tools,3767.043414351852,3,10,0,5.0,2.0,0.0,0.0 -prads,0.259994196999911,3.8326314267203,-1.03394544781072,https://salsa.debian.org/debian/prads, https://github.com/gamelinux/prads.git,4237.008263888889,2,39,0,11.0,30.0,0.0,2.0 -prefix,-1.1387443889012,1.47053143024996,-2.00977064468329,https://github.com/dimitri/prefix,https://github.com/dimitri/prefix,5681.206678240741,1,10,0,7.0,23.0,0.0,0.0 -preggy,-2.92285552628942,-1.0464425404911,-3.31867365029399,https://salsa.debian.org/python-team/packages/preggy, https://github.com/heynemann/preggy,3206.047175925926,1,12,2,8.0,14.0,0.0,0.0 -preprepare,-2.22109058971355,-0.597730393683522,-2.59985701152518,https://github.com/dimitri/preprepare,https://github.com/dimitri/preprepare,5242.633761574074,0,4,0,2.0,5.0,0.0,0.0 -primus_vk,-0.421290841720463,2.921882742043,-1.23347524431008,https://salsa.debian.org/nvidia-team/primus-vk, https://github.com/felixdoerre/primus_vk,1911.529537037037,4,7,0,9.0,59.0,0.0,0.0 -princeprocessor,-1.26928375323949,1.07370924794994,-1.72101729931593,https://salsa.debian.org/pkg-security-team/princeprocessor, https://github.com/hashcat/princeprocessor.git,3216.904398148148,0,10,0,6.0,22.0,0.0,0.0 -proftpd-mod_case,-1.46464758728635,0.766272450426854,-2.02540924374874,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-case, https://github.com/Castaglia/proftpd-mod_case.git,4180.930405092593,0,4,0,1.0,5.0,0.0,0.0 -mod_clamav,-0.519950015667521,1.68042038048494,-1.29690193707197,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-clamav, https://github.com/jbenden/mod_clamav.git,3704.0200810185183,2,4,0,5.0,16.0,0.0,0.0 -proftpd-mod_counter,-3.90919577990779,-1.63110207351013,-4.3444753088454,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-counter, https://github.com/Castaglia/proftpd-mod_counter,4182.156412037037,0,3,0,1.0,3.0,0.0,0.0 -proftpd-mod_msg,-1.76107759555527,0.182162149210163,-2.28999652660185,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-msg, https://github.com/Castaglia/proftpd-mod_msg,1530.1719212962962,0,2,0,1.0,1.0,0.0,0.0 -proftpd-mod_tar,-1.01804643330443,1.41288647862948,-1.73531200480138,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-tar, https://github.com/Castaglia/proftpd-mod_tar.git,4180.905393518518,0,2,0,1.0,3.0,0.0,0.0 -proftpd-mod_vroot,1.59885423374212,4.02315278929942,0.568513066278763,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-vroot, https://github.com/Castaglia/proftpd-mod_vroot.git,3875.286851851852,0,5,0,3.0,23.0,0.0,0.0 -bind_exporter,-1.21912038403755,0.700315670038558,-1.66961737911248,https://salsa.debian.org/go-team/packages/prometheus-bind-exporter, https://github.com/prometheus-community/bind_exporter,2946.820011574074,21,14,0,25.0,30.0,0.0,1.0 -mailexporter,-1.46192629447316,0.835326558166831,-1.97088772748091,https://salsa.debian.org/go-team/packages/prometheus-mailexporter, https://github.com/cherti/mailexporter,2367.3820486111117,4,4,1,6.0,16.0,0.0,0.0 -pspg,-0.361050699895103,2.01300788415699,-0.820706513049175,https://salsa.debian.org/postgresql/pspg, https://github.com/okbob/pspg,2316.4040509259257,13,25,0,29.0,14.0,0.0,0.0 -Psychtoolbox-3,0.203352755626666,1.65292325757521,-0.37149262854368,https://github.com/neurodebian/Psychtoolbox-3/tree/debian,https://github.com/neurodebian/Psychtoolbox-3,5782.847916666667,14,56,0,38.0,2.0,0.0,0.0 -pt2-clone,-0.366824941788857,2.04424713341111,-0.870937555296044,https://salsa.debian.org/multimedia-team/pt2-clone, https://github.com/8bitbubsy/pt2-clone,1458.0896180555555,2,4,0,4.0,7.0,0.0,0.0 -PTable,-0.497756721895357,1.90297774222152,-1.03556077883777,https://salsa.debian.org/python-team/packages/ptable, https://github.com/kxxoling/PTable,3352.297199074074,2,16,0,9.0,45.0,0.0,0.0 -printer-driver-ptouch,2.94613939519945,6.82342804349508,1.51855611812132,https://salsa.debian.org/printing-team/ptouch-driver, https://github.com/philpem/printer-driver-ptouch.git,1342.562199074074,5,13,0,9.0,42.0,0.0,1.0 -puppetlabs-mysql,-1.08522694756704,0.911414696974354,-1.59455947848082,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-mysql, https://github.com/puppetlabs/puppetlabs-mysql,4577.2790046296295,89,362,0,277.0,0.0,0.0,0.0 -puppetlabs-xinetd,-1.72852091203077,0.76182363664486,-2.2296657542962,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-xinetd, https://github.com/puppetlabs/puppetlabs-xinetd,4771.07056712963,11,67,0,44.0,13.0,0.0,0.0 -purl,-1.34039029167924,0.909506171782387,-1.80754102822029,https://salsa.debian.org/python-team/packages/purl, https://github.com/codeinthehole/purl,3937.9855092592593,4,18,0,13.0,36.0,0.0,0.0 -pwgen,1.35395625158755,2.29147539327698,0.785581725914606,https://github.com/tytso/pwgen,https://github.com/tytso/pwgen,1771.036550925926,6,3,0,5.0,16.0,0.0,0.0 -project--perl-webget,-0.453062875836316,1.9572713674887,-1.06289151188951,https://salsa.debian.org/debian/pwget, https://github.com/jaalto/project--perl-webget,3883.396423611111,0,1,0,1.0,0.0,0.0,0.0 -pydl,-0.495608365400541,0.324022984738779,-0.642218824002594,https://salsa.debian.org/debian-astro-team/pydl, https://github.com/weaverba137/pydl,4774.052777777778,1,11,1,10.0,23.0,0.0,0.0 -pyepr,-0.939183997293192,0.138948768520847,-1.21878766996311,https://salsa.debian.org/debian-gis-team/pyepr, https://github.com/avalentino/pyepr.git,4620.466585648148,0,3,0,1.0,7.0,0.0,0.0 -pyfribidi,-1.31114373633633,-0.446986286180443,-1.58984842922395,https://salsa.debian.org/python-team/packages/pyfribidi, https://github.com/pediapress/pyfribidi.git,2842.49849537037,1,5,0,3.0,14.0,0.0,0.0 -PyGnuplot,-0.309281142371387,1.99710083681855,-0.816765547990162,https://salsa.debian.org/python-team/packages/pygnuplot, https://github.com/benschneider/PyGnuplot,2586.319305555556,0,7,0,3.0,14.0,0.0,0.0 -PyGreSQL,0.654635033502717,1.7130047409937,0.0882104426891017,https://salsa.debian.org/debian/pygresql, https://github.com/PyGreSQL/PyGreSQL,5390.1054513888885,4,4,4,8.0,32.0,0.0,0.0 -pygtail,-0.539020118992098,3.13292925607172,-1.61790882828562,https://salsa.debian.org/python-team/packages/pygtail, https://github.com/bgreenlee/pygtail,4147.394780092593,7,19,0,17.0,74.0,0.0,0.0 -pygtkspellcheck,0.7257355054143,2.61661141477408,0.0292934831785931,https://salsa.debian.org/python-team/packages/pygtkspellcheck, https://github.com/koehlma/pygtkspellcheck,4478.330185185185,2,11,1,6.0,23.0,0.0,0.0 -python-pass,-0.884700482124453,1.92189763510546,-1.62068355154731,https://salsa.debian.org/python-team/packages/pypass, https://github.com/ReAzem/python-pass.git,1834.5500810185183,3,11,0,9.0,16.0,0.0,1.0 -pypdf,0.336313629449464,1.87848467629318,-0.115518185475218,https://salsa.debian.org/debian/pypdf, https://github.com/py-pdf/pypdf,4367.592175925926,137,91,3,200.0,0.0,0.0,0.0 -python-pypeg2-debian,0.0855915398578102,2.25455245287497,-0.34580517821732,https://github.com/fiete201/python-pypeg2-debian,https://github.com/fiete201/python-pypeg2-debian,825.4394097222222,0,2,0,1.0,1.0,0.0,0.0 -Pyphen,-0.518895103853741,1.80200106239471,-0.977778682317542,https://salsa.debian.org/python-team/packages/pyphen, https://github.com/Kozea/Pyphen,3769.922326388889,0,13,0,5.0,56.0,0.0,0.0 -pyqso,-0.307095303624084,2.50750144517562,-0.977767231233681,https://salsa.debian.org/debian-hamradio-team/pyqso, https://github.com/ctjacobs/pyqso,2213.788564814815,2,9,5,5.0,25.0,0.0,0.0 -PyQwt3D,-0.397059011512334,0.744059748268288,-0.945141313476562,https://salsa.debian.org/python-team/packages/pyqwt3d, https://github.com/GauiStori/PyQwt3D,1540.4164930555555,0,3,0,1.0,1.0,0.0,0.0 -pyRFC3339,0.237519356434784,1.61668134856796,-0.0819212233808752,https://salsa.debian.org/python-team/packages/pyrfc3339, https://github.com/kurtraschke/pyRFC3339,3552.201458333333,1,7,0,7.0,14.0,0.0,0.0 -pysmi,0.239327018456762,2.21183034668648,-0.184147894622264,https://salsa.debian.org/python-team/packages/pysmi, https://github.com/etingof/pysmi,1806.330601851852,5,7,0,9.0,59.0,0.0,0.0 -pytest-runner,0.461573642872439,3.29481787102451,-0.472145598518505,https://salsa.debian.org/python-team/packages/pytest-runner, https://github.com/pytest-dev/pytest-runner.git,4387.118969907408,16,10,0,24.0,56.0,0.0,0.0 -pytest-tornado,-1.66103426456241,0.234670332900345,-2.05941203679703,https://salsa.debian.org/python-team/packages/pytest-tornado, https://github.com/eugeniy/pytest-tornado,2043.2375578703704,2,15,0,12.0,44.0,0.0,0.0 -activipy,-2.42311325952415,-0.815642979245098,-2.77879137707984,https://salsa.debian.org/python-team/packages/python-activipy, https://github.com/w3c-social/activipy,294.98199074074074,0,1,0,1.0,9.0,0.0,0.0 -python-admesh,-0.127588953243687,1.1910011407174,-0.482386520004136,https://salsa.debian.org/science-team/python-admesh, https://github.com/admesh/python-admesh,1607.8702662037035,1,1,0,2.0,9.0,0.0,0.0 -alignlib,-4.63939723072567,-1.91125987527709,-5.39874876509306,https://salsa.debian.org/med-team/python-alignlib, https://github.com/marcelm/alignlib.git,1738.8239930555555,1,3,0,2.0,2.0,0.0,0.0 -altgraph,-0.177664161225728,2.0796554316984,-0.617563094232779,https://salsa.debian.org/python-team/packages/python-altgraph, https://github.com/ronaldoussoren/altgraph,5013.400891203703,1,6,0,4.0,5.0,0.0,0.0 -arpy,-0.754590286423082,2.54869807999372,-1.72984202812202,https://salsa.debian.org/python-team/packages/python-arpy, https://github.com/viraptor/arpy.git,4328.123113425926,1,9,0,8.0,14.0,0.0,0.0 -asttokens,0.33408103626771,3.01141836548719,-0.288701326396789,https://salsa.debian.org/python-team/packages/python-asttokens, https://github.com/gristlabs/asttokens.git,2518.985543981481,9,8,0,14.0,30.0,0.0,0.0 -python-caja,0.0214160855011559,0.73959956688193,-0.20850701844582,https://salsa.debian.org/debian-mate-team/python-caja, https://github.com/mate-desktop/python-caja.git,4326.721134259259,10,21,0,18.0,39.0,0.0,0.0 -python-driver,-0.806275424657523,1.60416839197922,-1.74809489846118,https://salsa.debian.org/python-team/packages/python-cassandra-driver, https://github.com/datastax/python-driver.git,3941.7978935185183,43,186,0,129.0,3.0,0.0,0.0 -changelog,-1.70448054473229,-0.290367732987352,-2.05024305940995,https://salsa.debian.org/python-team/packages/python-changelog, https://github.com/sqlalchemyorg/changelog,3951.474050925926,6,7,0,5.0,7.0,0.0,0.0 -cheroot,0.218476662586452,2.57903897032906,-0.256634445307027,https://salsa.debian.org/python-team/packages/python-cheroot, https://github.com/cherrypy/cheroot.git,5771.299189814815,32,151,0,116.0,6.0,0.0,0.0 -click-plugins,0.183596650265385,2.50943745506862,-0.299339191325406,https://salsa.debian.org/debian-gis-team/python-click-plugins/, https://github.com/click-contrib/click-plugins.git,1359.290763888889,1,8,0,5.0,25.0,0.0,0.0 -cligj,0.0110381728393001,2.59955084654331,-0.499940708010805,https://salsa.debian.org/debian-gis-team/python-cligj, https://github.com/mapbox/cligj.git,2777.891469907408,2,10,0,5.0,17.0,0.0,0.0 -python-debianbts,0.513538471152521,1.02516058932949,0.231444231527959,https://github.com/venthur/python-debianbts,https://github.com/venthur/python-debianbts,5257.841331018519,2,16,0,12.0,20.0,0.0,0.0 -deeptools_intervals,-2.87716276513662,-0.609615947334158,-3.32264967911522,https://salsa.debian.org/med-team/python-deeptoolsintervals, https://github.com/deeptools/deeptools_intervals,1246.0450694444444,0,4,0,1.0,4.0,0.0,0.0 -demjson,-0.237038961472229,1.8179175851506,-0.80137511432811,https://salsa.debian.org/python-team/packages/python-demjson, https://github.com/dmeranda/demjson,1291.8414699074074,0,1,0,1.0,3.0,0.0,2.0 -deprecated,0.1196653299471,2.25977882516032,-0.308485560349962,https://salsa.debian.org/debian-gis-team/python-deprecated, https://github.com/tantale/deprecated.git,2057.2850694444446,18,4,0,17.0,55.0,0.0,0.0 -diaspy,-2.17458679876553,0.0535067340264225,-2.61656088683794,https://salsa.debian.org/python-team/packages/python-diaspy, https://github.com/marekjm/diaspy,3779.169131944445,4,18,0,10.0,31.0,0.0,0.0 -diff-match-patch,0.584603381464553,3.09865562984525,-0.11840201957185,https://salsa.debian.org/debian/python-diff-match-patch, https://github.com/diff-match-patch-python/diff-match-patch,1729.880428240741,3,2,0,3.0,3.0,0.0,0.0 -django-contact-form,-1.10973337045037,0.628121817228084,-1.64359729736289,https://salsa.debian.org/python-team/packages/python-django-contact-form, https://github.com/ubernostrum/django-contact-form,5539.237071759259,2,14,0,13.0,45.0,0.0,0.0 -django-etcd-settings,-0.989663267400494,2.25757908219037,-1.99197669528536,https://salsa.debian.org/python-team/packages/python-django-etcd-settings, https://github.com/kpn-digital/django-etcd-settings,2402.9784375,6,17,0,10.0,16.0,0.0,0.0 -django-gravatar,-0.663578474021825,1.16790467668008,-1.12793880314674,https://salsa.debian.org/python-team/packages/python-django-gravatar2, https://github.com/twaddington/django-gravatar,3121.693310185185,1,16,0,12.0,30.0,0.0,0.0 -django-jsonfield,-1.07142073551277,-0.0546197295612257,-1.30935796121876,https://salsa.debian.org/python-team/modules/python-django-jsonfield, https://github.com/adamchainz/django-jsonfield,3841.3997222222224,3,25,0,23.0,14.0,0.0,0.0 -django-libsass,-4.81731968936922,-2.39116751884945,-5.43841554832882,https://salsa.debian.org/python-team/packages/python-django-libsass, https://github.com/torchbox/django-libsass.git,3571.005949074074,10,9,0,14.0,47.0,0.0,1.0 -python-ecdsa,0.142739523061463,1.73012905576179,-0.155058972185504,https://salsa.debian.org/python-team/packages/python-ecdsa, https://github.com/warner/python-ecdsa.git,4921.863113425926,21,34,0,44.0,13.0,0.0,0.0 -python-epc,-0.66793387469914,1.8418923245079,-1.20975615875128,https://salsa.debian.org/python-team/packages/python-epc, https://github.com/tkf/python-epc,2413.0286574074075,1,4,0,3.0,7.0,0.0,0.0 -esmre,-2.00641566770589,0.202087281970367,-2.47557808240015,https://salsa.debian.org/debian/python-esmre, https://github.com/wharris/esmre.git,5681.62130787037,0,3,0,1.0,15.0,0.0,0.0 -python-ethtool,0.274962230630451,1.82732927092968,-0.303521557345908,https://salsa.debian.org/python-team/packages/python-ethtool, https://github.com/fedora-python/python-ethtool/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -python-fastimport,0.105277518376507,1.74571167550912,-0.262427062540309,https://salsa.debian.org/python-team/packages/python-fastimport, https://github.com/jelmer/python-fastimport,5680.5950578703705,13,39,0,27.0,14.0,0.0,0.0 -fisx,-0.0903144327544692,1.77973202904558,-0.598324937708201,https://salsa.debian.org/python-team/packages/python-fisx, https://github.com/vasole/fisx,3592.9752777777776,0,12,0,5.0,12.0,0.0,1.0 -fluids,-0.442121628110571,2.75067751986968,-1.36605828580339,https://salsa.debian.org/science-team/python-fluids, https://github.com/CalebBell/fluids/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -python-frozendict,0.190688469714448,2.63554997407049,-0.323798030236354,https://salsa.debian.org/openstack-team/python/python-frozendict, https://github.com/slezica/python-frozendict.git,1398.647986111111,1,9,0,6.0,48.0,0.0,0.0 -hiredis-py,-0.312418511802299,1.27521108325703,-0.637769777281603,https://salsa.debian.org/python-team/packages/python-hiredis, https://github.com/redis/hiredis-py.git,4704.111354166666,26,23,0,38.0,10.0,0.0,0.0 -python-hl7,-0.762637824258724,0.998810639328154,-1.37292815400799,https://salsa.debian.org/med-team/python-hl7, https://github.com/johnpaulett/python-hl7.git,5098.842939814815,5,6,0,7.0,54.0,0.0,0.0 -hupper,-0.481148407943983,1.32993114752913,-0.841903899936861,https://salsa.debian.org/python-team/packages/python-hupper, https://github.com/Pylons/hupper,2605.995127314815,4,15,0,12.0,35.0,0.0,0.0 -imagesize_py,0.781267179885099,3.74389761248769,-0.0426186256974488,https://salsa.debian.org/python-team/packages/python-imagesize, https://github.com/shibukawa/imagesize_py,2343.1267013888887,9,9,0,15.0,45.0,0.0,0.0 -python-Levenshtein,0.478340127269014,1.97183499968665,-0.0580315974395737,https://salsa.debian.org/python-team/packages/python-levenshtein, https://github.com/maxbachmann/python-Levenshtein,378.9515509259259,1,2,0,1.0,9.0,0.0,0.0 -python-libdiscid,0.0391061082183303,1.61241328517297,-0.245844028624214,https://salsa.debian.org/multimedia-team/python-libdiscid, https://github.com/sebastinas/python-libdiscid.git,3900.179664351852,3,5,0,6.0,8.0,0.0,0.0 -python-librtmp-debian,0.131603385368324,2.93701148551824,-0.638817933748588,https://github.com/breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian,409.9315625,0,1,0,1.0,0.0,0.0,0.0 -python-louvain,-2.26857793652823,1.49624956815603,-3.43397611373349,https://salsa.debian.org/python-team/packages/python-louvain, https://github.com/taynaud/python-louvain/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -lti,-1.90835919350364,0.69954791219436,-2.57019941298813,https://salsa.debian.org/python-team/packages/python-lti, https://github.com/pylti/lti.git,2862.783125,11,19,0,21.0,32.0,0.0,0.0 -macholib,-0.206576166886516,2.1953061241244,-0.642201103391397,https://salsa.debian.org/python-team/packages/python-macholib, https://github.com/ronaldoussoren/macholib,5321.569525462963,1,18,0,12.0,8.0,0.0,0.0 -py-magcode-core,-0.779498833646851,2.22540891243802,-1.70932232165662,https://github.com/grantma/py-magcode-core,https://github.com/grantma/py-magcode-core,2649.7967939814816,0,2,0,1.0,0.0,0.0,0.0 -markdown,-0.0672775300791168,0.0633658208868313,-0.111548497257213,https://salsa.debian.org/python-team/packages/python-markdown, https://github.com/Python-Markdown/markdown,5779.595196759259,101,82,0,147.0,24.0,0.0,96.0 -multipletau,-0.698793350853376,0.580682166099663,-0.952694230547463,https://salsa.debian.org/python-team/packages/python-multipletau, https://github.com/FCS-analysis/multipletau,3692.017893518519,2,10,0,4.0,7.0,0.0,0.0 -murmurhash,-0.58127674801198,1.75990723485695,-1.19189657790225,https://salsa.debian.org/python-team/packages/python-murmurhash, https://github.com/explosion/murmurhash,3382.167962962963,3,8,0,7.0,24.0,0.0,0.0 -netaddr,0.0168867872693013,0.327224619050915,-0.100935347206142,https://salsa.debian.org/python-team/packages/python-netaddr, https://github.com/netaddr/netaddr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -python-netfilter,-1.08310976523274,1.38196587053344,-1.63548798026612,https://salsa.debian.org/python-team/modules/python-netfilter, https://github.com/jlaine/python-netfilter.git,1238.4928935185185,0,1,0,1.0,5.0,0.0,0.0 -python-netsyslog,-3.06992829438534,-0.740837479176508,-3.69315077090514,https://github.com/dpocock/python-netsyslog,https://github.com/dpocock/python-netsyslog,1856.5705092592596,0,2,0,2.0,0.0,0.0,0.0 -python-neuroshare,-1.42361732199392,1.76808972514215,-2.45296799073677,http://github.com/G-Node/python-neuroshare,http://github.com/G-Node/python-neuroshare,2028.2039583333333,0,10,1,,,, -nine,-0.878473290743389,1.57494000575467,-1.43568582097605,https://salsa.debian.org/python-team/packages/python-nine, https://github.com/nandoflorestan/nine,2401.457627314815,0,3,0,2.0,5.0,0.0,0.0 -noise,-3.72258433828724,-1.09656757088233,-4.31836753726866,https://salsa.debian.org/python-team/packages/python-noise, https://github.com/caseman/noise.git,2101.5036111111112,1,8,0,6.0,49.0,0.0,0.0 -nose-random,-2.00635313840334,0.327071205424812,-2.47233597734095,https://salsa.debian.org/science-team/python-nose-random, https://github.com/fzumstein/nose-random,352.6133101851852,0,1,0,1.0,3.0,0.0,0.0 -numpysane,-0.426753720380055,1.99735017173568,-0.990334351077537,https://salsa.debian.org/python-team/packages/python-numpysane, https://github.com/dkogan/numpysane,2696.173819444444,0,2,0,1.0,3.0,0.0,0.0 -padme,-0.807368858178929,2.18164851479759,-1.67722938704724,https://salsa.debian.org/python-team/packages/python-padme, https://github.com/zyga/padme,2875.002002314815,1,3,1,1.0,3.0,0.0,0.0 -pkgconfig,0.158913783243231,2.43014435448495,-0.323957092475887,https://salsa.debian.org/python-team/packages/python-pkgconfig, https://github.com/matze/pkgconfig,2902.3845370370373,4,12,0,14.0,42.0,0.0,0.0 -plaster,-0.28046488532538,2.12671527314619,-0.830604831317031,https://salsa.debian.org/python-team/packages/python-plaster, https://github.com/pylons/plaster,2744.118136574074,7,5,0,7.0,13.0,0.0,0.0 -plaster_pastedeploy,-0.297532929904677,2.16739236372152,-0.838126274262991,https://salsa.debian.org/python-team/packages/python-plaster-pastedeploy, https://github.com/Pylons/plaster_pastedeploy.git,2741.5056365740743,4,5,0,7.0,13.0,0.0,0.0 -pluginbase,-0.281288105677501,2.05902343817203,-0.755162297381444,https://salsa.debian.org/python-team/packages/python-pluginbase, https://github.com/mitsuhiko/pluginbase.git,2511.806851851852,1,9,0,7.0,38.0,0.0,1.0 -python-popcon,-0.233533172692655,2.01834476808691,-1.10989243947417,https://github.com/venthur/python-popcon,https://github.com/venthur/python-popcon,4753.601365740741,3,5,0,5.0,7.0,0.0,0.0 -python-poppler-qt5,0.120227608181113,2.36806867916472,-0.307671387096747,https://salsa.debian.org/python-team/packages/python-poppler-qt5, https://github.com/frescobaldi/python-poppler-qt5,3161.795023148148,7,7,1,11.0,89.0,0.0,1.0 -python_portpicker,-0.837808490409931,1.85984811558886,-1.55217004389884,https://salsa.debian.org/debian/python-portpicker, https://github.com/google/python_portpicker,3069.126921296296,11,7,0,10.0,15.0,0.0,0.0 -pure-python-otr,-0.0437206443273251,2.06552258562387,-0.649967564210067,https://salsa.debian.org/python-team/packages/python-potr, https://github.com/python-otr/pure-python-otr,3956.961863425926,0,15,3,8.0,52.0,0.0,2.0 -pretend,-0.70611645616128,2.31978236912502,-1.54656086123652,https://salsa.debian.org/python-team/packages/python-pretend, https://github.com/alex/pretend,3941.031435185185,2,9,0,9.0,19.0,0.0,0.0 -python-progressbar,0.375928112638566,2.28927458164417,-0.10832906736111,https://salsa.debian.org/python-team/packages/python-progressbar, https://github.com/niltonvolpato/python-progressbar,3503.7755555555555,3,12,0,8.0,61.0,0.0,0.0 -python-protobix,-3.1476883564443,-0.737272162144816,-3.7253868496053,https://salsa.debian.org/python-team/packages/python-protobix, https://github.com/jbfavre/python-protobix,3133.4746064814813,0,14,1,0.0,16.0,0.0,0.0 -pulp,0.182500411245243,2.27684155817235,-0.324952232261522,https://salsa.debian.org/math-team/python-pulp, https://github.com/coin-or/pulp/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -Pweave,0.197417767147146,3.62156992562426,-0.817514701813823,https://salsa.debian.org/science-team/python-pweave, https://github.com/mpastell/Pweave/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -pybadges,-3.41889357670687,0.0271868395953201,-4.27670065562116,https://salsa.debian.org/python-team/packages/python-pybadges, https://github.com/google/pybadges.git,1932.0270833333332,2,14,0,12.0,29.0,0.0,0.0 -pyqrencode,0.0034268603989844,1.69508098326997,-0.479407408878227,https://salsa.debian.org/debian/python-qrencode, https://github.com/Arachnid/pyqrencode.git,3791.5353703703695,0,6,0,5.0,22.0,0.0,0.0 -ratelimiter,-0.171495457684264,2.60726329369438,-0.926691348490788,https://salsa.debian.org/python-team/packages/python-ratelimiter, https://github.com/RazerM/ratelimiter,1781.4938425925925,1,5,0,3.0,29.0,0.0,0.0 -rebulk,-0.199957442626573,2.09078115484313,-0.827926769967044,https://salsa.debian.org/python-team/packages/python-rebulk, https://github.com/Toilal/rebulk,3019.412083333333,1,7,2,4.0,15.0,0.0,0.0 -rencode,0.372370761725989,3.00606925555497,-0.203905085747617,https://salsa.debian.org/debian/python-rencode, https://github.com/aresch/rencode.git,4103.173449074074,4,4,0,5.0,18.0,0.0,0.0 -repoze.sphinx.autointerface,-1.33677679024419,1.51292073187974,-2.18306957920284,https://salsa.debian.org/python-team/packages/python-repoze.sphinx.autointerface, https://github.com/repoze/repoze.sphinx.autointerface/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -repoze.tm2,-0.795011465957878,1.87588325558157,-1.60021846702694,https://salsa.debian.org/python-team/packages/python-repoze.tm2, https://github.com/repoze/repoze.tm2.git,5299.01369212963,0,6,0,3.0,8.0,0.0,0.0 -roman,0.426696904629987,1.94576678841437,-0.004429812291283,https://salsa.debian.org/python-team/packages/python-roman, https://github.com/zopefoundation/roman,5054.666666666667,3,8,0,8.0,15.0,0.0,0.0 -python-signedjson,-0.497204194088698,1.13529372326294,-0.781360544229561,https://salsa.debian.org/matrix-team/python-signedjson, https://github.com/matrix-org/python-signedjson.git,2409.117025462963,5,10,0,10.0,14.0,0.0,0.0 -python-slip,0.677155208606448,2.96500652427271,-0.0680375926831711,https://salsa.debian.org/debian/python-slip, https://github.com/nphilipp/python-slip.git,4760.842418981481,5,3,0,4.0,10.0,0.0,0.0 -smmap,0.0842345215307417,1.88621678974191,-0.302978641987737,https://salsa.debian.org/python-team/packages/python-smmap, https://github.com/gitpython-developers/smmap,4570.872037037037,4,18,0,16.0,38.0,0.0,0.0 -snuggs,-0.408982970308193,1.09199090186983,-0.671578605438675,https://salsa.debian.org/debian-gis-team/python-snuggs, https://github.com/mapbox/snuggs.git,1698.5099305555557,2,7,0,5.0,16.0,0.0,0.0 -socketpool,-0.433473062983163,1.9120698535229,-1.13495382815167,https://salsa.debian.org/python-team/packages/python-socketpool, https://github.com/benoitc/socketpool,2141.460520833333,0,17,0,11.0,31.0,0.0,0.0 -PySocksipyChain,-0.0678442589337398,2.05760510014944,-0.759328322171604,https://salsa.debian.org/freedombox-team/python-socksipychain, https://github.com/pagekite/PySocksipyChain.git,3262.118356481481,1,7,0,4.0,12.0,0.0,0.0 -pysrp,-0.265559878899912,2.09013502967791,-0.982879076984504,https://salsa.debian.org/python-team/packages/python-srp, https://github.com/cocagne/pysrp,4536.790277777778,2,26,0,14.0,45.0,0.0,0.0 -python-ssdeep,-1.67537832759011,-0.74574244391935,-1.8662568074836,https://salsa.debian.org/python-team/packages/python-ssdeep, https://github.com/DinoTools/python-ssdeep/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -static3,-2.14843505088176,0.782465955060936,-2.9204988940802,https://salsa.debian.org/debian/python-static3, https://github.com/rmohr/static3,1017.1397800925926,0,5,0,4.0,21.0,0.0,0.0 -stopit,-1.43823587585002,1.06403731109994,-2.3707053283558,https://salsa.debian.org/python-team/packages/python-stopit, https://github.com/glenfant/stopit,2025.0025810185184,3,4,0,7.0,38.0,0.0,0.0 -python-subprocess32,0.809721278974293,3.72694427273729,-0.0005664333773078,https://salsa.debian.org/python-team/modules/python-subprocess32, https://github.com/google/python-subprocess32,2769.808622685185,4,6,0,6.0,75.0,0.0,0.0 -python-sunlight,-0.43867879309139,3.66501197270729,-1.75991518689505,https://salsa.debian.org/python-team/modules/python-sunlight, https://github.com/sunlightlabs/python-sunlight,1218.870300925926,0,11,0,8.0,23.0,0.0,0.0 -python-tblib,-0.735304953887994,0.99902203688589,-1.14834021510951,https://salsa.debian.org/python-team/packages/python-tblib, https://github.com/ionelmc/python-tblib,3634.65974537037,5,11,0,12.0,50.0,0.0,0.0 -urlobject,-1.40320671016874,1.06451213117112,-1.96821824826788,https://salsa.debian.org/python-team/packages/python-urlobject, https://github.com/zacharyvoase/urlobject,3098.5456481481483,4,10,0,8.0,31.0,0.0,0.0 -urwidtrees,0.49164707570108,4.05583346547568,-0.527566091824406,https://salsa.debian.org/python-team/packages/python-urwidtrees, https://github.com/pazz/urwidtrees/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -python-sdk,-2.10640744546277,0.16311365872766,-2.60808326998445,https://salsa.debian.org/pkg-security-team/python-vulndb, https://github.com/vulndb/python-sdk,1623.0260300925927,0,3,0,2.0,5.0,0.0,0.0 -word_cloud,-2.35331346174834,-0.117333832983561,-2.78629950056682,https://salsa.debian.org/python-team/packages/python-wordcloud, https://github.com/amueller/word_cloud,4051.627384259259,33,54,0,65.0,30.0,0.0,1.0 -wsproto,0.0162269703159469,2.30900597311392,-0.424997115440944,https://salsa.debian.org/python-team/packages/python-wsproto, https://github.com/python-hyper/wsproto/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -python3-xapp,0.49666595674701,2.79349323910243,-0.0692386083512058,https://salsa.debian.org/cinnamon-team/python-xapp, https://github.com/linuxmint/python3-xapp.git,2312.6997685185183,5,4,0,7.0,13.0,0.0,0.0 -python-xeddsa,-1.16332522343934,1.38192923762938,-1.73952285353788,https://salsa.debian.org/python-team/packages/python-xeddsa, https://github.com/Syndace/python-xeddsa,1709.0088425925926,1,4,0,1.0,2.0,0.0,0.0 -xlrd3,0.241972254568355,1.69211137481998,-0.1509001313547,https://salsa.debian.org/python-team/packages/python-xlrd, https://github.com/Dragon2fly/xlrd3.git,4601.110509259259,9,44,0,35.0,8.0,0.0,0.0 -xmltodict,0.598106375906509,3.24389400228836,-0.105452656302643,https://salsa.debian.org/debian/python-xmltodict, https://github.com/martinblech/xmltodict.git,3981.198715277778,26,29,0,41.0,54.0,0.0,1.0 -xopen,-0.343505378513926,1.77018483910553,-0.778780724351105,https://salsa.debian.org/python-team/packages/python-xopen, https://github.com/marcelm/xopen/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -pyzor,0.917153249995446,1.93354643620565,0.349438253264623,https://salsa.debian.org/python-team/packages/pyzor, https://github.com/SpamExperts/pyzor,5279.209606481481,6,19,1,17.0,10.0,0.0,0.0 -q2templates,-5.04822470147624,-2.79645563356912,-5.47695119278791,https://salsa.debian.org/med-team/q2templates, https://github.com/qiime2/q2templates.git,2619.239039351852,9,8,0,13.0,13.0,0.0,0.0 -q4wine-debian,-0.151109482514516,0.0770464396985054,-0.212005952160212,https://github.com/tehnick/q4wine-debian,https://github.com/tehnick/q4wine-debian,4144.328611111111,0,1,0,1.0,0.0,0.0,0.0 -qconf,-0.381126862235206,1.65952171214213,-0.776284747822689,https://salsa.debian.org/qt-kde-team/extras/qconf, https://github.com/psi-im/qconf.git,5624.674074074074,1,15,0,7.0,13.0,0.0,0.0 -qdacco,-1.66627266278956,-0.461010424623743,-2.02170746236854,https://salsa.debian.org/debian/qdacco, https://github.com/cpina/qdacco.git,5691.2413541666665,1,6,0,1.0,5.0,0.0,0.0 -qemuctl,1.34741220588033,3.3653108214152,0.38180684788945,https://github.com/operatornormal/qemuctl,https://github.com/operatornormal/qemuctl,627.1595486111111,3,2,0,1.0,0.0,0.0,0.0 -qjoypad,0.852979411367937,3.26126360321818,-0.082285001087447,https://github.com/kilobyte/qjoypad/tree/debian,https://github.com/kilobyte/qjoypad,4422.66300925926,2,12,0,10.0,1.0,0.0,0.0 -qmenu,0.241659682896114,3.60622507126729,-0.930556672453206,https://github.com/teopost/qmenu,https://github.com/teopost/qmenu,3121.65625,0,12,2,5.0,5.0,0.0,0.0 -qmidiarp,0.106088445314257,2.40937724812331,-0.446213354807418,https://salsa.debian.org/multimedia-team/qmidiarp, https://github.com/emuse/qmidiarp.git,5041.995520833333,2,10,0,5.0,12.0,0.0,0.0 -qmidinet,0.398763456279576,2.32725848534935,-0.291999256478784,https://salsa.debian.org/multimedia-team/qmidinet, https://github.com/rncbc/qmidinet.git,4992.050914351852,1,11,0,4.0,10.0,0.0,0.0 -qsampler,0.223065509983869,2.85391743017592,-0.50460196253652,https://salsa.debian.org/multimedia-team/qsampler, https://github.com/rncbc/qsampler.git,5737.996284722222,3,14,0,5.0,5.0,0.0,0.0 -qsynth,0.142531257871529,0.734317141704349,-0.106451074489768,https://salsa.debian.org/multimedia-team/qsynth, https://github.com/rncbc/qsynth.git,5674.9236458333335,3,19,0,7.0,24.0,0.0,0.0 -qtads,0.510849025186864,2.48407375358686,-0.339333860899677,https://salsa.debian.org/games-team/qtads, https://github.com/realnc/qtads.git,4788.683958333333,5,7,0,10.0,20.0,0.0,0.0 -qterm,-0.915597814791724,-0.402411230077987,-1.15254555265034,https://salsa.debian.org/chinese-team/qterm, https://github.com/qterm/qterm,4614.841238425926,1,8,0,4.0,17.0,0.0,1.0 -ChemmineR,-4.94787230565056,-2.4634770090152,-5.4701350553375,https://salsa.debian.org/r-pkg-team/r-bioc-chemminer, https://github.com/girke-lab/ChemmineR.git,5502.031747685185,2,22,0,10.0,19.0,0.0,0.0 -GenomicAlignments,-0.0620075073178533,2.29521680721513,-0.607948833110456,https://salsa.debian.org/r-pkg-team/r-bioc-genomicalignments, https://github.com/Bioconductor/GenomicAlignments.git,3637.766828703704,1,21,0,13.0,35.0,0.0,0.0 -GenomicRanges,-0.321603880147761,1.26237806892299,-0.601362470296257,https://salsa.debian.org/r-pkg-team/r-bioc-genomicranges, https://github.com/Bioconductor/GenomicRanges.git,4977.821712962963,4,35,0,17.0,53.0,0.0,0.0 -IRanges,-0.27329287373832,0.949506903471562,-0.572231786000705,https://salsa.debian.org/r-pkg-team/r-bioc-iranges, https://github.com/Bioconductor/IRanges.git,5556.738645833333,4,26,0,13.0,28.0,0.0,0.0 -preprocessCore,-0.573267543238156,1.61478989249381,-1.00920667331152,https://salsa.debian.org/r-pkg-team/r-bioc-preprocesscore, https://github.com/bmbolstad/preprocessCore.git,2983.7131828703705,0,24,0,9.0,24.0,0.0,0.0 -Rsamtools,-0.231011334154971,1.69007695254721,-0.615853606276047,https://salsa.debian.org/r-pkg-team/r-bioc-rsamtools, https://github.com/Bioconductor/Rsamtools.git,5200.049756944444,3,23,0,13.0,61.0,0.0,1.0 -S4Vectors,-0.0375813239135875,2.25254876618357,-0.598221258836135,https://salsa.debian.org/r-pkg-team/r-bioc-s4vectors, https://github.com/Bioconductor/S4Vectors/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -XVector,-0.148843541155455,2.13084874475655,-0.590227591448767,https://salsa.debian.org/r-pkg-team/r-bioc-xvector, https://github.com/Bioconductor/XVector.git,3819.2003935185194,0,10,0,5.0,3.0,0.0,0.0 -animation,-0.351598376462637,2.17793457228778,-0.919308029944393,https://salsa.debian.org/r-pkg-team/r-cran-animation, https://github.com/yihui/animation/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -arm,-0.215773425657779,1.52696528966208,-0.505327966595903,https://salsa.debian.org/r-pkg-team/r-cran-arm, https://github.com/suyusung/arm.git,2199.2741898148147,0,4,0,2.0,20.0,0.0,0.0 -av,-3.30692253997357,-1.06640295657248,-3.74994428874166,https://salsa.debian.org/r-pkg-team/r-cran-av, https://github.com/ropensci/av.git,1927.068576388889,2,3,0,3.0,37.0,0.0,0.0 -BBmisc,-0.0791867315459242,2.21030674261295,-0.523919328228636,https://salsa.debian.org/r-pkg-team/r-cran-bbmisc, https://github.com/berndbischl/BBmisc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -R-bitops,0.181219634804237,2.50818857434793,-0.263616719662195,https://salsa.debian.org/r-pkg-team/r-cran-bitops, https://github.com/mmaechler/R-bitops/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -bold,-0.358994134257074,1.88301949027378,-0.798415526071617,https://salsa.debian.org/r-pkg-team/r-cran-bold, https://github.com/ropensci/bold/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -crayon,0.258544899098523,2.47118895253696,-0.189845714510451,https://salsa.debian.org/r-pkg-team/r-cran-crayon, https://github.com/r-lib/crayon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -data.table,0.213671162669981,2.38186731707818,-0.220586384511007,https://salsa.debian.org/r-pkg-team/r-cran-data.table, https://github.com/Rdatatable/data.table/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -lwgeom,0.0058180918358632,2.418862989244,-0.73279450060674,https://salsa.debian.org/r-pkg-team/r-cran-lwgeom, https://github.com/r-spatial/lwgeom/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -matrixcalc,0.635479198008871,4.34642689538589,-0.34635588919514,https://salsa.debian.org/r-pkg-team/r-cran-matrixcalc, https://github.com/TomKellyGenetics/matrixcalc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -mcmc,0.154255269868176,2.73686021243522,-0.451309831621471,https://salsa.debian.org/r-pkg-team/r-cran-mcmc, https://github.com/cjgeyer/mcmc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -mice,-1.17032289359888,1.17001151051615,-1.58977910544957,https://salsa.debian.org/r-pkg-team/r-cran-mice, https://github.com/amices/mice/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -MNP,-0.0051235592631867,2.14399295642153,-0.440021030596504,https://salsa.debian.org/r-pkg-team/r-cran-mnp, https://github.com/kosukeimai/MNP/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -nozzle,-2.88548615874538,-0.597801788868084,-3.3250463836713,https://salsa.debian.org/r-pkg-team/r-cran-nozzle.r1, https://github.com/parklab/nozzle.git,926.0286111111112,0,1,0,1.0,13.0,0.0,0.0 -r-optparse,-0.207092761715519,2.02410277822028,-0.642202256736068,https://salsa.debian.org/r-pkg-team/r-cran-optparse, https://github.com/trevorld/r-optparse.git,3364.6461689814814,0,11,0,2.0,23.0,0.0,0.0 -pbdZMQ,0.189171368145159,3.49264335571965,-0.747517249539651,https://salsa.debian.org/r-pkg-team/r-cran-pbdzmq, https://github.com/snoweye/pbdZMQ/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -plyr,0.239691644485985,2.33977395447903,-0.192006137627096,https://salsa.debian.org/r-pkg-team/r-cran-plyr, https://github.com/hadley/plyr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ps,0.103587778708658,2.54927834438308,-0.34668451191656,https://salsa.debian.org/r-pkg-team/r-cran-ps, https://github.com/r-lib/ps/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -pscl,0.74280746678348,3.44738765449344,-0.155435064248443,https://salsa.debian.org/r-pkg-team/r-cran-pscl, https://github.com/atahk/pscl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rcmdcheck,0.214672699056145,2.68950202767157,-0.398818851753629,https://salsa.debian.org/r-pkg-team/r-cran-rcmdcheck, https://github.com/r-Lib/rcmdcheck/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rgenoud,-0.34888007130644,2.08744919287088,-0.911719429299625,https://salsa.debian.org/r-pkg-team/r-cran-rgenoud, https://github.com/JasjeetSekhon/rgenoud/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ritis,-0.299376176431199,1.95347342057625,-0.798006459910535,https://salsa.debian.org/r-pkg-team/r-cran-ritis, https://github.com/ropensci/ritis.git,3983.026666666666,1,4,0,3.0,12.0,0.0,0.0 -rncl,-0.337131945422757,1.91037356037586,-0.787455321570332,https://salsa.debian.org/r-pkg-team/r-cran-rncl, https://github.com/fmichonneau/rncl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -RPostgreSQL,0.105524003481434,2.61284189918854,-0.485387128530082,https://salsa.debian.org/r-pkg-team/r-cran-rpostgresql, https://github.com/tomoakin/RPostgreSQL/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rprotobuf,-0.636635231772753,1.62336210163628,-1.07827539002261,https://salsa.debian.org/r-pkg-team/r-cran-rprotobuf, https://github.com/eddelbuettel/rprotobuf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rredlist,-0.293858463463729,2.02268340231916,-0.79431406831363,https://salsa.debian.org/r-pkg-team/r-cran-rredlist, https://github.com/ropensci/rredlist/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -truncnorm,-0.0250364198134987,2.0343035584221,-0.466805583628948,https://salsa.debian.org/r-pkg-team/r-cran-truncnorm, https://github.com/olafmersmann/truncnorm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -r-utf8,0.429272788305781,3.08213820278364,-0.177641356425825,https://salsa.debian.org/r-pkg-team/r-cran-utf8, https://github.com/patperry/r-utf8/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -vcdExtra,-0.135967502704198,2.07328533632195,-0.564516556795123,https://salsa.debian.org/r-pkg-team/r-cran-vcdextra, https://github.com/friendly/vcdExtra.git,5383.465752314814,0,9,0,3.0,12.0,0.0,0.0 -vioplot,-0.511768817330579,1.7541359689658,-0.941240899930404,https://salsa.debian.org/r-pkg-team/r-cran-vioplot, https://github.com/TomKellyGenetics/vioplot,2457.873391203704,2,6,0,3.0,10.0,0.0,0.0 -worrms,-0.599709034098878,1.14191147472859,-0.933477012696884,https://salsa.debian.org/r-pkg-team/r-cran-worrms, https://github.com/ropensci/worrms/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -Zelig,0.723417938548561,3.51362617841635,-0.195430979660789,https://salsa.debian.org/r-pkg-team/r-cran-zelig, https://github.com/IQSS/Zelig/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -radare2,-0.0018354829994594,0.290941294023341,-0.173753601786813,https://salsa.debian.org/pkg-security-team/radare2, https://github.com/radareorg/radare2/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -radcli,0.807789146444719,3.02842685283086,0.0485018399862098,https://salsa.debian.org/debian/radcli, https://github.com/radcli/radcli,0.0082986111111111,10,25,0,19.0,27.0,0.0,0.0 -radium_compressor,0.13559721945274,2.85723734513179,-0.724362607294689,https://salsa.debian.org/multimedia-team/radium-compressor, https://github.com/kmatheussen/radium_compressor.git,2426.0817361111112,0,1,0,1.0,4.0,0.0,0.0 -rainbow,-2.23151500380419,-0.964997212722147,-2.48128831395204,https://salsa.debian.org/js-team/rainbow.js, https://github.com/ccampbell/rainbow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rake-compiler,-0.176590582755423,1.96809623096246,-0.899105552782092,https://salsa.debian.org/ruby-team/rake-compiler, https://github.com/rake-compiler/rake-compiler/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rapache,-1.9452855914647,-0.262638801188501,-2.42187532102225,https://salsa.debian.org/r-pkg-team/rapache, https://github.com/jeffreyhorner/rapache.git,4155.59349537037,1,13,0,6.0,35.0,0.0,0.0 -raphael,0.640627513769505,3.7045765254699,-0.250783438820433,https://salsa.debian.org/debian/raphael, https://github.com/DmitryBaranovskiy/raphael/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -redmine_local_avatars,-1.45727275612402,1.48273077875676,-2.26016283524095,https://salsa.debian.org/debian/redmine-plugin-local-avatars, https://github.com/ncoders/redmine_local_avatars,3991.558761574074,3,11,0,9.0,47.0,0.0,0.0 -ree,0.455206433998999,2.71266505432586,-0.294302160663744,https://salsa.debian.org/debian/ree, https://github.com/alexmyczko/ree,1112.039074074074,3,1,0,2.0,2.0,0.0,0.0 -remaster-iso,-2.04735169290534,0.120221137207675,-2.47701014149201,https://github.com/unixabg/remaster-iso,https://github.com/unixabg/remaster-iso,251.80447916666665,1,3,0,3.0,5.0,0.0,0.0 -python-requests-aws,-0.761720487886986,2.82521722934703,-1.72794352693126,https://salsa.debian.org/python-team/packages/requests-aws, https://github.com/tax/python-requests-aws,1319.2575,2,12,1,8.0,18.0,0.0,0.0 -rerun,-0.43146128537555,3.31527544807476,-1.49876771113085,https://salsa.debian.org/ruby-team/rerun, https://github.com/alexch/rerun/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -resvg,-0.870696566167526,2.54291794214447,-1.70329165714545,https://salsa.debian.org/debian/resvg, https://github.com/RazrFalcon/resvg.git,2182.7898726851854,46,8,0,47.0,30.0,0.0,0.0 -rexical,-1.84147501924003,0.989505278765736,-2.75203863256459,https://salsa.debian.org/ruby-team/rexical, https://github.com/tenderlove/rexical,5447.083912037037,2,10,0,9.0,23.0,0.0,2.0 -ripe-atlas-cousteau,-0.976494488206626,1.39248633136781,-1.47029913144958,https://salsa.debian.org/python-team/packages/ripe-atlas-cousteau, https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,3286.994594907407,5,15,0,13.0,37.0,0.0,0.0 -robocut,-0.282415143852063,2.37545743524338,-1.09231955050152,https://github.com/alpharesearch/robocut,https://github.com/alpharesearch/robocut,831.4363194444444,0,6,0,3.0,0.0,0.0,0.0 -robotfindskitten-pkg-debian,0.0179376982386653,1.30782764538948,-0.485626997000214,https://github.com/rfinnie/robotfindskitten-pkg-debian,https://github.com/rfinnie/robotfindskitten-pkg-debian,1629.5291319444443,3,1,0,3.0,0.0,0.0,0.0 -rolo,-0.0498132258582514,2.13300277923018,-0.821682806617574,https://salsa.debian.org/debian/rolo, https://github.com/libvc/rolo,1738.299363425926,2,2,0,2.0,2.0,0.0,0.0 -rospack,-0.241466259153462,1.06888539413166,-0.555351711731847,https://salsa.debian.org/science-team/ros-rospack, https://github.com/ros/rospack.git,3438.9073958333333,20,26,0,26.0,22.0,0.0,0.0 -rospkg,-0.0548646672144724,1.85803058546746,-0.500827790629517,https://salsa.debian.org/science-team/ros-rospkg, https://github.com/ros-infrastructure/rospkg.git,4295.652986111111,33,59,0,64.0,29.0,0.0,0.0 -std_msgs,-0.0206690342262183,2.38616687298903,-0.574705971669571,https://salsa.debian.org/science-team/ros-std-msgs, https://github.com/ros/std_msgs.git,3274.7244560185186,3,17,0,9.0,19.0,0.0,0.0 -rsh-redone,0.243457992558058,2.47658433239746,-0.712551626094643,https://salsa.debian.org/debian/rsh-redone, https://github.com/gsliepen/rsh-redone,3762.4461458333335,1,2,0,2.0,0.0,0.0,0.0 -rt-extension-repeatticket,-1.27134555252742,2.44805775497717,-2.22060058578856,https://salsa.debian.org/request-tracker-team/rt-extension-repeatticket, https://github.com/bestpractical/rt-extension-repeatticket,4204.330740740741,0,5,0,4.0,3.0,0.0,0.0 -rtkit,1.59149349390773,3.47533416976839,0.681858358341844,https://salsa.debian.org/multimedia-team/rtkit, https://github.com/heftig/rtkit,3958.74318287037,18,3,0,13.0,43.0,0.0,0.0 -actionpack-action_caching,-0.0195395792540849,2.02091975178512,-0.460855136539671,https://salsa.debian.org/ruby-team/ruby-actionpack-action-caching, https://github.com/rails/actionpack-action_caching/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -actionpack-page_caching,-2.09797722824779,1.06298687158989,-2.91708784448414,https://salsa.debian.org/ruby-team/ruby-actionpack-page-caching, https://github.com/rails/actionpack-page_caching/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -bacon,-1.49976971760681,0.698754739950412,-2.0358441624846,https://salsa.debian.org/ruby-team/ruby-bacon, https://github.com/leahneukirchen/bacon,5364.076365740741,3,17,0,13.0,38.0,0.0,0.0 -base62,-3.20078907627974,-0.571029493725026,-3.74084774166395,https://salsa.debian.org/ruby-team/ruby-base62, https://github.com/jtzemp/base62.git,1973.689722222222,1,5,0,3.0,13.0,0.0,1.0 -batch-loader,-1.39118114002807,1.05190753100969,-1.96584211908986,https://salsa.debian.org/ruby-team/ruby-batch-loader, https://github.com/exAspArk/batch-loader/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -bcrypt-ruby,-0.167036620741686,2.54858136586283,-0.784053430268986,https://salsa.debian.org/ruby-team/ruby-bcrypt, https://github.com/bcrypt-ruby/bcrypt-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby-beautify,-1.81793959236556,0.57235446169444,-2.42882213338449,https://salsa.debian.org/ruby-team/ruby-beautify.git, https://github.com/erniebrodeur/ruby-beautify,2708.080983796296,1,19,0,16.0,45.0,0.0,0.0 -bogus,-2.9701186800126,-1.153602326818,-3.32426310073135,https://salsa.debian.org/ruby-team/ruby-bogus, https://github.com/psyho/bogus/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -bootsnap,0.496944658091214,4.04676993751869,-0.445365548074637,https://salsa.debian.org/ruby-team/ruby-bootsnap, https://github.com/Shopify/bootsnap/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -mongo-ruby-driver,-0.487645620629625,1.8841260261786,-1.11700567263908,https://salsa.debian.org/ruby-team/ruby-bson, https://github.com/mongodb/mongo-ruby-driver/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -buff-config,-2.04061314286557,-0.580236765253771,-2.34695094555252,https://salsa.debian.org/ruby-team/ruby-buff-config, https://github.com/berkshelf/buff-config/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -buff-extensions,-1.70013143313874,0.696134058330696,-2.14799551246605,https://salsa.debian.org/ruby-team/ruby-buff-extensions, https://github.com/RiotGames/buff-extensions,1162.522685185185,0,5,0,3.0,12.0,0.0,0.0 -builder,0.289179051437074,2.05675505807205,-0.148349001721914,https://salsa.debian.org/ruby-team/ruby-builder, https://github.com/tenderlove/builder/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -byebug,0.118055396727265,2.30017116728878,-0.322097786269314,https://salsa.debian.org/ruby-team/ruby-byebug, https://github.com/deivid-rodriguez/byebug/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -capture-output,-2.89222629340586,-0.734271306130561,-3.32218789305711,https://salsa.debian.org/ruby-team/ruby-capture-output, https://github.com/jpastuszek/capture-output,0.0173611111111111,0,1,0,1.0,1.0,0.0,0.0 -capybara,0.24969906287306,2.43034290169591,-0.428255976860718,https://salsa.debian.org/ruby-team/ruby-capybara, https://github.com/teamcapybara/capybara/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -cassiopee,-1.58515180287739,1.32712442607504,-2.36640774840569,https://salsa.debian.org/ruby-team/ruby-cassiopee, https://github.com/osallou/cassiopee/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -celluloid,0.0913806587248057,1.18656118865903,-0.289219256918553,https://salsa.debian.org/ruby-team/ruby-celluloid, https://github.com/celluloid/celluloid/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -certificate_authority,-2.00186704801149,0.461863199935484,-2.70393120071328,https://salsa.debian.org/ruby-team/ruby-certificate-authority, https://github.com/cchandler/certificate_authority/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -cmdparse,0.678256473084961,4.50712040785227,-0.416431912985683,https://salsa.debian.org/ruby-team/ruby-cmdparse, https://github.com/gettalong/cmdparse/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -color,-1.65949307627129,0.788139710366515,-2.22037033574251,https://salsa.debian.org/ruby-team/ruby-color, https://github.com/halostatue/color,4994.146018518519,1,11,1,4.0,30.0,0.0,0.0 -colorator,0.175629970047575,2.30243477808403,-0.263725524247246,https://salsa.debian.org/ruby-team/ruby-colorator, https://github.com/octopress/colorator/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -combustion,-2.70776268644904,-0.507021984239335,-3.28146702867829,https://salsa.debian.org/ruby-team/ruby-combustion, https://github.com/pat/combustion/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -commander,-0.354431334090354,2.55244637453894,-1.09106526796515,https://salsa.debian.org/ruby-team/ruby-commander, https://github.com/commander-rb/commander/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -connection_pool,-0.107782788984787,2.76083163019692,-0.90838986837342,https://salsa.debian.org/ruby-team/ruby-connection-pool, https://github.com/mperham/connection_pool/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -coveralls-ruby,-1.06398429249964,0.688688365743175,-1.62146319312924,https://salsa.debian.org/ruby-team/ruby-coveralls, https://github.com/lemurheavy/coveralls-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -crb-blast,-0.696750147622397,1.56368796434261,-1.48542851447807,https://salsa.debian.org/ruby-team/ruby-crb-blast, https://github.com/cboursnell/crb-blast,1070.1020717592592,0,5,0,2.0,15.0,0.0,0.0 -css_parser,0.470298843201986,3.07318375118842,-0.226276662018377,https://salsa.debian.org/ruby-team/ruby-css-parser, https://github.com/premailer/css_parser/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -curb,-0.951993628573659,0.5852000442618,-1.37029978991923,https://salsa.debian.org/ruby-team/ruby-curb, https://github.com/taf2/curb/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -dalli,-0.749352215094772,1.73458354649505,-1.48489533094825,https://salsa.debian.org/ruby-team/ruby-dalli, https://github.com/petergoldstein/dalli/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -eim_xml,-0.714678234659335,2.40949988120359,-1.5508131873095,https://salsa.debian.org/ruby-team/ruby-eim-xml, https://github.com/hirakuro/eim_xml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -em-http-request,-0.182257018001517,2.14321979325515,-1.01105313498018,https://salsa.debian.org/ruby-team/ruby-em-http-request, https://github.com/igrigorik/em-http-request/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -em-redis,-2.43222753138059,0.322025242223316,-3.23835955419271,https://salsa.debian.org/ruby-team/ruby-em-redis, https://github.com/libc/em-redis,3058.305810185185,3,10,0,6.0,7.0,0.0,0.0 -encryptor,0.4811221705223,4.05605298671928,-0.745539049132522,https://salsa.debian.org/ruby-team/ruby-encryptor, https://github.com/attr-encrypted/encryptor,2635.9583564814816,1,9,0,5.0,53.0,0.0,0.0 -entypo-rails,0.53910177861472,4.35300017839131,-0.514820639301322,https://salsa.debian.org/ruby-team/ruby-entypo-rails, https://github.com/lwe/entypo-rails,1757.4358333333332,1,10,0,7.0,20.0,0.0,0.0 -enumerize,-3.5842960195173,-1.06007577005636,-4.26311507615177,https://salsa.debian.org/ruby-team/ruby-enumerize, https://github.com/brainspec/enumerize/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -escape_utils,-0.352072358197853,1.32045383709062,-0.803022834602165,https://salsa.debian.org/ruby-team/ruby-escape-utils, https://github.com/brianmario/escape_utils.git,4731.6076041666665,5,24,0,25.0,33.0,0.0,0.0 -espeak-ruby,-0.728675124699545,2.03520786367694,-1.48742188719036,https://salsa.debian.org/ruby-team/ruby-espeak, https://github.com/dejan/espeak-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ethon,-0.0042860534022934,2.23013091505627,-0.563387695078941,https://salsa.debian.org/ruby-team/ruby-ethon, https://github.com/typhoeus/ethon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -excon,0.324164795050424,2.11616601443465,-0.182728422506557,https://salsa.debian.org/ruby-team/ruby-excon, https://github.com/excon/excon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -execjs,0.812895928343861,3.68763630539758,-0.0541606598301758,https://salsa.debian.org/ruby-team/ruby-execjs, https://github.com/rails/execjs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -factory_bot,-2.80311103852854,-0.753937488732488,-3.29655624488076,https://salsa.debian.org/ruby-team/ruby-factory-bot, https://github.com/thoughtbot/factory_bot/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -factory_bot_rails,-4.33627538423677,-1.18492514059182,-5.29644821746184,https://salsa.debian.org/ruby-team/ruby-factory-bot-rails, https://github.com/thoughtbot/factory_bot_rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -faker,-2.04326808399287,0.455823211180947,-2.72605456068932,https://salsa.debian.org/ruby-team/ruby-faker, https://github.com/faker-ruby/faker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby-fcgi-ng,0.30050437468813,2.21535271819044,-0.345605661846562,https://salsa.debian.org/ruby-team/ruby-fcgi, https://github.com/alphallc/ruby-fcgi-ng,3559.922268518518,1,6,0,5.0,7.0,0.0,0.0 -ferret,-1.15248219703875,0.980270687393673,-1.83774544566306,https://salsa.debian.org/ruby-team/ruby-ferret, https://github.com/dbalmain/ferret/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ffaker,-2.54897143551112,0.502835365193304,-3.5038139593458,https://salsa.debian.org/ruby-team/ruby-ffaker, https://github.com/ffaker/ffaker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ffi,0.750741192878868,2.07867676362597,0.167784286080403,https://salsa.debian.org/ruby-team/ruby-ffi, https://github.com/ffi/ffi/wiki/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ffi-rzmq,-1.7723964357575,0.107292611880037,-2.43194679695625,https://salsa.debian.org/ruby-team/ruby-ffi-rzmq, https://github.com/chuckremes/ffi-rzmq,3424.713391203704,1,37,0,26.0,23.0,0.0,0.0 -filepath,-2.30534812675825,0.140990396146128,-2.95104915686477,https://salsa.debian.org/ruby-team/ruby-filepath, https://github.com/gioele/filepath/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -fission,-1.65620957430192,0.838811530614959,-2.21924811710672,https://salsa.debian.org/ruby-team/ruby-fission, https://github.com/thbishop/fission,876.3192708333333,0,10,0,7.0,20.0,0.0,0.0 -flexmock,-0.34548783673236,2.57111292603163,-1.07191829387234,https://salsa.debian.org/ruby-team/ruby-flexmock, https://github.com/doudou/flexmock/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -fog-core,0.609150673420472,3.44790091720947,-0.153332087984738,https://salsa.debian.org/ruby-team/ruby-fog-core, https://github.com/fog/fog-core/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -fog-local,-0.560496887059474,1.94240758554345,-1.17254102052718,https://salsa.debian.org/ruby-team/ruby-fog-local, https://github.com/fog/fog-local,5023.447175925926,4,29,0,20.0,20.0,0.0,0.0 -graffiti,-1.48469353838555,1.55033799294536,-2.39301056583199,https://salsa.debian.org/ruby-team/ruby-graffiti, https://github.com/angdraug/graffiti,3536.2679166666667,0,3,0,1.0,2.0,0.0,0.0 -grape,-0.435041529529147,1.40064199170097,-1.07062958903344,https://salsa.debian.org/ruby-team/ruby-grape, https://github.com/ruby-grape/grape/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -Ruby-Graphviz,-0.281553724005688,2.15242607228157,-1.12674606922721,https://salsa.debian.org/ruby-team/ruby-graphviz, https://github.com/glejeune/Ruby-Graphviz/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rb-gsl,-0.323076670655221,0.701457516977852,-0.74646383331037,https://salsa.debian.org/ruby-team/ruby-gsl, https://github.com/SciRuby/rb-gsl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -haml,-0.228856011070315,0.778998558187712,-0.558541396829887,https://salsa.debian.org/ruby-team/ruby-haml, https://github.com/haml/haml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -haml-rails,-1.79867361767118,0.276940048357399,-2.40107154206579,https://salsa.debian.org/ruby-team/ruby-haml-rails, https://github.com/haml/haml-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -hamster,0.191010877071582,2.65680223865782,-0.360802440419047,https://salsa.debian.org/ruby-team/ruby-hamster, https://github.com/hamstergem/hamster/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -hangouts-chat,-1.2144339097396,0.481810852436541,-1.56375669183369,https://salsa.debian.org/ruby-team/ruby-hangouts-chat, https://github.com/enzinia/hangouts-chat,1065.9778472222222,3,4,0,3.0,4.0,0.0,0.0 -hashie,0.572255045721982,3.40853235744765,-0.235541161791668,https://salsa.debian.org/ruby-team/ruby-hashie, https://github.com/hashie/hashie/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -highline,0.245316704669275,2.4988399297125,-0.223584690391328,https://salsa.debian.org/ruby-team/ruby-highline, https://github.com/JEG2/highline/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -hitimes,0.106810087584044,2.6613098356851,-0.447701454992152,https://salsa.debian.org/ruby-team/ruby-hitimes, https://github.com/copiousfreetime/hitimes/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -html-pipeline,-0.378214180646391,2.49992590428495,-1.14702469076061,https://salsa.debian.org/ruby-team/ruby-html-pipeline, https://github.com/jch/html-pipeline,4034.77693287037,33,88,0,93.0,41.0,0.0,0.0 -html2haml,-0.284722491017832,1.17087715522143,-0.644912982664216,https://salsa.debian.org/ruby-team/ruby-html2haml, https://github.com/haml/html2haml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -httparty,-0.229631929392527,1.81011336926819,-0.82172007971742,https://salsa.debian.org/ruby-team/ruby-httparty, https://github.com/jnunemaker/httparty/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -i18n,0.815241575738999,2.76960840689102,0.10314134149848,https://salsa.debian.org/ruby-team/ruby-i18n, https://github.com/ruby-i18n/i18n/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -i18n-inflector-rails,-3.61019103915543,-1.20359084861927,-4.2660614395271,https://salsa.debian.org/ruby-team/ruby-i18n-inflector-rails, https://github.com/siefca/i18n-inflector-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -icalendar,-0.996770381111859,1.76166143807078,-1.71330455920203,https://salsa.debian.org/ruby-team/ruby-icalendar, https://github.com/icalendar/icalendar/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ice_cube,-2.94478508305423,0.324568903500346,-3.69671581096293,https://salsa.debian.org/ruby-team/ruby-ice-cube, http://seejohnrun.github.com/ice_cube/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -image_science,-0.610985542772413,1.33569112628339,-1.2647438357866,https://salsa.debian.org/ruby-team/ruby-image-science, https://github.com/seattlerb/image_science/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -influxdb-ruby,0.0573197432450962,3.22712043301564,-0.969059483860832,https://salsa.debian.org/ruby-team/ruby-influxdb, https://github.com/InfluxCommunity/influxdb-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -inherited_resources,-4.48052443954816,-1.61258213545085,-5.32369698201447,https://salsa.debian.org/ruby-team/ruby-inherited-resources, https://github.com/activeadmin/inherited_resources/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rubyinline,-0.54884630779506,1.5864609290271,-1.15399526279571,https://salsa.debian.org/ruby-team/ruby-inline, https://github.com/seattlerb/rubyinline.git,5600.426180555555,0,4,0,3.0,40.0,0.0,0.0 -innertube,-0.886990320114069,1.6021467976891,-1.65441585233883,https://salsa.debian.org/ruby-team/ruby-innertube, https://github.com/basho/innertube.git,1008.2290162037036,0,4,0,4.0,8.0,0.0,0.0 -ipaddress,0.378587410138154,3.19339794313925,-0.219616169183229,https://salsa.debian.org/ruby-team/ruby-ipaddress, https://github.com/bluemonk/ipaddress/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -jar-dependencies,0.0460603945775547,2.81731177676538,-0.740787607467543,https://salsa.debian.org/ruby-team/ruby-jar-dependencies, https://github.com/mkristian/jar-dependencies,3114.244027777778,4,15,0,15.0,42.0,0.0,1.0 -jekyll-commonmark,-3.90576114957025,-1.6518132292317,-4.34337050456475,https://salsa.debian.org/ruby-team/ruby-jekyll-commonmark, https://github.com/jekyll/jekyll-commonmark/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -jekyll-feed,0.16757711349694,2.24946846719559,-0.262725953864251,https://salsa.debian.org/ruby-team/ruby-jekyll-feed, https://github.com/jekyll/jekyll-feed/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -joiner,-0.89957338803928,2.13297414652465,-1.70307717319651,https://salsa.debian.org/ruby-team/ruby-joiner, https://github.com/pat/joiner/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -jquery-atwho-rails,-0.74233755165034,1.49807671963935,-1.28419117733237,https://salsa.debian.org/ruby-team/ruby-jquery-atwho-rails, https://github.com/ichord/jquery-atwho-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -locale,0.380380223126928,1.52427631900364,-0.0365821888585531,https://salsa.debian.org/ruby-team/ruby-locale, https://github.com/ruby-gettext/locale/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -magic,-0.136206368002505,2.21068559500228,-0.795703621059015,https://salsa.debian.org/ruby-team/ruby-magic, https://github.com/qoobaa/magic,2808.462199074074,0,9,0,5.0,8.0,0.0,0.0 -mail-gpg,-0.940901595184913,1.98535203535049,-1.67524625904703,https://salsa.debian.org/ruby-team/ruby-mail-gpg, https://github.com/jkraemer/mail-gpg,4267.955972222222,18,136,0,11.0,30.0,0.0,0.0 -markdown-it-html5-embed,-2.86486474479113,0.594360286756556,-3.6881215540136,https://salsa.debian.org/ruby-team/ruby-markdown-it-html5-embed, https://github.com/cmrd-senya/markdown-it-html5-embed,2489.0705555555555,3,10,0,7.0,15.0,0.0,0.0 -maxitest,-2.35074630913767,0.201116804343594,-2.98216649465015,https://salsa.debian.org/ruby-team/ruby-maxitest, https://github.com/grosser/maxitest,3302.378009259259,0,10,0,6.0,20.0,0.0,0.0 -method_source,0.396769088701388,3.23180240512107,-0.291360508747447,https://salsa.debian.org/ruby-team/ruby-method-source, https://github.com/banister/method_source,3988.609039351852,4,19,0,20.0,55.0,0.0,0.0 -ruby-mime-types,0.371762936483795,2.68786545390583,-0.130086496626921,https://salsa.debian.org/ruby-team/ruby-mime-types, https://github.com/mime-types/ruby-mime-types/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -minimagick,-1.0439670842072,0.215784061195154,-1.39971451925144,https://salsa.debian.org/ruby-team/ruby-mini-magick, https://github.com/minimagick/minimagick/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -minitar,-0.0660695837931518,1.75541674831937,-0.563916374141107,https://salsa.debian.org/ruby-team/ruby-minitar, https://github.com/halostatue/minitar,5658.657685185185,8,6,1,8.0,33.0,0.0,0.0 -minitest,0.629154319712798,3.25304256882526,0.0059259645248308,https://salsa.debian.org/ruby-team/ruby-minitest, https://github.com/seattlerb/minitest/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -minitest-around,-1.76980687764466,0.751078811392686,-2.51140545626551,https://salsa.debian.org/ruby-team/ruby-minitest-around, https://github.com/splattael/minitest-around,2552.446770833333,2,14,0,7.0,17.0,0.0,0.0 -minitest-shared_description,-3.20574342894966,-0.753679344617953,-3.73552024295197,https://salsa.debian.org/ruby-team/ruby-minitest-shared-description, https://github.com/jeremyevans/minitest-shared_description,2605.2266666666665,0,2,0,2.0,2.0,0.0,0.0 -mixlib-install,-0.638529832096739,2.18892079534196,-1.48474483611124,https://salsa.debian.org/ruby-team/ruby-mixlib-install, https://github.com/chef/mixlib-install/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -mocha,-0.0854006270884438,1.53284165567993,-0.586575378706611,https://salsa.debian.org/ruby-team/ruby-mocha, https://github.com/freerange/mocha/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -mousetrap-rails,-0.541447339095833,2.29951150532759,-1.30228887386486,https://salsa.debian.org/ruby-team/ruby-mousetrap-rails, https://github.com/kugaevsky/mousetrap-rails,2627.8625810185185,0,4,0,3.0,14.0,0.0,2.0 -mustache,0.386389823638064,2.98197077093261,-0.405227461396917,https://salsa.debian.org/ruby-team/ruby-mustache, https://github.com/defunkt/mustache,4729.490868055555,23,58,1,62.0,26.0,0.0,0.0 -mysql2,0.313451297472591,1.47310324925672,-0.133008215537017,https://salsa.debian.org/ruby-team/ruby-mysql2, https://github.com/brianmario/mysql2,4877.841319444445,60,107,4,128.0,39.0,0.0,0.0 -net-sftp,0.512822572952379,2.64276927064739,-0.120075758301409,https://salsa.debian.org/ruby-team/ruby-net-sftp, https://github.com/net-ssh/net-sftp/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -net-ssh,0.342371248269138,1.57085056316473,-0.0962002824518287,https://salsa.debian.org/ruby-team/ruby-net-ssh, https://github.com/net-ssh/net-ssh/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -net-ssh-gateway,0.0949247840517942,2.40618794880946,-0.388358293282975,https://salsa.debian.org/ruby-team/ruby-net-ssh-gateway, https://github.com/net-ssh/net-ssh-gateway/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -netrc,0.668940426764325,3.56001631169099,-0.123759768859117,https://salsa.debian.org/ruby-team/ruby-netrc, https://github.com/heroku/netrc,3633.5661342592593,0,30,0,18.0,43.0,0.0,0.0 -nokogiri,0.0984970577234731,0.746815474857061,-0.106324428267698,https://salsa.debian.org/ruby-team/ruby-nokogiri, https://github.com/sparklemotion/nokogiri/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rubyntlm,-0.0624150923196188,2.58623929509879,-0.720512222861156,https://salsa.debian.org/ruby-team/ruby-ntlm, https://github.com/winrb/rubyntlm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -oauth-ruby,0.0832778896486886,2.84531471759718,-0.592601217275356,https://salsa.debian.org/ruby-team/ruby-oauth, https://github.com/oauth-xx/oauth-ruby,5341.079664351852,47,77,3,86.0,0.0,0.0,0.0 -oauth2,-0.165607622047308,2.31959119320538,-0.900513508845379,https://salsa.debian.org/ruby-team/ruby-oauth2, https://github.com/intridea/oauth2,4856.243298611111,41,112,2,108.0,0.0,0.0,0.0 -oily_png,0.145318381586283,3.15074053383197,-0.713115473924132,https://salsa.debian.org/ruby-team/ruby-oily-png, https://github.com/wvanbergen/oily_png/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -oj,0.200960134409374,1.56482055224045,-0.138033863850096,https://salsa.debian.org/ruby-team/ruby-oj, https://github.com/ohler55/oj/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby-ole,-0.662169216695503,1.43035765378809,-1.30551794649748,https://salsa.debian.org/ruby-team/ruby-ole, https://github.com/aquasync/ruby-ole/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -omniauth-cas3,-0.595254702805624,1.82175762271394,-1.2467001517361,https://salsa.debian.org/ruby-team/ruby-omniauth-cas3, https://github.com/tduehr/omniauth-cas3,3904.238402777778,7,20,0,16.0,5.0,0.0,0.0 -omniauth_crowd,-0.539391002340597,2.01960410227116,-1.23274022351139,https://salsa.debian.org/ruby-team/ruby-omniauth-crowd, https://github.com/robdimarco/omniauth_crowd,3405.9749189814816,0,18,0,7.0,22.0,0.0,1.0 -pdf-core,0.490430148718243,3.03857743093467,-0.172093655493011,https://salsa.debian.org/ruby-team/ruby-pdf-core, https://github.com/prawnpdf/pdf-core,3635.723391203704,6,16,0,15.0,46.0,0.0,0.0 -ruby-pgplot,-2.63639643317991,-2.16809943853412,-2.77777035296684,https://salsa.debian.org/ruby-team/ruby-pgplot, https://github.com/masa16/ruby-pgplot,1430.3931597222222,0,3,0,2.0,0.0,0.0,0.0 -pkg-config,0.398895663512402,1.83858881682792,-0.0542821557497998,https://salsa.debian.org/ruby-team/ruby-pkg-config, https://github.com/ruby-gnome/pkg-config/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -powerpack,-0.193408494365459,2.13396410068404,-0.895456644971313,https://salsa.debian.org/ruby-team/ruby-powerpack, https://github.com/bbatsov/powerpack.git,2684.7776041666666,4,14,0,13.0,29.0,0.0,0.0 -premailer,-0.517330437525135,2.18816634119045,-1.16789176830498,https://salsa.debian.org/ruby-team/ruby-premailer, https://github.com/premailer/premailer,5001.079988425926,26,100,0,91.0,2.0,0.0,19.0 -ruby-progressbar,0.849508504091254,3.82843133452004,-0.158369708372988,https://salsa.debian.org/ruby-team/ruby-progressbar, https://github.com/jfelchner/ruby-progressbar/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -psych,0.135690557163489,2.48138994706061,-0.628764755678332,https://salsa.debian.org/ruby-team/ruby-psych, https://github.com/ruby/psych/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -puppet-syntax,-1.42749295138573,0.597721472999949,-2.00502749928488,https://salsa.debian.org/ruby-team/ruby-puppet-syntax, https://github.com/voxpupuli/puppet-syntax/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -puppetlabs_spec_helper,-1.70744568853256,0.801746812877152,-2.38468119727799,https://salsa.debian.org/ruby-team/ruby-puppetlabs-spec-helper, https://github.com/puppetlabs/puppetlabs_spec_helper/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rabl-rails,-0.911642608019443,0.595751159646387,-1.27771761831235,https://salsa.debian.org/ruby-team/ruby-rabl-rails, https://github.com/ccocchi/rabl-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rack-google-analytics,-2.186121538552,0.639272713225041,-2.93501367725167,https://salsa.debian.org/ruby-team/ruby-rack-google-analytics, https://github.com/kangguru/rack-google-analytics,1720.554363425926,2,20,0,17.0,54.0,0.0,0.0 -rack-oauth2,-0.499811172924045,2.35249704569695,-1.20893692451136,https://salsa.debian.org/ruby-team/ruby-rack-oauth2, https://github.com/nov/rack-oauth2/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rack-test,0.185980391868275,2.38630751083892,-0.251554735743938,https://salsa.debian.org/ruby-team/ruby-rack-test, https://github.com/rack/rack-test/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -highlightjs,-1.77605765301384,0.676887866951787,-2.56920388232996,https://salsa.debian.org/ruby-team/ruby-rails-assets-highlightjs, https://github.com/components/highlightjs,2389.9739467592594,1,13,0,13.0,40.0,0.0,0.0 -jquery.fullscreen,-0.306966371654775,3.42597380601137,-1.50239049779986,https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery-fullscreen-plugin, https://github.com/private-face/jquery.fullscreen,928.6241898148148,0,10,3,5.0,39.0,0.0,0.0 -rails-deprecated_sanitizer,0.511323456994779,3.27093476289413,-0.223223312521469,https://salsa.debian.org/ruby-team/ruby-rails-deprecated-sanitizer, https://github.com/rails/rails-deprecated_sanitizer/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -retryable,-0.609141916709646,3.24709459340838,-1.74685338816936,https://salsa.debian.org/ruby-team/ruby-retryable, https://github.com/nfedyashev/retryable/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -riddle,-0.221356873126463,2.81907925283096,-1.30225364602043,https://salsa.debian.org/ruby-team/ruby-riddle, https://github.com/pat/riddle/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -riot,-2.0988502372572,0.6683400663378,-2.91861417783192,https://salsa.debian.org/ruby-team/ruby-riot, https://github.com/thumblemonks/riot.git,3321.7834953703705,13,21,0,20.0,33.0,0.0,7.0 -rmagick,1.10270334226407,3.17854217199385,0.188185337272069,https://salsa.debian.org/ruby-team/ruby-rmagick, https://github.com/rmagick/rmagick/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -roadie,-0.196136661447594,1.23963174601796,-0.568233738832736,https://salsa.debian.org/ruby-team/ruby-roadie, https://github.com/Mange/roadie/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -roadie-rails,0.247471914364286,3.18990024514054,-0.527731502637486,https://salsa.debian.org/ruby-team/ruby-roadie-rails, https://github.com/Mange/roadie-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -roxml,-2.58394727436343,-1.4732125607397,-2.79337602661121,https://salsa.debian.org/ruby-team/ruby-roxml, https://github.com/Empact/roxml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rr,-1.12124169103743,1.65404016022481,-1.898861260476,https://salsa.debian.org/ruby-team/ruby-rr, https://github.com/rr/rr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rspec-its,0.317141675558321,3.0292623368928,-0.387267448243735,https://salsa.debian.org/ruby-team/ruby-rspec-its, https://github.com/rspec/rspec-its/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rspec-puppet,-1.57505518556354,-0.127794468656788,-2.10326137554857,https://salsa.debian.org/ruby-team/ruby-rspec-puppet, https://github.com/rodjek/rspec-puppet/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rspec-rails,-1.58440384321345,-0.160683101917334,-1.95387603820538,https://salsa.debian.org/ruby-team/ruby-rspec-rails, https://github.com/rspec/rspec-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rspec-retry,-2.31420707826412,-0.36166807127741,-2.77250568174112,https://salsa.debian.org/ruby-team/ruby-rspec-retry, https://github.com/NoRedInk/rspec-retry/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby2ruby,-1.2632583004141,0.512210389222625,-1.76094548187908,https://salsa.debian.org/ruby-team/ruby-ruby2ruby, https://github.com/seattlerb/ruby2ruby.git,5438.858877314815,0,3,0,3.0,34.0,0.0,0.0 -rmail,0.76374705741195,3.39467995148873,-0.079811093830679,https://salsa.debian.org/ruby-team/ruby-rubymail, https://github.com/terceiro/rmail/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rufus-scheduler,-0.692929260878617,1.25020621762948,-1.09554363072272,https://salsa.debian.org/ruby-team/ruby-rufus-scheduler, https://github.com/jmettraux/rufus-scheduler/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rugged,0.173885888133108,1.97474689592367,-0.302862283028749,https://salsa.debian.org/ruby-team/ruby-rugged, https://github.com/libgit2/rugged/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -safe_yaml,0.49233724538536,2.43802121884063,-0.0762986290888922,https://salsa.debian.org/ruby-team/ruby-safe-yaml, https://github.com/dtao/safe_yaml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby-saml,-0.6292373352364,1.48886905334193,-1.21526779391873,https://salsa.debian.org/ruby-team/ruby-saml, https://github.com/onelogin/ruby-saml/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sanitize,0.11421111327246,2.75983627261209,-0.676703611506086,https://salsa.debian.org/ruby-team/ruby-sanitize, https://github.com/rgrove/sanitize/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sassc-rails,-1.88958934755349,0.65430313583962,-2.54586936612922,https://salsa.debian.org/ruby-team/ruby-sassc-rails, https://github.com/sass/sassc-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sdoc,0.206619457601786,2.53526253676117,-0.281999051202586,https://salsa.debian.org/ruby-team/ruby-sdoc, https://github.com/zzak/sdoc.git,5126.572337962963,22,57,0,56.0,0.0,0.0,0.0 -seamless_database_pool,-2.16431076750987,0.22602989853285,-2.61189474943737,https://salsa.debian.org/ruby-team/ruby-seamless-database-pool, https://github.com/bdurand/seamless_database_pool/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -selenium,-0.208956862864649,1.54894059732864,-0.537375409127303,https://salsa.debian.org/ruby-team/ruby-selenium-webdriver, https://github.com/SeleniumHQ/selenium/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -semantic_puppet,-0.622981461654574,0.856370005823135,-0.97652036226948,https://salsa.debian.org/puppet-team/ruby-semantic-puppet, https://github.com/puppetlabs/semantic_puppet/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sequel_pg,0.61910876073865,3.8061270046357,-0.298153083726076,https://salsa.debian.org/ruby-team/ruby-sequel-pg, https://github.com/jeremyevans/sequel_pg.git,4773.662638888889,4,7,0,9.0,45.0,0.0,0.0 -sexp_processor,0.254209462924838,3.03881786138173,-0.48296332880923,https://salsa.debian.org/ruby-team/ruby-sexp-processor, https://github.com/seattlerb/sexp_processor,5341.417743055556,0,2,0,1.0,26.0,0.0,0.0 -ruby-shadow,0.216126739015528,1.48901314525892,-0.115481619574996,https://salsa.debian.org/ruby-team/ruby-shadow, https://github.com/apalmblad/ruby-shadow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sham_rack,-2.16081892166218,0.0182643743943309,-2.86088546215481,https://salsa.debian.org/ruby-team/ruby-sham-rack, https://github.com/mdub/sham_rack,3267.7854166666666,2,5,0,3.0,12.0,0.0,0.0 -simplecov,-0.3160772042202,2.20072149987644,-1.00263445115797,https://salsa.debian.org/ruby-team/ruby-simplecov, https://github.com/simplecov-ruby/simplecov/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -slim,-0.391808708834569,1.09130623995818,-0.838495340833001,https://salsa.debian.org/ruby-team/ruby-slim, http://github.com/slim-template/slim//issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -soap4r-noeticpenguin,0.47567443978011,2.10032916991295,-0.0796726267762576,https://salsa.debian.org/ruby-team/ruby-soap4r, https://github.com/noeticpenguin/soap4r-noeticpenguin/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -spring,0.188968431861753,2.25824597474887,-0.275538878260492,https://salsa.debian.org/ruby-team/ruby-spring, https://github.com/rails/spring/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sprockets-rails,0.627283901804314,2.93965546190262,-0.107048604332743,https://salsa.debian.org/ruby-team/ruby-sprockets-rails, https://github.com/rails/sprockets-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -tins,-0.0184774494990259,2.34427565267072,-0.499428299338752,https://salsa.debian.org/ruby-team/ruby-tins, https://github.com/flori/tins.git,5186.447789351852,2,5,0,6.0,19.0,0.0,0.0 -toml,0.545045010262784,3.0277601671675,-0.165994328608493,https://salsa.debian.org/ruby-team/ruby-toml, https://github.com/jm/toml,3202.477673611111,3,24,1,21.0,69.0,0.0,0.0 -treetop,0.232585615110506,1.72460397874322,-0.167533812678352,https://salsa.debian.org/ruby-team/ruby-treetop, https://github.com/cjheath/treetop/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -truncato,-0.892450421035401,1.07478492285798,-1.30787209149427,https://salsa.debian.org/ruby-team/ruby-truncato, https://github.com/jorgemanrubia/truncato,3523.929363425926,2,13,0,10.0,27.0,0.0,0.0 -twitter,-0.668262390127512,1.32590765847916,-1.14707438099745,https://salsa.debian.org/ruby-team/ruby-twitter, https://github.com/sferik/twitter,5668.765474537037,66,150,0,172.0,52.0,0.0,171.0 -twitter-stream,-0.499229118792877,2.32714869625143,-1.28245675345462,https://salsa.debian.org/ruby-team/ruby-twitter-stream, http://github.com/voloko/twitter-stream/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -typed-array,-0.706178513933386,1.6402446002796,-1.14450212576801,https://salsa.debian.org/ruby-team/ruby-typed-array, https://github.com/yaauie/typed-array,63.58849537037037,0,2,0,2.0,2.0,0.0,0.0 -typhoeus,-0.1128851980755,2.35063206689134,-0.736261529106404,https://salsa.debian.org/ruby-team/ruby-typhoeus, https://github.com/typhoeus/typhoeus/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -issues,-0.183546315225275,-0.104369110443271,-0.204307169523358,https://salsa.debian.org/ruby-team/ruby-tzinfo, https://tzinfo.github.io/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -url_safe_base64,-1.0899769047182,2.78886544763424,-2.22028031017707,https://salsa.debian.org/ruby-team/ruby-url-safe-base64, https://github.com/joenoon/url_safe_base64,1866.2862384259256,0,2,0,2.0,2.0,0.0,0.0 -uuid,-0.141865507977082,3.1821978286278,-1.0595825239825,https://salsa.debian.org/ruby-team/ruby-uuid, https://github.com/assaf/uuid,4250.514537037037,5,18,0,13.0,78.0,0.0,1.0 -uuidtools,0.0082132863147748,1.78603683848367,-0.37982910828391,https://salsa.debian.org/ruby-team/ruby-uuidtools, https://github.com/sporkmonger/uuidtools,4302.551608796296,4,20,0,12.0,66.0,0.0,3.0 -validates_email,-1.57819224366837,0.748029997407314,-2.18342643578818,https://salsa.debian.org/ruby-team/ruby-validate-email, https://github.com/perfectline/validates_email.git,4596.211886574074,2,8,0,4.0,9.0,0.0,0.0 -validates_hostname,-1.24152951224297,1.22111659694041,-1.75109192355112,https://salsa.debian.org/ruby-team/ruby-validates-hostname, https://github.com/KimNorgaard/validates_hostname,4293.845972222222,0,12,0,5.0,18.0,0.0,0.0 -varia_model,-1.86788049739169,-0.0930481581669085,-2.2356906542746,https://salsa.debian.org/ruby-team/ruby-varia-model, https://github.com/berkshelf/varia_model/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -version_sorter,-0.895569228615223,1.31342488445887,-1.33338118944042,https://salsa.debian.org/ruby-team/ruby-version-sorter, https://github.com/github/version_sorter,5346.812303240741,4,15,0,12.0,21.0,0.0,0.0 -versionomy,-1.98756333781549,1.03654453818039,-2.7207117206547,https://salsa.debian.org/ruby-team/ruby-versionomy, https://github.com/dazuma/versionomy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -Voight-Kampff,-3.61221384180333,-1.18418687316036,-4.27474499320882,https://salsa.debian.org/ruby-team/ruby-voight-kampff, https://github.com/biola/Voight-Kampff/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -web-console,0.14043153449785,2.52112176327952,-0.323355623656487,https://salsa.debian.org/ruby-team/ruby-web-console, https://github.com/rails/web-console/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -webmock,-0.872299603112153,1.42277934779794,-1.58056532672046,https://salsa.debian.org/ruby-team/ruby-webmock, https://github.com/bblimke/webmock/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -websocket-ruby,-2.03022349548899,1.07639611677377,-2.89337064744319,https://salsa.debian.org/ruby-team/ruby-websocket, https://github.com/imanel/websocket-ruby.git,4172.19943287037,3,14,0,15.0,38.0,0.0,0.0 -xml-simple,0.281052711517463,2.94125522096609,-0.565082780205221,https://salsa.debian.org/ruby-team/ruby-xml-simple, https://github.com/maik/xml-simple,3655.019247685185,4,12,0,12.0,31.0,0.0,0.0 -scalpel,1.92355741339931,5.78891027054134,0.609139098428338,https://salsa.debian.org/pkg-security-team/scalpel, https://github.com/sleuthkit/scalpel.git,2828.853888888889,1,11,0,5.0,69.0,0.0,0.0 -scanlogd,1.02651720217611,3.31791709149868,-0.0529925024440523,https://salsa.debian.org/debian/scanlogd/, https://github.com/openwall/scanlogd.git,3573.359328703704,0,2,0,1.0,4.0,0.0,0.0 -scapy,0.857455882356376,1.87059600299798,0.304032557463684,https://salsa.debian.org/pkg-security-team/scapy, https://github.com/secdev/scapy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -maeparser,-0.124025493624707,2.1383222642137,-0.755579689485537,https://salsa.debian.org/debichem-team/schroedinger-maeparser, https://github.com/schrodinger/maeparser.git,2087.134328703704,12,14,0,15.0,15.0,0.0,0.0 -science.js,-1.57916624719579,1.65342676602646,-2.47331359854044,https://salsa.debian.org/js-team/science.js/, https://github.com/jasondavies/science.js.git,2725.1817592592597,1,8,0,6.0,30.0,0.0,0.0 -scim,1.88005980071016,2.60669412693665,1.36187838590137,https://github.com/leggewie-DM/scim,https://github.com/leggewie-DM/scim,3009.7372800925928,4,5,0,6.0,2.0,0.0,0.0 -scim-anthy,0.0022937940399169,1.4287101867256,-0.657872343124407,https://github.com/leggewie-DM/scim-anthy,https://github.com/leggewie-DM/scim-anthy,1414.2472685185185,5,3,0,5.0,1.0,0.0,0.0 -scim-chewing,1.4542811690526,3.37154795427499,0.506177197770884,https://salsa.debian.org/debian/scim-chewing, https://github.com/chewing/scim-chewing.git,2973.61300925926,0,11,0,4.0,6.0,0.0,0.0 -scim-pinyin,1.31247157570846,3.37757775327056,0.22807324086839,https://salsa.debian.org/input-method-team/scim-pinyin, https://github.com/scim-im/scim-pinyin/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -scim-tables,0.935953021546993,2.24878515261399,0.255989102713328,https://github.com/leggewie-DM/scim-tables,https://github.com/leggewie-DM/scim-tables,793.6947685185186,3,3,0,3.0,1.0,0.0,0.0 -sct-deb,0.114819975990264,2.83095535042819,-0.590823447371552,https://github.com/Tookmund/sct-deb,https://github.com/Tookmund/sct-deb,125.86403935185186,0,1,0,1.0,0.0,0.0,0.0 -setuptools_scm,0.0218119152735271,1.07629001969169,-0.306073018102014,https://salsa.debian.org/python-team/packages/setuptools-scm, https://github.com/pypa/setuptools_scm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -setuptools_scm_git_archive,-1.12887485264727,1.43097061577832,-1.72452512462335,https://salsa.debian.org/python-team/packages/setuptools-scm-git-archive, https://github.com/Changaco/setuptools_scm_git_archive,2852.8371759259257,5,5,0,7.0,22.0,0.0,0.0 -sexplib,-1.57198934052884,-0.308694772986967,-1.99075888375216,https://salsa.debian.org/ocaml-team/sexplib310, https://github.com/janestreet/sexplib.git,3950.764444444445,1,18,0,12.0,43.0,0.0,0.0 -sgabios-debian,0.624843362504609,3.34479227724154,-0.100639314596397,https://github.com/ymc/sgabios-debian,https://github.com/ymc/sgabios-debian,1409.8465509259258,1,3,0,3.0,2.0,0.0,0.0 -shine,0.54493172140872,2.55858833775417,0.0206552893723799,https://salsa.debian.org/multimedia-team/shine, https://github.com/savonet/shine/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -showq,0.498024130459386,2.63844948678141,-0.299488158296805,https://salsa.debian.org/multimedia-team/showq, https://github.com/evandelisle/showq.git,4589.697418981482,2,9,0,4.0,11.0,0.0,1.0 -shutdown-qapps,0.0832292459848511,2.57545743116058,-0.646790906977106,https://github.com/hakaishi/shutdown-qapps,https://github.com/hakaishi/shutdown-qapps,4242.518321759259,1,5,0,2.0,4.0,0.0,0.0 -sidedoor,-1.20700835985188,0.905385237011351,-1.64427757076298,https://github.com/daradib/sidedoor,https://github.com/daradib/sidedoor,1283.144525462963,0,2,0,2.0,5.0,0.0,0.0 -siege,0.975479779976296,2.03353006708065,0.360323000471227,https://salsa.debian.org/debian/siege, https://github.com/JoeDog/siege/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sight,-2.41423003373991,-1.19235152673398,-2.62469605752248,https://salsa.debian.org/med-team/sight, https://github.com/IRCAD/sight,5195.7820833333335,18,189,0,40.0,13.0,0.0,0.0 -signify,-0.429147729969375,1.99324872793013,-0.900265517104248,https://salsa.debian.org/debian/signify-openbsd, https://github.com/aperezdc/signify.git,3467.3640972222224,11,5,0,8.0,28.0,0.0,0.0 -sigscheme,0.0095840913034005,0.541181577533474,-0.176656140782611,https://salsa.debian.org/debian/sigscheme, https://github.com/uim/sigscheme.git,4570.484421296296,0,12,0,4.0,6.0,0.0,0.0 -silver-platter,-2.12374390745825,-0.880478310171427,-2.3543625093061,https://salsa.debian.org/jelmer/silver-platter, https://github.com/jelmer/silver-platter/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -timeline,0.400768755793622,3.01545677890177,-0.484924713118073,https://salsa.debian.org/js-team/simile-timeline, https://github.com/simile-widgets/timeline/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -simple-image-reducer,0.173679013568053,2.60637622016956,-0.642372972620522,https://salsa.debian.org/python-team/packages/simple-image-reducer, https://github.com/henrythasler/simple-image-reducer,3392.719583333333,3,5,0,5.0,11.0,0.0,0.0 -sklearn-pandas,-0.184681427254363,2.40603523310898,-0.975232330516116,https://salsa.debian.org/debian/sklearn-pandas, https://github.com/scikit-learn-contrib/sklearn-pandas/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -SkyPat,-3.66221900907517,-1.25524656033434,-4.29019297580951,https://salsa.debian.org/debian/skypat, https://github.com/skymizer/SkyPat,1330.085451388889,4,12,0,7.0,15.0,0.0,1.0 -slick-greeter,0.230041087987972,2.48835166094265,-0.403804259040225,https://github.com/UbuntuBudgie/slick-greeter/tree/debian,https://github.com/UbuntuBudgie/slick-greeter,2438.314976851852,27,9,0,9.0,3.0,0.0,0.0 -smarty-gettext,-0.117276402086362,0.921326595853675,-0.430887242301544,https://salsa.debian.org/debian/smarty-gettext/, https://github.com/smarty-gettext/smarty-gettext.git,3367.1055439814813,3,7,0,6.0,31.0,0.0,0.0 -smarty-lexer,-2.17711730583163,0.822422051478566,-2.93396050046646,https://salsa.debian.org/debian/smarty-lexer/, https://github.com/smarty-php/smarty-lexer.git,2967.1062731481484,1,5,0,2.0,3.0,0.0,0.0 -smash,-1.60214483830597,1.0169317150364,-2.20705530835649,https://salsa.debian.org/js-team/smash, https://github.com/mbostock/smash.git,1268.6711921296296,0,6,0,5.0,23.0,0.0,4.0 -smbldap-tools,4.09921699231862,6.29737661623347,2.97789673101773,https://salsa.debian.org/debian/smbldap-tools, https://github.com/fumiyas/smbldap-tools,3527.4513194444444,0,4,0,1.0,2.0,0.0,0.0 -snake4.debian,0.0951486980326435,1.36969174716035,-0.412056003147892,https://github.com/alexdantas/snake4.debian,https://github.com/alexdantas/snake4.debian,10.477638888888889,5,4,0,0.0,2.0,0.0,0.0 -sndfile-tools,0.744383715115666,2.92719004320123,0.0039892841037656,https://salsa.debian.org/multimedia-team/sndfile-tools, https://github.com/libsndfile/sndfile-tools.git,5283.239212962963,10,6,0,14.0,26.0,0.0,0.0 -debian-snetz,-0.193517133858685,3.29048219747402,-1.22643639819588,https://github.com/paniagua-gustavo/debian-snetz,https://github.com/paniagua-gustavo/debian-snetz,0.188125,0,2,0,1.0,0.0,0.0,0.0 -sord,0.619629004721592,2.45030284792165,0.0661140315984046,https://salsa.debian.org/multimedia-team/sord, https://github.com/drobilla/sord.git ,4651.040289351852,0,1,0,1.0,9.0,0.0,0.0 -python-sortedcollections,0.0282138035236776,2.56305714012386,-0.456352007786175,https://salsa.debian.org/python-team/packages/sortedcollections, https://github.com/grantjenks/python-sortedcollections,2101.492488425926,2,4,0,4.0,19.0,0.0,0.0 -sosi2osm,-0.0665032677422347,2.74148881026682,-0.739957807362317,https://salsa.debian.org/debian-gis-team/sosi2osm, https://github.com/Gnonthgol/sosi2osm.git,3689.8328125,3,10,0,6.0,9.0,0.0,0.0 -soundconverter,0.454074081616164,1.01430049712361,0.117664664998543,https://salsa.debian.org/multimedia-team/soundconverter, https://github.com/kassoulet/soundconverter/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -spacefm,0.0215364284786288,0.701913588830265,-0.280297613289711,https://github.com/mati75/spacefm.git,https://github.com/mati75/spacefm.git,3876.4630671296295,0,4,0,2.0,1.0,0.0,0.0 -SparkleShare,0.916751869868698,2.53495974704413,0.0535700536046131,https://salsa.debian.org/debian/sparkleshare, https://github.com/hbons/SparkleShare,4856.867974537037,90,134,3,141.0,8.0,0.0,73.0 -speechd-up,-1.27896077062787,1.29297055271201,-2.07753108381263,https://salsa.debian.org/a11y-team/speechd-up, https://github.com/williamh/speechd-up.git,1059.327372685185,1,4,0,2.0,3.0,0.0,0.0 -speedpad-debian,-0.391190230068984,0.972185266047026,-0.693933608767308,https://github.com/ltworf/speedpad-debian,https://github.com/ltworf/speedpad-debian,829.1033101851851,0,2,0,1.0,0.0,0.0,0.0 -sphinx-argparse,-0.754937349353123,1.00889449330127,-1.21699686553265,https://salsa.debian.org/python-team/packages/sphinx-argparse, https://github.com/ribozz/sphinx-argparse,2938.517141203704,2,31,0,22.0,35.0,0.0,0.0 -sphinx-astropy,-1.42712350122077,-0.78677703713293,-1.54218456988202,https://salsa.debian.org/debian-astro-team/sphinx-astropy, https://github.com/astropy/sphinx-astropy,4334.915173611111,3,25,1,17.0,25.0,0.0,1.0 -sphinx-autorun,-1.09177585256997,1.72685500319585,-1.80454006267331,https://salsa.debian.org/python-team/packages/sphinx-autorun, https://github.com/hobarrera/sphinx-autorun,4960.184594907408,3,8,0,6.0,17.0,0.0,0.0 -sphinx_celery,-1.29378276863836,0.493807507851888,-1.99514716111722,https://salsa.debian.org/python-team/packages/sphinx-celery, https://github.com/celery/sphinx_celery,2803.725,12,7,1,15.0,21.0,0.0,0.0 -sphinx-paramlinks,-1.16822532351043,0.386873444258785,-1.56849327813973,https://salsa.debian.org/python-team/packages/sphinx-paramlinks, https://github.com/sqlalchemyorg/sphinx-paramlinks,3511.552777777778,5,5,0,7.0,18.0,0.0,0.0 -autoprogram,-1.45604526149334,-0.259677294646666,-1.66121422064934,https://salsa.debian.org/python-team/packages/sphinxcontrib-autoprogram, https://github.com/sphinx-contrib/autoprogram.git,3291.9937962962963,8,16,0,20.0,46.0,0.0,0.0 -sratom,0.540164976123721,2.85121389532424,0.0136305168021881,https://salsa.debian.org/multimedia-team/sratom, https://github.com/lv2/sratom.git ,4263.558912037037,3,1,0,4.0,5.0,0.0,0.0 -python-sshpubkeys,-1.91211407478949,-0.189481850931877,-2.33126292007642,https://salsa.debian.org/python-team/packages/sshpubkeys, https://github.com/ojarva/python-sshpubkeys.git,3267.352175925926,3,17,0,14.0,29.0,0.0,0.0 -sslsniff,0.722916790176053,2.75912507773281,-0.184867548032003,https://salsa.debian.org/pkg-security-team/sslsniff, https://github.com/moxie0/sslsniff.git,177.08484953703703,0,2,0,1.0,0.0,0.0,1.0 -st,-1.79056507667605,0.676950554514186,-2.33256709726343,https://salsa.debian.org/debian/st-console, https://github.com/nferraz/st,3551.6255439814813,0,6,0,4.0,35.0,0.0,0.0 -starfighter,1.13150563626708,2.44836061787832,0.407142053639967,https://salsa.debian.org/fmneto-guest/starfighter, https://github.com/pr-starfighter/starfighter,4492.057523148148,7,18,0,11.0,15.0,0.0,0.0 -starjava,-0.548485425839103,1.02382155067597,-0.839890616479756,https://salsa.debian.org/debian-astro-team/starjava-topcat, https://github.com/Starlink/starjava/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -starjava,-0.697556190670108,0.0612089874444767,-0.830940236181544,https://salsa.debian.org/debian-astro-team/starjava-ttools, https://github.com/Starlink/starjava/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -starjava,-0.57242176224608,0.51679215541116,-0.789078068589272,https://salsa.debian.org/debian-astro-team/starjava-util, https://github.com/Starlink/starjava,5785.07400462963,2,26,0,10.0,26.0,0.0,0.0 -Starman,-0.416737047926963,0.488737231083704,-0.575547278316765,https://salsa.debian.org/perl-team/modules/packages/starman, https://github.com/miyagawa/Starman/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -staticsite,-0.455044516827622,2.62595341392491,-1.40040151763546,https://salsa.debian.org/enrico/staticsite, https://github.com/spanezz/staticsite,2745.097152777778,0,7,1,5.0,10.0,0.0,0.0 -stex,-4.06683154544822,-2.49549281009036,-4.34962454010856,https://salsa.debian.org/debian/stex, https://github.com/dybvig/stex,1828.8861226851848,1,7,0,3.0,5.0,0.0,0.0 -stlink,0.233057864230876,3.04988378479478,-0.467680219154583,https://github.com/bluca/stlink,https://github.com/bluca/stlink,4380.028472222222,78,192,0,121.0,3.0,0.0,0.0 -stress,0.779179494126401,3.53680266613907,-0.0279634009643242,https://salsa.debian.org/debian/stress, https://github.com/resurrecting-open-source-projects/stress,489.8052893518519,0,3,0,2.0,7.0,0.0,0.0 -subdownloader,0.257673813794888,1.41620806504126,-0.267795596118916,https://salsa.debian.org/python-team/packages/subdownloader, https://github.com/subdownloader/subdownloader,4731.676956018519,4,22,3,10.0,23.0,0.0,0.0 -subtitleeditor,0.471518900266572,1.21730778912594,0.0459581289668194,https://salsa.debian.org/debian/subtitleeditor, https://github.com/kitone/subtitleeditor,5679.7465856481485,2,6,0,6.0,54.0,0.0,1.0 -pkg-subtle,-0.105745634673122,2.62918443450635,-1.126139338849,http://github.com/formorer/pkg-subtle,http://github.com/formorer/pkg-subtle,305.3167708333333,0,1,0,0.0,0.0,0.0,0.0 -subvertpy,-0.0856463378556415,0.91749868593295,-0.528150646670691,https://salsa.debian.org/python-team/packages/subvertpy, https://github.com/jelmer/subvertpy,3827.0174421296297,14,36,0,29.0,16.0,0.0,0.0 -suil,0.666624473070575,2.94988240352733,0.0198598554375319,https://salsa.debian.org/multimedia-team/suil, https://github.com/lv2/suil.git ,4625.665625,6,1,0,7.0,14.0,0.0,0.0 -sway,-0.0003144280673106,1.82114971457078,-0.460273981510936,https://salsa.debian.org/swaywm-team/sway, https://github.com/swaywm/sway/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -lv2,0.0271485834407405,2.31968936226794,-0.405826923040319,https://salsa.debian.org/multimedia-team/swh-lv2, https://github.com/swh/lv2,4769.927280092593,1,14,0,7.0,17.0,0.0,1.0 -ladspa,0.708394962150775,1.45205716079245,0.284208147622619,https://salsa.debian.org/multimedia-team/swh-plugins, https://github.com/swh/ladspa.git,5572.583993055556,1,25,0,15.0,58.0,0.0,0.0 -swift-bench,-3.69716188934169,-0.973889151522176,-4.31149029277086,https://salsa.debian.org/openstack-team/services/swift-bench, https://github.com/openstack/swift-bench.git,4746.026828703703,8,47,0,37.0,2.0,0.0,0.0 -swupdate,-4.13804202084003,-0.376504653524451,-5.241034960621,https://salsa.debian.org/debian/swupdate, https://github.com/sbabic/swupdate,3657.108321759259,179,6,0,128.0,0.0,0.0,1.0 -sxid,0.33831696615764,2.49407650395556,-0.642779212415897,https://salsa.debian.org/debian/sxid, https://github.com/taem/sxid,1429.029386574074,0,1,0,1.0,2.0,0.0,0.0 -synthv1,0.0241434868220623,1.37409351486715,-0.399365925014397,https://salsa.debian.org/multimedia-team/synthv1, https://github.com/rncbc/synthv1.git,4117.136076388889,0,14,0,3.0,15.0,0.0,0.0 -syrep,-0.384041012701151,1.56637993826751,-1.15004967985139,https://github.com/JonathonReinhart/syrep,https://github.com/JonathonReinhart/syrep,0.0023611111111111,1,1,0,1.0,2.0,0.0,0.0 -sysfsutils,1.46049393185949,2.50439380675384,0.820289131218092,https://git.hadrons.org/cgit/debian/pkgs/sysfsutils.git, https://github.com/linux-ras/sysfsutils/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -syslog-ng-debian,0.336088055168891,0.511763417260577,0.185971407157619,https://github.com/gcsideal/syslog-ng-debian,https://github.com/gcsideal/syslog-ng-debian,4178.44738425926,0,12,0,6.0,7.0,0.0,0.0 -ocaml-syslog,-0.996657340852441,1.25417313172268,-1.73225700632424,https://salsa.debian.org/ocaml-team/syslog-ocaml, https://github.com/geneanet/ocaml-syslog.git,690.8139351851852,1,3,0,2.0,3.0,0.0,0.0 -system-config-printer,2.35534728653651,3.32976112957796,1.71704345034686,https://salsa.debian.org/gnome-team/system-config-printer, https://github.com/OpenPrinting/system-config-printer/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -systemd-bootchart,0.0589352376469859,2.49482197170593,-0.521736994773931,https://salsa.debian.org/systemd-team/systemd-bootchart, https://github.com/systemd/systemd-bootchart,2813.8079282407407,13,11,0,15.0,41.0,0.0,0.0 -systemd-cron,0.243571307309259,1.06731842162835,-0.191790932788304,https://salsa.debian.org/systemd-team/systemd-cron, https://github.com/systemd-cron/systemd-cron.git,3852.632291666667,2,17,0,15.0,36.0,0.0,0.0 -systemfixtures,-2.62932315078521,-0.936424704435129,-3.00582436909892,https://salsa.debian.org/python-team/modules/systemfixtures, https://github.com/testing-cabal/systemfixtures.git,2181.133263888889,4,4,0,5.0,9.0,0.0,0.0 -systray-mdstat,-0.49343389370703,2.37286975016287,-1.23916904427602,https://github.com/xtaran/systray-mdstat,https://github.com/xtaran/systray-mdstat,1731.202361111111,1,1,0,2.0,1.0,0.0,0.0 -systune,-0.265542267936075,0.938801310175914,-0.701848845741014,https://github.com/sudipm-mukherjee/systune.git,https://github.com/sudipm-mukherjee/systune.git,176.0601736111111,1,4,0,2.0,3.0,0.0,0.0 -sysvinit,1.52035499816916,1.68724376899493,1.3661977311182,https://salsa.debian.org/debian/sysvinit, https://github.com/slicer69/sysvinit,5198.300694444444,2,8,0,4.0,17.0,0.0,0.0 -PEGTL,-2.20048020847375,0.225180617239842,-2.76338788823184,https://salsa.debian.org/birger/tao-pegtl, https://github.com/taocpp/PEGTL/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -tap-plugins,0.092380640002778,1.31045924107168,-0.180216737924224,https://salsa.debian.org/multimedia-team/tap-plugins, https://github.com/tomszilagyi/tap-plugins.git,5078.916828703704,3,8,0,0.0,2.0,0.0,0.0 -tclsignal,0.119740533015725,2.23718684079051,-0.307511467566214,https://salsa.debian.org/tcltk-team/tcl-signal, https://github.com/wjoye/tclsignal,2449.858275462963,1,4,0,3.0,4.0,0.0,0.0 -terminaltables,0.412492960577376,3.39801290706263,-0.31829907429068,https://git.progress-linux.org/users/daniel.baumann/debian/packages/terminaltables, https://github.com/matthewdeanmartin/terminaltables,2707.668125,1,11,0,9.0,4.0,0.0,0.0 -termrec,-0.546232522023779,1.72389988124453,-0.995923304197279,https://github.com/kilobyte/termrec/tree/debian,https://github.com/kilobyte/termrec,5312.953356481482,0,2,0,1.0,8.0,0.0,0.0 -tesseract-lang-debian,0.323928139030608,1.22799953306579,-0.0238272915900919,https://github.com/AlexanderP/tesseract-lang-debian,https://github.com/AlexanderP/tesseract-lang-debian,1566.6614814814816,0,5,0,3.0,2.0,0.0,0.0 -test-kitchen,-0.921041438391563,1.3276246051366,-1.60155632242379,https://salsa.debian.org/ruby-team/test-kitchen, https://github.com/test-kitchen/test-kitchen/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -testpath,0.178377175042217,1.42515771828427,-0.146798279917223,https://salsa.debian.org/python-team/packages/testpath, https://github.com/jupyter/testpath.git,2578.920949074074,1,9,0,7.0,23.0,0.0,0.0 -brev-cls,-0.904214842582474,0.898660783815827,-1.49145773466644,https://salsa.debian.org/debian/tetex-brev, https://github.com/asgeirn/brev-cls.git,3127.5767708333333,2,4,0,3.0,3.0,0.0,0.0 -tex-common,0.151231889587086,0.257676560878312,0.0745875584946667,https://github.com/debian-tex/tex-common,https://github.com/debian-tex/tex-common,5410.6258333333335,2,8,0,3.0,1.0,0.0,0.0 -tex-gyre,1.31087093839402,3.21344168406271,0.456727081656784,https://github.com/debian-tex/tex-gyre,https://github.com/debian-tex/tex-gyre,5218.649583333333,2,7,0,3.0,2.0,0.0,0.0 -texext,-0.496601277128136,2.46929449464641,-1.38146468438323,https://salsa.debian.org/python-team/packages/texext, https://github.com/matthew-brett/texext.git,2951.808113425926,0,5,0,4.0,11.0,0.0,0.0 -texinfo,1.23808351862705,1.59441210728978,0.965763802542942,https://github.com/debian-tex/texinfo,https://github.com/debian-tex/texinfo,5779.881342592593,3,9,0,5.0,6.0,0.0,0.0 -texlive-nonbin,1.15679629415715,1.362961610764,0.982152268763239,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-base,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0,6.0,2.0,0.0,0.0 -texlive-bin,0.977654238974201,1.26012038506653,0.750619670908532,https://github.com/debian-tex/texlive-bin,https://github.com/debian-tex/texlive-bin,4308.437662037037,3,11,0,5.0,3.0,0.0,0.0 -texlive-nonbin,0.870329898620217,1.0658084365154,0.708117771164046,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-extra,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0,6.0,2.0,0.0,0.0 -texlive-nonbin,0.729614425561058,1.07882617316548,0.459375405894902,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-lang,https://github.com/debian-tex/texlive-nonbin,4319.363310185186,4,9,0,6.0,2.0,0.0,0.0 -texworks,0.345795577570427,1.30764122490873,-0.065304430583538,https://github.com/debian-tex/texworks,https://github.com/debian-tex/texworks,4991.678958333333,1,9,0,5.0,2.0,0.0,0.0 -texworks-manual,0.198739884732124,2.59400351517298,-0.321228007138928,https://github.com/debian-tex/texworks-manual,https://github.com/debian-tex/texworks-manual,1933.1899652777777,2,5,0,3.0,1.0,0.0,0.0 -thaixfonts,0.128162461196804,0.871921859343836,-0.225691647646668,https://salsa.debian.org/debian/thaixfonts, https://github.com/tlwg/thaixfonts/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -three.js,0.115890084847779,1.68070508341261,-0.311409633612736,https://salsa.debian.org/js-team/three.js, https://github.com/mrdoob/three.js/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -thunar-dropbox,0.115455536805288,2.18322066671253,-0.418052724678524,https://salsa.debian.org/xfce-extras-team/thunar-dropbox-plugin, https://github.com/jeinzi/thunar-dropbox.git,3052.1741319444445,2,6,0,4.0,6.0,0.0,0.0 -timbl,-0.401299298516659,1.39172224209644,-0.920665446876481,https://salsa.debian.org/science-team/timbl, https://github.com/LanguageMachines/timbl.git,2913.2087384259257,0,8,0,2.0,8.0,0.0,0.0 -tinyssh,-1.47329206501662,0.864916972832623,-1.9165265439908,https://salsa.debian.org/debian/tinyssh, https://github.com/janmojzis/tinyssh.git,3264.9232175925927,1,18,0,10.0,66.0,0.0,0.0 -tp_smapi,0.844323368615497,2.0576796453675,0.253870626454108,https://salsa.debian.org/debian/tp-smapi, https://github.com/linux-thinkpad/tp_smapi,4476.696655092593,6,7,0,5.0,90.0,0.0,2.0 -tpm2-initramfs-tool,-1.40359125078696,1.80411121152826,-2.1934256166983,https://github.com/timchen119/tpm2-initramfs-tool,https://github.com/timchen119/tpm2-initramfs-tool,486.0112962962963,0,2,0,0.0,6.0,0.0,0.0 -trace-cmd,0.0998974636845,1.39787995621575,-0.354648084428709,https://github.com/sudipm-mukherjee/trace-cmd.git,https://github.com/sudipm-mukherjee/trace-cmd.git,1314.92875,139,17,0,90.0,1.0,0.0,0.0 -trackballs,0.245048124076464,1.03475591552092,-0.184206184392696,https://salsa.debian.org/games-team/trackballs, https://github.com/trackballs/trackballs.git,2063.1770717592594,6,7,0,7.0,20.0,0.0,0.0 -tran,-0.550748882886256,1.93788478921821,-1.09138120074128,https://github.com/kilobyte/tran/tree/debian,https://github.com/kilobyte/tran,4999.450173611112,0,1,0,1.0,3.0,0.0,0.0 -trayer-srg,0.796093545331843,2.23608521534984,0.122409527381704,https://salsa.debian.org/skangas/trayer, https://github.com/sargon/trayer-srg/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -triangle,-0.171188651604536,3.13081859065391,-1.21547208500806,https://salsa.debian.org/science-team/triangle, https://github.com/libigl/triangle.git,2528.1501736111118,2,7,0,5.0,8.0,0.0,0.0 -triggerhappy,1.59828841578579,4.48320777881722,0.389062407879172,https://github.com/wertarbyte/triggerhappy,https://github.com/wertarbyte/triggerhappy,2171.064270833333,5,5,0,7.0,41.0,0.0,0.0 -Trimage,1.25538527576544,3.95852084110596,0.188688872097325,https://salsa.debian.org/debian-phototools-team/trimage, https://github.com/Kilian/Trimage,4077.911770833333,2,17,0,9.0,64.0,0.0,0.0 -trinityrnaseq,-0.365244617454952,1.41599664321691,-0.974531329622039,https://salsa.debian.org/med-team/trinityrnaseq, https://github.com/trinityrnaseq/trinityrnaseq/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -trivial-features,0.263794991500852,3.27674805866799,-0.566814757036491,https://salsa.debian.org/common-lisp-team/trivial-features, https://github.com/trivial-features/trivial-features,5548.67386574074,11,9,0,15.0,24.0,0.0,0.0 -trivial-gray-streams,-0.0499196074540647,1.94778085709933,-0.505259566151993,https://salsa.debian.org/common-lisp-team/trivial-gray-streams, https://github.com/trivial-gray-streams/trivial-gray-streams/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -trocla,-1.12829437521708,1.85491509198581,-2.12969666349766,https://salsa.debian.org/ruby-team/trocla, https://github.com/duritong/trocla,4222.934444444444,2,25,0,16.0,33.0,0.0,0.0 -trollsift,-2.02827138272072,0.319975343977958,-2.47830426860654,https://salsa.debian.org/debian-gis-team/trollsift, https://github.com/pytroll/trollsift,3470.9592824074075,4,15,0,12.0,21.0,0.0,0.0 -tslib-debian,0.13367892889746,0.999475000069537,-0.0934739230140975,https://github.com/merge/tslib-debian,https://github.com/merge/tslib-debian,1295.9506018518518,2,3,0,1.0,1.0,0.0,0.0 -tty-clock,-0.284505416950156,0.457570258657673,-0.496718793185656,https://github.com/anarcat/tty-clock/tree/debian,https://github.com/anarcat/tty-clock,3142.182175925926,0,24,0,13.0,1.0,0.0,0.0 -tweepy,0.301492933185993,2.33320263624835,-0.527470147647839,https://salsa.debian.org/python-team/packages/tweepy, https://github.com/tweepy/tweepy.git,5164.931319444445,72,189,0,197.0,21.0,0.0,0.0 -Twiggy,0.310050801803201,4.08800007368902,-0.852782604445895,https://salsa.debian.org/perl-team/modules/packages/twiggy, https://github.com/miyagawa/Twiggy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -twms,-0.592208155086867,1.2383570593868,-1.19721999610909,https://salsa.debian.org/debian/twms, https://github.com/Komzpa/twms.git,2177.2821875,3,11,0,4.0,5.0,0.0,0.0 -uhub-debian,-0.27968382255561,3.57423958905093,-1.58079944499814,https://github.com/tehnick/uhub-debian,https://github.com/tehnick/uhub-debian,4037.202314814815,0,1,0,1.0,1.0,0.0,0.0 -uim-chewing,-2.52130439285198,-0.41609696498638,-2.98686680003963,https://salsa.debian.org/debian/uim-chewing, https://github.com/uim/uim-chewing,1095.720023148148,0,1,0,0.0,0.0,0.0,0.0 -ukui-biometric-auth,-1.23108430429401,0.753704918102481,-1.67406120474206,https://github.com/ukui/ukui-biometric-auth,https://github.com/ukui/ukui-biometric-auth,1260.5815625,5,11,0,8.0,6.0,0.0,0.0 -ukui-control-center,-2.2036628317433,0.051194460625857,-2.89319770376583,https://github.com/ukui/ukui-control-center,https://github.com/ukui/ukui-control-center,1921.8410069444444,76,81,0,41.0,13.0,0.0,0.0 -ukui-indicators,-1.37780459404033,1.21578496384178,-2.1158896015095,https://github.com/ukui/ukui-indicators,https://github.com/ukui/ukui-indicators,1239.8214814814814,3,9,0,5.0,4.0,0.0,0.0 -ukui-power-manager,-0.319097885609131,2.91285397358237,-1.12198117515138,https://github.com/ukui/ukui-power-manager,https://github.com/ukui/ukui-power-manager,1544.224537037037,3,19,0,9.0,9.0,0.0,0.0 -ukui-settings-daemon,0.121987577432568,3.29765073714863,-0.681836487667349,https://github.com/ukui/ukui-settings-daemon,https://github.com/ukui/ukui-settings-daemon,1595.2230439814814,10,31,0,10.0,21.0,0.0,0.0 -ukui-themes,-0.582696295183059,2.23845690954184,-1.29864612966744,https://github.com/ukui/ukui-themes,https://github.com/ukui/ukui-themes,1509.1822916666667,6,9,0,8.0,12.0,0.0,0.0 -umoci,-1.50497977737253,0.580898676945254,-2.03066533438468,https://salsa.debian.org/go-team/packages/umoci, https://github.com/opencontainers/umoci/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -unburden-home-dir,-0.501169022978581,0.195057165010135,-0.761338470340196,https://github.com/xtaran/unburden-home-dir,https://github.com/xtaran/unburden-home-dir,4201.546134259259,1,10,2,6.0,17.0,0.0,0.0 -underscore,0.557720287676854,2.16700341091088,0.0619794848914645,https://salsa.debian.org/js-team/underscore, https://github.com/jashkenas/underscore.git,5084.80931712963,25,336,0,261.0,27.0,0.0,52.0 -Unhide,1.70613888194707,3.87428749747735,0.737630650604256,https://salsa.debian.org/pkg-security-team/unhide, https://github.com/YJesus/Unhide.git,991.7221296296296,2,5,0,5.0,6.0,0.0,0.0 -unorm,-1.31301044062931,0.898128280891819,-1.84441568418253,https://salsa.debian.org/js-team/unorm.js, https://github.com/walling/unorm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -unrar-nonfree,1.84732656052625,3.19890630535861,1.05955884452828,https://github.com/debian-calibre/unrar-nonfree,https://github.com/debian-calibre/unrar-nonfree,1876.6905902777776,7,5,0,5.0,3.0,0.0,0.0 -unrardll,-0.796002188822737,0.588836210457293,-1.10593812498378,https://github.com/debian-calibre/unrardll,https://github.com/debian-calibre/unrardll,1864.002291666667,0,4,0,3.0,1.0,0.0,0.0 -vagalume,-1.45112742374597,-0.973288060828436,-1.54241323016244,https://salsa.debian.org/berto/vagalume, https://github.com/bertogg/vagalume,2090.3450578703705,26,3,0,19.0,0.0,0.0,0.0 -vagrant,0.229961961813965,0.628466998668734,0.001311443146378,https://salsa.debian.org/ruby-team/vagrant, https://github.com/hashicorp/vagrant/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -valabind,-1.2435397352149,-0.342890743894002,-1.60879507868754,https://salsa.debian.org/debian/valabind, https://github.com/radare/valabind,4839.981956018519,6,19,0,15.0,41.0,0.0,0.0 -valinor,-2.93685056919402,-1.10201026487098,-3.31937216080382,https://salsa.debian.org/python-team/packages/valinor, https://github.com/ARMmbed/valinor.git,1839.1786805555555,3,12,0,9.0,17.0,0.0,0.0 -variantslib,-2.09869686456814,0.447590858023176,-2.61031478335289,https://salsa.debian.org/ocaml-team/variantslib, https://github.com/janestreet/variantslib.git,3865.55619212963,0,7,0,5.0,3.0,0.0,0.0 -vcversioner,0.242716431004721,2.83146614743386,-0.333260856679997,https://salsa.debian.org/python-team/packages/vcversioner, https://github.com/habnabit/vcversioner,1010.450914351852,0,4,0,2.0,18.0,0.0,0.0 -vfu-deb,0.750219213886093,2.41948171192405,-0.0549697237600978,https://github.com/bbonev/vfu-deb,https://github.com/bbonev/vfu-deb,1063.877025462963,0,1,0,1.0,0.0,0.0,0.0 -vim-autopep8,0.209865572834708,3.15312296708815,-0.559265887690645,https://salsa.debian.org/python-team/packages/vim-autopep8, https://github.com/tell-k/vim-autopep8.git,1821.7416782407408,1,10,0,7.0,52.0,0.0,0.0 -command-t,-0.281217186974149,1.71193634099862,-0.803496041507535,https://github.com/yrro/command-t,https://github.com/yrro/command-t,4589.54300925926,66,14,0,60.0,1.0,0.0,0.0 -volumeicon-debian,0.558223917947211,2.41170540163238,-0.117654542782822,https://github.com/mati75/volumeicon-debian.git,https://github.com/mati75/volumeicon-debian.git,4377.010659722222,0,5,0,3.0,1.0,0.0,0.0 -csg,-1.30159847034668,-0.129194673619744,-1.72369219754747,https://salsa.debian.org/debichem-team/votca-csg, https://github.com/votca/csg/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -tools,-1.88532927951672,-0.419758602929591,-2.30942517278951,https://salsa.debian.org/debichem-team/votca-tools, https://github.com/votca/tools/tools/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -vowpal_wabbit,1.6051587851371,4.78797055533608,0.325894581710917,http://github.com/yarikoptic/vowpal_wabbit,http://github.com/yarikoptic/vowpal_wabbit,3692.406203703704,66,280,0,0.0,0.0,0.0,0.0 -vows,-1.39394977454617,0.332424711359999,-1.79508445414443,https://salsa.debian.org/js-team/vows, https://github.com/cloudhead/vows/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -vpcs,0.571960277380983,3.99052141997529,-0.298703196291969,https://github.com/dlintott/vpcs,https://github.com/dlintott/vpcs,302.5271875,0,2,0,2.0,1.0,0.0,0.0 -vpnc,0.755213249612064,1.24264527072147,0.417631646673197,https://salsa.debian.org/debian/vpnc, https://github.com/streambinder/vpnc,5629.841388888889,11,17,0,19.0,26.0,0.0,0.0 -vue-router,-2.72398920690915,-0.137337360960268,-3.30687614930778,https://salsa.debian.org/js-team/vue-router.js, https://github.com/vuejs/vue-router/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -vue,-1.09313560921421,1.01866826845148,-1.534333901562,https://salsa.debian.org/js-team/vue.js, https://github.com/vuejs/vue/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -link-checker,1.07790841418658,3.05629720278721,0.115115099366742,https://salsa.debian.org/perl-team/modules/packages/w3c-linkchecker, https://github.com/w3c/link-checker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -emacs-w3m,-0.0316215167236012,0.794577588043076,-0.429835318014074,https://salsa.debian.org/debian/w3m-el-snapshot, https://github.com/emacs-w3m/emacs-w3m,5732.875613425926,8,17,0,19.0,38.0,0.0,2.0 -wadc,-1.31141977817888,1.14881536763015,-1.89429215614748,https://github.com/jmtd/wadc,https://github.com/jmtd/wadc,2669.3253125,2,7,0,3.0,5.0,0.0,0.0 -wajig,-0.256364093339026,-0.204128093171791,-0.289877150989966,https://github.com/gjwgit/wajig/wajig,https://github.com/gjwgit/wajig,4746.4752546296295,1,8,0,5.0,1.0,0.0,0.0 -wakeonlan,0.53477622990398,2.39817694826765,-0.0392961396375341,https://salsa.debian.org/debian/wakeonlan, https://github.com/jpoliv/wakeonlan/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -wavbreaker,-0.304369264568198,1.30801973333578,-0.643451840201979,https://salsa.debian.org/multimedia-team/wavbreaker, https://github.com/thp/wavbreaker.git,5680.2477546296295,3,6,0,9.0,15.0,12.0,0.0 -wbar,0.720696362158809,2.63631785035618,-0.164067610906573,https://salsa.debian.org/debian/wbar, https://github.com/rodolf0/wbar,1881.7045949074077,0,2,0,1.0,2.0,0.0,0.0 -wcc,-2.42817416014247,-0.918288734536828,-2.92054697879028,https://salsa.debian.org/pkg-security-team/wcc, https://github.com/endrazine/wcc.git,2370.653888888889,7,12,0,16.0,41.0,0.0,4.0 -whysynth,1.62738774661893,4.79450236358576,0.384049585785024,https://salsa.debian.org/multimedia-team/whysynth, https://github.com/smbolton/whysynth.git,2132.1219444444446,2,3,0,3.0,12.0,0.0,0.0 -wifite2,0.0691397747010047,1.35966478862449,-0.282196589925993,https://salsa.debian.org/pkg-security-team/wifite, https://github.com/kimocoder/wifite2.git,3100.78755787037,19,31,0,35.0,28.0,0.0,0.0 -wiki2beamer,0.107248403941003,2.96800339008793,-0.787443662742097,https://salsa.debian.org/debian/wiki2beamer, https://github.com/wiki2beamer/wiki2beamer/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -wildmidi,1.12204490028689,2.8689328624495,0.393110689266044,https://salsa.debian.org/games-team/WildMIDI, https://github.com/psi29a/wildmidi.git,5284.747372685185,7,25,0,19.0,8.0,0.0,2.0 -Willow,-0.305002642062236,2.68374602924338,-1.20068142812313,https://salsa.debian.org/python-team/packages/willow, https://github.com/torchbox/Willow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -win-iconv,-0.125318004334775,3.36110345064577,-1.27848577768421,https://salsa.debian.org/debian/win-iconv, https://github.com/win-iconv/win-iconv,2428.4399189814817,1,14,0,10.0,21.0,0.0,0.0 -winregfs,0.150543294603686,2.56636307415316,-0.37925542532309,https://salsa.debian.org/pkg-security-team/winregfs, https://github.com/jbruchon/winregfs,3358.8025694444445,0,4,0,1.0,4.0,0.0,0.0 -wipe,0.0654274281112602,0.50992895708129,-0.121010634033988,https://salsa.debian.org/pkg-security-team/wipe, https://github.com/berke/wipe,5088.825243055556,3,5,0,3.0,11.0,0.0,0.0 -wiimms-iso-tools,-0.0137410527501382,2.25940176956232,-0.629581281765023,https://salsa.debian.org/debian/wit, https://github.com/Wiimm/wiimms-iso-tools,764.4320717592593,0,4,0,1.0,29.0,0.0,0.0 -with-simulated-input,-1.61364195339851,0.654279163527695,-2.0643984033587,https://salsa.debian.org/emacsen-team/with-simulated-input-el, https://github.com/DarwinAwardWinner/with-simulated-input.git,1593.3461921296296,0,2,0,2.0,10.0,0.0,0.0 -wmaker,3.03181698153232,3.50497056467286,2.63335757483099,https://salsa.debian.org/wmaker-team/wmaker, https://github.com/window-maker/wmaker/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -wmbubble,0.33133404478108,2.05515118058065,-0.500405698814647,https://salsa.debian.org/wmaker-team/wmbubble, https://github.com/rnjacobs/wmbubble.git,3203.159814814815,0,5,0,2.0,5.0,0.0,0.0 -wmcoincoin,-1.11204703091166,0.942829877288574,-1.81265921816841,https://salsa.debian.org/wmaker-team/wmcoincoin, https://github.com/seeschloss/wmcoincoin/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -wmfrog,-0.619500859159663,0.736280260241296,-1.1251650057348,https://salsa.debian.org/wmaker-team/wmfrog, https://github.com/tcolar/wmfrog,4191.395277777778,0,7,0,2.0,2.0,0.0,0.0 -dockapps,0.221022686233518,1.75296584947562,-0.371862750927289,https://salsa.debian.org/wmaker-team/wmhdplop, https://github.com/window-maker/dockapps/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -wmpinboard,0.329930821019795,2.24815642539236,-0.583398239841013,https://salsa.debian.org/wmaker-team/wmpinboard, https://github.com/bbidulock/wmpinboard.git,274.6021412037037,0,3,0,2.0,2.0,0.0,0.0 -wmsysmon,3.68197866191118,6.94971947808117,2.22226845024141,https://salsa.debian.org/wmaker-team/wmsysmon, https://github.com/voyageur/wmsysmon.git,1940.3190625,0,3,0,2.0,3.0,0.0,0.0 -wokkel,-0.749441424580256,1.59602118915274,-1.35876773271944,https://salsa.debian.org/python-team/packages/wokkel, https://github.com/ralphm/wokkel.git,4842.8803125,0,5,0,5.0,26.0,0.0,0.0 -wondershaper,2.14935921040786,4.17917526317013,1.07231548122752,https://github.com/leggewie-DM/wondershaper,https://github.com/leggewie-DM/wondershaper,3187.669826388889,2,1,0,2.0,2.0,0.0,0.0 -wreport,-0.179477642280507,1.61430545559584,-0.817271994381948,https://github.com/ARPA-SIMC/wreport,https://github.com/ARPA-SIMC/wreport,4700.94625,2,14,0,5.0,11.0,0.0,0.0 -wslay,-0.323350583910332,2.00965793039539,-1.03163971198034,https://salsa.debian.org/debian/wslay, https://github.com/tatsuhiro-t/wslay,2229.7935185185183,3,18,1,17.0,70.0,0.0,0.0 -wtf-peewee,-1.19339204512468,1.30187625249524,-1.74169433804412,https://salsa.debian.org/python-team/packages/wtf-peewee, https://github.com/coleifer/wtf-peewee,4437.079965277778,3,18,0,15.0,46.0,0.0,0.0 -wxAstroCapture,0.372735406937906,3.17349120443399,-0.408012519061559,https://salsa.debian.org/science-team/wxastrocapture, https://github.com/wxAstro/wxAstroCapture,45.059583333333336,0,3,0,2.0,2.0,0.0,0.0 -wxGlade,-0.233526737230989,0.123389374689724,-0.423359705550465,https://salsa.debian.org/georgesk/wxglade, https://github.com/wxGlade/wxGlade/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -x11-touchscreen-calibrator,-0.115498330161782,2.67222001368271,-0.787537421198142,https://github.com/fourdollars/x11-touchscreen-calibrator,https://github.com/fourdollars/x11-touchscreen-calibrator,2225.1995717592595,0,4,0,2.0,5.0,0.0,0.0 -x42-plugins,-0.152619050161196,0.59903751721685,-0.384890653970823,https://salsa.debian.org/multimedia-team/x42-plugins, https://github.com/x42/x42-plugins,3642.239502314815,0,1,0,1.0,0.0,0.0,0.0 -xandikos,-1.70088935399086,-1.39473122815796,-1.76872834016456,https://salsa.debian.org/jelmer/xandikos, https://github.com/jelmer/xandikos/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -xbomb.debian,2.51679318751402,5.65106973361442,1.16673977834059,https://github.com/alexdantas/xbomb.debian,https://github.com/alexdantas/xbomb.debian,472.1825347222222,1,2,0,0.0,3.0,0.0,0.0 -xindy,0.182376395384361,0.882284251450977,-0.127451421745251,https://github.com/debian-tex/xindy,https://github.com/debian-tex/xindy,2719.8550694444443,2,6,0,4.0,1.0,0.0,0.0 -xlsx2csv,0.199802940957209,2.30482551068513,-0.394629471061364,https://salsa.debian.org/science-team/xlsx2csv, https://github.com/dilshod/xlsx2csv/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -xml-light,-0.359272413549481,1.18964691141487,-0.777231494285517,https://salsa.debian.org/ocaml-team/xml-light, https://github.com/ncannasse/xml-light.git,3963.0315046296296,3,8,0,8.0,13.0,0.0,0.0 -xmountains,-0.647359812157378,-0.40806180429333,-0.698514940296116,https://salsa.debian.org/debian/xmountains, https://github.com/spbooth/xmountains/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -xnec2c,-0.243374577624682,0.791984406418207,-0.488906462737154,https://salsa.debian.org/debian-hamradio-team/xnec2c, https://github.com/KJ7LNW/xnec2c.git,5761.788194444444,5,7,0,8.0,22.0,0.0,0.0 -xplc,0.0651190779681454,1.58040935945994,-0.544187636272128,https://salsa.debian.org/debian/xplc, https://github.com/xplc/xplc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -pkg-xppaut,0.480332333017225,2.58739616444371,-0.461526976933745,https://github.com/neurodebian/pkg-xppaut,https://github.com/neurodebian/pkg-xppaut,171.36234953703703,6,2,0,3.0,0.0,0.0,0.0 -xprintidle,-0.142218839242467,0.624978745265832,-0.351898973864155,https://salsa.debian.org/debian/xprintidle, https://github.com/g0hl1n/xprintidle,3448.917986111111,2,6,2,2.0,15.0,0.0,0.0 -xsecurelock,-0.468159823630411,2.89008236417399,-1.35174511233414,https://github.com/google/xsecurelock/tree/debian,https://github.com/google/xsecurelock,3375.8872453703702,17,12,2,18.0,50.0,0.0,0.0 -xtermcontrol,-0.0117403008079696,1.58585456229801,-0.456954847845528,https://salsa.debian.org/debian/xtermcontrol, https://github.com/JessThrysoee/xtermcontrol.git,3429.399525462963,0,2,0,1.0,17.0,0.0,0.0 -xtl,-4.70407895592082,-1.58562060725813,-5.43056132857938,https://github.com/quantstack-debian/xtl,https://github.com/quantstack-debian/xtl,1473.7952662037037,0,3,0,2.0,1.0,0.0,0.0 -xttitle,0.893907750684752,4.27065681385221,-0.38194406923119,https://salsa.debian.org/debian/xttitle, https://github.com/mojotx/xttitle,2181.591273148148,2,3,0,2.0,2.0,0.0,0.0 -xwax,-0.56366293338678,0.727141420530347,-0.949811830305735,https://salsa.debian.org/multimedia-team/xwax, https://github.com/xwax/xwax.git,5550.865671296297,5,3,0,3.0,9.0,0.0,0.0 -xxdiff,0.906100417502369,1.65106472605105,0.441369015329754,https://salsa.debian.org/debian/xxdiff, https://github.com/blais/xxdiff.git,5451.028113425926,4,11,0,8.0,19.0,0.0,0.0 -xylib,0.696281579106391,3.86842676602693,-0.279699139750226,https://salsa.debian.org/science-team/xylib, https://github.com/wojdyr/xylib,5291.045370370371,4,4,0,3.0,17.0,0.0,0.0 -yafc,-0.0272314962318525,0.491639132124011,-0.325366651173439,https://salsa.debian.org/debian/yafc, https://github.com/sebastinas/yafc.git,4536.171655092593,4,14,0,13.0,27.0,0.0,0.0 -yagf-debian,1.25648180449157,3.63195061091952,0.257748371556789,https://github.com/tehnick/yagf-debian,https://github.com/tehnick/yagf-debian,2966.796875,2,1,0,2.0,3.0,0.0,0.0 -yagv,-0.249310969091996,1.68054515280102,-0.758268769007919,https://salsa.debian.org/3dprinting-team/yagv, https://github.com/jonathanwin/yagv.git,1848.8749421296293,0,6,0,2.0,24.0,0.0,0.0 -yajl,0.143691094254928,0.815541964652964,-0.0099540163070501,https://github.com/jstamp/yajl,https://github.com/jstamp/yajl,5069.733125,7,28,0,22.0,4.0,0.0,0.0 -yubikey-personalization-gui-dpkg,1.06602144433083,4.62142525692704,-0.0477907414072675,https://github.com/Yubico/yubikey-personalization-gui-dpkg,https://github.com/Yubico/yubikey-personalization-gui-dpkg,1527.8557986111111,0,2,0,2.0,5.0,0.0,0.0 -yubikey-val-dpkg,-1.57967588205519,0.523057944462277,-2.22388558507811,https://github.com/Yubico/yubikey-val-dpkg,https://github.com/Yubico/yubikey-val-dpkg,2518.499560185185,1,7,0,6.0,3.0,0.0,0.0 -jay-yydebug,-2.4807565790966,0.0572661246944069,-3.00168517708945,https://salsa.debian.org/java-team/yydebug, https://github.com/jruby/jay-yydebug,0.0429513888888888,0,1,0,1.0,2.0,0.0,0.0 -zc.lockfile,-0.0210256384171079,1.53795996465463,-0.455036022488046,https://salsa.debian.org/python-team/packages/zc-lockfile, https://github.com/zopefoundation/zc.lockfile,5245.597430555556,1,13,0,10.0,19.0,0.0,0.0 -zed,-0.763678522134998,-0.058695494498501,-1.01526923636153,https://salsa.debian.org/ocaml-team/zed, https://github.com/ocaml-community/zed.git,4544.756469907407,9,14,0,17.0,38.0,0.0,0.0 -ice-debian-packaging,-0.224627038585425,-0.0796274634500833,-0.317814944379456,https://github.com/zeroc-ice/ice-debian-packaging.git,https://github.com/zeroc-ice/ice-debian-packaging.git,2730.299004629629,3,11,0,8.0,6.0,0.0,0.0 -0install-debian,-0.179017330883015,0.237341498461442,-0.353118964825079,https://github.com/0install/0install-debian,https://github.com/0install/0install-debian,5324.679594907408,19,12,0,3.0,0.0,0.0,0.0 -zfSnap,0.477233621433431,3.14948254064277,-0.443372693502268,https://github.com/jgoerzen/zfSnap,https://github.com/jgoerzen/zfSnap,4429.328888888889,1,13,0,2.0,1.0,0.0,0.0 -zktop,-1.68344813592465,1.4483848388377,-2.50797629530837,https://salsa.debian.org/python-team/packages/zktop, https://github.com/phunt/zktop.git,4096.610011574074,1,12,0,7.0,20.0,0.0,0.0 -zope.deprecation,-0.400292316060671,1.29506945384903,-0.802284920023947,https://salsa.debian.org/python-team/packages/zope.deprecation, https://github.com/zopefoundation/zope.deprecation.git,5564.896354166666,6,19,0,22.0,15.0,0.0,0.0 -zope.event,0.480126030029771,2.4451618464987,-0.0440353102755944,https://salsa.debian.org/debian/zope.event, https://github.com/zopefoundation/zope.event,5503.514363425926,6,21,0,23.0,14.0,0.0,0.0 -zope.i18nmessageid,-0.504779274215239,1.17571582300164,-1.00381597667681,https://salsa.debian.org/detiste-guest/zope.i18nmessageid, https://github.com/zopefoundation/zope.i18nmessageid,5530.727175925926,3,23,0,23.0,15.0,0.0,0.0 -zope.schema,-0.671127716306772,0.589860256267245,-1.03264000145762,https://salsa.debian.org/python-team/packages/zope.schema, https://github.com/zopefoundation/zope.schema,5503.583645833333,8,46,0,42.0,30.0,0.0,0.0 -zope.testing,-0.804639803803595,0.193231787220047,-1.16008686093468,https://salsa.debian.org/python-team/packages/zope.testing, https://github.com/zopefoundation/zope.testing,5685.868263888889,3,42,0,37.0,13.0,0.0,0.0 -zope.testrunner,-1.51782142309299,-0.947942576480612,-1.65561505690836,https://salsa.debian.org/python-team/packages/zope.testrunner, https://github.com/zopefoundation/zope.testrunner,4988.321666666667,11,30,0,30.0,32.0,0.0,0.0 -zpb-ttf,-0.540008259656094,2.49952861999287,-1.59014470949942,https://salsa.debian.org/debian/zpb-ttf, https://github.com/xach/zpb-ttf,4273.146041666667,0,6,0,4.0,14.0,0.0,0.0 -7kaa,0.873343914137606,3.76518932259787,-0.0927531105574549,https://salsa.debian.org/games-team/7kaa, https://github.com/the3dfxdude/7kaa,5126.709664351852,24,23,0,27.0,66.0,0.0,0.0 -acmetool,0.621943486643402,2.68754503210466,-0.233690566178644,https://salsa.debian.org/go-team/packages/acmetool, https://github.com/hlandau/acmetool,2727.716875,7,20,1,21.0,258.0,0.0,5.0 -actiona,0.268592127615787,2.38984495856638,-0.565826782279516,https://salsa.debian.org/debian/actiona, https://github.com/Jmgr/actiona,4932.320543981482,3,17,0,3.0,94.0,0.0,0.0 -activemq,-0.707743978986649,-0.252194710986131,-0.929017813983153,https://salsa.debian.org/java-team/activemq, https://github.com/apache/activemq,5739.122835648148,56,141,2,130.0,160.0,0.0,0.0 -allegro5,-0.476268621868809,-0.215392434276398,-0.53112698022826,https://salsa.debian.org/games-team/allegro5, https://github.com/liballeg/allegro5.git,5772.815868055555,110,47,0,79.0,223.0,0.0,5.0 -ariba,-0.724970866684118,0.74972388381556,-1.17899230516215,https://salsa.debian.org/med-team/ariba, https://github.com/sanger-pathogens/ariba,3026.196354166667,10,22,0,16.0,112.0,0.0,8.0 -asn1crypto,0.974072984185648,4.18530240052276,0.0865816737110871,https://salsa.debian.org/python-team/packages/asn1crypto, https://github.com/wbond/asn1crypto.git,3074.7355092592597,14,27,0,32.0,181.0,0.0,0.0 -asymptote,0.239690066392947,0.586126158419268,0.0399132445427328,https://github.com/debian-tex/asymptote,https://github.com/debian-tex/asymptote,4223.671516203704,6,28,0,5.0,4.0,0.0,0.0 -aranym800-debian,0.243826287478213,1.41118489077422,-0.322307451233891,https://github.com/bobek/aranym800-debian,https://github.com/bobek/aranym800-debian,4083.298877314815,1,3,0,2.0,2.0,0.0,0.0 -atril,0.520773237862205,1.2869272542963,0.152212133447902,https://salsa.debian.org/debian-mate-team/atril, https://github.com/mate-desktop/atril.git,4392.879976851852,62,42,0,70.0,244.0,0.0,0.0 -audacity,2.05957609206705,2.58790400303534,1.65289331150704,https://salsa.debian.org/multimedia-team/audacity, https://github.com/audacity/audacity.git,5069.8878125,215,104,0,197.0,438.0,0.0,8.0 -audioread,0.479072623695549,2.83797236644546,-0.236304332359752,https://salsa.debian.org/python-team/packages/audioread, https://github.com/sampsyo/audioread.git,4407.000694444445,7,21,0,23.0,126.0,0.0,0.0 -autorandr,-0.352715216459273,0.317126284596361,-0.518389331026041,https://salsa.debian.org/debian/autorandr, https://github.com/phillipberndt/autorandr.git,4779.707673611111,55,58,0,90.0,351.0,0.0,0.0 -autosuspend,-1.92504584282084,0.627810995762547,-2.46727081114522,https://salsa.debian.org/python-team/packages/autosuspend, https://github.com/languitar/autosuspend.git,3337.596284722222,6,9,0,13.0,40.0,0.0,0.0 -backuppc,0.439136867980086,0.738905733012293,0.213344842665476,https://salsa.debian.org/debian/backuppc, https://github.com/backuppc/backuppc,4883.167430555555,21,39,0,40.0,225.0,0.0,31.0 -rsync-bpc,-2.95372652468636,0.233635531780002,-3.70623050600404,https://salsa.debian.org/debian/backuppc-rsync, https://github.com/backuppc/rsync-bpc,2751.321203703704,2,9,0,6.0,43.0,0.0,0.0 -bambam,0.307093285057578,2.50759581723654,-0.341358645189873,https://github.com/porridge/bambam,https://github.com/porridge/bambam,5711.297395833333,24,13,0,23.0,24.0,0.0,1.0 -barclay,0.185180158756398,3.0141581767608,-0.602042434550918,https://salsa.debian.org/java-team/barclay, https://github.com/broadinstitute/barclay.git,2356.7614351851853,7,7,0,8.0,27.0,0.0,1.0 -bart,-0.177815138036834,2.12543736420799,-0.637214556515039,https://salsa.debian.org/med-team/bart, https://github.com/mrirecon/bart,3390.8110185185187,61,30,0,41.0,83.0,0.0,0.0 -bd,-0.570931406738078,1.76397108549389,-1.07177359635631,https://salsa.debian.org/debian/bd, https://github.com/vigneshwaranr/bd.git,3272.779247685185,3,12,0,10.0,56.0,0.0,0.0 -Bear,-0.390018594071918,0.59549299969754,-0.597099729997488,https://salsa.debian.org/sramacher/bear, https://github.com/rizsotto/Bear,3987.655787037037,44,19,0,53.0,142.0,0.0,2.0 -beginend,-0.98120544742392,1.14756440927161,-1.47907570035627,https://salsa.debian.org/emacsen-team/beginend-el, https://github.com/DamienCassou/beginend.git,3077.310520833333,8,12,0,15.0,21.0,0.0,0.0 -benchmark,-0.400741955214662,1.92211502933559,-1.20406228025166,https://salsa.debian.org/science-team/benchmark, https://github.com/google/benchmark,3640.584953703704,257,68,3,283.0,68.0,0.0,0.0 -abc,-0.0691799172862805,1.15264186353368,-0.392688063221375,https://salsa.debian.org/science-team/berkeley-abc, https://github.com/berkeley-abc/abc.git,5782.911666666667,8,47,0,40.0,75.0,0.0,0.0 -bernhard,-3.82491382291294,-1.43294657373251,-4.33451811997754,https://salsa.debian.org/python-team/packages/bernhard, https://github.com/b20n/bernhard.git,2059.4699652777776,0,14,0,11.0,32.0,0.0,0.0 -betamax,-2.61867595034709,-1.71115444654894,-2.79296471637611,https://salsa.debian.org/python-team/packages/betamax, https://github.com/sigmavirus24/betamax,3448.4558796296296,7,33,2,31.0,93.0,0.0,0.0 -bfs,-1.11648899748412,-0.549895573103613,-1.19909841251411,https://salsa.debian.org/lamby/pkg-bfs, https://github.com/tavianator/bfs.git,2311.762627314815,11,10,0,19.0,35.0,0.0,0.0 -birdfont,0.15392158176408,1.52070719937222,-0.397131029435017,https://salsa.debian.org/fonts-team/birdfont, https://github.com/johanmattssonm/birdfont.git,4158.827222222222,6,15,0,15.0,135.0,0.0,0.0 -bitlbee,0.610414917036669,1.13341797451246,0.239033610311326,https://github.com/bitlbee/bitlbee,https://github.com/bitlbee/bitlbee,5775.524282407408,54,55,0,72.0,85.0,0.0,0.0 -black,-0.259858316466697,0.652655580647794,-0.48358049834747,https://salsa.debian.org/python-team/packages/black, https://github.com/psf/black.git,2098.4397453703705,441,11,0,416.0,699.0,0.0,0.0 -BOSSA,0.0893999445646042,1.66122635928921,-0.416352452488754,https://salsa.debian.org/science-team/bossa, https://github.com/shumatech/BOSSA.git,3233.4649537037035,7,26,0,19.0,214.0,0.0,0.0 -bowtie2,-0.41732141777028,-0.233072452009442,-0.469307515926621,https://salsa.debian.org/med-team/bowtie2, https://github.com/BenLangmead/bowtie2,4656.630277777777,6,51,0,28.0,425.0,0.0,1.0 -boxbackup,-0.837110011505577,0.0115481537928637,-1.326464815788,https://salsa.debian.org/debian/boxbackup, https://github.com/boxbackup/boxbackup.git,5737.3015625,2,18,0,6.0,16.0,0.0,3.0 -breathe,-0.991213500820718,-0.830938973718159,-1.0391354826844,https://salsa.debian.org/python-team/packages/breathe, https://github.com/michaeljones/breathe.git,5375.564594907408,34,85,0,91.0,286.0,0.0,0.0 -brewtarget,0.484432121012412,2.85702008142999,-0.42658381895285,https://salsa.debian.org/debian/brewtarget, https://github.com/Brewtarget/brewtarget.git,5451.5742129629625,13,84,0,55.0,134.0,0.0,15.0 -brise,-0.308044257748576,1.03574501060784,-0.687368349200967,https://salsa.debian.org/debian/brise, https://github.com/rime/brise,2544.886261574074,5,23,0,12.0,45.0,0.0,0.0 -brlaser,0.40724322632136,2.15415528750924,-0.0102827942670847,https://salsa.debian.org/printing-team/brlaser, https://github.com/pdewacht/brlaser,3342.205983796296,4,11,0,13.0,27.0,0.0,3.0 -brotli,0.1260775006741,0.545442605177154,-0.008359961475277,https://salsa.debian.org/debian/brotli, https://github.com/google/brotli,3713.0230555555554,77,45,0,97.0,42.0,0.0,5.0 -bruteforce-luks,0.450685726895421,3.93090609242965,-0.344105736549171,https://salsa.debian.org/pkg-security-team/bruteforce-luks, https://github.com/glv2/bruteforce-luks,1977.6153125,2,8,0,3.0,38.0,0.0,0.0 -brutespray,-0.0085744736996972,2.06226511956974,-0.445603786021027,https://salsa.debian.org/pkg-security-team/brutespray, https://github.com/x90skysn3k/brutespray,2174.873599537037,7,10,0,8.0,19.0,0.0,0.0 -bump2version,-0.660171191852264,1.36514343303696,-1.14636377768418,https://salsa.debian.org/debian/bumpversion, https://github.com/c4urself/bump2version,3866.5811574074073,20,43,3,48.0,254.0,0.0,0.0 -bundler,0.575011714962617,1.53924818982463,0.101033766915076,https://salsa.debian.org/ruby-team/bundler, https://github.com/carlhuda/bundler,4417.961099537037,292,766,15,370.0,17.0,0.0,0.0 -bzflag,0.831912962618451,1.43007016887885,0.417821043007712,https://salsa.debian.org/games-team/bzflag, https://github.com/BZFlag-Dev/bzflag.git,5782.5434259259255,11,63,0,19.0,30.0,0.0,4.0 -c-ares,0.344129878059456,1.19164062844342,0.0308943147661174,https://salsa.debian.org/debian/c-ares, https://github.com/c-ares/c-ares.git,5778.617222222222,133,22,0,136.0,66.0,0.0,0.0 -caja,1.05706265403582,1.80903098756041,0.557893576640636,https://salsa.debian.org/debian-mate-team/caja, https://github.com/mate-desktop/caja.git,4392.040092592592,58,63,0,86.0,70.0,0.0,0.0 -caja-actions,0.19646613345428,2.0196315904513,-0.364011463949712,https://salsa.debian.org/debian-mate-team/caja-actions, https://github.com/mate-desktop/caja-actions,4195.368599537037,3,13,0,7.0,3.0,0.0,0.0 -caja-admin,0.340286316524602,2.91734447906536,-0.236688444902846,https://salsa.debian.org/debian-mate-team/caja-admin, https://github.com/infirit/caja-admin,2910.0051851851854,15,12,0,17.0,15.0,0.0,0.0 -caja-dropbox,1.41937986846204,4.6529613874587,0.236638033902288,https://salsa.debian.org/debian-mate-team/caja-dropbox, https://github.com/mate-desktop/caja-dropbox.git,4038.019699074074,13,26,0,25.0,33.0,0.0,0.0 -caja-extensions,0.991186000270137,3.12942899642606,0.149650662325303,https://salsa.debian.org/debian-mate-team/caja-extensions, https://github.com/mate-desktop/caja-extensions.git,3680.0453125,11,27,0,20.0,70.0,0.0,0.0 -caja-mediainfo-tab,-0.634642768575629,1.49194857331788,-1.21697512170523,https://salsa.debian.org/debian-mate-team/caja-mediainfo, https://github.com/linux-man/caja-mediainfo-tab,1186.626701388889,1,3,0,1.0,4.0,0.0,0.0 -caja-rename,0.339533668061403,2.98506598246458,-0.243378943435302,https://salsa.debian.org/debian-mate-team/caja-rename, https://github.com/tari01/caja-rename,1145.7519328703704,25,4,0,19.0,9.0,0.0,0.0 -camlp4,0.171118733427445,1.42770838037044,-0.154556831791696,https://salsa.debian.org/ocaml-team/camlp4, https://github.com/ocaml/camlp4.git,5404.400219907408,6,40,0,37.0,92.0,0.0,7.0 -Camomile,-0.17496474143281,0.504631671983068,-0.411654885699695,https://salsa.debian.org/ocaml-team/camomile, https://github.com/yoriyuki/Camomile.git,3699.9040972222224,2,16,0,11.0,42.0,0.0,0.0 -camp,-0.0635736975894291,2.24226464768133,-0.867818518898671,https://salsa.debian.org/med-team/camp, https://github.com/IRCAD/camp.git,3917.821412037037,2,16,0,8.0,2.0,0.0,0.0 -can-utils,-0.315181842714809,1.05248108419277,-0.612842689675788,https://salsa.debian.org/debian/can-utils, https://github.com/linux-can/can-utils.git,5750.457291666667,42,46,0,66.0,298.0,0.0,0.0 -cftime,-0.0539845669987312,2.13515685027106,-0.472688008644887,https://salsa.debian.org/debian-gis-team/cftime/, https://github.com/Unidata/cftime,5698.250347222222,7,40,1,25.0,111.0,0.0,0.0 -Charm,-0.44413841179052,1.22308120427527,-0.879682995740352,https://salsa.debian.org/qt-kde-team/extras/charmtimetracker, https://github.com/KDAB/Charm,5169.286909722222,10,73,1,44.0,89.0,0.0,0.0 -chaussette,-2.39731325848858,0.107928752910017,-3.33529053776444,https://github.com/circus-tent/chaussette,https://github.com/circus-tent/chaussette,1782.677476851852,1,42,0,30.0,80.0,0.0,0.0 -selinux,-0.0767985152455945,0.185810291123362,-0.173362009900664,https://salsa.debian.org/selinux-team/checkpolicy, https://github.com/SELinuxProject/selinux,5592.836342592593,179,30,0,124.0,83.0,0.0,12.0 -CheeseCutter,-0.890992243560917,1.83461474605832,-1.50149644324579,https://salsa.debian.org/multimedia-team/cheesecutter, https://github.com/theyamo/CheeseCutter,2936.816782407408,4,11,0,7.0,20.0,0.0,0.0 -cheetah3,0.258075495611624,1.20984349450528,-0.0894485619358363,https://salsa.debian.org/python-team/packages/cheetah, https://github.com/CheetahTemplate3/cheetah3.git,5732.775115740741,17,23,0,34.0,45.0,0.0,0.0 -chemical-mime,0.933446796932344,3.30646333026514,0.103786539245329,https://salsa.debian.org/debichem-team/chemical-mime-data, https://github.com/dleidert/chemical-mime,3567.674583333333,0,2,0,1.0,4.0,0.0,0.0 -CheMPS2,-1.03313848481112,-0.197981076201515,-1.31119061519628,https://salsa.debian.org/debichem-team/chemps2, https://github.com/SebWouters/CheMPS2,3010.6861342592592,0,9,0,4.0,35.0,0.0,0.0 -chromaprint,0.36003246255044,1.39366830627116,0.0316097074812693,https://salsa.debian.org/multimedia-team/chromaprint, https://github.com/acoustid/chromaprint,4607.495162037037,12,19,3,25.0,78.0,0.0,3.0 -chuck,1.06294006468148,3.5097730621169,-0.0355368922700332,https://salsa.debian.org/debian/chuck, https://github.com/ccrma/chuck,4777.866030092592,19,55,0,45.0,92.0,0.0,1.0 -CiderWebmail,-0.695259428174782,1.43904473196048,-1.4225189002861,https://salsa.debian.org/perl-team/modules/packages/ciderwebmail, https://github.com/CiderWebmail/CiderWebmail.git,5148.957199074074,1,13,0,5.0,11.0,0.0,0.0 -CiftiLib,-2.23371141055036,-0.584429452977969,-2.60098026330442,https://salsa.debian.org/med-team/ciftilib, https://github.com/Washington-University/CiftiLib,3498.0756944444443,2,7,0,5.0,8.0,0.0,0.0 -CImg,-0.3086549748001,0.468251660623174,-0.689796512746111,https://salsa.debian.org/science-team/cimg, https://github.com/GreycLab/CImg.git,3104.373148148148,1,34,0,11.0,150.0,0.0,2.0 -cinnamon-session,0.201972621088915,0.700320404303364,-0.0198993963271878,https://salsa.debian.org/cinnamon-team/cinnamon-session, https://github.com/linuxmint/cinnamon-session.git,3830.8484259259258,16,29,0,34.0,77.0,0.0,0.0 -citeproc-py,0.265073410877372,3.20040303204286,-0.537999364872632,https://salsa.debian.org/python-team/packages/citeproc-py, https://github.com/brechtm/citeproc-py,4168.381087962963,3,13,0,14.0,52.0,0.0,0.0 -cJSON,-0.637830330419933,1.1377366915515,-1.08242956726138,https://salsa.debian.org/debian/cjson, https://github.com/DaveGamble/cJSON.git,4334.9435300925925,37,63,0,76.0,105.0,0.0,0.0 -clasp,-0.300603783553555,-0.114725055374722,-0.342818063611809,https://salsa.debian.org/science-team/clasp, https://github.com/potassco/clasp,3296.926284722222,3,6,0,2.0,37.0,0.0,0.0 -classified-ads,-2.29836993425634,-0.0320591619046945,-2.77962788609786,https://github.com/operatornormal/classified-ads,https://github.com/operatornormal/classified-ads,3053.9196180555555,5,9,0,8.0,10.0,0.0,0.0 -cld2,0.604398126757303,3.03994564463887,-0.148179080166288,https://salsa.debian.org/debian/cld2, https://github.com/CLD2Owners/cld2,808.2021875,0,8,0,2.0,41.0,0.0,1.0 -clinfo,0.337264542210885,1.68911881776674,-0.140056084180369,https://salsa.debian.org/opencl-team/clinfo, https://github.com/Oblomov/clinfo,3809.378923611111,7,13,0,14.0,92.0,0.0,0.0 -ClipIt,1.49373928648145,3.43802835503106,0.607149544476265,https://salsa.debian.org/debian/clipit, https://github.com/CristianHenzel/ClipIt.git,3780.827673611111,15,24,0,21.0,246.0,0.0,0.0 -cloc,0.340719361849104,2.10591359477787,-0.184265895088211,https://salsa.debian.org/debian/cloc, https://github.com/AlDanial/cloc.git,3014.510428240741,24,101,0,108.0,550.0,0.0,2.0 -cm-super,0.509609811477283,1.56194645540575,0.0498213871364351,https://github.com/debian-tex/cm-super,https://github.com/debian-tex/cm-super,5018.368796296297,2,6,0,3.0,1.0,0.0,0.0 -cmatrix,1.28236875791916,3.31539364949091,0.380501438269664,https://salsa.debian.org/debian/cmatrix, https://github.com/abishekvashok/cmatrix.git,2359.866400462963,20,18,0,32.0,137.0,0.0,2.0 -colmap,-0.720678658268056,0.641272659768354,-1.21456089554561,https://salsa.debian.org/tar/colmap, https://github.com/colmap/colmap,2802.2067824074074,103,16,0,103.0,432.0,0.0,0.0 -comitup,-1.5220075039517,0.0892141487341842,-1.94802108454074,https://github.com/davesteele/comitup,https://github.com/davesteele/comitup,2830.005011574074,9,13,0,8.0,73.0,0.0,1.0 -cool-retro-term,-0.163806591736315,2.23383718279083,-0.670026222009651,https://salsa.debian.org/tar/cool-retro-term, https://github.com/Swordfish90/cool-retro-term,3050.803217592593,23,53,0,57.0,1087.0,0.0,26.0 -coq,1.01124400636481,1.89922326666951,0.454048170432472,https://salsa.debian.org/ocaml-team/coq, https://github.com/coq/coq,5785.277534722222,56,228,4,231.0,16.0,0.0,362.0 -CppAD,-0.303003841456757,2.07759445361593,-0.851490117040843,https://salsa.debian.org/science-team/cppad, https://github.com/coin-or/CppAD,5756.998877314815,3,15,0,12.0,46.0,0.0,0.0 -cppo,-1.45624805146255,0.684153218765423,-1.96141831417266,https://salsa.debian.org/ocaml-team/cppo, https://github.com/mjambon/cppo.git,1459.7919444444444,3,28,0,18.0,53.0,0.0,0.0 -cppreference-doc-debian,0.717486383735466,3.97515888375713,-0.311471505511598,https://github.com/p12tic/cppreference-doc-debian,https://github.com/p12tic/cppreference-doc-debian,3405.681574074074,2,6,0,5.0,7.0,0.0,0.0 -CPU-X,-0.183135151306391,2.26627747463429,-0.71776951866988,https://salsa.debian.org/debian/cpu-x, https://github.com/X0rg/CPU-X.git,2770.4909606481483,196,13,0,145.0,32.0,0.0,3.0 -cqrlib,-0.141136172388075,1.45445698339661,-0.426704083747725,https://salsa.debian.org/science-team/cqrlib, https://github.com/yayahjb/cqrlib.git,2926.9641203703704,0,1,0,1.0,3.0,0.0,0.0 -critcl,0.168505042318547,4.74258824649327,-1.27354780604049,https://salsa.debian.org/tcltk-team/critcl, https://github.com/andreas-kupries/critcl,5635.58400462963,1,15,2,12.0,40.0,0.0,0.0 -CsoundQt,-0.414726718044123,0.495747209798159,-0.610187321807381,https://salsa.debian.org/multimedia-team/csoundqt, https://github.com/CsoundQt/CsoundQt,5612.117222222222,7,49,3,16.0,87.0,0.0,7.0 -ctemplate,0.225479085493309,1.27546962151228,-0.153307681876484,https://salsa.debian.org/qt-kde-team/3rdparty/ctemplate, https://github.com/OlafvdSpek/ctemplate.git,5604.690648148148,3,11,0,8.0,43.0,0.0,0.0 -CubicSDR,0.101846162483396,2.33889934118029,-0.498684536928727,https://salsa.debian.org/debian-hamradio-team/cubicsdr, https://github.com/cjcliffe/CubicSDR.git,3287.520497685185,11,22,0,0.0,330.0,0.0,18.0 -custodia,-1.67512136212989,-0.0779781476120226,-2.22663354215109,https://salsa.debian.org/freeipa-team/custodia, https://github.com/latchset/custodia.git,2105.203113425926,10,5,0,11.0,30.0,0.0,0.0 -cvxopt,0.254425729557614,0.905978352626164,-0.0500804801056423,https://salsa.debian.org/science-team/cvxopt, https://github.com/cvxopt/cvxopt,3827.9446875,7,5,0,7.0,228.0,0.0,0.0 -cyrus-sasl,1.16770787467679,1.45679841902819,0.928724560915129,https://salsa.debian.org/debian/cyrus-sasl2, https://github.com/cyrusimap/cyrus-sasl.git,5510.163460648148,61,36,0,68.0,147.0,0.0,0.0 -dashel,-0.50706032069486,1.85560356606662,-1.05878944311749,https://salsa.debian.org/science-team/dashel.git, https://github.com/aseba-community/dashel.git,4686.226770833333,3,17,0,11.0,13.0,0.0,0.0 -dbab,-1.99036509960834,-0.461747515428254,-2.50993560525614,https://salsa.debian.org/debian/dbab, https://github.com/suntong/dbab.git,3490.721203703704,1,6,0,4.0,7.0,0.0,1.0 -dcfldd,0.243299675963987,1.51287155968922,-0.174203511671299,https://salsa.debian.org/debian/dcfldd, https://github.com/resurrecting-open-source-projects/dcfldd,1555.038217592593,1,5,0,4.0,11.0,0.0,0.0 -dcmstack,-0.217906400328808,2.38437246160482,-1.15430745193441,https://salsa.debian.org/med-team/dcmstack, https://github.com/moloney/dcmstack.git,4236.057650462963,2,11,0,8.0,50.0,0.0,0.0 -ddccontrol-db,0.537589927797963,3.04066639796367,-0.204049559847869,https://salsa.debian.org/debian/ddccontrol-db, https://github.com/ddccontrol/ddccontrol-db,5706.421354166667,83,21,0,89.0,218.0,0.0,0.0 -ddclient,2.2300979216872,3.00923862374744,1.66577565310454,https://salsa.debian.org/debian/ddclient, https://github.com/ddclient/ddclient.git,5769.115798611111,45,69,0,89.0,144.0,0.0,7.0 -debiman,-2.02050232319927,-0.369136826197118,-2.35298541633783,https://salsa.debian.org/go-team/packages/debiman, https://github.com/Debian/debiman.git,2469.621458333333,11,3,0,12.0,58.0,0.0,0.0 -deepdiff,-0.600320759967683,1.99437730222334,-1.1853796170927,https://salsa.debian.org/python-team/packages/deepdiff, https://github.com/seperman/deepdiff.git,3349.8121875,21,67,0,59.0,387.0,0.0,0.0 -dehydrated-hook-ddns-tsig,-1.14986881772355,0.323406778688977,-1.4723938377688,https://salsa.debian.org/letsencrypt-team/dehydrated-hook-ddns-tsig, https://github.com/eferdman/dehydrated-hook-ddns-tsig.git,613.6095601851852,3,7,0,5.0,13.0,0.0,0.0 -deken,-0.177399338159046,1.8798950336865,-0.612794853339411,https://salsa.debian.org/multimedia-team/pd/deken, https://github.com/pure-data/deken,3169.7776041666666,5,17,1,9.0,50.0,0.0,0.0 -derpconf,-2.16326613351292,-0.247952996571128,-2.7160545081398,https://salsa.debian.org/python-team/packages/derpconf, https://github.com/globocom/derpconf,4088.185949074074,0,19,0,10.0,21.0,0.0,0.0 -detachtty,0.728666866066461,3.79962020714491,-0.466342425704968,https://salsa.debian.org/debian/detachtty, https://github.com/cosmos72/detachtty.git,5063.038217592592,2,3,0,4.0,4.0,0.0,0.0 -detox,0.0760137718782932,1.24446097714097,-0.236573077041424,https://salsa.debian.org/debian/detox, https://github.com/dharple/detox,2472.584930555556,3,6,0,5.0,44.0,0.0,0.0 -devtodo,-0.0964373600662017,0.523133728296973,-0.466757561707856,https://salsa.debian.org/debian/devtodo, https://github.com/alecthomas/devtodo,4517.700439814815,2,2,0,1.0,5.0,0.0,0.0 -dfc,0.624948273307755,2.69232463778837,-0.106015439650167,https://salsa.debian.org/debian/dfc, https://github.com/rolinh/dfc,3944.702615740741,10,7,0,15.0,23.0,0.0,0.0 -dhcpcd-dbus,0.116885125991865,3.40899498109848,-0.793298493254465,https://salsa.debian.org/debian/dhcpcd-dbus, https://github.com/kobolabs/dhcpcd-dbus.git,4098.256655092592,2,6,0,3.0,0.0,0.0,0.0 -dhcpcd-ui,-0.012287241418141,2.56952838581004,-0.83673457548482,https://salsa.debian.org/debian/dhcpcd-ui, https://github.com/NetworkConfiguration/dhcpcd-ui,5203.8271875,4,2,0,5.0,0.0,0.0,0.0 -dhcpcd,0.681585222663153,1.53741080004815,0.19698542490146,https://salsa.debian.org/debian/dhcpcd, https://github.com/NetworkConfiguration/dhcpcd.git,5784.385694444444,64,17,0,56.0,18.0,0.0,0.0 -dhcpdump,1.44907504119257,4.14563319111402,0.387240643786827,https://github.com/bbonev/dhcpdump,https://github.com/bbonev/dhcpdump,112.99480324074074,0,3,0,2.0,3.0,0.0,0.0 -DHCPig,-0.987243531635154,1.33241621278506,-1.52050387661082,https://salsa.debian.org/pkg-security-team/dhcpig, https://github.com/kamorin/DHCPig,1930.9329398148147,0,7,0,7.0,22.0,0.0,0.0 -dhewm3,-0.290320314444538,1.91617380958565,-0.786358195850442,https://salsa.debian.org/games-team/dhewm3, https://github.com/dhewm/dhewm3.git,4378.332974537037,36,21,0,41.0,120.0,0.0,7.0 -diffuse,0.656999192761575,3.18252659255885,-0.125842285938798,https://salsa.debian.org/debian/diffuse, https://github.com/MightyCreak/diffuse.git,2779.093622685185,15,12,0,21.0,61.0,0.0,0.0 -dill,-0.0692957122056967,2.35942112767302,-0.50148903624562,https://salsa.debian.org/python-team/packages/dill, https://github.com/uqfoundation/dill,5216.862048611111,22,27,2,41.0,513.0,0.0,0.0 -direwolf,-0.143021690088079,1.37074306350961,-0.620027965556624,https://salsa.debian.org/debian-hamradio-team/direwolf, https://github.com/wb2osz/direwolf,2351.941261574074,7,18,1,0.0,251.0,0.0,1.0 -django-auth-ldap,-0.735111360473221,0.589742958950815,-1.16200594701723,https://salsa.debian.org/python-team/packages/django-auth-ldap, https://github.com/django-auth-ldap/django-auth-ldap.git,5095.451655092593,18,22,0,24.0,215.0,0.0,0.0 -django-classy-tags,-0.74018416345453,0.984861954708653,-1.39805318666733,https://salsa.debian.org/python-team/packages/django-classy-tags, https://github.com/django-cms/django-classy-tags,4877.167789351852,15,16,2,22.0,70.0,0.0,0.0 -django-countries,-0.534708448628788,1.3547470964221,-1.2788572174765,https://salsa.debian.org/python-team/packages/django-countries, https://github.com/SmileyChris/django-countries,4972.680625,16,45,0,50.0,303.0,0.0,0.0 -django-fsm,-1.24559240491123,1.76848237769161,-1.95084265080011,https://salsa.debian.org/python-team/packages/django-fsm, https://github.com/viewflow/django-fsm,4622.176076388889,28,45,0,58.0,257.0,0.0,0.0 -django-haystack,-0.366884596648278,1.45152548418967,-0.93180960897156,https://salsa.debian.org/python-team/packages/django-haystack, https://github.com/django-haystack/django-haystack,5440.265138888889,100,135,5,183.0,156.0,0.0,0.0 -pkg-django-hijack,-2.16222701756782,0.0257030994861546,-2.86575859572282,https://github.com/Linaro/pkg-django-hijack.git,https://github.com/Linaro/pkg-django-hijack.git,1013.9897106481482,0,2,0,1.0,0.0,0.0,0.0 -django-housekeeping,-0.869454572028372,1.94809022404127,-1.61534625748549,https://salsa.debian.org/python-team/packages/django-housekeeping, https://github.com/spanezz/django-housekeeping.git,2311.206608796296,0,4,0,3.0,4.0,0.0,0.0 -django-ipware,-0.186701026958641,3.47752777867521,-1.13641403705194,https://salsa.debian.org/python-team/packages/django-ipware, https://github.com/un33k/django-ipware,3876.755532407408,23,8,0,26.0,86.0,0.0,1.0 -django-modeltranslation,-1.51333832692817,0.633284428887195,-2.21363375908789,https://salsa.debian.org/python-team/packages/django-modeltranslation, https://github.com/deschler/django-modeltranslation.git,5393.6289004629625,39,78,0,93.0,559.0,0.0,1.0 -django-polymorphic,-0.986272527855104,0.726107765686916,-1.62148578748082,https://salsa.debian.org/python-team/packages/django-polymorphic, https://github.com/django-polymorphic/django-polymorphic,5078.609699074074,41,80,1,100.0,253.0,0.0,0.0 -django-prometheus,-2.26031605728522,-0.438134197353793,-2.74225273043366,https://salsa.debian.org/python-team/packages/django-prometheus, https://github.com/korfuri/django-prometheus,3173.3548148148147,32,30,0,50.0,294.0,0.0,0.0 -django-python3-ldap,-1.22069524101443,0.981610841910008,-1.71041484839619,https://salsa.debian.org/python-team/packages/django-python3-ldap, https://github.com/etianen/django-python3-ldap,3090.708425925926,4,28,0,25.0,204.0,0.0,0.0 -django-sitetree,-1.19701098610627,0.380527052172248,-1.67880198000405,https://salsa.debian.org/python-team/packages/django-sitetree, https://github.com/idlesign/django-sitetree,4549.666712962963,6,42,0,36.0,185.0,0.0,0.0 -django-sortedm2m,-2.34571982424945,-0.0825384392000747,-2.78657171549833,https://salsa.debian.org/python-team/packages/django-sortedm2m, https://github.com/jazzband/django-sortedm2m.git,4988.086828703704,13,51,0,48.0,177.0,0.0,0.0 -dma,0.925589785708236,2.13111206922311,0.261836560891848,https://salsa.debian.org/debian/dma, https://github.com/corecode/dma.git,4350.283657407407,26,18,0,30.0,98.0,0.0,0.0 -dmrconfig,-4.41802982189972,-0.910639434214132,-5.37370027542711,https://salsa.debian.org/debian-hamradio-team/dmrconfig, https://github.com/OpenRTX/dmrconfig.git,1907.596412037037,5,9,0,11.0,74.0,0.0,2.0 -dnspython,1.12750584981084,2.67426057070666,0.415853170864823,https://salsa.debian.org/python-team/packages/dnspython, https://github.com/rthalley/dnspython.git,5665.3041087962965,41,93,0,107.0,427.0,0.0,2.0 -dnsruby,-0.234176424021243,1.53908289021424,-0.678414813136556,https://salsa.debian.org/ruby-team/ruby-dnsruby, https://github.com/alexdalitz/dnsruby.git,5594.131446759259,4,31,0,23.0,77.0,0.0,3.0 -Doris,-3.25146304156637,-2.75605148438427,-3.33298159978531,https://salsa.debian.org/debian-gis-team/doris, https://github.com/TUDelftGeodesy/Doris,371.94388888888886,0,6,0,3.0,31.0,0.0,0.0 -dosage,-0.786662315573154,0.161458147523314,-1.13139321583021,https://salsa.debian.org/debian/dosage, https://github.com/webcomics/dosage,4186.696018518519,22,40,1,51.0,112.0,0.0,0.0 -dosfstools,0.957669982874941,1.44642545416954,0.617023777334025,https://salsa.debian.org/debian/dosfstools, https://github.com/dosfstools/dosfstools.git,3911.408310185185,49,15,0,39.0,137.0,0.0,0.0 -dpmb,-0.669189830637777,1.51487679633521,-1.16595597871383,https://github.com/dpmb/dpmb,https://github.com/dpmb/dpmb,3025.1458101851854,5,11,1,7.0,14.0,0.0,0.0 -dq,-0.183429315399927,2.1580450192287,-0.749959267578792,https://salsa.debian.org/debian/dq, https://github.com/janmojzis/dq.git,2922.0256712962964,0,7,0,1.0,3.0,0.0,0.0 -drf-extensions,-1.57110742706504,0.582669345959193,-2.23342657631871,https://salsa.debian.org/python-team/packages/drf-extensions, https://github.com/chibisov/drf-extensions.git,3758.308101851852,37,33,0,52.0,293.0,0.0,0.0 -drf-generators,-1.07918415610289,1.91085359378585,-1.80155076486193,https://salsa.debian.org/python-team/packages/drf-generators, https://github.com/brobin/drf-generators,1981.457962962963,4,10,0,9.0,39.0,0.0,0.0 -driftnet,-0.302144137704238,0.458279698148053,-0.616098152418851,https://github.com/deiv/driftnet,https://github.com/deiv/driftnet,3936.065972222222,4,6,0,5.0,58.0,0.0,0.0 -drmaa-python,-0.922986928228606,0.89435172791439,-1.53889233573297,https://salsa.debian.org/med-team/drmaa, https://github.com/pygridtools/drmaa-python,3564.105462962963,9,12,0,13.0,58.0,0.0,4.0 -drmips,-0.919047649267425,1.66859066241566,-1.64121232677346,https://github.com/brunonova/drmips/tree/debian,https://github.com/brunonova/drmips,3165.66125,3,3,0,4.0,0.0,0.0,0.0 -dropbear,0.48121755141985,0.975457664318655,0.154035465817107,https://salsa.debian.org/debian/dropbear, https://github.com/mkj/dropbear,5772.037037037037,39,54,0,67.0,213.0,0.0,0.0 -dropwatch,-1.19912626039836,1.52507087369756,-1.82854069407043,https://salsa.debian.org/debian/dropwatch, https://github.com/nhorman/dropwatch,5326.14962962963,3,24,0,17.0,70.0,0.0,0.0 -dunst,0.366998316293135,1.16378226146977,0.0070676604483869,https://salsa.debian.org/debian/dunst, https://github.com/dunst-project/dunst,4447.004560185185,43,111,1,126.0,562.0,0.0,26.0 -DustRacing2D,0.173033014337768,3.12190825679454,-0.64114853157353,https://salsa.debian.org/pino/dustrac, https://github.com/juzzlin/DustRacing2D.git,4428.422685185185,8,9,0,11.0,36.0,0.0,1.0 -e2guardian,-0.496204603349068,0.855927944909435,-0.884815036633468,https://salsa.debian.org/debian-edu-pkg-team/e2guardian, https://github.com/e2guardian/e2guardian,3743.851041666667,10,60,4,20.0,68.0,0.0,4.0 -editorconfig-core-c,1.58872816623417,4.60751801532545,0.480343298429884,https://salsa.debian.org/debian/editorconfig-core, https://github.com/editorconfig/editorconfig-core-c.git,4345.140486111111,23,19,0,32.0,52.0,0.0,2.0 -editra,-0.263335934885057,1.18599592584657,-0.739439848910042,https://github.com/mogaal/editra,https://github.com/mogaal/editra,1762.9254398148148,0,2,0,1.0,2.0,0.0,0.0 -efivar,1.23954728474232,3.14090846486121,0.436649078146059,https://salsa.debian.org/efi-team/efivar, https://github.com/rhinstaller/efivar.git,3854.906863425926,62,9,0,62.0,181.0,0.0,0.0 -eggdrop-debian,0.690268776996146,1.69667660089826,0.0747126473210248,https://github.com/yastupin/eggdrop-debian,https://github.com/yastupin/eggdrop-debian,1023.9554166666668,0,1,0,1.0,2.0,0.0,0.0 -egl-wayland,0.0316178932027656,1.81596484490241,-0.353852698854025,https://salsa.debian.org/debian/egl-wayland, https://github.com/NVIDIA/egl-wayland.git,2464.5272800925927,13,9,0,14.0,170.0,0.0,0.0 -eiciel,-0.391393491150218,0.284553120568024,-0.622503649693577,https://salsa.debian.org/debian/eiciel, https://github.com/rofirrim/eiciel,4391.8161689814815,58,10,0,42.0,13.0,0.0,0.0 -eiskaltdcpp-debian,0.450565010716283,2.09734901934217,-0.288679308824885,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,3513.924236111111,0,2,0,2.0,3.0,0.0,0.0 -eja,-2.79252373942421,1.01540476237612,-3.99129208423818,https://github.com/ubaldus/eja,https://github.com/ubaldus/eja,3036.769629629629,0,5,0,3.0,3.0,0.0,0.0 -elastalert,-2.74905221526943,-1.03824771626253,-3.25310775303483,https://salsa.debian.org/debian/elastalert, https://github.com/Yelp/elastalert.git,2822.080949074074,46,241,0,181.0,234.0,0.0,4.0 -emacs-git-messenger,-0.739411095707097,1.34402556647165,-1.17594534115372,https://salsa.debian.org/emacsen-team/emacs-git-messenger, https://github.com/syohex/emacs-git-messenger.git,3062.6,2,8,0,7.0,23.0,0.0,0.0 -git-modes,-0.509569109537016,1.88187470906829,-0.945070825244811,https://salsa.debian.org/emacsen-team/emacs-git-modes, https://github.com/magit/git-modes.git,4898.459803240741,8,34,0,39.0,64.0,0.0,0.0 -emacs-jedi,-0.592556432624472,1.66859689627327,-1.06268041591691,https://salsa.debian.org/emacsen-team/emacs-jedi, https://github.com/tkf/emacs-jedi.git,3462.841145833333,5,28,0,30.0,288.0,0.0,2.0 -emacspeak,-0.3098123338625,0.154967146047551,-0.60639494426453,https://salsa.debian.org/a11y-team/emacspeak, https://github.com/tvraman/emacspeak.git,5784.515497685185,1,16,0,7.0,53.0,0.0,0.0 -enchant,0.467123270126367,2.61384891691575,-0.0641062096631408,https://salsa.debian.org/gnome-team/enchant-2/, https://github.com/AbiWord/enchant.git,5773.218333333333,7,27,0,26.0,105.0,0.0,1.0 -engrampa,0.336470722537852,1.20098013726039,-0.0018104828228633,https://salsa.debian.org/debian-mate-team/engrampa, https://github.com/mate-desktop/engrampa.git,4345.101631944444,27,39,0,38.0,189.0,0.0,0.0 -erlware_commons,-1.87440958189652,0.878602384616867,-2.6652549431966,https://salsa.debian.org/erlang-team/packages/erlang-erlware-commons, https://github.com/erlware/erlware_commons.git,4657.953206018518,8,37,0,28.0,72.0,0.0,0.0 -folsom,-1.80038604201176,0.51813893541771,-2.33186478870304,https://salsa.debian.org/erlang-team/packages/erlang-folsom, https://github.com/boundary/folsom.git,1470.0027777777775,3,37,0,30.0,72.0,0.0,0.0 -jiffy,0.16685012027072,2.42553819307624,-0.375839419075433,https://salsa.debian.org/erlang-team/packages/erlang-jiffy, https://github.com/davisp/jiffy.git,3978.804988425926,23,14,0,27.0,227.0,0.0,0.0 -erlang-jose,-0.0923635531212964,2.33278579929421,-0.570549312467372,https://salsa.debian.org/ejabberd-packaging-team/erlang-jose, https://github.com/potatosalad/erlang-jose.git,3054.6266782407406,10,30,0,29.0,125.0,0.0,0.0 -lager,0.133025795806357,2.17059930408403,-0.38214359591097,https://salsa.debian.org/ejabberd-packaging-team/erlang-lager, https://github.com/erlang-lager/lager.git,4513.831643518519,17,130,0,101.0,372.0,0.0,1.0 -meck,-1.78476224853465,-0.628802298383138,-2.05903919755242,https://salsa.debian.org/erlang-team/packages/erlang-meck, https://github.com/eproxus/meck.git,4901.985833333333,34,45,0,52.0,158.0,0.0,9.0 -fast_tls,-0.157152572959326,1.10952151950504,-0.410660716524691,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-tls, https://github.com/processone/fast_tls.git,3904.2279282407408,5,26,0,18.0,52.0,0.0,0.0 -eredis,-0.985788696555104,1.21206138643424,-1.43124443697926,https://salsa.debian.org/ejabberd-packaging-team/erlang-redis-client, https://github.com/wooga/eredis.git,2851.9773842592595,2,48,0,34.0,122.0,0.0,0.0 -eshell-git-prompt,-0.960941172080987,1.69591949338281,-1.54240206821766,https://salsa.debian.org/emacsen-team/eshell-git-prompt, https://github.com/xuchunyang/eshell-git-prompt.git,2545.743356481481,1,11,0,6.0,11.0,0.0,0.0 -espeakup,-0.506078169625807,0.017914626037391,-0.74937633111245,https://salsa.debian.org/a11y-team/espeakup, https://github.com/williamh/espeakup,4725.758113425926,2,6,0,4.0,0.0,0.0,0.0 -ettercap,0.351699731807671,0.960477024162828,0.0054542920172974,https://salsa.debian.org/pkg-security-team/ettercap, https://github.com/Ettercap/ettercap.git,4364.942071759259,13,80,0,48.0,36.0,0.0,12.0 -evilwm,0.105835074907099,1.77091415019833,-0.588761379539172,https://github.com/mati75/evilwm.git,https://github.com/mati75/evilwm.git,3558.3624189814814,0,7,0,4.0,4.0,0.0,0.0 -evqueue-core,-3.80089043066106,0.0055401803756153,-5.03108949833089,https://github.com/coldsource/evqueue-core,https://github.com/coldsource/evqueue-core,3176.9503935185185,0,23,0,4.0,7.0,0.0,1.0 -exabgp,-0.566149632308673,0.414366627765843,-0.952971500024496,https://github.com/Exa-Networks/exabgp/tree/debian/sid,https://github.com/Exa-Networks/exabgp,5211.732222222222,28,135,5,103.0,93.0,0.0,40.0 -f3,0.267941562478646,2.65348696062886,-0.29233767654254,https://salsa.debian.org/debian/f3, https://github.com/AltraMayor/f3.git,4281.923391203703,11,29,0,36.0,202.0,0.0,0.0 -fabric,0.2361201884431,1.12244522648531,-0.239560475635602,https://salsa.debian.org/python-team/packages/fabric, https://github.com/fabric/fabric.git,5703.025219907408,79,121,0,17.0,660.0,0.0,0.0 -fastkml,-1.15123918868783,1.63854293239259,-1.93659466695944,https://salsa.debian.org/python-team/packages/fastkml, https://github.com/cleder/fastkml,4190.952314814815,13,36,2,36.0,109.0,0.0,0.0 -fceux,3.13669420554879,8.47034613818339,1.47580172912887,https://salsa.debian.org/games-team/fceux, https://github.com/TASEmulators/fceux.git,5697.892361111111,20,74,0,39.0,179.0,0.0,0.0 -fence-agents,-0.0526755775352836,0.730696078493805,-0.341365408236932,https://salsa.debian.org/ha-team/fence-agents, https://github.com/ClusterLabs/fence-agents,5742.975972222223,67,106,0,112.0,160.0,0.0,0.0 -pkg-ferm,1.17557917057853,1.91549490133415,0.694476014070476,https://github.com/formorer/pkg-ferm,https://github.com/formorer/pkg-ferm,1766.192164351852,3,2,0,3.0,7.0,0.0,0.0 -ffindex,-0.384194745848032,0.784874680619157,-0.725631771709728,https://salsa.debian.org/med-team/ffindex, https://github.com/ahcm/ffindex.git,4107.537777777778,1,9,0,2.0,4.0,0.0,1.0 -ffmpegthumbnailer,0.621833900023643,1.70260395310542,0.129933472915708,https://salsa.debian.org/multimedia-team/ffmpegthumbnailer, https://github.com/dirkvdb/ffmpegthumbnailer,5750.985289351852,2,26,0,21.0,32.0,0.0,0.0 -fftw3,0.560695784836072,1.05702599503968,0.264284079595815,https://salsa.debian.org/science-team/fftw3, https://github.com/FFTW/fftw3.git,5716.0486458333335,17,23,0,31.0,333.0,0.0,2.0 -FileTea,-1.48802911677377,-0.597610494268726,-1.68694265471388,https://salsa.debian.org/berto/filetea, https://github.com/elima/FileTea,2414.458611111111,4,1,0,2.0,17.0,0.0,0.0 -filtergen,-1.49005930206133,-0.252717041402296,-2.01618164947352,https://github.com/jaqx0r/filtergen/tree/debian,https://github.com/jaqx0r/filtergen,4988.9503125,3,6,0,2.0,5.0,0.0,0.0 -findimagedupes,0.157139725705101,1.01413071404843,-0.242838384248759,https://salsa.debian.org/science-team/findimagedupes, https://github.com/jhnc/findimagedupes.git,5609.298483796297,0,1,0,0.0,16.0,0.0,0.0 -Fiona,-0.45182954892962,0.0316996688928317,-0.548290247008744,https://salsa.debian.org/debian-gis-team/fiona, https://github.com/Toblerity/Fiona.git,2732.0256712962964,42,33,0,64.0,34.0,0.0,1.0 -firehol,0.233747372311373,0.6567606394306,-0.0568826658718426,https://salsa.debian.org/debian/firehol, https://github.com/firehol/firehol,5475.348032407407,8,33,1,24.0,278.0,0.0,16.0 -flask-mongoengine,-1.28471432731324,1.67557096243642,-2.06784858010474,https://salsa.debian.org/python-team/packages/flask-mongoengine, https://github.com/mongoengine/flask-mongoengine,4513.283807870371,18,81,5,71.0,356.0,0.0,0.0 -flask-openid,0.228453383029625,2.65976098851716,-0.321308488807341,https://salsa.debian.org/python-team/packages/flask-openid, https://github.com/mitsuhiko/flask-openid.git,4219.235648148148,6,12,0,12.0,96.0,0.0,0.0 -flask-restful,0.347911319970928,1.67126298027459,-0.0854278524850452,https://salsa.debian.org/python-team/packages/flask-restful, https://github.com/flask-restful/flask-restful,3867.9860763888887,52,124,0,135.0,573.0,0.0,0.0 -flatbuffers,-1.16044505695917,0.911266021231737,-1.58198853197473,https://salsa.debian.org/debian/flatbuffers, https://github.com/google/flatbuffers.git,3592.7395138888887,597,121,0,431.0,19.0,0.0,6.0 -flim,0.76669612853376,1.95910735043277,0.161178758307351,https://salsa.debian.org/debian/flim, https://github.com/wanderlust/flim,5370.129212962963,4,13,0,8.0,10.0,0.0,0.0 -arb,0.282849253055976,2.10640155716289,-0.265290145933072,https://salsa.debian.org/math-team/flint-arb, https://github.com/fredrik-johansson/arb,4241.291886574074,4,42,0,34.0,106.0,0.0,1.0 -FlintQS,0.870532560714621,4.21844088759712,-0.122986381463619,https://salsa.debian.org/science-team/flintqs, https://github.com/sagemath/FlintQS,2671.360636574074,0,2,0,2.0,2.0,0.0,0.0 -flite,0.374408141316315,0.81572235949216,0.14041837283627,https://salsa.debian.org/a11y-team/flite, https://github.com/festvox/flite.git,1668.0555208333333,9,16,0,21.0,106.0,0.0,0.0 -fmit,1.02888922507472,2.99656825420793,0.134553772804875,https://salsa.debian.org/debian/fmit, https://github.com/gillesdegottex/fmit.git,2966.091516203704,22,10,0,21.0,45.0,0.0,0.0 -fntsample,-1.2332590184019,-0.596975610055257,-1.35617600598223,https://salsa.debian.org/debian/fntsample, https://github.com/eugmes/fntsample.git,4121.078946759259,2,4,0,4.0,10.0,0.0,0.0 -master,0.501895495470448,1.598726148213,0.0085779358785148,https://salsa.debian.org/fonts-team/font-manager, https://github.com/FontManager/master,5185.326875,55,11,1,48.0,170.0,0.0,0.0 -Hack,0.346570504509775,2.20819204870402,-0.0730912242677469,https://salsa.debian.org/fonts-team/fonts-hack, https://github.com/source-foundry/Hack,1976.7616666666668,7,26,5,23.0,227.0,0.0,0.0 -amiri,0.044894207599157,0.920180884246057,-0.130257972073322,https://salsa.debian.org/fonts-team/fonts-hosny-amiri, https://github.com/alif-type/amiri.git,5474.357893518519,5,10,0,8.0,97.0,0.0,0.0 -inter,0.0129835005388798,2.78580269899559,-0.656555460285987,https://salsa.debian.org/fonts-team/fonts-inter, https://github.com/rsms/inter,2281.2912847222224,23,7,3,20.0,124.0,0.0,0.0 -frogatto,0.231694633466328,1.76546888112621,-0.392777994560545,https://salsa.debian.org/games-team/frogatto, https://github.com/frogatto/frogatto.git,5646.032511574074,6,89,0,29.0,83.0,0.0,17.0 -Frozen-Flask,-1.50524768055034,0.568186183807635,-1.96775331364021,https://github.com/SimonSapin/Frozen-Flask/,https://github.com/SimonSapin/Frozen-Flask,4711.306712962963,2,29,0,26.0,105.0,0.0,1.0 -fsvs,-0.0088293975748938,2.35669331826595,-1.04677265942023,https://salsa.debian.org/debian/fsvs, https://github.com/phmarek/fsvs.git,2690.684097222222,8,4,0,3.0,6.0,0.0,0.0 -fswatch,0.0801114642346626,1.67664914848401,-0.571025077188002,https://salsa.debian.org/debian/fswatch, https://github.com/emcrisostomo/fswatch.git,4816.560706018518,6,27,0,22.0,362.0,0.0,6.0 -ftgl,1.21435994058272,2.19643555055912,0.619951290464078,https://salsa.debian.org/ftgl-team/ftgl, https://github.com/frankheckenbach/ftgl,5371.300497685185,3,17,0,10.0,18.0,0.0,0.0 -funcoeszz,1.01417730099499,3.12023393144998,0.102845799606955,https://salsa.debian.org/debian/funcoeszz, https://github.com//funcoeszz/funcoeszz,5372.299097222222,4,52,0,0.0,0.0,0.0,6.0 -fusioninventory-agent,0.412742159377425,1.27566924157171,0.0042753937604711,https://salsa.debian.org/perl-team/modules/packages/fusioninventory-agent, https://github.com/fusioninventory/fusioninventory-agent.git,5660.849953703703,88,75,0,69.0,277.0,0.0,0.0 -fuzzylite,0.0236301475067224,2.05851568499672,-0.649107545131671,https://salsa.debian.org/debian/fuzzylite, https://github.com/fuzzylite/fuzzylite,3931.516064814815,3,20,0,8.0,30.0,0.0,0.0 -fuzzywuzzy,-0.439985822168461,1.32062263274672,-0.857053766838676,https://salsa.debian.org/python-team/packages/fuzzywuzzy, https://github.com/seatgeek/fuzzywuzzy,3716.0564236111113,14,64,0,61.0,347.0,0.0,2.0 -fvwm2-debian,0.30915260290702,0.469889524583975,0.181176490360975,https://github.com/somiaj/fvwm2-debian,https://github.com/somiaj/fvwm2-debian,699.9356018518519,1,3,0,1.0,0.0,0.0,0.0 -sight,-0.173178577808159,1.26196025038516,-0.82118654463665,https://salsa.debian.org/med-team/fw4spl, https://github.com/IRCAD/sight,5192.848726851852,18,189,0,40.0,13.0,0.0,0.0 -fwupdate,-0.0344756086035051,2.19669315710317,-0.471064343713256,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365740743,21,5,0,15.0,40.0,0.0,3.0 -fzy,-0.37620883355709,1.93997150653768,-0.864045944434253,https://salsa.debian.org/debian/fzy, https://github.com/jhawthorn/fzy,2752.1003125,14,25,0,30.0,165.0,0.0,3.0 -g810-led,-0.884187428718168,0.579034937278941,-1.15033330711202,https://salsa.debian.org/debian/g810-led, https://github.com/MatMoul/g810-led.git,2361.9422453703705,17,31,0,31.0,369.0,0.0,2.0 -monitor-core,1.94185942894961,3.11018706796909,1.22721752482509,https://salsa.debian.org/debian/ganglia, https://github.com/ganglia/monitor-core.git,5029.40037037037,5,128,0,60.0,190.0,0.0,20.0 -ganglia-web,2.98676770007383,5.9425493751254,1.6513889403306,https://salsa.debian.org/debian/ganglia-web, https://github.com/ganglia/ganglia-web,3989.746516203704,9,91,0,54.0,144.0,0.0,10.0 -garglk,0.349460027567795,1.57547869667954,-0.215202136183368,https://salsa.debian.org/games-team/gargoyle-free, https://github.com/garglk/garglk.git,5517.475613425926,6,35,0,30.0,137.0,0.0,4.0 -gaupol,0.450726842944742,1.41943890830119,0.0001075777337481,https://salsa.debian.org/python-team/packages/gaupol, https://github.com/otsaloma/gaupol,5574.441469907408,17,10,0,13.0,96.0,0.0,0.0 -geographiclib,-0.270868261674655,0.421004430509194,-0.518838067735011,https://salsa.debian.org/debian-gis-team/geographiclib, https://github.com/geographiclib/geographiclib.git,5589.128333333333,0,17,0,9.0,0.0,0.0,0.0 -geoipupdate,0.0025717487788364,1.65000549432166,-0.358124043038636,https://salsa.debian.org/debian/geoipupdate, https://github.com/maxmind/geoipupdate,3751.811261574074,25,42,0,34.0,57.0,0.0,0.0 -geolinks,-0.181262940992832,2.45502440287708,-0.744547490613071,https://salsa.debian.org/debian-gis-team/geolinks, https://github.com/geopython/geolinks.git,3405.864236111111,2,3,0,4.0,8.0,0.0,0.0 -geophar,-0.9414930320306,-0.217719553563348,-1.13124696774661,https://salsa.debian.org/georgesk/geophar, https://github.com/wxgeo/geophar,4439.426018518519,0,6,0,3.0,5.0,0.0,0.0 -geopy,-0.198770964070923,1.33128282112022,-0.531297788298444,https://salsa.debian.org/python-team/packages/geopy, https://github.com/geopy/geopy,5485.118125,94,49,3,101.0,381.0,0.0,0.0 -gerbv,0.706574178653507,1.7421159159697,0.174017888639695,https://salsa.debian.org/electronics-team/gerbv, https://github.com/gerbv/gerbv.git,5724.390185185185,29,11,0,24.0,49.0,0.0,0.0 -ghp-import,-0.492974177402071,2.51337960666601,-1.27412233096087,https://salsa.debian.org/python-team/packages/ghp-import, https://github.com/c-w/ghp-import.git,4494.870509259259,15,11,0,21.0,78.0,0.0,0.0 -git-big-picture,0.351838790739633,3.3166834133231,-0.485341298936446,https://salsa.debian.org/python-team/packages/git-big-picture, https://github.com/git-big-picture/git-big-picture.git,5024.306909722222,14,10,0,14.0,46.0,0.0,0.0 -git-ftp,-0.178802712121011,1.74356040176882,-0.697392620849105,https://salsa.debian.org/debian/git-ftp, https://github.com/git-ftp/git-ftp,4532.203599537037,24,92,3,82.0,432.0,0.0,0.0 -gitinspector,-0.540048109578866,0.210511755956547,-0.701223929521075,https://salsa.debian.org/python-team/packages/gitinspector, https://github.com/ejwa/gitinspector,3089.988923611111,14,6,3,18.0,213.0,0.0,0.0 -gitsome,-1.58676027107593,-1.19301285444769,-1.66240230042816,https://salsa.debian.org/debian/gitsome, https://github.com/donnemartin/gitsome,1294.222638888889,14,16,0,27.0,199.0,0.0,0.0 -givaro,0.511786564623252,1.62586507469076,-0.0135088130914325,https://salsa.debian.org/math-team/givaro, https://github.com/linbox-team/givaro,5710.734074074074,9,44,0,21.0,43.0,0.0,0.0 -lieer,-1.75202814614574,0.654977795002581,-2.40631413024426,https://salsa.debian.org/debian/lieer, https://github.com/gauteh/lieer,2464.2436689814813,23,14,0,29.0,147.0,0.0,7.0 -gmrender-resurrect,-0.688555560408279,0.43888123573676,-0.988624359104825,https://salsa.debian.org/debian/gmrender-resurrect, https://github.com/hzeller/gmrender-resurrect.git,3933.240740740741,9,14,0,17.0,244.0,0.0,41.0 -gnome-gmail,0.115256384051709,1.23775141318434,-0.313706832831908,https://github.com/davesteele/gnome-gmail/tree/debian,https://github.com/davesteele/gnome-gmail,5107.056574074074,6,30,0,8.0,52.0,0.0,0.0 -gnome-hwp-support,-0.152703941450815,2.63301641635732,-0.863606387086791,https://salsa.debian.org/l10n-korean-team/gnome-hwp-support, https://github.com/changwoo/gnome-hwp-support.git,4275.414629629629,1,2,0,1.0,2.0,0.0,0.0 -gnome-keysign,-0.631973154339824,0.867856441279995,-0.908545604568914,https://salsa.debian.org/debian/gnome-keysign, https://github.com/gnome-keysign/gnome-keysign,3520.800335648148,42,26,0,52.0,24.0,0.0,0.0 -gnome-mastermind,0.189663114172519,2.12499155712816,-0.40647331653126,https://salsa.debian.org/debian/gnome-mastermind, https://github.com/fargiolas/gnome-mastermind,5420.939548611111,1,6,0,3.0,2.0,0.0,0.0 -googler,-0.368643140239746,0.628358092372874,-0.554272536420051,https://salsa.debian.org/debian/googler, https://github.com/jarun/googler.git,4778.910706018519,15,26,0,29.0,68.0,0.0,6.0 -GPaste,-0.306042916386565,-0.251366894090626,-0.323026045119372,https://salsa.debian.org/debian/gpaste, https://github.com/Keruspe/GPaste,4709.643009259259,65,21,2,60.0,352.0,0.0,0.0 -gpick,0.328724414189861,1.92683494766077,-0.166165345925134,https://salsa.debian.org/elias/gpick, https://github.com/thezbyg/gpick.git,5237.0590625,5,6,0,8.0,64.0,0.0,1.0 -grabserial,-0.534268648960191,2.39024691399638,-1.29672446472184,https://salsa.debian.org/debian/grabserial, https://github.com/tbird20d/grabserial,3634.0012152777776,11,19,0,17.0,53.0,0.0,1.0 -grantlee,0.885091712187427,2.98199434735736,0.150645430522859,https://salsa.debian.org/qt-kde-team/extras/grantlee, https://github.com/steveire/grantlee.git,4939.975648148148,29,11,0,23.0,19.0,0.0,1.0 -graphite,0.373380772575111,1.17793952421994,0.0796158428735937,https://salsa.debian.org/libreoffice-team/graphite2, https://github.com/silnrsi/graphite.git,4797.779131944444,6,20,0,12.0,63.0,0.0,0.0 -gravit,0.604558095656893,3.20290781714388,-0.299169242521338,https://salsa.debian.org/debian-astro-team/gravit, https://github.com/gak/gravit,4467.977326388889,1,15,2,3.0,13.0,0.0,0.0 -grcompiler,-0.203373151447185,1.65148057513329,-0.960443545697963,https://salsa.debian.org/fonts-team/grcompiler, https://github.com/silnrsi/grcompiler.git,4870.000092592592,3,20,0,10.0,14.0,0.0,0.0 -gsa,0.417412477041899,2.96196815616776,-0.465679759760679,https://salsa.debian.org/pkg-security-team/greenbone-security-assistant, https://github.com/greenbone/gsa,5193.735740740741,22,54,0,37.0,36.0,0.0,0.0 -grepcidr-pkg-debian,-0.0005121379541858,1.82310742256517,-0.469333182443001,https://github.com/rfinnie/grepcidr-pkg-debian,https://github.com/rfinnie/grepcidr-pkg-debian,3175.8474652777777,0,1,0,1.0,0.0,0.0,0.0 -grok,0.755503612433081,3.25495771392926,-0.294994865709912,https://salsa.debian.org/debian/grok, https://github.com/jordansissel/grok,2851.822326388889,0,12,0,5.0,47.0,0.0,0.0 -gromit-mpx,-0.136839263207372,2.39610826055996,-0.723685631624861,https://salsa.debian.org/debian/gromit-mpx, https://github.com/bk138/gromit-mpx.git,5287.537638888889,14,15,0,22.0,52.0,0.0,0.0 -grun,3.43147374519148,6.99143969921208,1.95124560287428,https://salsa.debian.org/debian/grun, https://github.com/lrgc/grun.git,1780.0517708333334,1,4,0,2.0,2.0,0.0,0.0 -textfsm,-1.95927685598995,0.499811995849378,-2.46717998261428,https://salsa.debian.org/python-team/packages/gtextfsm, https://github.com/google/textfsm.git,4331.1065625,11,7,0,12.0,114.0,0.0,11.0 -gtimelog,-0.313150301149958,0.419592854220189,-0.646939699895798,https://salsa.debian.org/python-team/packages/gtimelog, https://github.com/gtimelog/gtimelog,5699.091412037037,18,41,2,31.0,102.0,0.0,0.0 -gtkhash,-0.04705497683068,0.381309166862997,-0.19595314429291,https://salsa.debian.org/debian/gtkhash, https://github.com/tristanheaven/gtkhash,4558.980844907407,79,10,0,62.0,43.0,0.0,0.0 -guessit,0.50924339420609,2.43396963084859,-0.279203918651371,https://salsa.debian.org/python-team/packages/guessit, https://github.com/guessit-io/guessit.git,2993.2388078703702,14,29,0,17.0,232.0,0.0,0.0 -guidata,0.22694372404459,2.76607965507246,-0.444547265017286,https://salsa.debian.org/science-team/guidata, https://github.com/Codra-Ingenierie-Informatique/guidata,4839.075289351852,0,24,0,9.0,22.0,0.0,0.0 -guile-json,-0.447679014039198,2.31759801122916,-1.12840490687817,https://salsa.debian.org/debian/guile-json, https://github.com/aconchillo/guile-json.git,3764.830532407407,3,17,0,14.0,43.0,0.0,0.0 -harminv,-0.263332768167581,0.795999387871074,-0.562157638785097,https://salsa.debian.org/alteholz/harminv, https://github.com/NanoComp/harminv,2906.473171296296,1,5,0,4.0,15.0,0.0,0.0 -harvid,0.17245635503244,1.30378830652142,-0.173411649919732,https://salsa.debian.org/multimedia-team/harvid, https://github.com/x42/harvid.git,3621.9749189814816,0,4,0,4.0,14.0,0.0,0.0 -hashcat,0.656809925938578,2.91932732878813,-0.068868315364857,https://salsa.debian.org/pkg-security-team/hashcat, https://github.com/hashcat/hashcat.git,2915.0251851851854,48,153,0,135.0,297.0,0.0,0.0 -haveged,0.960876909230577,1.92990048404984,0.423990452854281,https://salsa.debian.org/debian/haveged, https://github.com/jirka-h/haveged,1886.382650462963,9,23,0,22.0,68.0,0.0,1.0 -haxe-debian,-0.520121199828189,0.291656629232862,-0.854365100683561,https://github.com/HaxeFoundation/haxe-debian,https://github.com/HaxeFoundation/haxe-debian,5039.159791666667,3,5,0,5.0,4.0,0.0,0.0 -hcxdumptool,0.111902239230355,3.64101561712374,-0.745534899889469,https://salsa.debian.org/pkg-security-team/hcxdumptool, https://github.com/ZerBea/hcxdumptool,2117.010613425926,10,18,0,22.0,84.0,0.0,7.0 -hdapsd,0.653899629129175,2.69423511493553,-0.123119309607183,https://salsa.debian.org/debian/hdapsd, https://github.com/evgeni/hdapsd.git,2619.501041666667,2,5,0,5.0,12.0,0.0,0.0 -HDMI2USB-mode-switch,-0.197998979551778,2.89423307436124,-1.00134107846442,https://salsa.debian.org/debian/hdmi2usb-mode-switch, https://github.com/timvideos/HDMI2USB-mode-switch.git,1539.4512152777777,3,11,0,8.0,15.0,0.0,0.0 -hesiod,1.35207987719541,2.88204109904546,0.569829979549406,https://github.com/achernya/hesiod,https://github.com/achernya/hesiod,2444.8183564814813,0,5,0,6.0,15.0,0.0,0.0 -hexchat,0.411346363504554,1.07632257559057,0.0766285754645626,https://salsa.debian.org/debian/hexchat, https://github.com/hexchat/hexchat,4968.658645833333,146,71,1,160.0,5.0,0.0,0.0 -hg-git,0.321128458005959,1.27013962899525,-0.189558695284581,https://salsa.debian.org/python-team/packages/hg-git, https://github.com/schacon/hg-git.git,2615.4964467592595,1,76,0,52.0,117.0,0.0,4.0 -hidapi,0.225542388999172,1.7475434274015,-0.111910545723205,https://salsa.debian.org/debian/hidapi, https://github.com/libusb/hidapi.git,4972.58207175926,120,14,0,103.0,49.0,0.0,4.0 -hippomocks,-1.88997873368073,1.96945665171523,-3.0475420798528,https://salsa.debian.org/debian-iot-team/hippomocks, https://github.com/dascandy/hippomocks,3806.118483796297,0,35,0,21.0,73.0,0.0,1.0 -hitch,-0.528891278833222,2.18475913059215,-1.44385683941196,https://salsa.debian.org/debian/hitch, https://github.com/varnish/hitch,4466.179224537037,30,59,0,59.0,215.0,0.0,20.0 -hol-light,0.674020845527557,3.32279514521599,-0.29139697731138,https://salsa.debian.org/ocaml-team/hol-light, https://github.com/jrh13/hol-light.git,2937.7842708333333,2,18,0,10.0,39.0,0.0,0.0 -htmldoc,0.75711657223212,1.64239469489179,0.276846482719605,https://salsa.debian.org/haava/htmldoc, https://github.com/michaelrsweet/htmldoc.git,5679.761041666667,3,12,0,7.0,61.0,0.0,0.0 -htmlmin,0.374983932562282,3.80096487960747,-0.406198962884855,https://salsa.debian.org/python-team/packages/htmlmin, https://github.com/mankyd/htmlmin,1758.145405092593,0,22,0,16.0,60.0,0.0,0.0 -htpdate,-0.444541263600008,1.61940455160078,-0.918880230012669,https://salsa.debian.org/debian/htpdate, https://github.com/twekkel/htpdate,706.8257407407407,6,5,0,5.0,17.0,0.0,0.0 -hubicfuse,-0.674391068352074,0.4155398958399,-0.970849683167389,https://salsa.debian.org/debian/hubicfuse, https://github.com/TurboGit/hubicfuse,4598.808229166667,5,42,0,32.0,165.0,0.0,1.0 -hunspell-kk,0.169979278904401,2.56860566866465,-0.353993453076674,http://github.com/taem/hunspell-kk/tree/master,http://github.com/taem/hunspell-kk,1009.254050925926,0,1,0,0.0,0.0,0.0,0.0 -hw-probe,-0.270539130885328,2.13663486623563,-0.803635087763185,https://salsa.debian.org/debian/hw-probe, https://github.com/linuxhw/hw-probe,2812.820763888889,5,13,0,14.0,115.0,0.0,0.0 -hwdata,0.249721813598503,0.867330973589817,-0.003392666298492,https://salsa.debian.org/pino/hwdata, https://github.com/vcrhonek/hwdata.git,5761.123148148148,4,18,0,12.0,14.0,0.0,0.0 -hwinfo,1.03525834114766,1.87035720757828,0.528823536083506,https://salsa.debian.org/debian/hwinfo, https://github.com/openSUSE/hwinfo,5630.010034722222,11,25,0,19.0,74.0,0.0,0.0 -hwloc,0.0348531640399339,0.307399279262583,-0.0657896516031377,https://salsa.debian.org/debian/hwloc, https://github.com/open-mpi/hwloc.git,5420.947349537037,40,25,0,39.0,173.0,0.0,7.0 -hyperlink,0.844118140951546,3.90404712001316,0.0109391917079671,https://salsa.debian.org/python-team/packages/hyperlink, https://github.com/python-hyper/hyperlink,1636.1480324074073,8,24,0,21.0,47.0,0.0,0.0 -hyperscan,-0.19399067963967,1.13231955266701,-0.506900136755405,https://salsa.debian.org/debian/hyperscan, https://github.com/intel/hyperscan.git,2738.472962962963,25,11,0,26.0,361.0,0.0,0.0 -ibus-libpinyin,0.0745339719016965,1.49656855213419,-0.455214923387231,https://salsa.debian.org/debian/ibus-libpinyin, https://github.com/libpinyin/ibus-libpinyin,5637.836423611111,33,12,0,32.0,417.0,0.0,2.0 -icdiff,-0.143815292235167,1.93698232874315,-0.574052024000204,https://salsa.debian.org/debian/icdiff, https://github.com/jeffkaufman/icdiff.git,4767.043599537037,37,19,0,47.0,225.0,0.0,0.0 -icecream,0.306464283919501,1.12950175815159,-0.157389879894607,https://salsa.debian.org/qt-kde-team/extras/icecc, https://github.com/icecc/icecream,5413.471793981482,34,86,1,89.0,308.0,0.0,0.0 -ifcplusplus,-4.71402050298953,-1.54668049295895,-5.44302502170614,https://salsa.debian.org/science-team/ifcplusplus, https://github.com/ifcquery/ifcplusplus,3159.9779050925927,3,29,0,17.0,119.0,0.0,1.0 -ign-cmake,-0.0672943202505403,2.4451918145376,-0.721188055934817,https://salsa.debian.org/science-team/ignition-cmake, https://github.com/ignitionrobotics/ign-cmake.git,2275.004699074074,21,38,0,34.0,52.0,0.0,0.0 -imexam,-0.529120494597259,0.569301322069021,-0.771921667508731,https://salsa.debian.org/debian-astro-team/imexam, https://github.com/spacetelescope/imexam,3485.938622685185,6,15,1,15.0,95.0,0.0,0.0 -imgp,-0.654831104674298,1.57229390630509,-1.08879484852796,https://salsa.debian.org/debian/imgp, https://github.com/jarun/imgp.git,2588.449178240741,7,6,0,8.0,44.0,0.0,2.0 -indicator-sensors,-0.55856548471668,1.87063137701197,-1.16667247934645,https://salsa.debian.org/debian/indicator-sensors, https://github.com/alexmurray/indicator-sensors.git,4448.051828703704,1,8,0,6.0,33.0,0.0,1.0 -influxdb-python,0.5184399777117,1.9994055881846,-0.0609733667770676,https://salsa.debian.org/python-team/packages/influxdb-python, https://github.com/influxdata/influxdb-python,3542.085324074074,64,90,1,124.0,596.0,0.0,0.0 -infnoise,-0.804300160334278,2.01021630793909,-1.78957995953479,https://salsa.debian.org/debian/infnoise, https://github.com/13-37-org/infnoise.git,3061.3638078703702,9,32,0,27.0,33.0,0.0,1.0 -inkscape-open-symbols,0.139916102322669,2.394699430087,-0.296432735971966,https://salsa.debian.org/felix-guest/inkscape-open-symbols, https://github.com/Xaviju/inkscape-open-symbols,2971.3217939814813,9,20,0,20.0,58.0,0.0,2.0 -compute-runtime,-0.335348828556532,2.5434327002209,-1.03806312411679,https://salsa.debian.org/opencl-team/intel-compute-runtime, https://github.com/intel/compute-runtime,2183.6453703703705,160,87,0,159.0,86.0,0.0,0.0 -intelhex,-0.718117487216948,1.53031949737623,-1.15580284325034,https://salsa.debian.org/python-team/packages/intelhex, https://github.com/bialix/intelhex.git,2882.7775578703704,4,21,0,12.0,61.0,0.0,0.0 -invesalius3,-0.365553699037616,0.412659254993687,-0.658514878405484,https://salsa.debian.org/med-team/invesalius, https://github.com/invesalius/invesalius3.git,5269.8872106481485,20,33,0,28.0,105.0,0.0,9.0 -ioq3,0.245752954100319,0.962699744636256,-0.0891553792241897,https://salsa.debian.org/games-team/ioquake3, https://github.com/ioquake/ioq3,5764.21568287037,42,58,0,65.0,301.0,0.0,0.0 -iortcw,-0.360913772214862,1.75407371724815,-0.899955248117116,https://salsa.debian.org/games-team/iortcw, https://github.com/iortcw/iortcw.git,3601.873576388889,5,20,0,13.0,129.0,0.0,0.0 -irssi,1.7592941850151,2.36258966284256,1.30521497990524,https://salsa.debian.org/rhonda/irssi, https://github.com/irssi/irssi.git,5749.014467592592,36,142,0,114.0,230.0,0.0,5.0 -irssi-xmpp,0.603569160068662,1.55579725815672,0.0980337917936148,https://salsa.debian.org/debian/irssi-plugin-xmpp, https://github.com/cdidier/irssi-xmpp,4266.862395833334,7,12,0,12.0,44.0,0.0,0.0 -irstlm,-0.569999834591859,2.5734688358658,-1.36212813878329,https://salsa.debian.org/science-team/irstlm, https://github.com/irstlm-team/irstlm.git,1268.8947337962964,1,9,0,3.0,31.0,0.0,0.0 -islamic-menus,-0.836040345722433,1.89276666455391,-1.52080141050059,https://salsa.debian.org/islamic-team/islamic-menus, https://github.com/ojuba-org/islamic-menus,1447.6479050925925,0,9,0,5.0,1.0,0.0,0.0 -ismrmrd,-0.421137503350785,0.87197185510192,-0.79291907700435,https://salsa.debian.org/med-team/ismrmrd, https://github.com/ismrmrd/ismrmrd.git,4121.918738425926,23,44,0,33.0,72.0,0.0,1.0 -flags,1.04760743471767,4.84454262395884,0.0451502018135834,https://salsa.debian.org/cinnamon-team/iso-flags-svg, https://github.com/linuxmint/flags.git,563.1795833333333,0,2,0,1.0,0.0,0.0,0.0 -isodate,0.784410787167294,3.68595001694045,-0.0654948522770899,https://salsa.debian.org/python-team/packages/isodate, https://github.com/gweis/isodate,4815.188715277778,2,29,0,18.0,81.0,0.0,0.0 -ivtools,0.398801166895553,1.09231866511694,-0.0474693288687548,https://salsa.debian.org/debian/ivtools, https://github.com/vectaport/ivtools,4623.96693287037,2,10,0,4.0,7.0,0.0,1.0 -include-what-you-use,0.293647013502257,1.77561586069386,-0.325605483422213,https://salsa.debian.org/pkg-llvm-team/iwyu, https://github.com/include-what-you-use/include-what-you-use,4692.870405092593,67,17,1,60.0,285.0,0.0,1.0 -jabberd2,-0.0340967947001949,0.912457651446875,-0.575441570052838,https://salsa.debian.org/xmpp-team/jabberd2, https://github.com/jabberd2/jabberd2,3913.918449074074,17,25,0,26.0,119.0,0.0,5.0 -jansson,0.140702818261444,0.668384438014213,-0.0027799649827509,https://salsa.debian.org/debian/jansson, https://github.com/akheron/jansson.git,5159.4155902777775,29,84,0,80.0,127.0,0.0,3.0 -janus-gateway,-1.05337244986624,0.874433528925773,-1.67902934759249,https://salsa.debian.org/pkg-voip-team/janus, https://github.com/meetecho/janus-gateway,3591.8742708333334,192,158,0,273.0,152.0,0.0,0.0 -jimtcl,0.0276014570725816,0.470906450097132,-0.0432191952512908,https://salsa.debian.org/debian/jimtcl, https://github.com/msteveb/jimtcl.git,5640.229108796297,31,13,0,32.0,66.0,0.0,2.0 -Jool,-2.14357301313893,-0.0424378708533689,-2.61291193745228,https://github.com/NICMx/Jool,https://github.com/NICMx/Jool,4435.210405092593,8,57,3,37.0,162.0,0.0,6.0 -jopt-simple,-0.255772200758675,1.10927309648234,-0.521059676282444,https://salsa.debian.org/java-team/joptsimple, https://github.com/jopt-simple/jopt-simple.git,3771.223796296296,2,25,0,24.0,63.0,0.0,0.0 -jpy,-0.233504770598713,1.55857120737112,-0.692158017596744,https://salsa.debian.org/python-team/packages/jpy, https://github.com/jpy-consortium/jpy,3656.235856481481,16,28,3,25.0,27.0,0.0,0.0 -jpylyzer,-1.21847664304169,-0.429898584565786,-1.47171391073223,https://salsa.debian.org/python-team/packages/jpylyzer, https://github.com/openpreserve/jpylyzer.git,3586.5846064814814,2,28,0,16.0,31.0,0.0,2.0 -jq,0.907507756724108,2.07725813469889,0.337854602387109,https://salsa.debian.org/debian/jq, https://github.com/jqlang/jq,4164.99587962963,128,79,5,168.0,233.0,0.0,76.0 -jquery-i18n-properties,-0.842986287747477,1.00253012903002,-1.16109014727073,https://salsa.debian.org/js-team/jquery-i18n-properties/, https://github.com/jquery-i18n-properties/jquery-i18n-properties.git,2244.4631597222224,1,17,0,13.0,101.0,0.0,3.0 -JSJaC,-0.326591238398014,2.00496391218346,-1.15078662173429,https://salsa.debian.org/xmpp-team/jsjac, https://github.com/sstrigler/JSJaC.git,3682.6423958333335,1,21,0,12.0,56.0,0.0,0.0 -json-c,0.700023851880608,1.56841814860177,0.249756089878765,https://salsa.debian.org/debian/json-c, https://github.com/json-c/json-c,5592.294965277778,18,150,0,130.0,463.0,0.0,13.0 -JSON-js,0.635854100922927,3.17069139656986,-0.086277690728619,https://salsa.debian.org/js-team/json-js, https://github.com/douglascrockford/JSON-js,4556.196423611111,1,4,0,2.0,14.0,0.0,0.0 -jsonlint,0.128379119258446,1.61363476419091,-0.161527963105581,https://salsa.debian.org/php-team/pear/jsonlint, https://github.com/Seldaek/jsonlint,4166.938888888889,11,28,0,34.0,62.0,0.0,0.0 -jsonpickle,-0.0589038511288834,1.65494774848196,-0.628847446436696,https://salsa.debian.org/python-team/packages/jsonpickle, https://github.com/jsonpickle/jsonpickle,5737.107546296296,18,67,1,58.0,346.0,0.0,5.0 -jsusfx,-0.481841545934975,1.46744712046148,-0.881581232912669,https://salsa.debian.org/multimedia-team/pd/jsusfx, https://github.com/asb2m10/jsusfx.git,2697.364976851852,1,8,0,4.0,11.0,0.0,1.0 -keepassxc,0.0775001359902233,0.766226275880649,-0.134443237606771,https://salsa.debian.org/debian/keepassxc, https://github.com/keepassxreboot/keepassxc.git,4876.4075,354,94,0,352.0,4.0,0.0,6.0 -keras,0.599945436863796,3.42323994413066,-0.32687543402159,https://salsa.debian.org/science-team/keras, https://github.com/keras-team/keras,3182.841226851852,1036,333,0,411.0,453.0,0.0,19.0 -klaus,-1.79637508963943,-1.14251823386389,-1.92444117218851,https://salsa.debian.org/jelmer/klaus, https://github.com/jonashaag/klaus,4576.86707175926,13,28,0,23.0,110.0,0.0,20.0 -klystrack,-0.577519653167149,1.43344468736358,-1.09269072292416,https://salsa.debian.org/multimedia-team/klystrack, https://github.com/kometbomb/klystrack,3882.798819444444,10,13,4,10.0,56.0,0.0,1.0 -pvr.dvbviewer,-0.261225505481806,1.73388352174729,-0.678503492892391,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-dvbviewer, https://github.com/kodi-pvr/pvr.dvbviewer.git,4026.1822916666665,9,44,0,32.0,52.0,0.0,0.0 -pvr.hdhomerun,0.566260134315537,3.97273055097904,-0.508973504123633,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-hdhomerun, https://github.com/kodi-pvr/pvr.hdhomerun.git,2925.247337962963,9,28,0,19.0,39.0,0.0,0.0 -pvr.iptvsimple,0.0810763451287061,2.1337559182885,-0.412242772110432,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-iptvsimple, https://github.com/kodi-pvr/pvr.iptvsimple.git,3805.758923611111,16,66,0,49.0,379.0,0.0,0.0 -pvr.njoy,-0.391946976625737,1.58828583512239,-0.794589893392134,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-njoy, https://github.com/kodi-pvr/pvr.njoy.git,4095.3650578703705,9,40,0,28.0,19.0,0.0,0.0 -pvr.vdr.vnsi,-0.27670881624424,1.16213179809073,-0.603691917778123,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-vdr-vnsi, https://github.com/kodi-pvr/pvr.vdr.vnsi.git,4099.290219907408,12,57,0,44.0,64.0,0.0,0.0 -KWStyle,-0.544368045908652,1.28865289872679,-0.997706727099012,https://salsa.debian.org/eikel/kwstyle, https://github.com/Kitware/KWStyle,2816.187662037037,4,44,0,30.0,32.0,0.0,0.0 -lablgtk,-0.551968323458823,1.02548296833125,-0.856650582909348,https://salsa.debian.org/ocaml-team/lablgtk3, https://github.com/garrigue/lablgtk.git,5750.371782407407,18,30,0,25.0,73.0,0.0,0.0 -lastpass-cli,-0.0433153424555133,1.34166224648235,-0.586004167665418,https://salsa.debian.org/lamby/pkg-lastpass-cli, https://github.com/lastpass/lastpass-cli,3306.008935185185,30,62,0,67.0,0.0,0.0,1.0 -python-lazy-object-proxy,0.304361886266875,2.72331704069412,-0.170200544458025,https://salsa.debian.org/python-team/packages/lazy-object-proxy, https://github.com/ionelmc/python-lazy-object-proxy.git,3850.588252314815,8,10,0,14.0,87.0,0.0,0.0 -lcdproc,0.0416533252301885,0.598187026427743,-0.298289035087039,https://salsa.debian.org/debian/lcdproc, https://github.com/lcdproc/lcdproc,1977.3798148148148,39,20,0,41.0,113.0,0.0,0.0 -ldap-git-backup,-1.37378689802941,-0.356971386513325,-1.61718418357152,https://github.com/elmar/ldap-git-backup,https://github.com/elmar/ldap-git-backup,3900.949722222222,1,9,0,6.0,10.0,0.0,0.0 -ldap2dns,0.441066037920361,3.27303457513035,-0.818255810932132,https://salsa.debian.org/debian/ldap2dns, https://github.com/bklang/ldap2dns,1032.2710185185183,0,4,0,1.0,4.0,0.0,0.0 -ldapscripts,0.478946302626074,1.44486956614797,0.0155611926935095,https://github.com/gerasiov/ldapscripts,https://github.com/gerasiov/ldapscripts,4203.292164351852,3,5,0,3.0,2.0,0.0,0.0 -pkg-ledgersmb,-1.97689062412395,-1.2384100444554,-2.32818405996674,https://github.com/ledgersmb/pkg-ledgersmb,https://github.com/ledgersmb/pkg-ledgersmb,5388.182164351852,1,9,0,4.0,4.0,0.0,1.0 -ledmon,-0.0267359745780104,1.69720993287525,-0.578723343507587,https://salsa.debian.org/debian/ledmon, https://github.com/intel/ledmon,4704.50675925926,35,24,0,32.0,75.0,0.0,0.0 -legit,-1.3724471458847,-0.991411721847519,-1.47831608159445,https://salsa.debian.org/python-team/packages/legit, https://github.com/frostming/legit,4465.088402777777,8,56,0,47.0,233.0,0.0,2.0 -mod_auth_openidc,0.233689192834307,2.15367312392255,-0.53433440558404,https://salsa.debian.org/debian/libapache2-mod-auth-openidc, https://github.com/zmartzone/mod_auth_openidc.git,3541.865763888889,12,50,0,46.0,138.0,0.0,41.0 -libappimage,-0.163205164932798,2.06577386190353,-0.665049391527397,https://salsa.debian.org/qt-kde-team/3rdparty/libappimage, https://github.com/AppImageCommunity/libappimage.git,1789.5842476851851,9,6,0,11.0,54.0,0.0,0.0 -attean,-1.31432812587104,1.04915138867636,-1.76050239939074,https://salsa.debian.org/perl-team/modules/packages/libattean-perl, https://github.com/kasei/attean.git,3387.9902314814813,2,10,0,9.0,20.0,0.0,0.0 -libcec,0.238272509353761,0.904107880102779,-0.0486730427124583,https://salsa.debian.org/debian/libcec, https://github.com/Pulse-Eight/libcec.git,3960.817928240741,30,52,0,62.0,729.0,0.0,2.0 -cereal,-1.00948931819713,-0.435064898922173,-1.16539003296708,https://salsa.debian.org/med-team/libcereal, https://github.com/USCiLab/cereal,3631.1027546296295,36,60,3,68.0,151.0,0.0,4.0 -CGI--Application--Dispatch,0.204830766029697,4.19690787325887,-0.984702295312001,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-dispatch-perl, https://github.com/markstos/CGI--Application--Dispatch.git,1893.6213773148147,0,9,0,8.0,9.0,0.0,0.0 -CGI-Application-Plugin-Session,-0.411967994731684,2.44107933184202,-1.16266299576573,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-plugin-session-perl, https://github.com/frioux/CGI-Application-Plugin-Session,1734.185208333333,2,2,0,2.0,1.0,0.0,0.0 -libcgroup,0.890563346465203,1.74091885188584,0.369255314773436,https://salsa.debian.org/debian/libcgroup, https://github.com/libcgroup/libcgroup,5745.328993055556,43,20,2,31.0,36.0,0.0,0.0 -libdnet,0.644763880424894,1.86458845362707,0.130309881524516,https://salsa.debian.org/debian/libdumbnet, https://github.com/ofalk/libdnet,3068.484803240741,6,20,0,16.0,42.0,0.0,0.0 -libebur128,0.40088008585891,2.50978233964462,-0.0483144637496186,https://salsa.debian.org/multimedia-team/libebur128, https://github.com/jiixyj/libebur128,3690.643993055556,1,22,0,19.0,70.0,0.0,0.0 -ejml,-1.614551829387,1.09368603757853,-2.21089769246366,https://salsa.debian.org/java-team/libejml-java, https://github.com/lessthanoptimal/ejml,5141.135856481482,14,15,0,17.0,85.0,0.0,0.0 -p5-encode,0.0933708638701565,1.25595256859913,-0.193781545898838,https://salsa.debian.org/perl-team/modules/packages/libencode-perl, https://github.com/dankogai/p5-encode.git,5752.78,4,51,0,42.0,88.0,0.0,0.0 -libepoxy,0.31005074551136,1.19263793455666,0.0363222284258477,https://salsa.debian.org/xorg-team/lib/libepoxy, https://github.com/anholt/libepoxy.git,3236.6618981481483,11,45,0,45.0,212.0,0.0,0.0 -liberasurecode,-0.483967518841599,1.19708723767758,-0.869480434759469,https://salsa.debian.org/openstack-team/libs/liberasurecode, https://github.com/openstack/liberasurecode.git,3370.559456018518,7,23,0,19.0,7.0,0.0,0.0 -perl-error.pm,1.25353236081262,3.33517180196268,0.439783519414469,https://salsa.debian.org/perl-team/modules/packages/liberror-perl, https://github.com/shlomif/perl-error.pm.git,4521.312569444444,0,3,0,2.0,3.0,0.0,0.0 -libesedb,-0.0038540303553472,1.3424306864521,-0.377785911088543,https://salsa.debian.org/pkg-security-team/libesedb, https://github.com/libyal/libesedb,2793.913912037037,0,1,0,1.0,61.0,0.0,2.0 -libesmtp,0.267762178156602,0.838808560887104,-0.0156401267251184,https://github.com/jbouse-debian/libesmtp,https://github.com/jbouse-debian/libesmtp,4730.760798611111,1,4,0,2.0,1.0,0.0,0.0 -libestr,0.258332628879804,1.27342555165452,0.0106705211624453,https://salsa.debian.org/debian/libestr, https://github.com/rsyslog/libestr.git,2916.183923611111,6,7,0,9.0,8.0,0.0,0.0 -libevent,0.767458330101706,1.67437273850519,0.314106765989667,https://salsa.debian.org/debian/libevent, https://github.com/libevent/libevent,5769.201643518519,214,125,1,240.0,0.0,0.0,6.0 -libgeotiff,0.396940251688871,2.10765394818867,-0.0842600623047565,https://salsa.debian.org/debian-gis-team/libgeotiff, https://github.com/OSGeo/libgeotiff.git,5753.8535763888885,6,17,0,21.0,54.0,0.0,0.0 -libglvnd,0.374276465436635,1.22328243606087,0.0505144955337469,https://salsa.debian.org/xorg-team/lib/libglvnd.git, https://github.com/NVIDIA/libglvnd.git,3760.105162037037,9,47,0,41.0,117.0,0.0,0.0 -libgroove,-0.571777135741541,0.938666961634202,-0.96571380352992,https://salsa.debian.org/multimedia-team/libgroove, https://github.com/andrewrk/libgroove,3739.910081018519,3,10,1,10.0,62.0,0.0,2.0 -hdf4,0.748239383063639,1.34197987839209,0.370485811228284,https://salsa.debian.org/debian-gis-team/hdf4, https://github.com/HDFGroup/hdf4.git,5770.081041666666,9,27,0,20.0,22.0,0.0,2.0 -libheif,0.775613399528957,3.75621067137824,0.0328408591685893,https://salsa.debian.org/multimedia-team/libheif, https://github.com/strukturag/libheif.git,2185.1827314814814,30,67,0,79.0,121.0,0.0,1.0 -hpptools,-2.87665838630104,-0.677760524729012,-3.31950647836083,https://salsa.debian.org/med-team/libhpptools, https://github.com/mateidavid/hpptools.git,498.7340625,0,2,0,2.0,3.0,0.0,0.0 -HTML-Clean,-0.102478302417404,1.25521046434256,-0.471169751009437,https://salsa.debian.org/perl-team/modules/packages/libhtml-clean-perl, https://github.com/poizon/HTML-Clean.git,1155.8983796296295,1,3,0,2.0,2.0,0.0,0.0 -p5-html-embedded-turtle,-2.17541433283968,0.112298262489958,-2.61526788273261,https://salsa.debian.org/perl-team/modules/packages/libhtml-embedded-turtle-perl, https://github.com/tobyink/p5-html-embedded-turtle,1183.7536805555555,0,1,0,1.0,0.0,0.0,0.0 -html-formhandler-model-dbic,-1.4203781466224,0.792742287387889,-1.85958552896419,https://salsa.debian.org/perl-team/modules/packages/libhtml-formhandler-model-dbic-perl, http://github.com/gshank/html-formhandler-model-dbic,1856.354710648148,2,11,0,0.0,0.0,0.0,0.0 -p5-html-html5-entities,-0.393461804149147,1.02420811720216,-0.653725064658302,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-entities-perl, https://github.com/tobyink/p5-html-html5-entities.git,1072.6158333333333,0,1,0,1.0,1.0,0.0,0.0 -p5-html-html5-parser,0.813759283796088,4.38318191495781,-0.351559014318549,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-parser-perl, https://github.com/tobyink/p5-html-html5-parser,4302.972141203703,1,7,0,5.0,9.0,0.0,0.0 -libhtp,0.266072693967969,2.57287542273396,-0.563805921662291,https://salsa.debian.org/pkg-suricata-team/pkg-libhtp, https://github.com/OISF/libhtp,5122.073622685185,15,26,2,25.0,31.0,0.0,0.0 -isa-l,-0.653394048788407,1.70112376762176,-1.06942987879745,https://salsa.debian.org/openstack-team/third-party/libisal, https://github.com/01org/isa-l.git,2846.483761574074,29,18,0,38.0,96.0,0.0,3.0 -libjpeg-turbo,0.820859482621495,1.66788641122997,0.371400398641128,https://salsa.debian.org/debian/libjpeg-turbo/, https://github.com/libjpeg-turbo/libjpeg-turbo,5541.39431712963,44,10,2,41.0,501.0,0.0,0.0 -p5-JSON-WebToken,-0.164458058090736,1.95655131027631,-0.587354272850704,https://salsa.debian.org/perl-team/modules/packages/libjson-webtoken-perl, https://github.com/xaicron/p5-JSON-WebToken.git,993.786898148148,0,6,0,2.0,16.0,0.0,0.0 -p5-kavorka,-1.11585996763189,1.8699475451297,-1.89199456930478,https://salsa.debian.org/perl-team/modules/packages/libkavorka-perl, https://github.com/tobyink/p5-kavorka,2218.7228703703704,0,8,0,5.0,29.0,0.0,0.0 -p5-latex-table,-0.702086297129157,0.799707357714388,-0.984846791567085,https://salsa.debian.org/perl-team/modules/packages/liblatex-table-perl, https://github.com/lima1/p5-latex-table.git,556.2399421296296,0,2,0,1.0,0.0,0.0,0.0 -liblbfgs,-0.145960614894419,2.02556666116268,-0.619470975215262,https://salsa.debian.org/science-team/liblbfgs, https://github.com/chokkan/liblbfgs,5534.061076388889,8,10,0,13.0,32.0,0.0,0.0 -p5-lexical-underscore,-0.120859387545148,2.79686256168409,-0.887693708969588,https://salsa.debian.org/perl-team/modules/packages/liblexical-underscore-perl, https://github.com/tobyink/p5-lexical-underscore,2933.2191203703705,0,1,0,1.0,4.0,0.0,0.0 -liblognorm,0.901258510213782,2.3010415095011,0.305197545078125,https://salsa.debian.org/debian/liblognorm, https://github.com/rsyslog/liblognorm.git,4686.832627314815,7,31,0,23.0,111.0,0.0,0.0 -libmateweather,0.128483049500496,0.843121277026433,-0.0753011191462626,https://salsa.debian.org/debian-mate-team/libmateweather, https://github.com/mate-desktop/libmateweather.git,4345.310983796297,19,32,0,32.0,92.0,0.0,0.0 -libmaxminddb,0.507537573132591,2.42545832102211,-0.0148146150229747,https://salsa.debian.org/debian/libmaxminddb, https://github.com/maxmind/libmaxminddb,3984.239363425926,21,43,0,49.0,64.0,0.0,0.0 -method-signatures,-1.14136491139725,1.16679643969596,-1.64399707809497,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-perl, https://github.com/evalEmpire/method-signatures.git,4206.615393518518,3,21,0,18.0,41.0,0.0,1.0 -miglayout,0.0140581374771789,1.09613156382052,-0.220031450088049,https://salsa.debian.org/java-team/libmiglayout-java, https://github.com/mikaelgrev/miglayout,3114.6859375,4,24,0,17.0,57.0,0.0,0.0 -libminc,-0.243119939861725,0.955874211783971,-0.587717590228797,https://salsa.debian.org/med-team/libminc, https://github.com/BIC-MNI/libminc.git,5746.54113425926,3,34,0,18.0,29.0,0.0,0.0 -libmodbus,0.408134893807505,2.01019673867031,-0.0931762570860086,https://salsa.debian.org/debian/libmodbus, https://github.com/stephane/libmodbus.git,5746.532118055556,58,15,0,55.0,615.0,0.0,25.0 -moosex-compiletime-traits,-1.56539634235995,0.993312289213515,-2.19979313657871,https://salsa.debian.org/perl-team/modules/packages/libmoosex-compiletime-traits-perl, https://github.com/nperez/moosex-compiletime-traits.git,0.0730787037037037,0,1,0,0.0,0.0,0.0,0.0 -MooseX-MultiInitArg,-1.07075403800779,1.08359021531156,-1.50429883320762,https://salsa.debian.org/perl-team/modules/packages/libmoosex-multiinitarg-perl, https://github.com/frodwith/MooseX-MultiInitArg.git,0.0628703703703703,0,1,0,1.0,0.0,0.0,0.0 -p5-moosex-mungehas,-1.70546876689832,0.655108435501916,-2.14891721186836,https://salsa.debian.org/perl-team/modules/packages/libmoosex-mungehas-perl, https://github.com/tobyink/p5-moosex-mungehas,2044.5397800925923,1,6,0,4.0,6.0,0.0,0.0 -MooseX-Runnable,-1.57702227549819,1.133906618023,-2.34984169515277,https://salsa.debian.org/perl-team/modules/packages/libmoosex-runnable-perl, https://github.com/moose/MooseX-Runnable,3541.979409722222,1,4,0,4.0,4.0,0.0,0.0 -p5-moosex-xsaccessor,-1.79699308442664,0.622199589416262,-2.23744643503494,https://salsa.debian.org/perl-team/modules/packages/libmoosex-xsaccessor-perl, https://github.com/tobyink/p5-moosex-xsaccessor,3461.6608333333334,0,1,0,1.0,1.0,0.0,0.0 -p5-moox-cmd,-1.7714724432288,0.738963510092576,-2.32872240205211,https://salsa.debian.org/perl-team/modules/packages/libmoox-cmd-perl, https://github.com/Getty/p5-moox-cmd,2141.9085532407407,4,4,0,7.0,9.0,0.0,0.0 -p5-moox-struct,1.10039987401157,4.72686382350317,0.0231138941776421,https://salsa.debian.org/perl-team/modules/packages/libmoox-struct-perl, https://github.com/tobyink/p5-moox-struct,3679.923703703704,1,2,0,2.0,4.0,0.0,0.0 -MooX-Types-MooseLike,0.218848728689155,2.42762361856221,-0.234182987751775,https://salsa.debian.org/perl-team/modules/packages/libmoox-types-mooselike-perl, https://github.com/mateu/MooX-Types-MooseLike.git,1382.058888888889,0,16,0,12.0,20.0,0.0,0.0 -p5-MouseX-NativeTraits,0.451797091997329,3.5585079183273,-0.263225295656509,https://salsa.debian.org/perl-team/modules/packages/libmousex-nativetraits-perl, https://github.com/gfx/p5-MouseX-NativeTraits.git,1010.1283101851852,1,4,0,2.0,2.0,0.0,0.0 -p5-mousex-types,-0.900205922839208,2.42810979063714,-1.61943954243828,https://salsa.debian.org/perl-team/modules/packages/libmousex-types-perl, https://github.com/yappo/p5-mousex-types.git,984.7711226851852,0,8,0,2.0,5.0,0.0,0.0 -libmpdclient,0.208556036170561,1.35645743401925,-0.117616723392847,https://salsa.debian.org/mpd-team/libmpdclient, https://github.com/MusicPlayerDaemon/libmpdclient,5726.394375,18,26,0,31.0,41.0,0.0,0.0 -libofx,0.203415025551932,0.653272225742778,-0.0343613081078379,https://salsa.debian.org/debian/libofx, https://github.com/libofx/libofx,5174.00625,8,16,0,16.0,48.0,0.0,0.0 -OpenHMD,0.112794501368179,1.85484744498208,-0.282535510006274,https://salsa.debian.org/debian/libopenhmd, https://github.com/OpenHMD/OpenHMD,3515.787395833333,18,41,1,36.0,258.0,0.0,18.0 -Pandoc-Elements,-1.21783057618553,1.30668908266884,-1.79049682798129,https://salsa.debian.org/perl-team/modules/packages/libpandoc-elements-perl, https://github.com/nichtich/Pandoc-Elements.git,2600.5557175925924,2,3,0,3.0,9.0,0.0,2.0 -Pandoc-Wrapper,-1.19135788130824,0.89729950689738,-1.72623996968284,https://salsa.debian.org/perl-team/modules/packages/libpandoc-wrapper-perl, https://github.com/nichtich/Pandoc-Wrapper.git,1879.241203703704,2,4,0,5.0,16.0,0.0,0.0 -params-callbackrequest,-1.31550870573202,0.99706337577361,-1.76036509087965,https://salsa.debian.org/perl-team/modules/packages/libparams-callbackrequest-perl, https://github.com/theory/params-callbackrequest.git,1199.2313657407408,0,2,0,1.0,0.0,0.0,0.0 -Params-Util,0.566955724813384,2.70954090245678,0.0183304164838642,https://salsa.debian.org/perl-team/modules/packages/libparams-util-perl, https://github.com/perl5-utils/Params-Util,4635.891793981482,2,6,0,2.0,5.0,0.0,0.0 -parse-cpan-packages,-1.31626232375911,0.055729797966772,-1.59309729542018,https://salsa.debian.org/perl-team/modules/packages/libparse-cpan-packages-perl, https://github.com/wchristian/parse-cpan-packages,2213.1126273148147,1,3,0,4.0,6.0,0.0,0.0 -Parse-Method-Signatures,-0.309867542069825,2.15208921006351,-0.785793049099757,https://salsa.debian.org/perl-team/modules/packages/libparse-method-signatures-perl, https://github.com/ashb/Parse-Method-Signatures.git,3028.8479166666666,2,10,0,8.0,5.0,0.0,0.0 -perl-Parse-Netstat,-1.29015063053148,0.970774796110696,-1.71793362412929,https://salsa.debian.org/perl-team/modules/packages/libparse-netstat-perl, https://github.com/perlancar/perl-Parse-Netstat.git,4083.673275462963,0,11,0,2.0,0.0,0.0,0.0 -Parse-RecDescent,-0.0286467306167016,0.222989520591922,-0.100758265549273,https://salsa.debian.org/perl-team/modules/packages/libparse-recdescent-perl, https://github.com/jtbraun/Parse-RecDescent.git,2082.355324074074,1,5,0,2.0,7.0,0.0,0.0 -perl-pdf-report,-1.14074757109425,-0.731778311715835,-1.23468142917503,https://salsa.debian.org/perl-team/modules/packages/libpdf-report-perl, https://github.com/hashbangperl/perl-pdf-report.git,159.71844907407407,0,1,0,1.0,2.0,0.0,0.0 -PDL-IO-Matlab,-1.81228967460159,0.355857099453331,-2.23707614220522,https://salsa.debian.org/perl-team/modules/packages/libpdl-io-matlab-perl, https://github.com/jlapeyre/PDL-IO-Matlab.git,3358.424490740741,1,2,0,2.0,4.0,0.0,0.0 -perl-Perinci-Sub-Normalize,-2.93277311063399,-0.9162267093382,-3.32015234012257,https://salsa.debian.org/perl-team/modules/packages/libperinci-sub-normalize-perl, https://github.com/perlancar/perl-Perinci-Sub-Normalize.git,3147.5333564814814,0,11,0,2.0,0.0,0.0,0.0 -p5-perlx-assert,-1.01934466047357,1.54250325326684,-1.83623953186436,https://salsa.debian.org/perl-team/modules/packages/libperlx-assert-perl, https://github.com/tobyink/p5-perlx-assert,1111.6440162037038,0,1,0,1.0,1.0,0.0,0.0 -p5-perlx-define,-2.16783373442172,0.0459215724713869,-2.61318748907828,https://salsa.debian.org/perl-team/modules/packages/libperlx-define-perl, https://github.com/tobyink/p5-perlx-define,0.0109259259259259,0,1,0,1.0,1.0,0.0,0.0 -libplist,0.289015166776717,0.775133036116656,0.068106780994937,https://salsa.debian.org/imobiledevice-team/libplist, https://github.com/libimobiledevice/libplist.git,5614.0678125,41,20,0,42.0,98.0,0.0,0.0 -libpng,0.167799069543427,0.425794845256693,0.0473446326901783,https://salsa.debian.org/debian/libpng1.6, https://github.com/glennrp/libpng,5354.109710648148,66,26,0,71.0,29.0,0.0,1.0 -quazip,0.214683832263677,0.928495304943016,-0.0650262980618335,https://salsa.debian.org/debian/libquazip, https://github.com/stachenov/quazip.git,5295.494409722222,19,25,0,36.0,147.0,0.0,0.0 -rabbitmq-c,0.593745062359984,2.32387036057243,-0.0094513192695831,https://salsa.debian.org/debian/librabbitmq, https://github.com/alanxz/rabbitmq-c.git,5294.536018518518,63,49,0,77.0,513.0,0.0,0.0 -librarian-puppet,-1.4485786469275,-0.125606368535378,-1.8632545720475,https://salsa.debian.org/ruby-team/librarian-puppet, https://github.com/voxpupuli/librarian-puppet.git,4114.136493055556,12,65,0,51.0,102.0,0.0,0.0 -p5-rdf-trinex-functions,-0.315431914346714,2.33788799662413,-0.970401834060701,https://salsa.debian.org/perl-team/modules/packages/librdf-trinex-functions-perl, https://github.com/tobyink/p5-rdf-trinex-functions,833.4788657407407,0,1,0,1.0,0.0,0.0,0.0 -p5-rdf-vcard,-1.15066512586346,1.24412369110821,-1.59125342283554,https://salsa.debian.org/perl-team/modules/packages/librdf-vcard-perl, https://github.com/tobyink/p5-rdf-vcard,1350.944537037037,0,1,0,1.0,3.0,0.0,0.0 -re-engine-RE2,0.0664274847396321,1.55193350010968,-0.198667675011369,https://salsa.debian.org/perl-team/modules/packages/libre-engine-re2-perl, https://github.com/dgl/re-engine-RE2.git,4711.615763888889,4,2,0,5.0,11.0,0.0,0.0 -Regexp-Assemble,0.195651968063539,1.19755563449001,-0.0657051087984686,https://salsa.debian.org/perl-team/modules/packages/libregexp-assemble-perl, https://github.com/ronsavage/Regexp-Assemble.git,3022.017534722222,1,7,0,6.0,10.0,0.0,0.0 -Regexp--Common,0.42540296397963,2.68468982073041,-0.0434398168509383,https://salsa.debian.org/perl-team/modules/packages/libregexp-common-perl, https://github.com/Abigail/Regexp--Common.git,2712.181608796296,4,1,0,3.0,10.0,0.0,0.0 -libregf,0.481511040301647,3.42738106553395,-0.319252191121083,https://salsa.debian.org/pkg-security-team/libregf, https://github.com/libyal/libregf,3351.514375,0,1,0,1.0,10.0,0.0,2.0 -librelp,0.331461248363428,2.04719168057569,-0.184877794774594,https://salsa.debian.org/debian/librelp, https://github.com/rsyslog/librelp,5591.54369212963,9,32,1,25.0,70.0,0.0,0.0 -libreswan,-0.468528979949208,0.17905881692428,-0.73359880118435,https://salsa.debian.org/debian/libreswan, https://github.com/libreswan/libreswan.git,5780.147326388889,145,62,0,96.0,291.0,0.0,0.0 -rose,-0.590179077630734,0.761308719744224,-0.8838877592536,https://salsa.debian.org/perl-team/modules/packages/librose-db-object-perl, https://github.com/siracusa/rose.git,5666.525416666666,1,13,0,5.0,15.0,0.0,1.0 -librsync,1.05364499118674,2.25312785926588,0.417288831582171,https://salsa.debian.org/wrar/librsync, https://github.com/librsync/librsync,3224.9778472222224,6,27,0,28.0,97.0,0.0,0.0 -libsamplerate,1.12937689080289,2.27007675196493,0.518954842209819,https://salsa.debian.org/multimedia-team/libsamplerate, https://github.com/libsndfile/libsamplerate,5747.222685185186,38,5,1,34.0,55.0,0.0,0.0 -libsass-python,-0.269652251690511,0.827170955232116,-0.602722913780549,https://salsa.debian.org/debian/libsass-python, https://github.com/dahlia/libsass-python.git,4268.975092592593,7,93,0,77.0,129.0,0.0,0.0 -libseccomp,0.138136934743396,0.416274215040392,0.0228352342733521,https://salsa.debian.org/debian/libseccomp, https://github.com/seccomp/libseccomp,4323.21394675926,71,4,2,57.0,206.0,0.0,1.0 -libserial,-1.10101782832275,1.68672096291128,-1.69819267118978,https://salsa.debian.org/debian/libserial, https://github.com/crayzeewulf/libserial.git,5587.681122685185,3,17,0,12.0,68.0,0.0,2.0 -libsigcplusplus,1.03968231597484,2.0456143836956,0.511724918345553,https://salsa.debian.org/gnome-team/libsigcplusplus, https://github.com/libsigcplusplus/libsigcplusplus.git,5770.937280092593,22,19,0,30.0,50.0,0.0,0.0 -smali,0.0513698279716944,1.85684354094995,-0.330648560215714,https://salsa.debian.org/android-tools-team/libsmali-java, https://github.com/JesusFreke/smali,4709.844421296296,28,24,0,34.0,365.0,0.0,10.0 -libsoundio,0.710235067583084,3.66504485327093,-0.205080147087698,https://salsa.debian.org/debian-hamradio-team/libsoundio, https://github.com/andrewrk/libsoundio.git,3080.119837962963,16,23,0,26.0,120.0,0.0,4.0 -libspiro,0.13157913198492,1.39927804826189,-0.190686667372893,https://salsa.debian.org/fonts-team/libspiro, https://github.com/fontforge/libspiro.git,4925.179953703704,1,10,0,7.0,21.0,0.0,0.0 -spreadsheet-parseexcel,0.039004450407711,0.809471237179452,-0.182726847126768,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-parseexcel-perl, https://github.com/runrig/spreadsheet-parseexcel.git,1902.0376851851847,1,6,0,6.0,33.0,0.0,0.0 -spreadsheet-writeexcel,-0.0847103731517616,0.31001256224266,-0.187134263215803,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-writeexcel-perl, https://github.com/jmcnamara/spreadsheet-writeexcel,5025.7453819444445,1,5,0,5.0,0.0,0.0,1.0 -libssh2,0.476244074845198,1.24659429011417,0.144224777926035,https://salsa.debian.org/debian/libssh2, https://github.com/libssh2/libssh2,5758.776932870371,166,33,1,147.0,60.0,0.0,1.0 -libStatGen,-0.975335451044937,0.482042938887889,-1.32090801317275,https://salsa.debian.org/med-team/libstatgen, https://github.com/statgen/libStatGen,3791.9891319444446,4,17,0,10.0,34.0,0.0,0.0 -statistics--basic,-0.339509547993508,1.39607587169907,-0.630362081510994,https://salsa.debian.org/perl-team/modules/packages/libstatistics-basic-perl, https://github.com/jettero/statistics--basic,2331.8967939814816,1,4,0,2.0,4.0,0.0,0.0 -stb,0.0260953724531321,0.614834906953147,-0.133211897146833,https://salsa.debian.org/yangfl-guest/stb, https://github.com/nothings/stb,3489.7656944444443,45,185,0,183.0,533.0,0.0,0.0 -p5-String-Diff,-1.34559518707804,1.09068337241926,-1.899896390879,https://salsa.debian.org/perl-team/modules/packages/libstring-diff-perl, https://github.com/yappo/p5-String-Diff.git,2495.2807060185187,0,3,0,2.0,16.0,0.0,0.0 -string-mkpasswd,-0.490179702199432,1.40583395094041,-0.857343824637964,https://salsa.debian.org/perl-team/modules/packages/libstring-mkpasswd-perl, https://github.com/sirhc/string-mkpasswd.git,1997.676805555556,0,4,0,2.0,7.0,0.0,0.0 -Switch,1.12202729103399,3.28760878753767,0.290994220711003,https://salsa.debian.org/perl-team/modules/packages/libswitch-perl, https://github.com/chorny/Switch.git,4065.2442592592593,3,4,0,4.0,3.0,0.0,0.0 -Sys-Filesystem,-1.11204170749058,0.37036832353233,-1.54934801292139,https://salsa.debian.org/perl-team/modules/packages/libsys-filesystem-perl, https://github.com/rehsack/Sys-Filesystem,4021.0829050925927,2,3,0,2.0,3.0,0.0,0.0 -CPAN-Sys-Info-Base,-1.16573546354465,0.246937597250091,-1.45478961359389,https://salsa.debian.org/perl-team/modules/packages/libsys-info-base-perl, https://github.com/burak/CPAN-Sys-Info-Base.git,4472.814664351852,0,2,0,1.0,2.0,0.0,0.0 -tabixpp,-0.560941827851746,1.56818648992766,-0.9903141087334,https://salsa.debian.org/med-team/libtabixpp, https://github.com/ekg/tabixpp.git,4263.766006944445,1,12,0,9.0,27.0,0.0,0.0 -libteam,0.314611539581196,1.31197435368163,0.0101461880627549,https://salsa.debian.org/debian/libteam, https://github.com/jpirko/libteam,4358.826863425926,40,5,0,31.0,78.0,0.0,3.0 -TermReadKey,0.64417573125593,1.67251344948729,0.175743137768552,https://salsa.debian.org/perl-team/modules/packages/libterm-readkey-perl, https://github.com/jonathanstowe/TermReadKey.git,4734.95707175926,8,17,0,18.0,40.0,0.0,0.0 -Term-Table,-0.950532737222555,1.40377640957523,-1.39063712096877,https://salsa.debian.org/perl-team/modules/packages/libterm-table-perl, https://github.com/exodist/Term-Table.git,2498.9135185185187,1,5,0,5.0,16.0,0.0,0.0 -Test-Harness,-1.5063742806525,-0.254147939098168,-1.8715013961377,https://salsa.debian.org/perl-team/modules/packages/libtest-harness-perl, https://github.com/Perl-Toolchain-Gang/Test-Harness.git,5734.110335648148,27,47,0,51.0,97.0,0.0,2.0 -URI,0.158952991942081,0.48321946010236,0.0298109636995746,https://salsa.debian.org/perl-team/modules/packages/liburi-perl, https://github.com/libwww-perl/URI.git,5620.904293981482,27,14,0,37.0,89.0,0.0,1.0 -libusbmuxd,0.728920628416698,2.70868070142804,0.107294524138199,https://salsa.debian.org/imobiledevice-team/libusbmuxd, https://github.com/libimobiledevice/libusbmuxd.git,3636.013275462963,9,9,0,14.0,171.0,0.0,0.0 -libvslvm,0.497213218161358,3.57527486868103,-0.306518703278772,https://salsa.debian.org/pkg-security-team/libvslvm, https://github.com/libyal/libvslvm,3338.937025462963,0,1,0,1.0,10.0,0.0,2.0 -p5-web-id,-1.7090564745837,0.894193684686225,-2.3119612886226,https://salsa.debian.org/perl-team/modules/packages/libweb-id-perl, https://github.com/tobyink/p5-web-id,743.3495023148148,0,1,0,1.0,1.0,0.0,0.0 -libwfut,-0.372293282701199,1.18246535899408,-1.03733165160998,https://salsa.debian.org/games-team/libwfut, https://github.com/worldforge/libwfut,5568.697824074074,0,9,0,6.0,3.0,0.0,0.0 -libwmf,1.63753191040568,2.69003305309751,0.986051196992878,https://salsa.debian.org/yangfl-guest/libwmf, https://github.com/caolanm/libwmf,1783.8275231481482,5,6,0,8.0,12.0,0.0,0.0 -perl-wfa,-1.3338913452864,0.342460716630254,-1.62814934844314,https://salsa.debian.org/perl-team/modules/packages/libwww-facebook-api-perl, https://github.com/unobe/perl-wfa.git,3078.4910185185186,2,7,0,4.0,7.0,0.0,0.0 -p5-www-finger,-1.96923567900972,0.395689920654101,-2.56874456647902,https://salsa.debian.org/perl-team/modules/packages/libwww-finger-perl, https://github.com/tobyink/p5-www-finger,1316.1418171296295,0,1,0,1.0,0.0,0.0,0.0 -www-google-calculator-perl,-1.99576703095823,-0.963482599047058,-2.15653356267234,https://salsa.debian.org/perl-team/modules/packages/libwww-google-calculator-perl, https://github.com/typester/www-google-calculator-perl.git,8.980289351851852,0,2,0,1.0,1.0,0.0,0.0 -libx86emu,0.288262171315658,2.15102947652694,-0.118770099396324,https://salsa.debian.org/debian/libx86emu, https://github.com/wfeldt/libx86emu,5028.251597222222,1,8,0,5.0,16.0,0.0,1.0 -libxcrypt,0.62943363014046,1.89179728992148,0.11007174185628,https://salsa.debian.org/md/libxcrypt, https://github.com/besser82/libxcrypt.git,2976.005405092593,9,14,0,21.0,95.0,0.0,0.0 -libxmlb,0.650849534492999,3.3286264453169,-0.0130638591028841,https://salsa.debian.org/efi-team/libxmlb, https://github.com/hughsie/libxmlb.git,1900.0449074074077,20,6,0,18.0,36.0,0.0,0.0 -libxsmm,-0.234662432578352,4.55837802448133,-1.79577149510859,https://salsa.debian.org/science-team/libxsmm, https://github.com/libxsmm/libxsmm,2814.5005324074077,23,91,3,47.0,120.0,0.0,3.0 -xstream,0.340048724522918,1.45089929987566,-0.0600865184240221,https://salsa.debian.org/java-team/libxstream-java, https://github.com/x-stream/xstream.git,5706.99619212963,29,7,0,35.0,375.0,0.0,0.0 -light,0.503298554569783,2.41968846307355,-0.311547499433087,https://salsa.debian.org/debian/light, https://github.com/haikarainen/light.git,3160.160011574074,4,28,0,25.0,51.0,0.0,0.0 -light-locker,2.03026908755181,3.66409652897077,1.14287825499577,https://salsa.debian.org/xfce-extras-team/light-locker, https://github.com/the-cavalry/light-locker,4227.149664351852,82,214,2,128.0,275.0,0.0,0.0 -lightdm,2.24439750372144,2.94460105712629,1.73977769640998,https://salsa.debian.org/xfce-extras-team/lightdm, https://github.com/canonical/lightdm.git,4834.544722222222,52,64,0,73.0,415.0,0.0,0.0 -linux-minidisc,-0.963187260401244,1.83871334132017,-1.63781202078042,https://github.com/glaubitz/linux-minidisc,https://github.com/glaubitz/linux-minidisc,4847.712349537037,36,17,0,20.0,3.0,0.0,0.0 -linux_logo,3.61684272086543,4.85023829471809,2.81240573249716,https://salsa.debian.org/debian/linuxlogo, https://github.com/deater/linux_logo.git,3761.554039351852,1,11,0,8.0,26.0,0.0,0.0 -LiTL,-1.91266501331196,-1.56715868838349,-1.99003495396425,https://salsa.debian.org/debian/litl, https://github.com/trahay/LiTL.git,3099.00931712963,0,7,0,3.0,1.0,0.0,0.0 -lksctp-tools,0.0452198517664519,0.369575017349271,-0.0618537573973216,https://salsa.debian.org/debian/lksctp-tools, https://github.com/sctp/lksctp-tools,5515.820891203704,27,6,1,22.0,37.0,0.0,1.0 -llgal,-0.387269262559881,0.415121675912753,-0.684317591398372,https://github.com/bgoglin/llgal,https://github.com/bgoglin/llgal,4534.944421296296,2,4,0,1.0,11.0,0.0,0.0 -lltag,0.0467559810024722,1.49042156652433,-0.450526954857352,https://github.com/bgoglin/lltag,https://github.com/bgoglin/lltag,4379.026932870371,3,3,0,2.0,9.0,0.0,0.0 -lmodern,0.188486638396719,0.551045642136008,0.018815822262696,https://github.com/debian-tex/lmodern,https://github.com/debian-tex/lmodern,5129.20318287037,1,7,0,2.0,1.0,0.0,0.0 -lnav,0.535366725615169,1.93420819992393,-0.0323395042149713,https://salsa.debian.org/carnil/lnav, https://github.com/tstack/lnav,5194.156064814815,17,59,0,51.0,384.0,0.0,4.0 -logging-log4cxx,0.434636355818473,1.60025020268066,-0.0917843487399783,https://salsa.debian.org/debian/log4cxx, https://github.com/apache/logging-log4cxx.git,3632.702222222222,22,27,0,28.0,7.0,0.0,0.0 -logbook,-0.489632469534676,1.33039798258088,-1.05130674142605,https://salsa.debian.org/debian/logbook, https://github.com/getlogbook/logbook.git,4893.891782407408,11,77,0,65.0,189.0,0.0,0.0 -logging_tree,-1.64142645592676,0.777789823714024,-2.28134788645632,https://salsa.debian.org/debian/python-logging-tree, https://github.com/brandon-rhodes/logging_tree.git,3349.126053240741,5,7,0,10.0,25.0,0.0,0.0 -redis-lua,-0.399556283887543,2.3401321655893,-1.06790409637091,https://salsa.debian.org/lua-team/lua-redis, https://github.com/nrk/redis-lua,2064.011689814815,2,10,0,8.0,80.0,0.0,0.0 -lxctl,1.45646558604501,5.0051312043978,0.180488606033576,https://salsa.debian.org/debian/lxctl, https://github.com/lxctl/lxctl,2540.4811342592598,0,29,1,12.0,21.0,0.0,5.0 -lxde-icon-theme,0.342003694645246,2.55208710000447,-0.0935522829292904,https://salsa.debian.org/lxde-team/lxde-icon-theme, https://github.com/lxde/lxde-icon-theme,1739.474375,0,4,0,3.0,0.0,0.0,0.0 -lxhotkey,1.14102919115354,4.81449105540165,0.0876782474082915,https://salsa.debian.org/lxde-team/lxhotkey, https://github.com/lxde/lxhotkey.git,2759.3632291666668,8,4,0,8.0,27.0,0.0,0.0 -lxinput,0.755510666725437,3.03386810336789,0.062981082023255,https://salsa.debian.org/lxde-team/lxinput, https://github.com/lxde/lxinput.git,5254.87707175926,78,26,0,55.0,0.0,0.0,0.0 -lxqt-globalkeys,0.234799198637964,1.82045556065656,-0.142166441910379,https://salsa.debian.org/lxqt-team/lxqt-globalkeys, https://github.com/lxqt/lxqt-globalkeys.git,4146.0372916666665,56,46,0,78.0,0.0,0.0,0.0 -lxqt-openssh-askpass,0.263970158559498,2.05588498205914,-0.140326344539553,https://salsa.debian.org/lxqt-team/lxqt-openssh-askpass, https://github.com/lxqt/lxqt-openssh-askpass.git,4154.121712962963,34,30,0,50.0,29.0,0.0,0.0 -lz4,0.214060043897775,0.695442545279082,0.0384684269486966,https://salsa.debian.org/debian/lz4, https://github.com/lz4/lz4,3549.313703703704,30,172,0,147.0,393.0,0.0,5.0 -mako,0.960719582397292,2.31529039889597,0.33001258469853,https://salsa.debian.org/python-team/packages/mako, https://github.com/sqlalchemy/mako,5744.8817476851855,23,45,7,53.0,64.0,0.0,6.0 -variant,0.159782488028084,3.73150235766917,-0.683023326646699,https://salsa.debian.org/debian-gis-team/mapbox-variant/, https://github.com/mapbox/variant.git,2484.921168981481,4,25,0,18.0,52.0,0.0,1.0 -mapcache,-0.684949705198006,1.47757934778588,-1.11970494702512,https://salsa.debian.org/debian-gis-team/mapcache, https://github.com/mapserver/mapcache.git,4429.841377314815,24,38,0,33.0,160.0,0.0,2.0 -mate-common,0.223678176507707,1.54414536153937,-0.293694110246264,https://salsa.debian.org/debian-mate-team/mate-common, https://github.com/mate-desktop/mate-common.git,4289.534803240741,4,19,0,14.0,26.0,0.0,0.0 -mate-control-center,0.442807421980527,1.12679136221291,0.0858727450082411,https://salsa.debian.org/debian-mate-team/mate-control-center, https://github.com/mate-desktop/mate-control-center.git,4382.2688194444445,31,51,0,48.0,319.0,0.0,0.0 -mate-desktop,1.44296788737532,2.80037997597155,0.70486245484052,https://salsa.debian.org/debian-mate-team/mate-desktop, https://github.com/mate-desktop/mate-desktop.git,4339.321481481482,30,45,0,44.0,57.0,0.0,0.0 -dock-applet,0.388198243486174,2.24017612378218,-0.168832256910442,https://salsa.debian.org/debian-mate-team/mate-dock-applet, https://github.com/robint99/dock-applet.git,2711.5333680555555,9,12,0,13.0,168.0,0.0,0.0 -mate-icon-theme,0.408788959650741,2.4988457725781,-0.0552126550202363,https://salsa.debian.org/debian-mate-team/mate-icon-theme, https://github.com/mate-desktop/mate-icon-theme.git,3997.7458217592593,7,25,0,19.0,36.0,0.0,0.0 -mate-icon-theme-faenza,0.514243119126678,2.382927977142,-0.0287099151335426,https://salsa.debian.org/debian-mate-team/mate-icon-theme-faenza, https://github.com/mate-desktop/mate-icon-theme-faenza.git,2081.9641898148147,2,15,0,10.0,19.0,0.0,0.0 -mate-netbook,-0.199073949842394,0.92545310996885,-0.554797791463361,https://salsa.debian.org/debian-mate-team/mate-netbook, https://github.com/mate-desktop/mate-netbook.git,4033.464398148148,4,20,0,14.0,35.0,0.0,0.0 -mate-notification-daemon,0.294431484031301,1.24436807189306,-0.0375475363387423,https://salsa.debian.org/debian-mate-team/mate-notification-daemon, https://github.com/mate-desktop/mate-notification-daemon.git,4376.807546296296,19,34,0,34.0,136.0,0.0,0.0 -mate-polkit,0.0844204987337219,0.713992810816739,-0.078912061978415,https://salsa.debian.org/debian-mate-team/mate-polkit, https://github.com/mate-desktop/mate-polkit.git,4293.10457175926,9,23,0,18.0,42.0,0.0,0.0 -mate-settings-daemon,0.181564698272329,0.720310989304527,-0.0328315734046171,https://salsa.debian.org/debian-mate-team/mate-settings-daemon, https://github.com/mate-desktop/mate-settings-daemon.git,4342.233842592593,28,45,0,46.0,189.0,0.0,0.0 -selinux,-1.91818820413407,-0.141660999188383,-2.3390148470373,https://salsa.debian.org/selinux-team/mcstrans, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 -mdbtools,0.616187103930455,1.18076583165645,0.230286418237037,https://salsa.debian.org/debian/mdbtools, https://github.com/mdbtools/mdbtools,4863.403715277777,30,60,0,60.0,195.0,0.0,0.0 -mdk4,-0.0590321421912508,2.24456697700196,-0.680856667184963,https://salsa.debian.org/pkg-security-team/mdk4, https://github.com/aircrack-ng/mdk4,1545.4045949074075,4,9,0,11.0,96.0,0.0,0.0 -metapixel,1.79702344778106,4.41782598994729,0.563322363384867,https://salsa.debian.org/debian/metapixel, https://github.com/schani/metapixel.git,3264.761817129629,2,6,0,4.0,25.0,0.0,0.0 -metastore,-0.459726172690202,0.646632395611397,-0.810779207195689,https://salsa.debian.org/rfrancoise/metastore, https://github.com/przemoc/metastore,5431.933668981482,7,2,1,8.0,30.0,0.0,2.0 -meteo-qt,0.869889977667463,3.6161721459482,0.0040074202395827,https://salsa.debian.org/lxqt-team/meteo-qt, https://github.com/dglent/meteo-qt.git,3275.9305092592595,3,17,0,16.0,53.0,0.0,0.0 -Mew,-0.487761537022205,-0.351401006093774,-0.554001035971023,https://salsa.debian.org/debian/mew, https://github.com/kazu-yamamoto/Mew,5007.02537037037,7,24,0,25.0,45.0,0.0,0.0 -Mew,-0.838883032339622,-0.126045926352852,-1.02709151030907,https://salsa.debian.org/debian/mew-beta, https://github.com/kazu-yamamoto/Mew,5007.02537037037,7,24,0,25.0,45.0,0.0,0.0 -mg,0.862684228253274,2.0640170713542,0.214871894355539,https://salsa.debian.org/debian/mg, https://github.com/hboetes/mg.git,2838.976851851852,3,9,0,3.0,25.0,0.0,0.0 -mhc,-0.88840004575251,-0.359527401389474,-1.1575003779866,https://salsa.debian.org/debian/mhc, https://github.com/yoshinari-nomura/mhc,4808.16199074074,0,12,0,8.0,12.0,0.0,0.0 -mhwaveedit,-0.0845847669306184,0.951786472716011,-0.420069015469674,https://salsa.debian.org/multimedia-team/mhwaveedit, https://github.com/magnush/mhwaveedit,4171.932430555556,3,7,0,6.0,15.0,0.0,0.0 -micro-httpd,-0.330007447411277,1.11607346113566,-0.930828308402008,https://github.com/sudipm-mukherjee/micro-httpd.git,https://github.com/sudipm-mukherjee/micro-httpd.git,4120.394328703704,0,4,0,1.0,1.0,0.0,0.0 -MilkyTracker,0.29279524758236,1.35912696404642,-0.166143774088807,https://salsa.debian.org/multimedia-team/milkytracker, https://github.com/milkytracker/MilkyTracker,5764.145347222222,35,32,1,44.0,68.0,0.0,5.0 -miller,-0.648596299880895,1.14533731304417,-1.02246180627076,https://salsa.debian.org/debian/miller, https://github.com/johnkerl/miller.git,3146.11875,32,28,0,52.0,128.0,0.0,1.0 -mimetic,-1.05697671413754,-0.895264369818561,-1.09637233893038,https://git.toastfreeware.priv.at/debian/mimetic.git, https://github.com/tat/mimetic.git,2612.777962962963,3,10,0,8.0,26.0,0.0,0.0 -Minder,-0.419716825135906,2.10055622351027,-0.963291941351267,https://salsa.debian.org/yangfl-guest/Minder, https://github.com/phase1geo/Minder.git,2148.0431712962964,20,27,0,36.0,96.0,0.0,1.0 -minimodem,-0.325041577254677,2.13601189316823,-0.85629761692059,https://github.com/kamalmostafa/minimodem,https://github.com/kamalmostafa/minimodem,3742.168703703704,10,6,0,12.0,71.0,0.0,0.0 -mininet,-0.586251106977904,1.26930234292827,-1.22593537457966,https://salsa.debian.org/debian/mininet, https://github.com/mininet/mininet,5029.987777777777,22,77,1,61.0,58.0,0.0,97.0 -mootools-core,0.74718931277172,2.85606058592291,0.0458469775404697,https://salsa.debian.org/js-team/mootools, https://github.com/mootools/mootools-core.git,2900.105266203704,27,88,0,63.0,54.0,0.0,136.0 -mopidy-internetarchive,-0.218733779096679,2.30887033545798,-0.80281001259213,https://salsa.debian.org/mopidy-team/mopidy-internetarchive, https://github.com/tkem/mopidy-internetarchive,2991.619317129629,0,3,1,2.0,13.0,0.0,0.0 -mopidy-mpris,-0.211044614538665,2.46194017804476,-1.11143451490839,https://salsa.debian.org/mopidy-team/mopidy-mpris, https://github.com/mopidy/mopidy-mpris.git,3543.9779050925927,2,7,0,6.0,34.0,0.0,0.0 -mopidy-podcast,-0.294157072620892,1.76901711844302,-0.738866927112524,https://salsa.debian.org/mopidy-team/mopidy-podcast, https://github.com/tkem/mopidy-podcast.git,2983.3689236111118,2,1,0,3.0,30.0,0.0,0.0 -mopidy-podcast-itunes,-0.246776717910268,2.45919376820864,-0.834541945985495,https://salsa.debian.org/mopidy-team/mopidy-podcast-itunes, https://github.com/tkem/mopidy-podcast-itunes,2949.681608796296,0,2,0,1.0,9.0,0.0,0.0 -mopidy-scrobbler,-0.251729996249238,2.13351567018423,-1.03254437833994,https://salsa.debian.org/mopidy-team/mopidy-scrobbler, https://github.com/mopidy/mopidy-scrobbler.git,3546.397002314815,0,2,0,1.0,49.0,0.0,0.0 -mopidy-somafm,-0.274632583510415,2.16098199184286,-0.85932466597646,https://salsa.debian.org/mopidy-team/mopidy-somafm, https://github.com/AlexandrePTJ/mopidy-somafm,2714.300787037037,0,6,2,4.0,27.0,0.0,0.0 -mopidy-soundcloud,-0.254657001124776,2.15589628850275,-0.945783660132605,https://salsa.debian.org/mopidy-team/mopidy-soundcloud, https://github.com/mopidy/mopidy-soundcloud,3733.279421296296,4,17,2,16.0,160.0,0.0,0.0 -mopidy-tunein,-0.323600289215913,2.62245315214456,-1.09052023264822,https://salsa.debian.org/mopidy-team/mopidy-tunein, https://github.com/kingosticks/mopidy-tunein,2521.253865740741,2,14,1,8.0,41.0,0.0,0.0 -mp3fs,0.916367840422269,4.57271740582271,-0.204729925617273,https://salsa.debian.org/multimedia-team/mp3fs, https://github.com/khenriks/mp3fs.git,5444.498784722222,4,13,0,8.0,77.0,0.0,1.0 -mpDris2,-0.98567157688571,-0.775496833571215,-1.02771064492816,https://salsa.debian.org/debian/mpdris2, https://github.com/eonpatapon/mpDris2.git,4512.103865740741,12,20,0,28.0,118.0,0.0,0.0 -mpv,0.53630425624984,0.862880227567894,0.310135898605756,https://salsa.debian.org/multimedia-team/mpv, https://github.com/mpv-player/mpv,5787.714236111111,512,145,0,277.0,26.0,0.0,383.0 -mrboom-libretro,-0.241313947963314,1.68105448738354,-0.733512143304964,https://salsa.debian.org/games-team/mrboom, https://github.com/Javanaise/mrboom-libretro,2489.062083333333,22,22,0,31.0,43.0,0.0,0.0 -msktutil,-0.166280390128719,1.24236519322128,-0.584188637656133,https://salsa.debian.org/debian/msktutil, https://github.com/msktutil/msktutil,4695.594930555556,8,21,2,11.0,34.0,0.0,1.0 -mtr,2.01790497280666,2.81581968670106,1.45255799095924,https://salsa.debian.org/debian/mtr, https://github.com/traviscross/mtr,3917.006064814815,16,90,0,75.0,432.0,0.0,0.0 -mupen64plus-ui-console,0.726411673166241,3.69950071654932,-0.167073486691435,https://salsa.debian.org/games-team/mupen64plus-ui-console, https://github.com/mupen64plus/mupen64plus-ui-console.git,4990.678877314815,5,31,0,19.0,34.0,0.0,0.0 -mupen64plus-video-glide64mk2,0.129338916523352,2.46374756312801,-0.319653882118895,https://salsa.debian.org/games-team/mupen64plus-video-glide64mk2, https://github.com/mupen64plus/mupen64plus-video-glide64mk2.git,4126.660902777778,7,35,0,24.0,59.0,0.0,0.0 -mupen64plus-video-rice,0.107184135188937,2.17662350668291,-0.314939883273864,https://salsa.debian.org/games-team/mupen64plus-video-rice, https://github.com/mupen64plus/mupen64plus-video-rice.git,4977.983148148148,5,34,0,21.0,49.0,0.0,0.0 -muse,0.351332356513888,0.892442038784953,0.0076925384805099,https://salsa.debian.org/multimedia-team/muse, https://github.com/muse-sequencer/muse.git,5773.049247685185,5,55,0,31.0,49.0,0.0,5.0 -python-musicbrainz-ngs,0.507667812148815,2.19691852220879,-0.005881406022075,https://salsa.debian.org/python-team/packages/musicbrainzngs, https://github.com/alastair/python-musicbrainz-ngs,3992.74300925926,1,28,3,24.0,83.0,0.0,3.0 -mypaint,0.348081542877204,1.0170198091666,-0.0287146791848877,https://salsa.debian.org/python-team/packages/mypaint, https://github.com/mypaint/mypaint,5559.767719907408,333,53,2,235.0,44.0,0.0,30.0 -mysecureshell,-0.484206977087021,1.86061310494511,-0.963705481830918,https://github.com/mysecureshell/mysecureshell,https://github.com/mysecureshell/mysecureshell,2575.567199074074,3,14,1,9.0,102.0,0.0,0.0 -MySQLTuner-perl,1.45008450329338,4.4623073775111,0.346475837679093,https://salsa.debian.org/debian/mysqltuner, https://github.com/major/MySQLTuner-perl,4651.953321759259,46,119,0,115.0,371.0,0.0,0.0 -n2n,0.154245039117666,2.84276728650776,-0.655319557026435,https://github.com/leggewie-DM/n2n,https://github.com/leggewie-DM/n2n,3071.956111111111,2,3,0,3.0,2.0,0.0,0.0 -nabi,-1.11816973546582,0.341187204635932,-1.50571883983408,https://salsa.debian.org/l10n-korean-team/nabi, https://github.com/libhangul/nabi.git,5305.17667824074,0,3,0,1.0,5.0,0.0,1.0 -nadoka,-4.02245162338258,-0.731092112124069,-5.12601068641538,https://salsa.debian.org/ruby-team/nadoka, https://github.com/nadoka/nadoka,4550.066435185186,0,9,0,8.0,6.0,0.0,4.0 -nagvis,0.201664984157249,1.21733150852904,-0.360039202536538,https://salsa.debian.org/nagios-team/nagvis, https://github.com/NagVis/nagvis,5779.626064814815,42,38,0,37.0,263.0,0.0,0.0 -ndppd,-0.529540730178872,1.60701552772874,-1.07669960594917,https://salsa.debian.org/debian/ndppd, https://github.com/DanielAdolfsson/ndppd,4471.594317129629,7,15,1,11.0,75.0,0.0,0.0 -netcdf-cxx4,-0.359140508034327,1.39575611605428,-0.791319508551213,https://salsa.debian.org/debian-gis-team/netcdf-cxx, https://github.com/Unidata/netcdf-cxx4.git,4438.941180555556,3,28,0,22.0,99.0,0.0,0.0 -netcdf-fortran,-0.14822580414833,0.751301517996878,-0.296296549911903,https://salsa.debian.org/debian/netcdf-fortran, https://github.com/Unidata/netcdf-fortran.git,4488.065011574074,7,39,0,30.0,150.0,0.0,0.0 -netdiscover,0.254165243322624,1.9765761262293,-0.211193952578629,https://salsa.debian.org/debian/netdiscover, https://github.com/netdiscover-scanner/netdiscover,5323.416608796297,1,5,0,3.0,24.0,0.0,0.0 -netplan,0.0413337825722798,1.54047847290476,-0.34865392721251,https://salsa.debian.org/debian/netplan.io, https://github.com/canonical/netplan/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -debian,0.173052258802551,2.4986742150936,-0.278390948333838,https://github.com/nm-l2tp/debian.git,https://github.com/nm-l2tp/debian.git,2347.114224537037,1,1,0,2.0,0.0,0.0,0.0 -NetworkManager-ssh,-0.008632079179096,1.14144337287233,-0.276180915789797,https://salsa.debian.org/lhw-guest/network-manager-ssh, https://github.com/danfruehauf/NetworkManager-ssh,3197.1808449074074,4,7,0,12.0,101.0,0.0,1.0 -nixnote2,-0.364727003208344,0.400296551211716,-0.490459150283337,https://salsa.debian.org/debian/nixnote2, https://github.com/robert7/nixnote2,4104.442858796297,11,48,0,37.0,124.0,0.0,4.0 -nmrpflash,-3.91179667431097,-1.83225458972691,-4.34355164695066,https://salsa.debian.org/debian/nmrpflash, https://github.com/jclehner/nmrpflash,2833.107476851852,10,8,0,14.0,32.0,0.0,0.0 -babel-plugin-add-module-exports,-1.41693253870261,1.54418374080048,-2.17009918780442,https://salsa.debian.org/js-team/node-babel-plugin-add-module-exports, https://github.com/59naga/babel-plugin-add-module-exports,2579.554618055556,2,7,0,4.0,98.0,0.0,0.0 -base64url,-1.88612467369204,0.890181623026984,-2.56777349159726,https://salsa.debian.org/js-team/node-base64url, https://github.com/brianloveswords/base64url.git,3614.487638888889,6,11,0,12.0,83.0,0.0,0.0 -node-bindings,-0.312428621187984,2.60571749703414,-1.01375701270411,https://salsa.debian.org/js-team/node-bindings, https://github.com/TooTallNate/node-bindings,2587.139594907408,4,8,0,8.0,5.0,0.0,0.0 -bluebird,0.0584203533242683,1.09378028887832,-0.134349249427407,https://salsa.debian.org/js-team/node-bluebird, https://github.com/petkaantonov/bluebird.git,3418.310659722222,121,152,0,212.0,654.0,0.0,64.0 -clean-css,0.188013900313509,2.7123268564266,-0.469678337835982,https://salsa.debian.org/js-team/node-clean-css, https://github.com/GoalSmashers/clean-css.git,4686.882453703704,63,58,0,89.0,14.0,0.0,9.0 -co,0.46010963765808,2.8630730352548,-0.100326972148371,https://salsa.debian.org/js-team/node-co, https://github.com/tj/co,1229.0172106481482,17,46,0,49.0,211.0,0.0,49.0 -code,-4.75516465588211,-1.4632937686164,-5.45457001879231,https://salsa.debian.org/js-team/node-code, https://github.com/hapijs/code.git,3316.1678125,19,23,0,28.0,93.0,0.0,0.0 -coffeeify,-1.4017605238932,1.46370767843051,-2.21599523453113,https://salsa.debian.org/js-team/node-coffeeify, https://github.com/jnordberg/coffeeify.git,1705.913773148148,1,13,0,10.0,64.0,0.0,0.0 -colormin,-3.50891647248573,-0.684002475369689,-4.26850059419203,https://salsa.debian.org/js-team/node-colormin, https://github.com/ben-eb/colormin,2228.6048148148147,0,6,0,2.0,15.0,0.0,0.0 -combine-source-map,-2.1067627582337,1.45108899699826,-3.14315422017884,https://salsa.debian.org/js-team/node-combine-source-map, https://github.com/thlorenz/combine-source-map.git,1465.4289583333334,4,5,0,8.0,33.0,0.0,0.0 -concat-stream,0.343582799296981,2.81067200894535,-0.124130821027336,https://salsa.debian.org/js-team/node-concat-stream, https://github.com/maxogden/concat-stream.git,2331.521458333333,5,21,0,18.0,3.0,0.0,0.0 -constants-browserify,-0.119402269999244,2.83435405957142,-0.919854661575445,https://salsa.debian.org/js-team/node-constants-browserify, https://github.com/juliangruber/constants-browserify,3669.6149189814814,0,3,0,1.0,5.0,0.0,0.0 -content-disposition,-0.149809142944842,2.32606021129267,-0.852025864437675,https://salsa.debian.org/js-team/node-content-disposition, https://github.com/jshttp/content-disposition.git,2639.744351851852,6,2,0,6.0,32.0,0.0,0.0 -convert-source-map,0.0871772545168336,2.7765163192641,-0.575679277361197,https://salsa.debian.org/js-team/node-convert-source-map, https://github.com/thlorenz/convert-source-map,3505.4009953703703,16,11,0,22.0,67.0,0.0,0.0 -node-cookie-signature,0.0990081923449821,2.82478127347864,-0.68455141487012,https://salsa.debian.org/js-team/node-cookie-signature, https://github.com/visionmedia/node-cookie-signature.git,3831.314548611111,2,13,0,7.0,47.0,0.0,0.0 -core-js,-0.0701104518260918,1.88603402045802,-0.429071568172392,https://salsa.debian.org/js-team/node-core-js, https://github.com/zloirock/core-js.git,3801.387199074074,67,73,0,121.0,289.0,0.0,0.0 -d3-dsv,-0.679293434240525,2.16133513307494,-1.3775271458354,https://salsa.debian.org/js-team/node-d3-dsv, https://github.com/d3/d3-dsv,3863.889201388889,14,6,0,17.0,65.0,0.0,0.0 -node-dateformat,-0.018659539996784,1.65065469123426,-0.432325195682282,https://salsa.debian.org/js-team/node-dateformat, https://github.com/felixge/node-dateformat,3995.859247685185,8,37,0,33.0,231.0,0.0,3.0 -execa,0.707996134565173,3.95514831745918,-0.0722137493386803,https://salsa.debian.org/js-team/node-execa, https://github.com/sindresorhus/execa,2926.695868055556,49,7,0,53.0,128.0,0.0,0.0 -node-expat,-0.408078145296881,2.35300290481543,-1.51502035336025,https://salsa.debian.org/js-team/node-expat, https://github.com/astro/node-expat,4931.300289351852,7,34,0,29.0,341.0,0.0,1.0 -node-formidable,-1.04783524111989,1.33296434240878,-1.63111238831959,https://salsa.debian.org/js-team/node-formidable, https://github.com/felixge/node-formidable.git,4861.668738425926,45,72,0,80.0,292.0,0.0,0.0 -fuzzaldrin-plus,-0.973958977723672,1.13657332196297,-1.45940190891157,https://salsa.debian.org/js-team/node-fuzzaldrin-plus, https://github.com/jeancroy/fuzzaldrin-plus,751.1080902777778,2,6,0,3.0,29.0,0.0,0.0 -grunt-babel,-2.35678960786465,-0.259582300741477,-2.78648060095402,https://salsa.debian.org/js-team/node-grunt-babel, https://github.com/babel/grunt-babel.git,3011.47462962963,8,12,0,13.0,152.0,0.0,0.0 -grunt-cli,1.21107109472389,4.49213329714159,4.42152270994788e-05,https://salsa.debian.org/js-team/node-grunt-cli, https://github.com/gruntjs/grunt-cli.git,3126.2931944444445,8,16,0,20.0,171.0,0.0,0.0 -gulp-babel,-1.67530372262357,0.724029805528159,-2.29292749706761,https://salsa.debian.org/js-team/node-gulp-babel, https://github.com/babel/gulp-babel.git,3018.443101851852,10,21,0,25.0,301.0,0.0,0.0 -gulp-flatten,-2.89436588696502,-0.811100922942588,-3.32195576503688,https://salsa.debian.org/js-team/node-gulp-flatten, https://github.com/armed/gulp-flatten,3247.6037152777776,2,7,0,6.0,17.0,0.0,1.0 -gulp-load-plugins,-1.27258883670201,2.28831541024772,-2.21510324962124,https://salsa.debian.org/js-team/node-gulp-load-plugins, https://github.com/jackfranklin/gulp-load-plugins,3321.845578703704,10,29,0,26.0,138.0,0.0,0.0 -node-gyp,0.037730511659275,0.62114580532967,-0.117324204212255,https://salsa.debian.org/js-team/node-gyp, https://github.com/nodejs/node-gyp.git,4297.548969907408,197,73,0,223.0,832.0,0.0,50.0 -has-flag,0.333474367552048,2.45921115621426,-0.119201405810834,https://salsa.debian.org/js-team/node-has-flag, https://github.com/sindresorhus/has-flag,2203.701111111111,6,2,0,7.0,17.0,0.0,0.0 -inline-source-map,-1.72537784785472,0.325671599655498,-2.1428170787699,https://salsa.debian.org/js-team/node-inline-source-map, https://github.com/thlorenz/inline-source-map.git,3126.5302314814817,5,5,0,9.0,25.0,0.0,0.0 -node-ip,0.547340220496077,3.07298742510266,-0.135752842080027,https://salsa.debian.org/js-team/node-ip, https://github.com/indutny/node-ip,3990.248819444445,6,20,0,17.0,172.0,0.0,0.0 -node-is-arrayish,-0.0113184630568466,2.48027041511655,-0.587863638216693,https://salsa.debian.org/js-team/node-is-arrayish, https://github.com/qix-/node-is-arrayish,1162.9688194444443,2,9,0,3.0,10.0,0.0,0.0 -is-glob,0.663837336901723,3.84456321063262,-0.2147279850304,https://salsa.debian.org/js-team/node-is-glob, https://github.com/jonschlinkert/is-glob,2500.303298611111,3,9,0,5.0,18.0,0.0,0.0 -iscroll,0.32364708981055,2.63348345340653,-0.154719762400236,https://salsa.debian.org/js-team/node-iscroll, https://github.com/cubiq/iscroll,2222.4944791666667,9,37,0,11.0,375.0,0.0,5.0 -jison,-2.87051910587459,-0.590486105342229,-3.32144974710982,https://salsa.debian.org/js-team/node-jison, https://github.com/zaach/jison,3961.697430555556,7,59,1,40.0,368.0,0.0,51.0 -jquery-mousewheel,0.268682115803879,2.6543019787233,-0.191121986553274,https://salsa.debian.org/js-team/node-jquery-mousewheel, https://github.com/jquery/jquery-mousewheel,5390.864629629629,6,15,1,14.0,292.0,0.0,0.0 -millstone,-1.4457365805558,1.0910699972912,-2.03873561212252,https://salsa.debian.org/js-team/node-millstone, https://github.com/mapbox/millstone,4176.2971875,3,21,0,13.0,36.0,0.0,0.0 -mqtt-packet,-2.19615920691419,0.0425211631269649,-2.61854332219364,https://salsa.debian.org/js-team/node-mqtt-packet, https://github.com/mqttjs/mqtt-packet,3391.8497337962963,19,27,0,34.0,71.0,0.0,0.0 -on-finished,0.0613223619439391,2.85317311422618,-0.691330534249103,https://salsa.debian.org/js-team/node-on-finished, https://github.com/jshttp/on-finished,3350.063425925926,5,3,0,7.0,4.0,0.0,0.0 -once,-0.122605388755357,-0.117139771528339,-0.123782183545841,https://salsa.debian.org/js-team/node-once, https://github.com/isaacs/once.git,4074.419212962963,2,6,0,6.0,15.0,0.0,0.0 -os-browserify,-0.326826200434881,2.32526819533929,-0.967178470137319,https://salsa.debian.org/js-team/node-os-browserify, https://github.com/CoderPuppy/os-browserify,1580.0713425925926,1,7,0,3.0,9.0,0.0,0.0 -parse-glob,0.684783388356342,3.86828257497172,-0.249053269580806,https://salsa.debian.org/js-team/node-parse-glob, https://github.com/micromatch/parse-glob,1589.2864351851852,1,5,0,3.0,6.0,0.0,0.0 -parseurl,0.275713726956604,3.62321423684549,-0.647348372427644,https://salsa.debian.org/js-team/node-parseurl, https://github.com/expressjs/parseurl.git,3251.1265972222222,2,3,0,5.0,12.0,0.0,0.0 -FlashPolicyFileServer,-0.951500274803389,1.78318256823556,-1.73652568359203,https://salsa.debian.org/js-team/node-policyfile, https://github.com/3rd-Eden/FlashPolicyFileServer,2142.833703703704,0,3,0,3.0,14.0,0.0,0.0 -react-audio-player,-4.81005834909922,-2.42985034735483,-5.42055822297954,https://salsa.debian.org/js-team/node-react-audio-player, https://github.com/justinmc/react-audio-player.git,2489.7878125,9,20,0,18.0,119.0,0.0,0.0 -regenerate-unicode-properties,-0.667486626670699,0.961835250203264,-1.0118784845417,https://salsa.debian.org/js-team/node-regenerate-unicode-properties, https://github.com/mathiasbynens/regenerate-unicode-properties,2664.765659722222,3,2,0,4.0,7.0,0.0,0.0 -regjsparser,-0.779840416348034,1.20033650627693,-1.19628205918665,https://salsa.debian.org/js-team/node-regjsparser, https://github.com/jviereck/regjsparser.git,3676.996875,2,16,0,12.0,27.0,0.0,0.0 -node-resolve,0.557566307269055,3.29841790440674,-0.140777177082836,https://salsa.debian.org/js-team/node-resolve, https://github.com/substack/node-resolve.git,4523.801516203704,39,26,0,50.0,258.0,0.0,0.0 -sprintf.js,0.401429060889419,3.15788560638359,-0.213299337279433,https://salsa.debian.org/js-team/node-sprintf-js, https://github.com/alexei/sprintf.js,3813.8363078703705,3,28,0,21.0,190.0,0.0,0.0 -static-module,-2.92950845621944,0.0141965632135324,-3.69193225519016,https://salsa.debian.org/js-team/node-static-module, https://github.com/substack/static-module.git,3102.503912037037,8,14,0,17.0,66.0,0.0,0.0 -node-stringprep,-1.25858700999564,1.42954085479859,-2.22272661766433,https://salsa.debian.org/js-team/node-stringprep, https://github.com/node-xmpp/node-stringprep,2104.009780092593,2,22,0,18.0,115.0,0.0,1.0 -tape,-1.35334562216163,0.823088709731211,-1.8448352116695,https://salsa.debian.org/js-team/node-tape, https://github.com/ljharb/tape.git,4022.1372916666655,54,62,0,96.0,488.0,0.0,0.0 -node-tar,0.100924009973991,1.15545696112116,-0.119495139934561,https://salsa.debian.org/js-team/node-tar, https://github.com/npm/node-tar,4544.303344907407,24,18,1,38.0,142.0,0.0,0.0 -node-temp,-0.899872573519337,2.40957987083396,-1.95345823682401,https://salsa.debian.org/js-team/node-temp, https://github.com/bruce/node-temp,4595.628541666667,2,39,2,31.0,105.0,0.0,0.0 -json-document,-4.95324562179892,-2.90193751949745,-5.45541673339559,https://salsa.debian.org/js-team/node-trust-json-document, https://github.com/anvilresearch/json-document.git,471.86045138888886,0,5,0,4.0,7.0,0.0,0.0 -tunnel-agent,1.17927850709519,4.96316326784085,0.111092480474075,https://salsa.debian.org/js-team/node-tunnel-agent, https://github.com/mikeal/tunnel-agent,1464.1568634259258,0,12,0,9.0,131.0,0.0,0.0 -type-check,-0.619856366958671,1.57198707442737,-1.05998760669897,https://salsa.debian.org/js-team/node-type-check, https://github.com/gkz/type-check.git,3579.125787037037,2,5,0,3.0,20.0,0.0,1.0 -ultron,-2.78131974187543,-0.475868280712011,-3.30701684526054,https://salsa.debian.org/js-team/node-ultron, https://github.com/unshiftio/ultron,2972.2796527777778,1,7,0,5.0,13.0,0.0,0.0 -node-unicode-data,-2.49868396613233,-1.5066066306956,-2.7694541364111,https://salsa.debian.org/js-team/node-unicode-data, https://github.com/mathiasbynens/node-unicode-data.git,3658.053796296296,6,3,0,7.0,29.0,0.0,0.0 -unicode-property-aliases,-2.12249657255468,0.505413648253651,-2.75088215035733,https://salsa.debian.org/js-team/node-unicode-property-aliases, https://github.com/mathiasbynens/unicode-property-aliases,2644.066365740741,2,1,0,3.0,4.0,0.0,0.0 -unicode-property-aliases-ecmascript,-0.493024144913837,2.13620802229314,-1.13713197185486,https://salsa.debian.org/js-team/node-unicode-property-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-aliases-ecmascript,1978.1429398148148,1,2,0,2.0,3.0,0.0,0.0 -unicode-property-value-aliases,-2.108074165012,0.545895780770114,-2.75118210058696,https://salsa.debian.org/js-team/node-unicode-property-value-aliases, https://github.com/mathiasbynens/unicode-property-value-aliases.git,2643.966689814815,2,2,0,3.0,3.0,0.0,0.0 -unicode-property-value-aliases-ecmascript,-2.64595253987012,-0.0300807748125525,-3.28446453060443,https://salsa.debian.org/js-team/node-unicode-property-value-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript,1977.9928009259256,0,1,0,1.0,0.0,0.0,0.0 -unicode-tr51,-2.89707993043163,-0.908759240234734,-3.31160089453127,https://salsa.debian.org/js-team/node-unicode-tr51, https://github.com/mathiasbynens/unicode-tr51,1619.1367939814816,1,1,0,2.0,6.0,0.0,0.0 -utilities,0.751024851378057,4.5416704470691,-0.567624344840985,https://salsa.debian.org/js-team/node-utilities, https://github.com/mde/utilities.git,3873.020138888889,1,19,0,12.0,22.0,0.0,0.0 -node-uuid,0.283624179006985,1.60495990443046,-0.0900742762397439,https://salsa.debian.org/js-team/node-uuid, https://github.com/kelektiv/node-uuid,4670.203680555555,41,41,2,59.0,325.0,0.0,0.0 -node-v8flags,0.119029118734221,2.50474784598512,-0.507082336173383,https://salsa.debian.org/js-team/node-v8flags, https://github.com/tkellen/node-v8flags.git,1721.1332407407408,15,3,0,11.0,73.0,0.0,0.0 -vhost,-1.65452634059536,0.68453701168403,-2.28784657793076,https://salsa.debian.org/js-team/node-vhost, https://github.com/expressjs/vhost.git,3246.905150462963,1,3,0,2.0,0.0,0.0,0.0 -vue-resource,-1.80456875167718,-0.385606923713162,-2.07059831607824,https://salsa.debian.org/js-team/node-vue-resource, https://github.com/pagekit/vue-resource,2754.411851851852,8,21,0,22.0,133.0,0.0,6.0 -webpack-merge,-3.84930720105508,-1.3808622270089,-4.33767609013551,https://salsa.debian.org/js-team/node-webpack-merge, https://github.com/survivejs/webpack-merge.git,3033.8957060185185,15,23,0,32.0,63.0,0.0,0.0 -node-ytdl-core,-0.124680044293024,2.45811938388727,-0.818351267515515,https://salsa.debian.org/js-team/node-ytdl-core, https://github.com/fent/node-ytdl-core.git,4096.004525462963,70,23,0,76.0,490.0,0.0,0.0 -ntirpc,-0.595167887289792,1.66581906071889,-1.2552045304986,https://salsa.debian.org/debian/libntirpc, https://github.com/nfs-ganesha/ntirpc.git,4521.189837962963,43,88,0,41.0,65.0,0.0,0.0 -Nuitka,-0.0866725521139052,0.705808351742953,-0.498808680116414,https://github.com/Nuitka/Nuitka,https://github.com/Nuitka/Nuitka,4857.776284722222,166,5,3,152.0,130.0,0.0,0.0 -nvidia-xconfig,0.973432024818542,2.44172726764876,0.294368659253463,https://salsa.debian.org/nvidia-team/nvidia-xconfig, https://github.com/NVIDIA/nvidia-xconfig,5775.908113425926,1,3,0,4.0,2.0,0.0,0.0 -nvpy,-0.314446707252604,2.89228615749629,-1.28529114472027,https://github.com/stefanv/nvpy/tree/debian,https://github.com/stefanv/nvpy,2724.198113425926,2,29,0,16.0,0.0,0.0,0.0 -O-Saft,-0.0182736193438765,2.19990444063162,-0.450421231744201,https://salsa.debian.org/pkg-security-team/o-saft, https://github.com/OWASP/O-Saft,4011.0202777777777,3,10,0,9.0,40.0,0.0,0.0 -oar,-1.46349459405756,-0.66068371910341,-1.78172910057842,https://github.com/oar-team/oar,https://github.com/oar-team/oar,5765.841585648148,5,46,5,15.0,43.0,0.0,0.0 -obconf-debian,0.747575573263091,1.78421646372965,0.220390431114968,https://github.com/mati75/obconf-debian.git,https://github.com/mati75/obconf-debian.git,3725.690393518519,0,5,0,3.0,2.0,0.0,0.0 -obs-studio,0.13129229188422,0.962234071955576,-0.123242143823789,https://salsa.debian.org/multimedia-team/obs-studio, https://github.com/jp9000/obs-studio.git,3726.9157986111113,426,253,0,412.0,244.0,0.0,264.0 -obus,-3.52524620113593,-1.66503896659688,-4.16321842129876,https://salsa.debian.org/ocaml-team/obus, https://github.com/ocaml-community/obus,5340.527511574074,3,16,1,12.0,20.0,0.0,0.0 -ocaml-alsa,-0.665124278231797,1.26537979889606,-1.03837535796002,https://salsa.debian.org/ocaml-team/ocaml-alsa, https://github.com/savonet/ocaml-alsa.git,460.5193634259259,2,8,0,5.0,4.0,0.0,0.0 -ocaml-duppy,-1.30549317346984,1.46644873845308,-2.09596198610175,https://salsa.debian.org/ocaml-team/ocaml-duppy, https://github.com/savonet/ocaml-duppy.git,5432.834733796296,2,8,0,6.0,6.0,0.0,0.0 -ocaml-expect,-1.12710325489819,2.79236608137763,-2.30651922663352,https://salsa.debian.org/ocaml-team/ocaml-expect, https://github.com/gildor478/ocaml-expect.git,3170.227523148148,0,3,0,1.0,2.0,0.0,0.0 -extunix,-2.18729171456941,-0.302814937809133,-2.60840668299499,https://salsa.debian.org/ocaml-team/ocaml-extunix, https://github.com/ygrek/extunix.git,4849.849606481482,10,12,0,18.0,30.0,0.0,0.0 -ocaml-ipaddr,-1.04460189937702,1.86220420428294,-1.78547586951581,https://salsa.debian.org/ocaml-team/ocaml-ipaddr, https://github.com/mirage/ocaml-ipaddr.git,3725.519247685185,9,20,0,22.0,40.0,0.0,0.0 -ocaml-re,-1.09504011532023,1.16854484829361,-1.53456321165651,https://salsa.debian.org/ocaml-team/ocaml-re, https://github.com/ocaml/ocaml-re,4365.659490740741,11,42,1,39.0,72.0,0.0,0.0 -sedlex,-2.79539950396161,0.612137734646107,-3.66356668364655,https://salsa.debian.org/ocaml-team/ocaml-sedlex, https://github.com/ocaml-community/sedlex,5659.057592592592,13,22,0,27.0,81.0,0.0,0.0 -ocamlbuild,0.833012950037744,3.60463350804861,-0.260670230330295,https://salsa.debian.org/ocaml-team/ocamlbuild, https://github.com/ocaml/ocamlbuild.git,5691.866099537037,18,45,0,44.0,121.0,0.0,0.0 -opencubicplayer,0.735336021595804,1.89947277671351,0.100194882624747,https://salsa.debian.org/multimedia-team/ocp, https://github.com/mywave82/opencubicplayer,4416.066331018518,9,13,0,12.0,37.0,0.0,0.0 -open-ath9k-htc-firmware,0.760314197282515,2.94266263205229,-0.0525201093797252,https://salsa.debian.org/debian/open-ath9k-htc-firmware, https://github.com/qca/open-ath9k-htc-firmware.git,3892.040439814815,5,21,0,17.0,37.0,0.0,4.0 -openbox-debian,0.35877083084497,0.569635577870166,0.200173859064958,https://github.com/mati75/openbox-debian,https://github.com/mati75/openbox-debian,3123.4283217592592,2,10,0,8.0,12.0,0.0,0.0 -openbox-menu,0.643129273781225,3.00887100555267,-0.138988018486117,https://github.com/mati75/openbox-menu.git,https://github.com/mati75/openbox-menu.git,2669.041875,1,4,0,4.0,3.0,0.0,0.0 -OpenCC,0.021909228852096,0.482422296283242,-0.161186166183118,https://salsa.debian.org/debian/opencc, https://github.com/BYVoid/OpenCC,3838.832743055556,56,72,0,83.0,474.0,0.0,3.0 -opendht,-1.50225361304097,-0.112442319707032,-1.92553614549029,https://salsa.debian.org/debian/opendht, https://github.com/savoirfairelinux/opendht.git,3308.872152777778,32,40,0,40.0,23.0,0.0,13.0 -orocos_kinematics_dynamics,-0.494555815193729,0.666910920716304,-0.754654156139584,https://salsa.debian.org/science-team/orocos-kdl, https://github.com/orocos/orocos_kinematics_dynamics.git,5760.238553240741,20,61,0,49.0,251.0,0.0,0.0 -osdlyrics,-1.01076524868585,2.54102753975829,-1.93642710707603,https://salsa.debian.org/debian/osdlyrics, https://github.com/osdlyrics/osdlyrics.git,5185.11837962963,14,35,0,23.0,0.0,0.0,1.0 -osm-gps-map,0.485239482198287,1.63156529786019,0.028871692887316,https://salsa.debian.org/debian-gis-team/osm-gps-map, https://github.com/nzjrs/osm-gps-map,5396.578356481482,12,33,1,30.0,59.0,0.0,0.0 -ossim,0.219420615909635,1.41012224206322,-0.309374107830384,https://salsa.debian.org/debian-gis-team/ossim, https://github.com/ossimlabs/ossim.git,2917.994282407408,12,49,0,31.0,11.0,0.0,1.0 -osslsigncode,0.169238483954773,2.90876424759937,-0.725862885957127,https://salsa.debian.org/debian/osslsigncode, https://github.com/mtrojnar/osslsigncode.git,3941.3454282407406,25,12,0,28.0,157.0,0.0,0.0 -ostinato,-0.156975688881461,1.83456394174619,-0.76457756156653,https://salsa.debian.org/debian/ostinato, https://github.com/pstavirs/ostinato,3046.754988425926,4,10,3,11.0,90.0,0.0,2.0 -othman,-1.27923059995522,0.901018381611301,-1.71931108968386,https://salsa.debian.org/islamic-team/othman, https://github.com/ojuba-org/othman.git,4827.982824074074,2,13,0,8.0,20.0,0.0,0.0 -ounit,-0.362741256164002,0.449711787060776,-0.619120319081785,https://salsa.debian.org/ocaml-team/ounit, https://github.com/gildor478/ounit.git,1284.2142476851852,12,7,0,14.0,26.0,0.0,0.0 -outguess,0.14978275487195,1.09749565786665,-0.226083672997015,https://salsa.debian.org/pkg-security-team/outguess, https://github.com/resurrecting-open-source-projects/outguess,1029.0813888888888,1,3,0,2.0,9.0,0.0,0.0 -overpass-api-python-wrapper,-0.0322169908290347,2.66354784788558,-0.727560338669457,https://salsa.debian.org/python-team/packages/overpass, https://github.com/mvexel/overpass-api-python-wrapper.git,2968.0383449074075,4,26,0,24.0,100.0,0.0,0.0 -papi,0.164874136696093,1.74949965993817,-0.347204527615739,https://salsa.debian.org/hpc-team/papi, https://github.com/icl-utk-edu/papi,5785.065613425926,65,102,1,48.0,33.0,0.0,13.0 -par2cmdline,0.200560850008367,0.946302393661034,-0.114418383974506,https://salsa.debian.org/jcfp/par2cmdline, https://github.com/Parchive/par2cmdline.git,4198.389097222223,9,27,0,27.0,115.0,0.0,0.0 -parsedatetime,1.19436693284144,3.37118485155232,0.337046843928615,https://salsa.debian.org/python-team/packages/parsedatetime, https://github.com/bear/parsedatetime,3739.247199074074,8,57,2,39.0,150.0,0.0,0.0 -patsy,0.267491786498725,1.41925731530505,-0.126148339679563,https://salsa.debian.org/med-team/patsy, https://github.com/pydata/patsy,4676.813194444445,3,15,0,17.0,197.0,0.0,0.0 -pavucontrol-qt,1.24644886245305,4.8736917607008,0.152912839496978,https://salsa.debian.org/lxqt-team/pavucontrol-qt, https://github.com/lxqt/pavucontrol-qt.git,5699.737418981482,142,57,0,110.0,74.0,0.0,0.0 -pbcopper,-1.38741598418141,-0.0972708878557045,-1.83645525098376,https://salsa.debian.org/med-team/pbcopper, https://github.com/PacificBiosciences/pbcopper.git,2608.9496875,0,25,0,9.0,5.0,0.0,0.0 -pcapfix,0.0933295762374161,2.13241654988334,-0.371290050399035,https://salsa.debian.org/debian/pcapfix, https://github.com/Rup0rt/pcapfix,3586.925,0,13,0,6.0,14.0,0.0,0.0 -pcapy,0.0349538124577532,1.25479928250535,-0.307556293496425,https://salsa.debian.org/python-team/packages/pcapy, https://github.com/CoreSecurity/pcapy.git,1937.232789351852,7,20,0,17.0,91.0,0.0,6.0 -pcl,-0.434415415199578,-0.18586657363712,-0.537636421314271,https://salsa.debian.org/science-team/pcl, https://github.com/PointCloudLibrary/pcl,4663.696782407407,183,548,3,326.0,69.0,0.0,19.0 -pcmanfm,0.910471152792046,1.31068264307585,0.609872304451939,https://salsa.debian.org/lxde-team/pcmanfm, https://github.com/lxde/pcmanfm,5014.954907407408,162,27,0,87.0,11.0,0.0,0.0 -flext,-0.0850254405392123,1.79955929698887,-0.691872893312516,https://salsa.debian.org/multimedia-team/pd/pd-flext, https://github.com/grrrr/flext.git,5601.788298611111,3,10,0,6.0,23.0,0.0,0.0 -ggee,0.213738133452602,2.10511371007261,-0.419276384857071,https://salsa.debian.org/multimedia-team/pd/pd-ggee, https://github.com/pd-externals/ggee,5602.669178240741,2,15,0,6.0,8.0,0.0,0.0 -pd-iemmatrix,-0.326792863942795,1.41622916264845,-0.702774565701274,https://salsa.debian.org/multimedia-team/pd/pd-iemmatrix, https://github.com/iem-projects/pd-iemmatrix,5648.038460648148,0,11,0,2.0,0.0,0.0,0.0 -pdfminer.six,0.0208023167964793,1.0139403963297,-0.25847023734503,https://salsa.debian.org/python-team/packages/pdfminer, https://github.com/pdfminer/pdfminer.six.git,5691.144791666667,73,66,0,116.0,635.0,0.0,0.0 -peek,0.221373178589643,2.28386653600158,-0.279046957327904,https://salsa.debian.org/debian/peek, https://github.com/phw/peek.git,2556.2171064814816,148,23,0,127.0,504.0,0.0,0.0 -perftest,-0.255066589970343,1.16247955467135,-0.648088089401375,https://salsa.debian.org/hpc-team/perftest, https://github.com/linux-rdma/perftest.git,5766.237222222222,45,67,0,63.0,139.0,0.0,1.0 -perl-cross-debian,0.544266159578039,4.51077365118303,-0.746210929605819,https://github.com/codehelp/perl-cross-debian,https://github.com/codehelp/perl-cross-debian,413.1343634259259,0,1,2,1.0,2.0,0.0,1.0 -project--perl-depends,-0.0980943950399754,2.69711137416204,-0.791618903105446,https://salsa.debian.org/perl-team/modules/packages/perl-depends, https://github.com/jaalto/project--perl-depends.git,2417.02125,0,1,0,1.0,0.0,0.0,0.0 -perl6-readline,0.233581275914633,2.63588830523579,-0.501520760452775,https://salsa.debian.org/perl6-team/modules/perl6-readline, https://github.com/drforr/perl6-readline.git,1710.428935185185,3,11,0,10.0,39.0,0.0,0.0 -zef,-0.158987933286221,1.62456160725648,-0.601563466885773,https://salsa.debian.org/perl6-team/modules/perl6-zef, https://github.com/ugexe/zef.git,3805.8422569444447,19,20,0,23.0,111.0,0.0,0.0 -persp-projectile,-0.639585184966139,3.28632343896646,-1.7735281376641,https://salsa.debian.org/emacsen-team/persp-projectile, https://github.com/bbatsov/persp-projectile.git,2006.7800810185183,9,2,0,10.0,40.0,0.0,0.0 -pev,0.326196959423477,2.60718167412258,-0.297393072805151,https://salsa.debian.org/debian/pev, https://github.com/merces/pev,0.0019791666666666,1,1,0,1.0,0.0,0.0,0.0 -pexpect,0.814121536373887,1.98889520715382,0.266774843345615,https://salsa.debian.org/python-team/packages/pexpect, https://github.com/pexpect/pexpect,5767.471574074074,21,92,0,85.0,558.0,0.0,0.0 -pg_checksums,-1.82134420236719,-0.13729698675695,-2.23031878481082,https://salsa.debian.org/postgresql/pg-checksums, https://github.com/credativ/pg_checksums.git,1977.03125,1,6,0,4.0,9.0,0.0,0.0 -pg_fact_loader,-1.84514999754585,1.7612439253021,-2.85576843286447,https://salsa.debian.org/postgresql/pg-fact-loader, https://github.com/enova/pg_fact_loader.git,1795.1245717592592,2,6,0,5.0,3.0,0.0,0.0 -pg8000,-0.425873307032282,2.47939255951003,-1.2002236195433,https://salsa.debian.org/python-team/packages/pg8000, https://github.com/mfenniak/pg8000,3962.2166666666662,11,25,0,20.0,142.0,0.0,0.0 -pgbadger,-0.315216750586259,1.89417835219122,-0.750043583624075,https://salsa.debian.org/postgresql/pgbadger, https://github.com/darold/pgbadger.git,4259.984722222222,12,88,0,68.0,205.0,0.0,7.0 -pgsql-ogr-fdw,-1.59721705299543,1.0989905750354,-2.20314319943185,https://salsa.debian.org/debian-gis-team/pgsql-ogr-fdw, https://github.com/pramsey/pgsql-ogr-fdw.git,3285.024895833333,8,10,0,9.0,59.0,0.0,0.0 -semver,0.409271212998555,2.86586850175265,-0.1464380119791,https://salsa.debian.org/php-team/pear/php-composer-semver, https://github.com/composer/semver,2969.092777777778,37,21,0,44.0,78.0,0.0,1.0 -Console_Table,-0.0495487944916377,1.78305117168249,-0.412769552291905,https://salsa.debian.org/php-team/pear/php-console-table, https://github.com/pear/Console_Table.git,2649.310555555556,1,12,0,9.0,14.0,0.0,0.0 -constant_time_encoding,-2.08345056258572,2.10571693862927,-3.3638483931456,https://salsa.debian.org/php-team/pear/php-constant-time, https://github.com/paragonie/constant_time_encoding,2771.7821296296297,7,11,0,13.0,33.0,0.0,0.0 -Crypt_GPG,0.921065803701291,4.32644785490778,-0.369679299393762,https://salsa.debian.org/php-team/pear/php-crypt-gpg, https://github.com/pear/Crypt_GPG.git,5743.496597222223,6,19,0,16.0,21.0,0.0,0.0 -DirectoryScanner,-0.449340208836042,1.85527006497102,-0.905098171654404,https://salsa.debian.org/php-team/pear/php-directory-scanner, https://github.com/theseer/DirectoryScanner.git,4264.154236111112,0,7,0,2.0,12.0,0.0,0.0 -link-util,-0.442538184706823,2.47460229459308,-1.26537149869149,https://salsa.debian.org/php-team/pear/php-fig-link-util, https://github.com/php-fig/link-util,1680.1398148148148,5,2,0,5.0,11.0,0.0,0.0 -php-file-iterator,0.311453315128483,2.11295874771565,-0.242017200503537,https://salsa.debian.org/php-team/pear/php-file-iterator, https://github.com/sebastianbergmann/php-file-iterator,5147.326273148148,9,12,0,16.0,79.0,0.0,0.0 -horde,-0.475481946151392,0.193672797634758,-0.728948802917928,https://salsa.debian.org/horde-team/php-horde, https://github.com/horde/horde.git,3269.665474537037,81,80,0,67.0,71.0,0.0,0.0 -ActiveSync,-0.0745412837503706,1.90299252156807,-0.59696941289219,https://salsa.debian.org/horde-team/php-horde-activesync, https://github.com/horde/ActiveSync.git,4982.044305555555,9,18,0,13.0,5.0,0.0,0.0 -html5-php,-0.320820055183681,2.12276497293667,-0.829847557102226,https://salsa.debian.org/php-team/pear/php-masterminds-html5, https://github.com/Masterminds/html5-php,3846.3884953703705,7,39,1,37.0,85.0,0.0,6.0 -vfsStream,-3.81468264008094,-1.31257229618589,-4.33563157951327,https://salsa.debian.org/php-team/pear/php-mikey179-vfsstream, https://github.com/bovigo/vfsStream,5683.637013888889,11,48,1,35.0,196.0,0.0,26.0 -monolog,0.505413594650869,3.17086810943634,-0.379310857818425,https://salsa.debian.org/php-team/pear/php-monolog, https://github.com/Seldaek/monolog,4676.6184375,183,372,3,397.0,405.0,0.0,63.0 -TypeResolver,0.0218360213936537,2.31253193880415,-0.41298883524215,https://salsa.debian.org/php-team/pear/php-phpdocumentor-type-resolver, https://github.com/phpDocumentor/TypeResolver,3092.0947569444443,18,31,1,40.0,91.0,0.0,0.0 -phpseclib,0.153021438243648,1.60110980796074,-0.114735272657912,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.23318287037,80,98,0,135.0,155.0,0.0,5.0 -sql-formatter,-0.407920410951981,2.27738498271881,-1.15300547005679,https://salsa.debian.org/php-team/pear/php-sql-formatter, https://github.com/doctrine/sql-formatter.git,4125.636030092593,10,31,0,25.0,28.0,0.0,0.0 -contracts,0.6071508907978,3.53076181825099,-0.188249023495799,https://salsa.debian.org/php-team/pear/php-symfony-contracts, https://github.com/symfony/contracts,1906.8477083333328,28,26,0,51.0,11.0,0.0,0.0 -polyfill,0.593613053162614,2.9045150589304,-0.100477405884853,https://salsa.debian.org/php-team/pear/php-symfony-polyfill, https://github.com/symfony/polyfill,2902.222094907408,100,47,0,117.0,227.0,0.0,0.0 -text_password,0.800386407625348,3.73544611045218,-0.265158245379795,https://salsa.debian.org/php-team/pear/php-text-password, https://github.com/pear/text_password.git,3427.7869097222224,0,13,0,7.0,6.0,0.0,0.0 -php-text-template,0.273515608300623,2.25774732371293,-0.264962638322587,https://salsa.debian.org/php-team/pear/php-text-template, https://github.com/sebastianbergmann/php-text-template,5133.045208333333,0,8,0,5.0,13.0,0.0,0.0 -CssToInlineStyles,-4.95810438237822,-2.56324795339309,-5.47013389217012,https://salsa.debian.org/php-team/pear/php-tijsverkoyen-css-to-inline-styles, https://github.com/tijsverkoyen/CssToInlineStyles,4791.660081018518,7,34,0,31.0,149.0,0.0,0.0 -php-timer,0.0545002781520511,1.73540299688516,-0.303412385183105,https://salsa.debian.org/php-team/pear/php-timer, https://github.com/sebastianbergmann/php-timer,4962.924282407407,4,10,0,11.0,38.0,0.0,0.0 -php-token-stream,-0.0775398449897543,1.03145743264247,-0.318473892612099,https://salsa.debian.org/php-team/pear/php-token-stream, https://github.com/sebastianbergmann/php-token-stream,4281.2169675925925,15,15,0,18.0,77.0,0.0,0.0 -phpdox,-1.09646797344632,0.606640775216526,-1.56648703386062,https://salsa.debian.org/php-team/pear/phpdox, https://github.com/theseer/phpdox,4604.837280092593,11,44,0,36.0,366.0,0.0,0.0 -phpLDAPadmin,0.953810641146157,1.60078462608577,0.503075144423528,https://salsa.debian.org/php-team/pear/phpldapadmin, https://github.com/leenooks/phpLDAPadmin,5264.4283796296295,42,25,0,26.0,189.0,0.0,1.0 -phploc,-0.674329415619346,1.1227196642677,-1.13285508973192,https://salsa.debian.org/php-team/pear/phploc, https://github.com/sebastianbergmann/phploc,5362.042534722223,18,31,0,38.0,226.0,0.0,0.0 -phpseclib,-0.0734036089505385,1.24832823214775,-0.316158985820838,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.23318287037,80,98,0,135.0,155.0,0.0,5.0 -comparator,0.101690878640192,2.33988895780117,-0.330151804512695,https://salsa.debian.org/php-team/pear/phpunit-comparator, https://github.com/sebastianbergmann/comparator,3686.3957291666666,20,9,0,25.0,105.0,0.0,0.0 -pidcat,-0.234817533073335,2.87451904471103,-1.06968806601924,https://salsa.debian.org/python-team/packages/pidcat, https://github.com/JakeWharton/pidcat.git,3155.524837962963,4,40,0,30.0,259.0,0.0,0.0 -Piexif,-0.804195689774663,1.63309323378366,-1.38441766025259,https://salsa.debian.org/python-team/packages/piexif, https://github.com/hMatoba/Piexif,3307.7984837962963,5,12,0,10.0,155.0,0.0,0.0 -pipewalker,0.502062773185375,3.1638761301447,-0.361305801860162,https://salsa.debian.org/debian/pipewalker, https://github.com/artemsen/pipewalker,2088.955266203704,1,4,0,3.0,6.0,0.0,0.0 -pipexec,-0.25527869738338,1.55231742744356,-0.688395809896546,https://salsa.debian.org/alteholz/pipexec, https://github.com/flonatel/pipexec.git,3308.5569560185186,0,11,0,6.0,12.0,0.0,0.0 -pk4,-1.80758651542235,0.200070534601031,-2.23077983239572,https://github.com/Debian/pk4,https://github.com/Debian/pk4,1044.0391203703705,0,1,0,1.0,4.0,0.0,0.0 -pkcs11-helper,1.21040326005582,4.07536636688302,0.246112919849419,https://salsa.debian.org/opensc-team/pkcs11-helper, https://github.com/OpenSC/pkcs11-helper,5754.408819444445,16,2,0,13.0,58.0,0.0,3.0 -pkgconf,-0.0511523263616914,0.620673588853219,-0.270334697261611,https://salsa.debian.org/debian/pkgconf, https://github.com/pkgconf/pkgconf,4516.657650462963,52,29,1,67.0,201.0,0.0,9.0 -pktstat,2.33387873947423,6.05028824026699,0.926044188042969,https://salsa.debian.org/debian/pktstat, https://github.com/dleonard0/pktstat,2938.7848958333334,0,4,0,2.0,5.0,0.0,0.0 -planetblupi,-0.279832678908296,2.33686368606251,-0.892136730966366,https://salsa.debian.org/games-team/planetblupi, https://github.com/blupi-games/planetblupi,2504.3208449074077,5,7,1,9.0,18.0,0.0,0.0 -gmailfeed,-0.907835046687276,1.53774343821795,-1.46042428853611,https://salsa.debian.org/qt-kde-team/extras/plasma-gmailfeed, https://github.com/anthon38/gmailfeed.git,2727.0607638888887,3,4,0,4.0,17.0,0.0,0.0 -plastex,0.243269547214912,2.61323124746283,-0.701164178072454,https://salsa.debian.org/python-team/packages/plastex, https://github.com/plastex/plastex,5539.2969907407405,17,19,1,19.0,79.0,0.0,1.0 -pngquant,0.599731548712399,2.71359056454755,-0.234142593418352,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.038333333333,23,38,0,41.0,383.0,0.0,0.0 -pngquant,0.753030091172879,2.4617924213456,0.0694002171362876,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.038333333333,23,38,0,41.0,383.0,0.0,0.0 -pocketsphinx,-0.132109296630766,0.47671061061309,-0.332206468839797,https://salsa.debian.org/a11y-team/pocketsphinx, https://github.com/cmusphinx/pocketsphinx,5652.478784722222,5,30,2,19.0,191.0,0.0,5.0 -pocl,0.0943083761808759,0.532768156178064,-0.131593338908955,https://salsa.debian.org/opencl-team/pocl, https://github.com/pocl/pocl,4689.650729166667,26,119,2,96.0,172.0,0.0,16.0 -popt,0.845774117920914,1.4698340744768,0.461614111963835,https://salsa.debian.org/debian/popt, https://github.com/rpm-software-management/popt.git,5739.674664351852,38,10,0,43.0,33.0,0.0,0.0 -portalocker,-0.676177569358075,1.22899794936804,-1.08190152048121,https://salsa.debian.org/python-team/packages/portalocker, https://github.com/WoLpH/portalocker,4590.855023148149,5,21,0,17.0,76.0,0.0,0.0 -postfixadmin,1.37185949679054,2.82255617244197,0.56261435096877,https://salsa.debian.org/debian/postfixadmin, https://github.com/postfixadmin/postfixadmin,5760.021805555555,53,77,1,94.0,124.0,0.0,0.0 -postgis-java,-0.22495117816695,0.620497208731479,-0.436839173209168,https://salsa.debian.org/debian-gis-team/postgis-java, https://github.com/postgis/postgis-java.git,5635.324131944444,8,12,0,15.0,32.0,0.0,1.0 -autodoc,0.494184087535717,2.04455463708516,-0.19325004547784,https://salsa.debian.org/debian/postgresql-autodoc, https://github.com/cbbrowne/autodoc.git,4575.885358796297,5,13,0,11.0,24.0,0.0,0.0 -pg_filedump,-0.611561194128062,1.23196187212564,-1.09741231143825,https://salsa.debian.org/postgresql/postgresql-filedump, https://github.com/df7cb/pg_filedump.git,4622.502986111111,3,6,0,6.0,19.0,0.0,0.0 -postgresql-hll,-1.55348166358091,0.6872065961349,-2.28816810183399,https://salsa.debian.org/postgresql/postgresql-hll, https://github.com/citusdata/postgresql-hll.git,3859.495925925926,23,21,0,27.0,124.0,0.0,0.0 -mysql_fdw,-1.26061749815957,0.322602152164847,-1.71760848584065,https://salsa.debian.org/postgresql/postgresql-mysql-fdw, https://github.com/EnterpriseDB/mysql_fdw.git,4475.722986111111,5,27,0,22.0,248.0,0.0,0.0 -postgresql-numeral,-1.51345223641763,1.62434313134593,-2.29370642200778,https://github.com/df7cb/postgresql-numeral,https://github.com/df7cb/postgresql-numeral,2361.1246527777776,0,4,0,2.0,3.0,0.0,0.0 -plsh,-1.60265597816638,-0.418572941215369,-1.90285363381829,https://salsa.debian.org/postgresql/postgresql-plsh, https://github.com/petere/plsh.git,3969.914502314815,1,1,0,2.0,23.0,0.0,0.0 -postgrey,0.416212581147819,0.800779561555294,0.167905090020999,https://salsa.debian.org/debian/postgrey, https://github.com/schweikert/postgrey.git,5469.949907407407,10,14,0,22.0,75.0,0.0,0.0 -postsrsd,0.103839949999788,2.01912742826071,-0.477325706236673,https://salsa.debian.org/debian/postsrsd, https://github.com/roehling/postsrsd.git,4014.208564814815,10,17,0,4.0,30.0,0.0,0.0 -potool,-0.581429440368266,0.0587787858281596,-0.834772414984138,https://github.com/porridge/potool/tree/debian,https://github.com/porridge/potool,4430.214988425926,2,3,0,2.0,1.0,0.0,0.0 -povray,0.958421674191704,1.69404497474083,0.489272470567281,https://salsa.debian.org/debian/povray, https://github.com/POV-Ray/povray,2833.074074074074,8,15,7,14.0,45.0,0.0,2.0 -powa-archivist,-1.33228927168661,0.627753550092333,-1.7515157781893,https://github.com/powa-team/powa-archivist,https://github.com/powa-team/powa-archivist,3471.930196759259,10,15,2,15.0,40.0,0.0,0.0 -powercap,-0.328432835901478,2.61690951082495,-1.12834560009672,https://github.com/connorimes/powercap/tree/debian,https://github.com/connorimes/powercap,2525.995891203704,0,4,0,2.0,2.0,0.0,0.0 -pqiv,-0.16388138950838,0.758558478781025,-0.454009218343847,https://salsa.debian.org/pberndt-guest/pqiv, https://github.com/phillipberndt/pqiv,5604.841550925926,11,12,0,15.0,127.0,0.0,0.0 -prboom-plus,0.978646620045482,1.88429855841624,0.432057514304468,https://salsa.debian.org/games-team/prboom-plus, https://github.com/coelckers/prboom-plus,5585.983912037037,42,11,1,41.0,53.0,0.0,1.0 -primus,0.272956909133763,1.24810733891137,-0.113453150804516,https://salsa.debian.org/nvidia-team/primus, https://github.com/amonakov/primus,937.9013425925926,3,6,0,6.0,216.0,0.0,0.0 -bird_exporter,-3.47717878603785,-0.0329330544143955,-4.28922020065143,https://salsa.debian.org/go-team/packages/prometheus-bird-exporter, https://github.com/czerwonk/bird_exporter,2542.462476851852,10,16,6,19.0,56.0,0.0,0.0 -haproxy_exporter,-3.86072133482528,-2.07005033512697,-4.31618946129776,https://salsa.debian.org/go-team/packages/prometheus-haproxy-exporter, https://github.com/prometheus/haproxy_exporter,3672.0941203703705,21,40,0,41.0,166.0,0.0,0.0 -postfix_exporter,-2.30901857902339,-0.0678780092573739,-2.93546754882129,https://salsa.debian.org/go-team/packages/prometheus-postfix-exporter, https://github.com/kumina/postfix_exporter,2274.256712962963,7,24,0,20.0,129.0,0.0,0.0 -pushgateway,-0.893739596824324,2.02652286692662,-1.59779185618246,https://salsa.debian.org/go-team/packages/prometheus-pushgateway, https://github.com/prometheus/pushgateway,3606.187337962963,18,76,1,58.0,280.0,0.0,0.0 -proot-debian,1.09201033638206,3.48942123712869,0.152618842166989,https://github.com/ivoire/proot-debian,https://github.com/ivoire/proot-debian,508.0834837962963,0,2,0,1.0,3.0,0.0,0.0 -prospector,-0.139641497323005,2.12375216035423,-0.970812703415105,https://salsa.debian.org/python-team/packages/prospector, https://github.com/PyCQA/prospector,3767.6942939814817,36,66,2,76.0,313.0,0.0,0.0 -ps2eps,1.53212079598281,4.56568976130553,0.449536184588045,https://salsa.debian.org/debian/ps2eps, https://github.com/roland-bless/ps2eps.git,0.1197453703703703,1,2,0,1.0,1.0,0.0,0.0 -psad,-0.157643283643823,0.280898009976798,-0.427371640969337,https://salsa.debian.org/debian/psad, https://github.com/mrash/psad/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -pudb,0.565287327131869,3.50358765199621,-0.382513763909001,https://salsa.debian.org/debian/pudb, https://github.com/inducer/pudb.git,5292.8559490740745,32,73,0,84.0,306.0,0.0,0.0 -puppetlabs-ntp,-1.60193298538769,0.084004899239364,-1.97661185622803,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-ntp, https://github.com/puppetlabs/puppetlabs-ntp.git,4661.505023148148,40,171,0,118.0,228.0,0.0,0.0 -py-lmdb,-0.0755155779526539,2.3670377587978,-0.95698152520613,https://salsa.debian.org/debian/py-lmdb, https://github.com/jnwatson/py-lmdb,3712.474189814815,18,23,0,26.0,205.0,0.0,0.0 -fe,0.0569254607300437,2.23859624498718,-0.740553419065291,https://salsa.debian.org/python-team/packages/py-postgresql, https://github.com/python-postgres/fe,5231.805671296296,1,11,0,5.0,69.0,0.0,0.0 -py-radix,-0.234715213098186,1.28491959688065,-0.668352956984802,https://salsa.debian.org/python-team/packages/py-radix, https://github.com/mjschultz/py-radix,1374.4915856481482,3,11,0,9.0,39.0,0.0,0.0 -py-ubjson,0.325868360627719,2.3051690362495,-0.192343512808427,https://salsa.debian.org/python-team/packages/py-ubjson, https://github.com/Iotic-Labs/py-ubjson,2987.1609027777777,3,4,0,5.0,12.0,0.0,0.0 -pycairo,1.86113532664531,3.05510498347914,1.1479506831671,https://salsa.debian.org/python-team/packages/pycairo, https://github.com/pygobject/pycairo,2389.8532175925925,13,23,2,28.0,234.0,0.0,0.0 -pychm,0.195977875238716,1.65043669670716,-0.184789798640271,https://salsa.debian.org/python-team/packages/pychm, https://github.com/dottedmag/pychm.git,3381.7747222222224,2,4,0,3.0,19.0,0.0,0.0 -pychromecast,0.0550333171653225,1.86450589733487,-0.358338165839646,https://salsa.debian.org/python-team/packages/pychromecast, https://github.com/home-assistant-libs/pychromecast.git,3717.1753935185184,57,30,0,74.0,318.0,0.0,0.0 -pycoast,-0.926408910154406,1.04456531405737,-1.32820698049502,https://salsa.debian.org/debian-gis-team/pycoast, https://github.com/pytroll/pycoast,3185.132662037037,7,21,0,12.0,29.0,0.0,0.0 -pydenticon,-0.865220641010434,1.85225816508171,-1.53672723253871,https://salsa.debian.org/python-team/packages/pydenticon, https://github.com/azaghal/pydenticon,1376.6938657407406,2,1,0,2.0,13.0,0.0,0.0 -pydicom,0.354373090837558,1.93975641897055,-0.187129201617951,https://salsa.debian.org/med-team/pydicom, https://github.com/pydicom/pydicom.git,5576.141643518518,69,58,0,87.0,155.0,0.0,4.0 -pydocstyle,0.55315807893233,3.88328161331387,-0.434312513993172,https://salsa.debian.org/python-team/packages/pydocstyle, https://github.com/PyCQA/pydocstyle.git,4295.427789351852,58,44,0,86.0,381.0,0.0,0.0 -PyHamcrest,0.477004406741494,2.02760917006511,-0.0667553804928372,https://salsa.debian.org/python-team/packages/pyhamcrest, https://github.com/hamcrest/PyHamcrest,5756.534722222223,18,36,0,32.0,112.0,0.0,0.0 -pylama,-0.168504324329241,2.31245615764542,-0.835820663474999,https://salsa.debian.org/python-team/packages/pylama, https://github.com/klen/pylama,3643.043888888889,6,46,0,37.0,127.0,0.0,0.0 -pylast,0.100776938759318,2.28996480473361,-0.379819550624563,https://salsa.debian.org/python-team/packages/pylast, https://github.com/pylast/pylast,5565.59855324074,8,38,2,32.0,125.0,0.0,0.0 -pylibtiff,0.0190555878881251,2.16444240744198,-0.769236079061491,https://salsa.debian.org/debian-gis-team/pylibtiff, https://github.com/pearu/pylibtiff.git,3040.1433796296296,10,20,0,22.0,100.0,0.0,1.0 -pymca,-0.415347689470358,-0.143704767485273,-0.501687293329833,https://salsa.debian.org/science-team/pymca, https://github.com/vasole/pymca,5785.805543981482,7,32,0,17.0,52.0,0.0,0.0 -pymediainfo,0.381332731349089,2.72322854270128,-0.311226839760821,https://salsa.debian.org/python-team/packages/pymediainfo, https://github.com/sbraz/pymediainfo,4970.751111111111,10,7,0,12.0,111.0,0.0,0.0 -pymodbus,0.0732799109217558,1.86466922646135,-0.584440179364302,https://salsa.debian.org/python-team/packages/pymodbus, https://github.com/pymodbus-dev/pymodbus.git,5499.738599537037,102,63,0,125.0,552.0,0.0,0.0 -pyopencl,0.178267753662958,0.865226366960079,-0.169445517354505,https://salsa.debian.org/opencl-team/python-pyopencl, https://github.com/inducer/pyopencl,5374.16875,28,83,0,77.0,238.0,0.0,0.0 -pyorbital,-0.83513626595963,1.1503801119106,-1.2127768903138,https://salsa.debian.org/debian-gis-team/pyorbital, https://github.com/pytroll/pyorbital.git,4467.573460648148,9,33,0,26.0,73.0,0.0,0.0 -pypuppetdb,-1.32940163604813,2.41852196708942,-2.4698360721368,https://salsa.debian.org/python-team/packages/pypuppetdb, https://github.com/voxpupuli/pypuppetdb,3781.8189814814814,18,46,2,46.0,103.0,0.0,0.0 -pyqi,-0.665905280844117,0.42673006565835,-0.906438910624248,https://salsa.debian.org/med-team/pyqi, https://github.com/biocore/pyqi,1051.0106481481482,0,13,1,7.0,17.0,0.0,0.0 -pyquery,0.253316020676959,2.14767227179502,-0.276904445045534,https://salsa.debian.org/python-team/packages/pyquery, https://github.com/gawel/pyquery.git,5354.174155092593,7,50,0,45.0,213.0,0.0,0.0 -pysodium,-0.92503426291004,1.63371609063095,-1.6304178321319,https://salsa.debian.org/python-team/packages/pysodium, https://github.com/stef/pysodium.git,3761.6783217592592,9,38,0,33.0,63.0,0.0,0.0 -python-soundfile,-0.425956303307578,1.98178094846684,-0.873346280044414,https://salsa.debian.org/multimedia-team/pysoundfile, https://github.com/bastibe/python-soundfile.git,3757.228148148148,8,31,0,27.0,287.0,0.0,0.0 -pysph,-0.19576508254274,0.8352828366819,-0.608555387307991,https://salsa.debian.org/science-team/pysph, https://github.com/pypr/pysph,3944.004282407408,12,53,0,27.0,60.0,0.0,0.0 -pysrs,-2.58656369634392,-0.246658326360389,-3.01401713358786,https://salsa.debian.org/python-team/packages/pysrs, https://github.com/sdgathman/pysrs.git,5232.037384259259,2,4,0,2.0,7.0,0.0,0.0 -pyssim,-1.44937824287342,1.58301898108993,-2.31985142308153,https://salsa.debian.org/python-team/packages/pyssim, https://github.com/jterrace/pyssim,4069.879375,2,12,0,7.0,3.0,0.0,0.0 -PyStaticConfiguration,-2.04721602988162,0.763049361836491,-2.72655556055587,https://salsa.debian.org/python-team/packages/pystaticconfiguration, https://github.com/dnephin/PyStaticConfiguration,3745.710266203704,3,26,2,20.0,44.0,0.0,0.0 -pysubnettree,-0.946147609704078,1.2999152117155,-1.53988131275596,https://salsa.debian.org/python-team/packages/pysubnettree, https://github.com/zeek/pysubnettree.git,4655.747858796296,1,18,0,11.0,28.0,0.0,0.0 -pytest-arraydiff,0.189844117515491,2.34162282632034,-0.239438695627217,https://salsa.debian.org/python-team/packages/pytest-arraydiff, https://github.com/astrofrog/pytest-arraydiff,2688.582349537037,5,12,0,11.0,0.0,0.0,0.0 -pytest-bdd,-3.42876811393756,-0.503945884651919,-4.23037855636789,https://salsa.debian.org/python-team/packages/pytest-bdd, https://github.com/pytest-dev/pytest-bdd.git,3909.559976851852,26,45,0,50.0,355.0,0.0,0.0 -pytest-expect,-1.41755856425502,1.76044338259236,-2.2515689023404,https://salsa.debian.org/python-team/packages/pytest-expect, https://github.com/gsnedders/pytest-expect,1755.9376273148148,2,3,0,2.0,13.0,0.0,0.0 -pytest-pylint,-0.832009640118479,0.153289022747533,-1.10063536083175,https://salsa.debian.org/python-team/packages/pytest-pylint, https://github.com/carsongee/pytest-pylint,3089.6046180555554,5,20,0,19.0,97.0,0.0,0.0 -pytest-remotedata,0.0301688429663763,1.64862812662434,-0.246615585231463,https://salsa.debian.org/python-team/packages/pytest-remotedata, https://github.com/astropy/pytest-remotedata,4372.856006944445,4,28,1,27.0,27.0,0.0,1.0 -pytest-sugar,-1.93438986636594,0.0895529374489846,-2.53361283285188,https://salsa.debian.org/python-team/packages/pytest-sugar, https://github.com/Teemu/pytest-sugar.git,3774.505706018519,13,48,0,45.0,191.0,0.0,0.0 -py-amqp,0.492792863895466,2.97803737108839,-0.103780130816662,https://salsa.debian.org/python-team/packages/python-amqp, https://github.com/celery/py-amqp.git,5725.564479166666,68,43,0,82.0,220.0,0.0,0.0 -argh,0.233903067417354,2.01591008993674,-0.26865087184235,https://salsa.debian.org/python-team/packages/python-argh, https://github.com/neithere/argh.git,4744.0471875,5,24,0,22.0,102.0,0.0,0.0 -asyncssh,-1.18270536885584,0.256243306256498,-1.64931965823354,https://salsa.debian.org/python-team/packages/python-asyncssh, https://github.com/ronf/asyncssh,3723.866863425926,18,9,0,23.0,71.0,0.0,0.0 -python-atomicwrites,0.80717474493993,3.93688839501037,-0.0360579534404471,https://salsa.debian.org/python-team/packages/python-atomicwrites, https://github.com/untitaker/python-atomicwrites,2718.0744907407407,9,8,0,15.0,53.0,0.0,0.0 -avro,-0.676407068396849,0.59419524502039,-0.970469266237255,https://salsa.debian.org/python-team/packages/python-avro, https://github.com/apache/avro,5362.563055555555,342,76,0,310.0,0.0,0.0,0.0 -aws-xray-sdk-python,-0.656567296113062,2.21861042285347,-1.38871874837233,https://salsa.debian.org/science-team/python-aws-xray-sdk, https://github.com/aws/aws-xray-sdk-python,2264.9942939814814,64,31,0,69.0,93.0,0.0,0.0 -azure-python-devtools,-1.8877692262182,1.0407212340933,-2.68977417741463,https://salsa.debian.org/python-team/packages/python-azure-devtools, https://github.com/Azure/azure-python-devtools,1688.8337962962962,6,14,0,12.0,28.0,0.0,0.0 -b2-sdk-python,-2.70912034958649,0.0195888217291228,-3.29858951161245,https://salsa.debian.org/python-team/packages/python-b2sdk, https://github.com/Backblaze/b2-sdk-python.git,2948.629490740741,24,86,0,77.0,61.0,0.0,0.0 -babel,0.457108626748347,1.12522241992856,0.114378343598591,https://salsa.debian.org/python-team/packages/python-babel, https://github.com/python-babel/babel,5776.72167824074,75,93,2,137.0,127.0,0.0,0.0 -base58,-0.638002541765872,1.88704322930212,-1.19487215124741,https://salsa.debian.org/python-team/packages/python-base58, https://github.com/keis/base58,3504.7240046296297,9,12,0,15.0,37.0,0.0,0.0 -bayespy,-0.413372685864473,2.29395432544691,-1.28090212529164,https://salsa.debian.org/science-team/python-bayespy, https://github.com/bayespy/bayespy,4227.605023148149,4,9,0,7.0,68.0,0.0,0.0 -bcrypt,0.720872399036504,2.43235241240946,0.08731543368218,https://salsa.debian.org/python-team/packages/python-bcrypt, https://github.com/pyca/bcrypt.git,3870.065208333333,26,10,0,30.0,196.0,0.0,0.0 -python-blosc,0.410479289294704,2.72099099009397,-0.240131424738422,https://salsa.debian.org/python-team/packages/python-blosc, https://github.com/Blosc/python-blosc.git,4736.291226851852,17,36,0,37.0,120.0,0.0,0.0 -boltons,-0.0997518598830524,2.67267318697583,-0.861415447699543,https://salsa.debian.org/python-team/packages/python-boltons, https://github.com/mahmoud/boltons,3938.248333333333,42,55,0,73.0,206.0,0.0,0.0 -bumps,-0.893536724559635,0.0933032097180597,-1.16053132053718,https://salsa.debian.org/science-team/python-bumps, https://github.com/bumps/bumps,4409.951157407408,1,19,0,10.0,22.0,0.0,0.0 -cachetools,0.522159771197376,3.37311857326325,-0.258914629166168,https://salsa.debian.org/python-team/packages/python-cachetools, https://github.com/tkem/cachetools,3511.0841203703703,2,11,0,11.0,206.0,0.0,0.0 -certbot,-2.27201429832193,0.115747776615057,-2.77590936298428,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-dnsimple, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 -certbot,-0.899819983906848,1.90897945576906,-1.57828050615347,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-google, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 -certbot,-0.281137746815331,1.82470849788128,-0.751436143873004,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 -certbot,-1.10006157064088,1.18347179422029,-1.67274459016725,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-route53, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 -cmarkgfm,-1.31501359328804,1.23194183099758,-1.895147952211,https://salsa.debian.org/python-team/packages/python-cmarkgfm, https://github.com/theacodes/cmarkgfm,1977.4600578703703,18,8,0,20.0,50.0,0.0,0.0 -colorama,0.778475484065202,2.48466274067031,0.147974243977739,https://salsa.debian.org/python-team/packages/python-colorama, https://github.com/tartley/colorama,3514.679652777778,15,42,0,45.0,341.0,0.0,1.0 -python-colorlog,0.0760601285628227,2.17624730096483,-0.417655581978487,https://salsa.debian.org/python-team/packages/python-colorlog, https://github.com/borntyping/python-colorlog.git,4104.955439814815,10,24,0,30.0,43.0,0.0,0.0 -colormap,-0.80798143374305,1.46883737800577,-1.38904142865958,https://salsa.debian.org/python-team/packages/python-colormap, https://github.com/cokelaer/colormap,3308.9144444444446,1,7,0,6.0,15.0,0.0,0.0 -pythonfutures,0.253069403039548,1.4926901749381,-0.0680161382409498,https://salsa.debian.org/python-team/modules/python-concurrent.futures, https://github.com/agronholm/pythonfutures.git,4929.174259259259,10,12,0,14.0,86.0,0.0,0.0 -ConfigArgParse,0.62387801737252,3.35110574592331,-0.0441913435369702,https://salsa.debian.org/python-team/packages/configargparse, https://github.com/bw2/ConfigArgParse,3315.65818287037,8,51,0,44.0,239.0,0.0,1.0 -css-parser,0.737520429234226,3.65253255454216,-0.0470738230267792,https://salsa.debian.org/python-team/packages/python-css-parser, https://github.com/ebook-utils/css-parser,1765.7022685185186,2,7,0,7.0,11.0,0.0,0.0 -cssselect,0.766389048615414,3.66623505696289,-0.021805051288149,https://salsa.debian.org/python-team/packages/python-cssselect, https://github.com/scrapy/cssselect,5713.5145601851855,8,23,0,24.0,65.0,0.0,1.0 -pycups,0.722928124090978,2.10651414160283,0.157924808524114,https://salsa.debian.org/python-team/packages/python-cups, https://github.com/OpenPrinting/pycups.git,5524.667384259259,4,9,0,9.0,62.0,0.0,1.0 -curtsies,0.316650190607577,2.60676539674931,-0.304611589024975,https://salsa.debian.org/sramacher/python-curtsies, https://github.com/bpython/curtsies,3799.8890277777778,15,32,1,35.0,70.0,0.0,0.0 -cycler,0.628383028079081,2.49687348471043,0.0195972628773569,https://salsa.debian.org/python-team/packages/python-cycler, https://github.com/matplotlib/cycler,2790.014108796296,6,19,2,21.0,28.0,0.0,0.0 -cytoolz,-0.358484799954006,2.35380987885035,-1.07583039408841,https://salsa.debian.org/python-team/packages/python-cytoolz, https://github.com/pytoolz/cytoolz,3395.421412037037,2,21,0,16.0,68.0,0.0,0.0 -python-darkslide,0.932044835084578,4.49541173906183,-0.288323175082102,https://salsa.debian.org/debian/darkslide, https://github.com/ionelmc/python-darkslide.git,4282.761226851852,4,56,0,42.0,23.0,0.0,0.0 -DartsPyLRU,-1.89274943343211,0.292233477200228,-2.3461638638224,https://salsa.debian.org/pkg-security-team/python-darts.lib.utils.lru, https://github.com/deterministic-arts/DartsPyLRU.git,362.9079398148148,0,2,0,1.0,5.0,0.0,0.0 -datrie,-0.506057889950513,1.38031883911671,-0.978482355229684,https://salsa.debian.org/python-team/packages/python-datrie, https://github.com/kmike/datrie.git,2978.6536226851854,7,11,0,14.0,90.0,0.0,2.0 -python-dbusmock,-0.627944787988481,0.300003823801882,-0.850570977338004,https://salsa.debian.org/python-team/packages/python-dbusmock, https://github.com/martinpitt/python-dbusmock,4100.772418981482,32,16,0,31.0,57.0,0.0,0.0 -decorator,0.470421256098476,1.79239570870011,0.0135959483939923,https://salsa.debian.org/python-team/packages/python-decorator, https://github.com/micheles/decorator.git,5376.399953703703,6,23,0,23.0,131.0,0.0,0.0 -django-braces,-1.25102734718929,0.340648918872544,-1.63881536863121,https://salsa.debian.org/python-team/packages/python-django-braces, https://github.com/brack3t/django-braces.git,4108.719386574074,10,79,0,65.0,196.0,0.0,0.0 -django-cas,-1.15343521211913,1.67191736328623,-2.06951776542578,https://salsa.debian.org/python-team/packages/python-django-casclient, https://github.com/kstateome/django-cas,2792.0546875,7,19,0,16.0,53.0,0.0,0.0 -django-extra-views,-1.25877137175236,1.08523071997228,-1.86622121321833,https://salsa.debian.org/python-team/packages/python-django-extra-views, https://github.com/AndrewIngram/django-extra-views,4072.4001041666666,12,61,1,51.0,205.0,0.0,0.0 -django-imagekit,-1.35102414855421,0.374985178913018,-1.78640342118342,https://salsa.debian.org/python-team/packages/python-django-imagekit, https://github.com/matthewwithanm/django-imagekit.git,5386.110393518518,18,69,0,65.0,458.0,0.0,0.0 -django-modelcluster,-3.9620317451107,-2.03442698957617,-4.34142664037654,https://salsa.debian.org/python-team/packages/python-django-modelcluster, https://github.com/wagtail/django-modelcluster.git,3534.2000347222224,21,13,0,29.0,118.0,0.0,0.0 -django-rest-framework-guardian,-3.32090751536405,-1.14641965177563,-3.75123607797988,https://salsa.debian.org/python-team/packages/python-django-rest-framework-guardian, https://github.com/rpkilby/django-rest-framework-guardian.git,626.7550231481481,2,4,0,4.0,14.0,0.0,0.0 -django-rest-hooks,-1.50508757244667,1.18697239489152,-2.19060255115359,https://salsa.debian.org/python-team/packages/python-django-rest-hooks, https://github.com/zapier/django-rest-hooks,2693.6027777777776,12,13,0,20.0,56.0,0.0,0.0 -django-split-settings,-2.78957511519186,-0.398784713274345,-3.31015157067725,https://salsa.debian.org/python-team/packages/python-django-split-settings, https://github.com/sobolevn/django-split-settings,3860.1584027777776,17,13,0,20.0,39.0,0.0,0.0 -django-storages,-3.13869786410601,-0.596777992266893,-3.7258638390182,https://salsa.debian.org/python-team/packages/python-django-storages, https://github.com/jschneier/django-storages.git,4486.111574074074,175,96,0,225.0,717.0,0.0,2.0 -django-treebeard,-1.44301346852683,-0.735165625821461,-1.68427416316081,https://salsa.debian.org/python-team/packages/python-django-treebeard, https://github.com/django-treebeard/django-treebeard.git,5493.911400462963,24,59,0,65.0,267.0,0.0,0.0 -python-dmidecode,0.696512755433002,2.37731861945678,-0.124434961309399,https://salsa.debian.org/python-team/packages/python-dmidecode, https://github.com/nima/python-dmidecode,5342.575833333333,10,17,0,11.0,26.0,0.0,0.0 -dnsq,-0.84937779216935,1.65138109321636,-1.41060216211315,https://salsa.debian.org/python-team/packages/python-dnsq, https://github.com/mailgun/dnsq.git,1028.904513888889,1,6,0,4.0,14.0,0.0,0.0 -python-dotenv,-0.0646647075317069,2.86166402780144,-0.97580266039008,https://salsa.debian.org/debian/python-dotenv, https://github.com/theskumar/python-dotenv.git,3676.079872685186,81,18,0,84.0,565.0,0.0,1.0 -dpkt,0.0196106670228997,2.47626960524388,-0.584888132841591,https://salsa.debian.org/python-team/packages/python-dpkt, https://github.com/kbandla/dpkt,3886.918368055556,36,43,1,56.0,220.0,0.0,1.0 -dropbox-sdk-python,-0.130181357773559,2.84521348805933,-0.865581993532946,https://salsa.debian.org/python-team/packages/python-dropbox, https://github.com/dropbox/dropbox-sdk-python,2984.077083333333,28,31,0,31.0,49.0,0.0,0.0 -python-dugong,-0.591471391126072,0.37617404681871,-0.825298609681828,https://salsa.debian.org/python-team/packages/python-dugong, https://github.com/python-dugong/python-dugong.git,3200.268854166666,4,5,0,7.0,9.0,0.0,0.0 -easydev,-1.06341865388081,0.409242130783886,-1.41712624396679,https://salsa.debian.org/python-team/packages/python-easydev, https://github.com/cokelaer/easydev.git,3717.344375,0,5,0,1.0,10.0,0.0,0.0 -easywebdav,-0.193448412041873,1.95905816981472,-0.63719103656544,https://salsa.debian.org/python-team/packages/python-easywebdav, https://github.com/amnong/easywebdav,813.3765625,1,13,0,8.0,75.0,0.0,0.0 -exif-py,0.0156493174686464,1.00360355884044,-0.248935024905801,https://salsa.debian.org/python-team/packages/python-exif, https://github.com/ianare/exif-py,3998.029189814815,34,23,0,51.0,195.0,0.0,0.0 -fabio,0.0104950221350668,1.21007586643528,-0.438051112560997,https://salsa.debian.org/science-team/python-fabio, https://github.com/silx-kit/fabio.git,5765.121435185185,18,45,0,33.0,54.0,0.0,0.0 -fakeredis,-1.84014849107297,0.71945353926365,-2.53506583901348,https://salsa.debian.org/python-team/packages/python-fakeredis, https://github.com/jamesls/fakeredis.git,3981.188900462963,20,88,0,78.0,257.0,0.0,1.0 -fitsio,-0.461055717385868,0.394057440700241,-0.637876906966945,https://salsa.debian.org/debian-astro-team/python-fitsio, https://github.com/esheldon/fitsio,4439.410567129629,4,32,0,25.0,107.0,0.0,0.0 -flaky,-0.823872670209293,2.08116067823733,-1.65266988307531,https://salsa.debian.org/python-team/packages/python-flaky, https://github.com/box/flaky.git,3089.6002083333333,11,23,0,21.0,145.0,0.0,0.0 -fysom,-0.75856033329708,1.38289183997405,-1.18582341091221,https://salsa.debian.org/debian/python-fysom, https://github.com/mriehl/fysom.git,3641.987696759259,3,22,0,13.0,39.0,0.0,0.0 -geneimpacts,-1.80691346228606,0.450815657475691,-2.23874771638693,https://salsa.debian.org/med-team/python-geneimpacts, https://github.com/brentp/geneimpacts/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -genty,-1.53124160455144,1.7202436983609,-2.37926007821001,https://salsa.debian.org/python-team/packages/python-genty, https://github.com/box/genty.git,701.8032986111111,0,10,0,5.0,15.0,0.0,0.0 -glad,-1.34572723088456,1.09346774896223,-1.90153790813123,https://salsa.debian.org/python-team/packages/glad, https://github.com/Dav1dde/glad.git,3530.153645833333,54,19,0,28.0,255.0,0.0,3.0 -python-gnupg,0.345891721396036,1.22086991696978,-0.0500617939527759,https://salsa.debian.org/python-team/packages/python-gnupg, https://github.com/vsajip/python-gnupg.git,3594.986377314815,6,12,0,14.0,52.0,0.0,0.0 -gnuplotlib,-0.554072309553074,1.99117745433607,-1.12257676230352,https://salsa.debian.org/python-team/packages/python-gnuplotlib, https://github.com/dkogan/gnuplotlib,3062.559849537037,1,2,0,2.0,29.0,0.0,0.0 -graphviz,-0.277526739497775,1.28892534990688,-0.650341505726255,https://salsa.debian.org/python-team/packages/python-graphviz, https://github.com/xflr6/graphviz,3612.632083333333,12,12,0,22.0,48.0,0.0,0.0 -greenlet,0.804761684310871,1.70610494232945,0.307046293468067,https://salsa.debian.org/python-team/packages/python-greenlet, https://github.com/python-greenlet/greenlet,5315.652916666667,21,53,1,60.0,350.0,0.0,0.0 -python-gssapi,0.328917976545445,2.35502552233121,-0.250048562660633,https://salsa.debian.org/python-team/packages/python-gssapi, https://github.com/pythongssapi/python-gssapi,3263.0338078703703,18,17,0,25.0,97.0,0.0,0.0 -h11,0.0628463609475429,2.52989033051234,-0.396624862666718,https://salsa.debian.org/python-team/packages/python-h11, https://github.com/python-hyper/h11.git,2700.4708217592597,21,14,0,28.0,99.0,0.0,0.0 -httplib2,0.522030133674165,1.52810048548846,0.118057712966429,https://salsa.debian.org/python-team/packages/python-httplib2, https://github.com/httplib2/httplib2.git,5422.7818402777775,50,36,0,58.0,150.0,0.0,9.0 -httptools,-1.01625723203708,1.52551903370403,-1.63068427305216,https://salsa.debian.org/python-team/packages/python-httptools, https://github.com/MagicStack/httptools.git,2908.9019444444443,11,7,0,15.0,96.0,0.0,0.0 -idna,0.428827323048246,2.39987330079786,0.0023232440778604,https://salsa.debian.org/python-team/packages/python-idna, https://github.com/kjd/idna,3836.199386574074,12,16,2,22.0,107.0,0.0,0.0 -ijson,-0.788249490701278,1.61835030318376,-1.34356782663573,https://salsa.debian.org/debian/python-ijson, https://github.com/ICRAR/ijson.git,4844.947118055556,7,21,0,19.0,91.0,0.0,0.0 -intervaltree-bio,-0.586493194699912,1.66489915213559,-1.1805901393989,https://salsa.debian.org/med-team/python-intervaltree-bio, https://github.com/konstantint/intervaltree-bio.git,961.9282638888888,0,5,0,4.0,7.0,0.0,0.0 -ipaddr-py,0.64339331440059,3.29037394437381,-0.0419910302280833,https://salsa.debian.org/python-team/modules/python-ipaddr, https://github.com/google/ipaddr-py/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ipaddress,0.612359222288563,3.19476907445456,-0.0003839015737789,https://salsa.debian.org/python-team/modules/python-ipaddress, https://github.com/phihag/ipaddress,2728.476099537037,1,7,0,6.0,56.0,0.0,0.0 -python-ipcalc,0.714101630753056,3.4398389903968,-0.255334424029229,https://github.com/craneworks/python-ipcalc,https://github.com/craneworks/python-ipcalc,756.8280324074074,1,1,0,0.0,1.0,0.0,0.0 -python-iptables,-1.37689457924715,-0.162014500732828,-1.59722989569024,https://salsa.debian.org/python-team/packages/python-iptables, https://github.com/ldx/python-iptables,4469.236423611111,3,51,0,40.0,238.0,0.0,0.0 -python-isc-dhcp-leases,-1.21441646761482,1.37237535723133,-1.7887539721601,https://salsa.debian.org/python-team/packages/python-isc-dhcp-leases, https://github.com/MartijnBraam/python-isc-dhcp-leases,3184.8126041666665,4,9,0,8.0,31.0,0.0,0.0 -itsdangerous,0.664230281928525,3.21691892161099,-0.0415160476537955,https://salsa.debian.org/python-team/packages/python-itsdangerous, https://github.com/pallets/itsdangerous,4546.929143518519,24,19,0,40.0,182.0,0.0,0.0 -jellyfish,0.0674101011583406,2.00512768356655,-0.420586978721513,https://salsa.debian.org/python-team/packages/python-jellyfish, https://github.com/jamesturk/jellyfish,4902.330810185185,15,24,0,27.0,148.0,0.0,0.0 -jira,-0.398082993767482,2.42317658300511,-1.04112088611181,https://salsa.debian.org/python-team/packages/python-jira, https://github.com/pycontribs/jira,4267.40125,111,155,3,195.0,572.0,0.0,0.0 -jmespath.py,0.362917294912316,2.06866453618359,-0.100383442475757,https://salsa.debian.org/python-team/packages/python-jmespath, https://github.com/jmespath/jmespath.py,3691.1897222222224,12,21,0,28.0,14.0,0.0,1.0 -josepy,0.351351117869537,2.29239636367554,-0.0869215968716407,https://salsa.debian.org/letsencrypt-team/certbot/josepy, https://github.com/certbot/josepy,4184.784768518519,104,276,0,285.0,46.0,0.0,0.0 -python-junit-xml,-0.487438449471786,3.24615767639063,-1.45803042909391,https://salsa.debian.org/python-team/packages/python-junit-xml, https://github.com/kyrus/python-junit-xml.git,2595.0297685185187,5,18,0,13.0,67.0,0.0,0.0 -kajiki,-2.35949509123373,-1.22994343139478,-2.61591574823484,https://salsa.debian.org/python-team/packages/python-kajiki, https://github.com/jackrosenthal/kajiki,4546.966851851852,3,22,0,18.0,30.0,0.0,0.0 -kaptan,-0.2383613889856,2.39640255249308,-0.806370710390245,https://salsa.debian.org/debian/python-kaptan, https://github.com/emre/kaptan.git,3814.6996064814816,6,17,0,16.0,32.0,0.0,0.0 -python-libarchive-c,0.208435529259664,1.88649211662683,-0.301184940168063,https://salsa.debian.org/debian/python-libarchive-c, https://github.com/Changaco/python-libarchive-c.git,3365.1853587962964,15,18,0,22.0,69.0,0.0,0.0 -libnacl,-0.574852514219853,1.05507549596557,-0.994477169229135,https://salsa.debian.org/python-team/packages/python-libnacl, https://github.com/saltstack/libnacl.git,3360.854479166667,4,45,0,34.0,71.0,0.0,0.0 -python-libusb1,0.226546258639299,3.57352952412115,-0.691131387277055,https://salsa.debian.org/python-team/packages/python-libusb1, https://github.com/vpelletier/python-libusb1.git,5022.308206018519,13,14,0,21.0,84.0,0.0,0.0 -python-lz4,0.282818911283454,1.80163047521988,-0.113842054778576,https://salsa.debian.org/python-team/packages/python-lz4, https://github.com/python-lz4/python-lz4.git,3988.215625,8,43,0,37.0,148.0,0.0,0.0 -python-lzo,0.645785242229208,3.62469176847773,-0.178816482313752,https://salsa.debian.org/python-team/packages/python-lzo, https://github.com/jd-boyd/python-lzo,4282.078425925926,2,13,0,10.0,69.0,0.0,0.0 -python-mapnik,-0.229461019965688,0.354970322404647,-0.441137684981998,https://salsa.debian.org/debian-gis-team/python-mapnik, https://github.com/mapnik/python-mapnik.git,5494.878263888889,10,101,0,63.0,101.0,0.0,0.0 -MechanicalSoup,-0.513942798071719,1.65462619837529,-1.00996758966548,https://salsa.debian.org/python-team/packages/python-mechanicalsoup, https://github.com/hickford/MechanicalSoup,3488.748657407408,39,28,0,46.0,149.0,0.0,0.0 -mechanize,0.558711844569591,1.52968011652335,0.109854317233808,https://salsa.debian.org/python-team/packages/python-mechanize, https://github.com/python-mechanize/mechanize.git,5735.6054513888885,5,12,0,14.0,81.0,0.0,0.0 -meld3,1.48080081615434,4.17117382179871,0.410052973838213,https://salsa.debian.org/python-team/packages/python-meld3, https://github.com/supervisor/meld3.git,4279.117650462963,0,8,0,7.0,27.0,0.0,0.0 -PyMemoize,-1.68771525590022,1.12030384879276,-2.40790936417297,https://salsa.debian.org/debian/python-memoize, https://github.com/mikeboers/PyMemoize,4629.862638888889,2,6,0,5.0,18.0,0.0,0.0 -memprof,-1.00554086528806,0.619577111707738,-1.55950990604571,https://salsa.debian.org/python-team/packages/python-memprof, https://github.com/jmdana/memprof,2110.1480324074078,1,8,0,5.0,18.0,0.0,0.0 -MIDIUtil,-0.45505193332883,2.09705788140006,-0.976010502748539,https://salsa.debian.org/multimedia-team/python-midiutil, https://github.com/MarkCWirt/MIDIUtil.git,532.2564583333333,2,4,0,2.0,47.0,0.0,0.0 -python-miio,-2.45351322179174,0.0572909826930906,-2.9975615852581,https://salsa.debian.org/python-team/packages/miio, https://github.com/rytilahti/python-miio.git,2467.253923611111,163,5,0,156.0,136.0,0.0,0.0 -python-mimeparse,0.63508767896753,2.36354127467912,-0.0635295991229227,https://salsa.debian.org/python-team/modules/python-mimeparse, https://github.com/dbtsai/python-mimeparse.git,3368.87212962963,9,11,0,12.0,20.0,0.0,0.0 -motor,-1.69055796538963,-0.111623697187181,-2.11723664098807,https://salsa.debian.org/python-team/packages/python-motor, https://github.com/mongodb/motor,3986.9431365740734,28,30,0,47.0,2.0,0.0,0.0 -pymox,-0.42399110071693,2.12147344904068,-1.1839102651754,https://salsa.debian.org/debian/python-mox, https://github.com/ivancrneto/pymox,3025.516585648148,3,7,0,5.0,8.0,0.0,0.0 -python-mpd2,-0.299073824682979,0.326678634389276,-0.42839288320167,https://salsa.debian.org/mpd-team/python-mpd, https://github.com/Mic92/python-mpd2,5765.543414351851,16,38,0,43.0,139.0,0.0,0.0 -mplexporter,-0.146420838933211,2.30643251806206,-0.918894410555408,https://salsa.debian.org/python-team/packages/python-mplexporter, https://github.com/mpld3/mplexporter,3220.593252314815,4,24,0,17.0,29.0,0.0,0.0 -pynacl,0.319402514296116,1.55808521965487,-0.0692227420611375,https://salsa.debian.org/python-team/packages/python-nacl, https://github.com/pyca/pynacl,3948.360462962963,44,26,1,61.0,44.0,0.0,0.0 -python-nameparser,-2.01236674816199,0.149903807220532,-2.47599140907381,https://salsa.debian.org/python-team/packages/python-nameparser, https://github.com/derek73/python-nameparser,4612.10912037037,9,18,1,23.0,121.0,0.0,0.0 -nest_asyncio,-3.32200877430784,0.265201322413396,-4.24298274039074,https://salsa.debian.org/python-team/packages/python-nest-asyncio, https://github.com/erdewit/nest_asyncio,1907.244074074074,4,10,0,12.0,92.0,0.0,0.0 -python-networkmanager,-0.329474073750244,1.47315347316823,-0.954369939916451,https://salsa.debian.org/python-team/packages/python-networkmanager, https://github.com/seveas/python-networkmanager,4090.319675925926,12,3,0,11.0,104.0,0.0,0.0 -oauthlib,0.388434485358995,2.23645148245914,-0.0809544138768979,https://salsa.debian.org/python-team/packages/python-oauthlib, https://github.com/oauthlib/oauthlib,4357.275405092592,51,167,2,168.0,249.0,0.0,0.0 -odfpy,-0.175261364398955,1.26653293995985,-0.467857181804133,https://salsa.debian.org/python-team/packages/python-odf, https://github.com/eea/odfpy,4744.619375,6,27,0,24.0,129.0,0.0,10.0 -python-pam,0.71946616188643,3.50926077559847,-0.0318286678033109,https://salsa.debian.org/python-team/packages/python-pampy, https://github.com/FirefighterBlu3/python-pam,2926.939490740741,2,10,0,8.0,42.0,0.0,0.0 -pandocfilters,0.432577173151416,2.97316489046529,-0.143677411686562,https://salsa.debian.org/python-team/packages/python-pandocfilters, https://github.com/jgm/pandocfilters,2924.061574074074,12,31,0,34.0,69.0,0.0,0.0 -parameterized,-0.0852476015951315,1.76346291587788,-0.473518930684393,https://salsa.debian.org/python-team/packages/python-parameterized, https://github.com/wolever/parameterized,4033.873125,6,29,0,26.0,199.0,0.0,0.0 -parse_type,-0.776689478455188,2.26573233056321,-1.60274719565093,https://salsa.debian.org/python-team/packages/python-parse-type, https://github.com/jenisys/parse_type,3544.349016203704,0,4,0,1.0,16.0,0.0,0.0 -periodictable,-1.06151881889309,0.0399913751431181,-1.34030530261269,https://salsa.debian.org/science-team/python-periodictable, https://github.com/pkienzle/periodictable.git,5457.176412037037,0,18,0,9.0,27.0,0.0,0.0 -pex,-0.747626762092592,1.46516914222358,-1.66854309907451,https://salsa.debian.org/python-team/packages/python-pex, https://github.com/pantsbuild/pex.git,3433.3294212962965,95,47,0,104.0,155.0,0.0,0.0 -python-pgpdump,-0.18793786024917,2.3259223776566,-0.770753980416854,https://salsa.debian.org/python-team/packages/python-pgpdump, https://github.com/toofishes/python-pgpdump,826.8067129629629,5,2,0,5.0,24.0,0.0,0.0 -PGPy,-0.243020190519095,2.40590682218298,-1.19788911397901,https://salsa.debian.org/debian/pgpy, https://github.com/SecurityInnovation/PGPy,3246.991145833333,11,33,2,35.0,91.0,0.0,1.0 -pgspecial,0.383068452251751,3.03336721267783,-0.389789037831525,https://salsa.debian.org/python-team/packages/python-pgspecial, https://github.com/dbcli/pgspecial,2959.9866319444445,21,33,0,38.0,60.0,0.0,0.0 -phply,-0.0136994366346983,0.838619626869934,-0.214614112499995,https://salsa.debian.org/debian/python-phply, https://github.com/viraptor/phply.git,4545.328414351852,2,13,0,9.0,35.0,0.0,0.0 -picklable-itertools,-1.90178551551163,0.0686564891464398,-2.33999489579228,https://salsa.debian.org/python-team/packages/python-picklable-itertools, https://github.com/mila-iqia/picklable-itertools,176.1980324074074,0,5,0,3.0,4.0,0.0,0.0 -pika,0.619444295085411,2.79202479295092,-0.129529118572213,https://salsa.debian.org/python-team/packages/python-pika, https://github.com/pika/pika,5099.34380787037,52,181,1,165.0,190.0,0.0,0.0 -pyftpdlib,-0.102896997295476,1.62718061385509,-0.706994831825187,https://salsa.debian.org/python-team/packages/python-pyftpdlib, https://github.com/giampaolo/pyftpdlib,5695.260231481481,16,22,1,30.0,82.0,0.0,0.0 -pymeasure,-0.0345798255187834,2.66268446904302,-0.706670141846425,https://salsa.debian.org/science-team/python-pymeasure, https://github.com/ralph-group/pymeasure/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -pynvim,0.179326212374558,2.01672596738411,-0.201491360332055,https://salsa.debian.org/python-team/packages/python-pynvim, https://github.com/neovim/pynvim,3504.5291782407407,26,35,0,55.0,243.0,0.0,0.0 -pyotp,-0.193648646264953,2.04392972704636,-0.774418029770972,https://salsa.debian.org/python-team/packages/python-pyotp, https://github.com/pyauth/pyotp.git,4631.612546296296,26,20,0,33.0,124.0,0.0,0.0 -pyperclip,0.520944025034176,2.1523556395884,-0.0782247034932544,https://salsa.debian.org/sramacher/python-pyperclip, https://github.com/asweigart/pyperclip,3772.0925925925926,7,31,0,31.0,330.0,0.0,0.0 -pyproj,-0.181404738604309,0.246170896887329,-0.257617837745339,https://salsa.debian.org/debian-gis-team/python-pyproj, https://github.com/pyproj4/pyproj.git,5681.238923611111,30,46,0,61.0,327.0,0.0,0.0 -pypubsub,-1.76374394900707,-0.0682506450035831,-2.06770927053707,https://salsa.debian.org/python-team/packages/python-pypubsub, https://github.com/schollii/pypubsub,1788.0433680555554,4,5,0,6.0,42.0,0.0,0.0 -pyramid_multiauth,-1.93412403144625,0.310005171658109,-2.44803837524133,https://github.com/douardda/pyramid_multiauth,https://github.com/douardda/pyramid_multiauth,1636.4991203703703,0,10,0,6.0,0.0,0.0,0.0 -pysnmp,0.629628888355477,1.94660897155429,0.0848638325098878,https://salsa.debian.org/python-team/packages/python-pysnmp4, https://github.com/etingof/pysnmp,4346.811122685185,17,11,0,21.0,393.0,0.0,0.0 -qtpy,0.349197408220288,2.22946766179484,-0.143511416505235,https://salsa.debian.org/python-team/packages/python-qtpy, https://github.com/spyder-ide/qtpy,3201.4270949074075,20,62,3,59.0,61.0,0.0,1.0 -python-quantities,-0.0106025797817292,1.95801217663616,-0.690445939035525,https://salsa.debian.org/science-team/python-quantities, https://github.com/python-quantities/python-quantities.git,5020.663506944445,7,39,0,28.0,134.0,0.0,0.0 -PythonQwt,0.593384145702343,3.63014883532243,-0.409777982820568,https://salsa.debian.org/science-team/python-qwt, https://github.com/PierreRaybaut/PythonQwt.git,1193.9426967592592,2,6,0,5.0,29.0,0.0,0.0 -rarfile,0.202492776710485,3.09614649938541,-0.586130322896287,https://salsa.debian.org/python-team/packages/python-rarfile, https://github.com/markokr/rarfile.git,5495.904236111112,8,13,0,16.0,102.0,0.0,0.0 -rdflib-jsonld,-0.0904254944853858,1.66426854494379,-0.495674447589734,https://salsa.debian.org/python-team/packages/python-rdflib-jsonld, https://github.com/RDFLib/rdflib-jsonld,3605.007118055556,4,18,0,13.0,106.0,0.0,0.0 -readme_renderer,-0.145668152779673,2.20763148299204,-0.583121517237032,https://salsa.debian.org/python-team/packages/python-readme-renderer, https://github.com/pypa/readme_renderer,3479.9030902777777,12,22,0,30.0,133.0,0.0,0.0 -restless,-1.93336124296478,-0.903136966319854,-2.28774606864276,https://salsa.debian.org/python-team/packages/python-restless, https://github.com/toastdriven/restless,2872.2400231481483,8,30,0,30.0,106.0,0.0,0.0 -rply,-0.0320431964263385,1.70103932460533,-0.472432363198678,https://salsa.debian.org/python-team/packages/python-rply, https://github.com/alex/rply,3096.8436689814816,9,17,0,21.0,76.0,0.0,0.0 -python-rsa,0.377236722481246,1.96349004356951,-0.109819950456565,https://salsa.debian.org/python-team/packages/python-rsa, https://github.com/sybrenstuvel/python-rsa,5670.19462962963,33,16,2,36.0,126.0,0.0,0.0 -rtree,-0.109038306741406,2.13175472396813,-0.531642492012879,https://salsa.debian.org/debian-gis-team/python-rtree, https://github.com/Toblerity/rtree.git,5739.577592592593,25,24,0,39.0,225.0,0.0,1.0 -s3transfer,0.367361800451876,2.53413379985704,-0.18101840192888,https://salsa.debian.org/python-team/packages/python-s3transfer, https://github.com/boto/s3transfer,2891.851863425926,24,28,0,32.0,161.0,0.0,0.0 -sabyenc,0.452279750672396,3.63651455047441,-0.398101406893918,https://salsa.debian.org/python-team/packages/python-sabyenc, https://github.com/sabnzbd/sabyenc.git,2872.893460648148,9,4,0,8.0,28.0,0.0,0.0 -scandir,0.827301267221475,3.78683246483855,0.005607474353191,https://salsa.debian.org/python-team/packages/python-scandir, https://github.com/benhoyt/scandir,3760.053518518519,8,20,0,22.0,123.0,0.0,0.0 -scrapy-djangoitem,-1.84013245478734,0.541282000590688,-2.43590727235664,https://salsa.debian.org/python-team/packages/python-scrapy-djangoitem, https://github.com/scrapy-plugins/scrapy-djangoitem,2837.113252314815,0,13,0,10.0,26.0,0.0,0.0 -scruffy,-0.895084258402866,1.96771238188626,-1.68844520581696,https://salsa.debian.org/python-team/packages/python-scruffy, https://github.com/snare/scruffy,1665.7056828703703,2,5,0,4.0,9.0,0.0,1.0 -secretstorage,0.338754454493241,2.13083587142078,-0.0585012824673191,https://salsa.debian.org/python-team/packages/python-secretstorage, https://github.com/mitya57/secretstorage,3916.169305555556,4,7,0,7.0,50.0,0.0,0.0 -serverfiles,-3.27091406196569,-0.0867153000074521,-4.17895259464003,https://salsa.debian.org/python-team/packages/python-serverfiles, https://github.com/biolab/serverfiles,2007.9058333333328,1,6,0,6.0,0.0,0.0,0.0 -setoptconf,-0.671896240226397,1.15321425559899,-1.12713130199862,https://salsa.debian.org/python-team/packages/python-setoptconf, https://github.com/jayclassless/setoptconf.git,2788.0056365740743,0,3,0,2.0,3.0,0.0,0.0 -py-setproctitle,1.0838445467833,3.25888103165606,0.244215084749425,https://salsa.debian.org/python-team/packages/python-setproctitle, https://github.com/dvarrazzo/py-setproctitle,5054.544236111111,9,10,0,12.0,86.0,0.0,0.0 -python-sfml,-0.378424977746305,0.262408565507834,-0.581825929686772,https://salsa.debian.org/games-team/python-sfml, https://github.com/intjelic/python-sfml,3326.038414351852,1,21,2,14.0,97.0,0.0,5.0 -sh,0.0684316621461243,2.74492058805087,-0.574426628333685,https://salsa.debian.org/python-team/packages/python-sh, https://github.com/amoffat/sh,4327.636168981481,29,75,2,77.0,438.0,0.0,0.0 -python-slugify,-0.121699178323397,1.41403200198841,-0.432501229873802,https://salsa.debian.org/python-team/packages/python-slugify, https://github.com/un33k/python-slugify,4027.612824074074,29,16,0,32.0,109.0,0.0,0.0 -socketIO-client,0.939084972443436,4.91129526622001,-0.466877499490517,https://salsa.debian.org/debian/python-socketio-client, https://github.com/invisibleroads/socketIO-client,1970.3003472222224,0,39,2,22.0,294.0,0.0,0.0 -PySocks,1.05506218944001,3.70438529865212,0.152607719345974,https://salsa.debian.org/python-team/packages/python-socksipy, https://github.com/Anorov/PySocks,2386.1779629629627,3,31,0,28.0,172.0,0.0,0.0 -python-systemd,0.186853671024445,1.45207144917141,-0.0787581662204422,https://salsa.debian.org/systemd-team/python-systemd, https://github.com/systemd/python-systemd,3925.632835648148,47,10,0,47.0,124.0,0.0,0.0 -python-tabulate,0.414080430633287,2.80786044801803,-0.230582005277608,https://salsa.debian.org/python-team/packages/python-tabulate, https://github.com/astanin/python-tabulate.git,3791.7183796296295,22,72,0,74.0,329.0,0.0,0.0 -tasklib,0.0418096657380263,2.41019438715361,-0.73813678317893,https://salsa.debian.org/tasktools-team/python-tasklib, https://github.com/GothenburgBitFactory/tasklib.git,3516.448148148148,7,15,0,12.0,63.0,0.0,0.0 -tesserocr,-0.0713400087120452,2.50403154069768,-0.964578978774877,https://salsa.debian.org/python-team/packages/python-tesserocr, https://github.com/sirfz/tesserocr.git,2852.509953703704,21,18,0,26.0,295.0,0.0,0.0 -testfixtures,-1.25594973616751,1.62554367784895,-1.9966424135979,https://salsa.debian.org/python-team/packages/python-testfixtures, https://github.com/Simplistix/testfixtures,5484.404849537037,6,35,0,28.0,106.0,0.0,0.0 -python-textile,0.342402295603914,1.77443192520197,-0.180414488779729,https://salsa.debian.org/python-team/packages/python-textile, https://github.com/textile/python-textile.git,3971.2575578703695,0,25,0,16.0,50.0,0.0,0.0 -translationstring,-0.284062414028812,1.48027405242699,-0.72861526521539,https://salsa.debian.org/python-team/packages/python-translationstring, https://github.com/Pylons/translationstring.git,3733.753599537037,2,15,0,14.0,26.0,0.0,0.0 -transliterate,-1.50529766715182,1.08432612130219,-2.11685619721961,https://salsa.debian.org/python-team/packages/python-transliterate, https://github.com/barseghyanartur/transliterate,3701.160231481481,5,13,0,12.0,48.0,0.0,1.0 -tzlocal,0.210519946767944,2.34875493084279,-0.286692662826862,https://salsa.debian.org/python-team/packages/python-tzlocal, https://github.com/regebro/tzlocal,4104.763518518518,12,22,0,27.0,150.0,0.0,0.0 -python-uinput,-0.489529964877291,2.08224447025191,-1.21548862374556,https://salsa.debian.org/python-team/packages/python-uinput, https://github.com/tuomasjjrasanen/python-uinput,2471.164976851852,3,17,0,9.0,71.0,0.0,0.0 -python-unicodecsv,0.217717331276343,2.07421541863016,-0.25031229858715,https://salsa.debian.org/python-team/packages/python-unicodecsv, https://github.com/jdunck/python-unicodecsv,1788.5991550925926,0,17,0,12.0,93.0,0.0,0.0 -uritools,0.566560867129225,3.63607120317236,-0.225008946768281,https://salsa.debian.org/python-team/packages/python-uritools, https://github.com/tkem/uritools,3490.549803240741,0,3,1,3.0,16.0,0.0,0.0 -venusian,-0.238988650203532,1.47081146786786,-0.72176680254253,https://salsa.debian.org/python-team/packages/python-venusian, https://github.com/Pylons/venusian,5042.179780092592,6,25,0,24.0,62.0,0.0,0.0 -werkzeug,0.646980855521847,1.62103160546561,0.163678274164921,https://salsa.debian.org/python-team/packages/python-werkzeug, https://github.com/pallets/werkzeug,5778.307245370371,256,251,0,409.0,438.0,0.0,0.0 -WebSocket-for-Python,-0.306187790901548,1.52320207376068,-1.04776523463365,https://salsa.debian.org/python-team/packages/python-ws4py, https://github.com/Lawouach/WebSocket-for-Python.git,4476.548090277778,6,66,0,48.0,280.0,0.0,0.0 -xapian-haystack,-1.10900462904103,0.996538859706,-1.76120345632217,https://salsa.debian.org/python-team/packages/python-xapian-haystack, https://github.com/notanumber/xapian-haystack,5023.712766203704,14,13,1,15.0,127.0,0.0,4.0 -pytrainer,-0.149298633682598,0.666744927246606,-0.624645008929126,https://salsa.debian.org/python-team/packages/pytrainer, https://github.com/pytrainer/pytrainer.git,5724.745717592593,2,26,0,20.0,59.0,0.0,3.0 -pytsk,-0.0170924764890338,1.36615789785123,-0.406967620872296,https://salsa.debian.org/pkg-security-team/pytsk, https://github.com/py4n6/pytsk.git,4730.662083333334,5,8,0,6.0,36.0,0.0,2.0 -pyuca,-1.87912470704493,0.454605877210584,-2.34473374334905,https://salsa.debian.org/python-team/packages/pyuca, https://github.com/jtauber/pyuca,2863.4539467592595,0,6,0,5.0,24.0,0.0,1.0 -pyudev,0.305204170939517,1.57973906471718,-0.0988792965635674,https://salsa.debian.org/python-team/packages/pyudev, https://github.com/pyudev/pyudev,4959.346203703703,7,18,0,18.0,85.0,0.0,1.0 -pyutilib,-0.226021251653545,1.97083991245983,-0.658404007269415,https://salsa.debian.org/python-team/packages/pyutilib, https://github.com/pyutilib/pyutilib,3833.6739467592593,5,24,4,10.0,35.0,0.0,0.0 -pyvirtualdisplay,-0.744315058060289,1.47691320380755,-1.17649501759753,https://salsa.debian.org/python-team/packages/pyvirtualdisplay, https://github.com/ponty/pyvirtualdisplay.git,4649.320717592593,4,15,0,10.0,24.0,0.0,0.0 -PyWebDAV3,-0.441529835447282,0.156219948430592,-0.598451800165818,https://salsa.debian.org/tryton-team/pywebdav, https://github.com/andrewleech/PyWebDAV3.git,5191.637395833333,7,13,0,13.0,12.0,0.0,0.0 -pywinrm,1.36886057870753,4.53073102988841,0.247796204064866,https://salsa.debian.org/python-team/packages/python-winrm, https://github.com/diyan/pywinrm.git,3968.3538425925926,2,35,0,22.0,257.0,0.0,0.0 -pywws,-2.00588148416824,0.429787250796557,-2.58459452078025,https://salsa.debian.org/debian-iot-team/pywws, https://github.com/jim-easterbrook/pywws,5328.594791666666,7,19,0,21.0,75.0,0.0,0.0 -pyx,-0.421432314726181,0.0635788824709516,-0.526071945006326,https://salsa.debian.org/debian/pyx3, https://github.com/pyx-project/pyx,5502.6121064814815,6,10,0,9.0,36.0,0.0,0.0 -pyxid,-1.06183440739462,1.73776504985248,-1.98138296454287,https://salsa.debian.org/med-team/pyxid, https://github.com/cedrus-opensource/pyxid/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -pyxnat,0.802907921757592,3.92172788420172,-0.273002662672547,https://salsa.debian.org/med-team/pyxnat, https://github.com/pyxnat/pyxnat.git,4754.132465277778,6,37,0,24.0,63.0,0.0,0.0 -pyyaml,0.295656713952886,0.967534479470059,0.0168556095851646,https://salsa.debian.org/python-team/packages/pyyaml, https://github.com/yaml/pyyaml.git,5656.189444444444,35,19,0,38.0,575.0,0.0,2.0 -qstat,1.48474698634343,3.54458759568229,0.568433579262232,https://salsa.debian.org/debian/qstat, https://github.com/Unity-Technologies/qstat,4992.716099537037,11,11,0,10.0,43.0,0.0,0.0 -QtPass,-0.244382876135003,0.606959209347823,-0.421666166035691,https://salsa.debian.org/debian/qtpass, https://github.com/IJHack/QtPass,3407.054664351852,102,101,0,112.0,378.0,0.0,0.0 -qtractor,0.205242478524563,1.08175411296215,-0.17760833656501,https://salsa.debian.org/multimedia-team/qtractor, https://github.com/rncbc/qtractor.git,5788.915474537037,11,33,0,25.0,122.0,0.0,0.0 -qtspell,-1.11742648735895,0.818254598420487,-1.55293389999062,https://salsa.debian.org/qt-kde-team/extras/qtspell, https://github.com/manisandro/qtspell.git,2705.0642476851854,0,4,0,3.0,14.0,0.0,1.0 -quickroute-linux,-0.134284888666013,2.9572779507399,-1.10391283790444,https://github.com/ralovich/quickroute-linux.git,https://github.com/ralovich/quickroute-linux.git,5000.886215277777,1,8,0,2.0,9.0,0.0,0.0 -qxgedit,0.0309448749204253,2.69462895280017,-0.615238319631849,https://salsa.debian.org/multimedia-team/qxgedit, https://github.com/rncbc/qxgedit.git,5219.99880787037,1,11,0,3.0,3.0,0.0,0.0 -qxmpp,-0.511930091191283,1.24504132925844,-0.922019472267346,https://salsa.debian.org/xmpp-team/qxmpp, https://github.com/qxmpp-project/qxmpp.git,5420.508472222222,31,20,0,35.0,124.0,0.0,4.0 -AnnotationDbi,0.0182386654122325,2.48127824418072,-0.570014091748017,https://salsa.debian.org/r-pkg-team/r-bioc-annotationdbi, https://github.com/Bioconductor/AnnotationDbi.git,5746.881550925926,1,33,0,12.0,20.0,0.0,0.0 -BiocParallel,-0.326093178537264,0.847331388462779,-0.59193290789088,https://salsa.debian.org/r-pkg-team/r-bioc-biocparallel, https://github.com/Bioconductor/BiocParallel,3995.750625,8,26,0,20.0,99.0,0.0,2.0 -Biostrings,-0.343481729390781,1.14780324476708,-0.614938326325344,https://salsa.debian.org/r-pkg-team/r-bioc-biostrings, https://github.com/Bioconductor/Biostrings.git,5738.509074074074,8,24,0,13.0,81.0,0.0,0.0 -checkmate,0.085937855407183,2.39423891376413,-0.350110573404548,https://salsa.debian.org/r-pkg-team/r-cran-checkmate, https://github.com/mllg/checkmate.git,3631.5784722222224,11,53,0,13.0,94.0,0.0,0.0 -crosstalk,0.116741371624694,2.266684008395,-0.349141297908935,https://salsa.debian.org/r-pkg-team/r-cran-crosstalk, https://github.com/rstudio/crosstalk.git,2973.0628472222224,5,12,0,11.0,160.0,0.0,0.0 -crul,-0.379530865040192,2.06203120065321,-0.884706654122055,https://salsa.debian.org/r-pkg-team/r-cran-crul, https://github.com/ropensci/crul.git,2488.6026967592597,12,5,0,14.0,41.0,0.0,0.0 -eaf,-0.430233712486963,1.83021631491036,-0.875193303038921,https://salsa.debian.org/r-pkg-team/r-cran-eaf, https://github.com/MLopez-Ibanez/eaf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -filehash,0.2805937395568,2.9173226699455,-0.248880602147883,https://salsa.debian.org/r-pkg-team/r-cran-filehash, https://github.com/rdpeng/filehash/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -fs,0.516063634396358,3.51625286917958,-0.265398930813445,https://salsa.debian.org/r-pkg-team/r-cran-fs, https://github.com/r-lib/fs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -gbm,0.327991678930956,3.22428029767403,-0.446269420514668,https://salsa.debian.org/r-pkg-team/r-cran-gbm, https://github.com/gbm-developers/gbm/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ggeffects,-0.410111574802552,1.66252130107392,-0.846753795129048,https://salsa.debian.org/r-pkg-team/r-cran-ggeffects, https://github.com/strengejacke/ggeffects.git,2388.151180555556,6,17,0,11.0,238.0,0.0,0.0 -gnm,-0.0730492728942156,2.20017505704627,-0.547412148156367,https://salsa.debian.org/r-pkg-team/r-cran-gnm, https://github.com/hturner/gnm.git,5664.818171296296,2,3,0,4.0,13.0,0.0,0.0 -gsl,0.0315524777808514,2.23025396216522,-0.476328311599455,https://salsa.debian.org/r-pkg-team/r-cran-gsl, https://github.com/RobinHankin/gsl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -gtable,0.360461990322493,2.59184783854294,-0.180163876987905,https://salsa.debian.org/r-pkg-team/r-cran-gtable, https://github.com/r-lib/gtable.git,4252.72269675926,3,15,0,11.0,32.0,0.0,0.0 -hms,0.280313094881459,2.69156338261866,-0.237194789769666,https://salsa.debian.org/r-pkg-team/r-cran-hms, https://github.com/tidyverse/hms,2747.6862152777776,3,21,1,13.0,45.0,0.0,0.0 -htmlwidgets,0.222380483608414,2.45230821612572,-0.224551383721169,https://salsa.debian.org/r-pkg-team/r-cran-htmlwidgets, https://github.com/ramnathv/htmlwidgets.git,3428.7835185185186,9,25,0,23.0,280.0,0.0,3.0 -httpuv,0.38759454354957,2.22289576459683,-0.156279075658878,https://salsa.debian.org/r-pkg-team/r-cran-httpuv, https://github.com/rstudio/httpuv.git,3956.968298611111,10,30,0,24.0,220.0,0.0,0.0 -lmerTestR,-0.225905457924611,2.0342017388861,-0.681221646902755,https://salsa.debian.org/r-pkg-team/r-cran-lmertest, https://github.com/runehaubo/lmerTestR.git,1009.607511574074,2,4,0,3.0,48.0,0.0,0.0 -memoise,0.192523027292919,2.38980492525073,-0.241066625203724,https://salsa.debian.org/r-pkg-team/r-cran-memoise, https://github.com/hadley/memoise.git,1189.1777777777777,16,15,0,25.0,125.0,0.0,0.0 -openssl,0.14083112507158,1.97368210310857,-0.305459050885552,https://salsa.debian.org/r-pkg-team/r-cran-openssl, https://github.com/jeroen/openssl.git,3340.7487152777776,9,9,0,11.0,104.0,0.0,0.0 -repr,-0.420048623605369,1.36539798763435,-0.793148893401469,https://salsa.debian.org/r-pkg-team/r-cran-repr, https://github.com/IRkernel/repr.git,3009.431261574074,13,11,0,19.0,107.0,0.0,5.0 -rhandsontable,-0.511695951267473,1.69672639029837,-0.952787574275437,https://salsa.debian.org/r-pkg-team/r-cran-rhandsontable, https://github.com/jrowen/rhandsontable.git,2472.1080902777776,10,16,0,13.0,398.0,0.0,0.0 -stringr,0.0964776845371271,1.65341813554563,-0.188164763711549,https://salsa.debian.org/r-pkg-team/r-cran-stringr, https://github.com/tidyverse/stringr/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -svglite,-0.188558737538566,2.58904721181817,-0.918190731949655,https://salsa.debian.org/r-pkg-team/r-cran-svglite, https://github.com/r-lib/svglite.git,4029.9752546296295,5,22,0,17.0,93.0,0.0,0.0 -taxize,-0.552436628653171,0.951437613723233,-0.817524160401268,https://salsa.debian.org/r-pkg-team/r-cran-taxize, https://github.com/ropensci/taxize.git,4557.283946759259,10,50,0,33.0,204.0,0.0,0.0 -uwot,-2.1360077926584,0.163727343926423,-2.61564210224675,https://salsa.debian.org/r-pkg-team/r-cran-uwot, https://github.com/jlmelville/uwot.git,2010.5388078703704,2,8,0,7.0,92.0,0.0,0.0 -webmockr,-0.431037610471389,1.82773866093092,-0.929927976157702,https://salsa.debian.org/r-pkg-team/r-cran-webmockr, https://github.com/ropensci/webmockr.git,3289.3273726851853,4,4,0,5.0,17.0,0.0,0.0 -rabbitvcs,1.67149460581492,3.54267837185063,0.706824886189823,https://salsa.debian.org/python-team/packages/rabbitvcs, https://github.com/rabbitvcs/rabbitvcs.git,5506.533148148148,17,45,0,47.0,171.0,0.0,0.0 -radeontop,0.790515602302201,3.99542161046398,-0.132898223728508,https://salsa.debian.org/debian/radeontop, https://github.com/clbr/radeontop.git,3881.850023148148,5,20,0,19.0,110.0,0.0,0.0 -radio_beam,0.0745073318764811,3.003721160024,-0.655590414920625,https://salsa.debian.org/debian-astro-team/radio-beam, https://github.com/radio-astro-tools/radio_beam,3526.8169791666664,2,17,0,12.0,23.0,0.0,0.0 -radon,-1.26364881199145,0.295243910296723,-1.53920836528047,https://salsa.debian.org/python-team/packages/radon, https://github.com/rubik/radon.git,4032.623877314815,45,20,0,51.0,208.0,0.0,0.0 -radsecproxy,-1.22584025475683,0.348273776250536,-1.86439395619628,https://salsa.debian.org/debian/radsecproxy, https://github.com/radsecproxy/radsecproxy.git,5771.466006944444,15,23,0,18.0,53.0,0.0,0.0 -nqp,0.956621847163002,2.10331558452598,0.324209403678667,https://salsa.debian.org/perl6-team/rakudo, https://github.com/Raku/nqp.git,5159.158784722223,24,165,0,111.0,165.0,0.0,3.0 -raspell,0.0344606052681667,2.18881918135865,-0.701525811921747,https://salsa.debian.org/ruby-team/raspell, https://github.com/evan/raspell/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rasterio,-0.107189830509874,2.01556534798503,-0.677966565838329,https://salsa.debian.org/debian-gis-team/rasterio, https://github.com/rasterio/rasterio.git,3692.9866550925926,96,61,0,141.0,10.0,0.0,13.0 -ratt,-0.437063012771801,1.1211106018962,-0.87106597729197,https://salsa.debian.org/go-team/packages/ratt, https://github.com/Debian/ratt,2545.9663194444443,4,6,0,7.0,15.0,0.0,0.0 -openrdate,0.438280809173624,1.32034165331615,0.017779896331518,https://salsa.debian.org/debian/rdate, https://github.com/resurrecting-open-source-projects/openrdate,876.4736111111112,0,4,0,3.0,6.0,0.0,0.0 -rdiff-backup,1.05680397622738,1.56640486119337,0.690404361845759,https://salsa.debian.org/python-team/applications/rdiff-backup, https://github.com/rdiff-backup/rdiff-backup.git,5728.728240740741,45,27,0,46.0,61.0,0.0,0.0 -redis-py-cluster,-1.8001809262726,0.77314251096035,-2.53080983822876,https://salsa.debian.org/python-team/packages/redis-py-cluster, https://github.com/Grokzen/redis-py-cluster,3217.2146527777777,55,25,3,58.0,325.0,0.0,0.0 -r.js,0.307781270973243,1.84507662111504,-0.106112137855613,https://salsa.debian.org/js-team/requirejs, https://github.com/requirejs/r.js.git,4511.829074074074,2,70,0,53.0,645.0,0.0,3.0 -ripe.atlas.sagan,-0.835078845819303,1.34467460370317,-1.32629970428769,https://salsa.debian.org/python-team/packages/ripe-atlas-sagan, https://github.com/RIPE-NCC/ripe.atlas.sagan,2585.8181481481483,2,22,0,13.0,17.0,0.0,0.0 -rlwrap,-0.0178154569905868,0.234120064325572,-0.118926009362432,https://salsa.debian.org/debian/rlwrap, https://github.com/hanslub42/rlwrap,3317.1894560185187,6,18,2,18.0,111.0,0.0,2.0 -rope,1.59784683611494,3.96719981773256,0.555193560378876,https://salsa.debian.org/python-team/packages/rope, https://github.com/python-rope/rope,5713.8836458333335,27,64,1,64.0,166.0,0.0,6.0 -bond_core,-0.455791944414582,0.803086304426349,-0.74616134447602,https://salsa.debian.org/science-team/ros-bond-core, https://github.com/ros/bond_core,5161.858229166667,13,47,0,19.0,71.0,0.0,0.0 -genmsg,-0.0171725935327327,2.37579622587927,-0.582572657628371,https://salsa.debian.org/science-team/ros-genmsg, https://github.com/ros/genmsg,4008.155497685185,10,28,1,20.0,69.0,0.0,0.0 -genpy,-0.613699120149313,-0.610827108785914,-0.614165704647256,https://salsa.debian.org/science-team/ros-genpy, https://github.com/ros/genpy.git,4178.100347222222,21,31,0,33.0,89.0,0.0,0.0 -geometry,-0.550655774788899,0.405821805097857,-0.73002531698746,https://salsa.debian.org/science-team/ros-geometry, https://github.com/ros/geometry,5094.815069444445,26,84,1,57.0,212.0,0.0,0.0 -image_common,-0.458774321823753,0.0450984940995194,-0.609699198188623,https://salsa.debian.org/science-team/ros-image-common, https://github.com/ros-perception/image_common.git,5179.632361111111,38,47,0,28.0,228.0,0.0,2.0 -interactive_markers,-0.252228085387444,2.12575864588487,-0.800390042312437,https://salsa.debian.org/science-team/ros-interactive-markers, https://github.com/ros-visualization/interactive_markers.git,5635.597268518519,21,62,0,25.0,70.0,0.0,0.0 -kdl_parser,-0.338657284698037,2.27803009350466,-0.913848871906168,https://salsa.debian.org/science-team/ros-kdl-parser, https://github.com/ros/kdl_parser,4840.751701388889,32,70,0,45.0,47.0,0.0,0.0 -laser_geometry,-0.418947578029671,0.783831601018165,-0.676036736607366,https://salsa.debian.org/science-team/ros-laser-geometry, https://github.com/ros-perception/laser_geometry,5200.342638888889,9,44,0,21.0,63.0,0.0,0.0 -message_runtime,-0.290597528646356,1.63004819773672,-0.677192321668655,https://salsa.debian.org/science-team/ros-message-runtime, https://github.com/ros/message_runtime.git,2931.916921296296,1,6,0,3.0,1.0,0.0,0.0 -navigation_msgs,-0.585376458044753,1.33810923404946,-0.980189712626315,https://salsa.debian.org/science-team/ros-navigation-msgs, https://github.com/ros-planning/navigation_msgs,4055.790902777778,6,14,0,6.0,18.0,0.0,0.0 -nodelet_core,-0.0806493057174334,2.30627000374114,-0.651167814298841,https://salsa.debian.org/science-team/ros-nodelet-core, https://github.com/ros/nodelet_core,4750.036273148148,13,47,1,29.0,90.0,0.0,0.0 -pluginlib,-0.663444382323728,0.718401032692024,-0.947010126436121,https://salsa.debian.org/science-team/ros-pluginlib, https://github.com/ros/pluginlib.git,5189.668819444444,29,44,0,22.0,130.0,0.0,0.0 -vision_opencv,-0.552104267660161,0.568246088619513,-0.82845187858941,https://salsa.debian.org/science-team/ros-vision-opencv, https://github.com/ros-perception/vision_opencv,5223.140868055556,33,82,0,61.0,435.0,0.0,0.0 -rss2email,0.331485550479245,0.715768198279115,0.0455417283932296,https://salsa.debian.org/python-team/packages/rss2email, https://github.com/rss2email/rss2email.git,3888.6072916666662,25,44,0,51.0,130.0,0.0,0.0 -actionpack-xml_parser,-0.299618436401572,1.34280570721943,-0.595518475197761,https://salsa.debian.org/ruby-team/ruby-actionpack-xml-parser, https://github.com/rails/actionpack-xml_parser,1540.6708333333331,2,13,0,9.0,34.0,0.0,0.0 -active_model_serializers,-2.6276778242837,-0.192697543842701,-3.25923102671891,https://salsa.debian.org/ruby-team/ruby-active-model-serializers, https://github.com/rails-api/active_model_serializers/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -activeldap,-1.41566976141054,-0.451102296476624,-1.59887747927363,https://salsa.debian.org/ruby-team/ruby-activeldap, https://github.com/activeldap/activeldap/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -activerecord-import,-1.96877194883876,1.05126670889692,-2.71680418807644,https://salsa.debian.org/ruby-team/ruby-activerecord-import, https://github.com/zdennis/activerecord-import/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -nulldb,-2.92312935078363,0.233072790027474,-3.99191048859426,https://salsa.debian.org/ruby-team/ruby-activerecord-nulldb-adapter, https://github.com/nulldb/nulldb/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -acts_as_list,-1.81996629124238,-1.46818516328738,-1.87078666457968,https://salsa.debian.org/ruby-team/ruby-acts-as-list, https://github.com/swanandp/acts_as_list,4913.702615740741,58,72,1,107.0,411.0,0.0,3.0 -addressable,0.410841687793814,2.87556373319275,-0.168590849404852,https://salsa.debian.org/ruby-team/ruby-addressable, https://github.com/sporkmonger/addressable/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ahoy_email,-4.44359504237849,-0.941064192833455,-5.36414002484502,https://salsa.debian.org/ruby-team/ruby-ahoy-email, https://github.com/ankane/ahoy_email/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -amqp,-1.81499353466034,0.32880604492994,-2.3239990953829,https://salsa.debian.org/ruby-team/ruby-amqp, https://github.com/ruby-amqp/amqp.git,4994.888078703703,18,59,0,41.0,137.0,0.0,0.0 -api-pagination,-3.30441828753361,-0.0567093293971251,-4.19511106017158,https://salsa.debian.org/ruby-team/ruby-api-pagination, https://github.com/davidcelis/api-pagination.git,3040.7300578703703,2,39,0,31.0,10.0,0.0,0.0 -arbre,-4.80290503412611,-2.12734338718058,-5.44120198055126,https://salsa.debian.org/ruby-team/ruby-arbre, https://github.com/activeadmin/arbre/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -autoprefixer-rails,-0.23154495538642,2.83495046087984,-1.04541918572183,https://salsa.debian.org/ruby-team/ruby-autoprefixer-rails, https://github.com/ai/autoprefixer-rails/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -awesome_print,-0.158900582763238,2.0284975515981,-0.84267525529854,https://salsa.debian.org/ruby-team/ruby-awesome-print, https://github.com/awesome-print/awesome_print/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -backports,0.15391561758727,2.11834478467549,-0.456239938472782,https://salsa.debian.org/ruby-team/ruby-backports, https://github.com/marcandre/backports/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -beaneater,-1.36063596481779,1.16300557706997,-2.01759486752016,https://salsa.debian.org/ruby-team/ruby-beaneater, https://github.com/beanstalkd/beaneater,3900.032673611111,5,29,1,26.0,71.0,0.0,2.0 -browser,-0.166084666327556,3.38691321447145,-1.14642710761497,https://salsa.debian.org/ruby-team/ruby-browser, https://github.com/fnando/browser.git,4214.415902777778,56,56,0,92.0,148.0,0.0,0.0 -clockwork,-1.61758937071582,0.289791082658143,-2.10484686805431,https://salsa.debian.org/ruby-team/ruby-clockwork, https://github.com/Rykian/clockwork,4663.075914351852,22,47,0,52.0,93.0,0.0,0.0 -coffee-rails,0.309182406496994,2.8142114503781,-0.273613392892316,https://salsa.debian.org/ruby-team/ruby-coffee-rails, https://github.com/rails/coffee-rails,3619.345023148149,7,34,0,31.0,141.0,0.0,0.0 -concurrent-ruby,0.55660306049591,2.94416936579305,-0.071754255411524,https://salsa.debian.org/ruby-team/ruby-concurrent, https://github.com/ruby-concurrency/concurrent-ruby.git,3789.081145833333,43,132,0,147.0,281.0,0.0,0.0 -crack,-0.256144909790271,2.08731653197277,-0.877244085082554,https://salsa.debian.org/ruby-team/ruby-crack, https://github.com/jnunemaker/crack,4290.858148148148,10,28,0,32.0,97.0,0.0,0.0 -cri,-0.234304524281558,2.33067119186735,-0.792949171408189,https://salsa.debian.org/ruby-team/ruby-cri, https://github.com/ddfreyne/cri,5399.781666666667,2,13,0,10.0,43.0,0.0,0.0 -curses,0.239732109116517,3.76387260758644,-0.662728525606041,https://salsa.debian.org/ruby-team/ruby-curses, https://github.com/ruby/curses.git,5368.611724537037,1,10,0,23.0,71.0,0.0,0.0 -dbf,-2.17293544580287,-1.12492567577822,-2.3569268761111,https://salsa.debian.org/ruby-team/ruby-dbf, https://github.com/infused/dbf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby-dbus,-0.596798172154282,1.74535265452641,-1.28034864886111,https://salsa.debian.org/ruby-team/ruby-dbus, https://github.com/mvidner/ruby-dbus,4746.807060185185,9,33,0,28.0,89.0,0.0,0.0 -default_value_for,-0.844820367657218,1.50582615601139,-1.30792200429198,https://salsa.debian.org/ruby-team/ruby-default-value-for, https://github.com/FooBarWidget/default_value_for/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -delayed_job,-0.228642407062013,2.47027908897614,-0.961746735723591,https://salsa.debian.org/ruby-team/ruby-delayed-job, http://github.com/collectiveidea/delayed_job/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -devise-two-factor,-0.662426218528405,1.64671262728262,-1.27531542217528,https://salsa.debian.org/ruby-team/ruby-devise-two-factor, https://github.com/tinfoil/devise-two-factor.git,3466.0953935185184,20,37,0,43.0,252.0,0.0,0.0 -diaspora_federation,-4.73760544976791,-2.27340660516414,-5.40378423014188,https://salsa.debian.org/ruby-team/ruby-diaspora-federation, https://github.com/diaspora/diaspora_federation/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -diff-lcs,0.307179615211835,2.563580346669,-0.262824001563441,https://salsa.debian.org/ruby-team/ruby-diff-lcs, https://github.com/halostatue/diff-lcs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -diffy,-0.225522029436628,2.81318448723136,-1.02832995269193,https://salsa.debian.org/ruby-team/ruby-diffy, https://github.com/samg/diffy,4494.668576388889,5,31,0,28.0,132.0,0.0,0.0 -distribution,-2.10117930738803,0.911261784935495,-3.05791627241738,https://salsa.debian.org/ruby-team/ruby-distribution, https://github.com/sciruby/distribution/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -docker-api,0.290632159627153,4.20394012920714,-1.01215234748311,https://salsa.debian.org/ruby-team/ruby-docker-api, https://github.com/swipely/docker-api,3249.069942129629,17,99,0,86.0,233.0,0.0,0.0 -ruby-domain_name,0.265149501486431,2.34547358088521,-0.138865391949013,https://salsa.debian.org/ruby-team/ruby-domain-name, https://github.com/knu/ruby-domain_name/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -em-synchrony,-2.05987381556942,0.456421509321353,-2.97866035749162,https://salsa.debian.org/ruby-team/ruby-em-synchrony, https://github.com/igrigorik/em-synchrony,2910.822118055556,2,57,0,41.0,186.0,0.0,1.0 -factory_girl,-1.42630613643365,0.543363319899027,-1.9953583846548,https://salsa.debian.org/ruby-team/ruby-factory-girl, https://github.com/thoughtbot/factory_girl.git,4913.916967592592,224,76,0,233.0,139.0,0.0,74.0 -fakeredis,-3.90276111658524,-1.91100186972822,-4.33404769776494,https://salsa.debian.org/ruby-team/ruby-fakeredis, https://github.com/guilleiguaran/fakeredis.git,3981.188900462963,20,88,0,77.0,219.0,0.0,0.0 -fakeweb,-2.14550452774702,-0.773187458569225,-2.56679662246972,https://salsa.debian.org/ruby-team/ruby-fakeweb, https://github.com/chrisk/fakeweb.git,3218.664386574074,6,19,0,19.0,136.0,0.0,0.0 -faraday_middleware,-0.269047678836487,2.06194722235424,-0.769690537232575,https://salsa.debian.org/ruby-team/ruby-faraday-middleware, https://github.com/lostisland/faraday_middleware,4563.581898148148,47,29,1,58.0,244.0,0.0,14.0 -fast_gettext,-0.120940172494493,1.23606882337898,-0.568830782487987,https://salsa.debian.org/ruby-team/ruby-fast-gettext, https://github.com/grosser/fast_gettext,5110.33400462963,3,48,0,29.0,84.0,0.0,4.0 -fastimage,-0.925969085128097,1.72194061279016,-1.48478102561478,https://salsa.debian.org/ruby-team/ruby-fastimage, https://github.com/sdsykes/fastimage,5223.717372685185,7,44,0,46.0,117.0,0.0,0.0 -fog-rackspace,-0.49913712640418,1.90824177376792,-1.14481630838024,https://salsa.debian.org/ruby-team/ruby-fog-rackspace, https://github.com/fog/fog-rackspace,1479.8924537037035,3,5,0,4.0,40.0,0.0,0.0 -ruby-fogbugz,-0.712082494968256,1.92305783373217,-1.27598467118291,https://salsa.debian.org/ruby-team/ruby-fogbugz, https://github.com/firmafon/ruby-fogbugz,2091.224988425926,2,11,0,9.0,16.0,0.0,0.0 -font-awesome-rails,-0.818075553073728,0.43473253749754,-1.0809960446575,https://salsa.debian.org/ruby-team/ruby-font-awesome-rails, https://github.com/bokmann/font-awesome-rails,4227.784085648148,7,30,0,28.0,346.0,0.0,2.0 -foreman,-0.827261813145368,1.5097537203568,-1.37556352361594,https://salsa.debian.org/ruby-team/ruby-foreman, http://github.com/ddollar/foreman/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -fssm,-0.434816917112639,2.36422881279322,-1.13137984553414,https://salsa.debian.org/ruby-team/ruby-fssm, https://github.com/ttilley/fssm.git,2641.922002314815,2,11,0,9.0,53.0,0.0,0.0 -gelf-rb,-2.04734038121914,0.385090259919112,-2.71689816769282,https://salsa.debian.org/ruby-team/ruby-gelf, https://github.com/Graylog2/gelf-rb,4546.170115740741,9,25,0,21.0,141.0,0.0,0.0 -gettext_i18n_rails,-0.761306952871014,2.02562934857725,-1.50917719235857,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails, https://github.com/grosser/gettext_i18n_rails,5235.78025462963,11,59,0,51.0,141.0,0.0,0.0 -gettext_i18n_rails_js,-0.961258328672556,2.48725603834977,-1.87852032130149,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails-js, https://github.com/webhippie/gettext_i18n_rails_js,4076.987175925926,2,24,0,18.0,7.0,0.0,0.0 -gettext-setup-gem,-0.528047027616317,1.2500737380164,-0.959638692207441,https://salsa.debian.org/puppet-team/ruby-gettext-setup, https://github.com/puppetlabs/gettext-setup-gem,2424.9263310185183,17,20,0,23.0,43.0,0.0,0.0 -ruby-gir-ffi,-1.52318008763164,0.47543873145472,-2.13105532177141,https://salsa.debian.org/ruby-team/ruby-gir-ffi, https://github.com/mvz/ruby-gir-ffi,5437.5734375,3,7,0,7.0,35.0,0.0,4.0 -ruby-git,-0.610861650916398,1.21228795801147,-1.0441459189093,https://salsa.debian.org/ruby-team/ruby-git, https://github.com/ruby-git/ruby-git/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby-team,-2.31364882786132,0.325639108637881,-2.97394980033171,https://salsa.debian.org/ruby-team/ruby-github-api,https://salsa.debian.org/ruby-team/ruby-github-api,2392.401226851852,0,6,0,0.0,0.0,0.0,0.0 -ruby-team,-0.649517699033064,1.75915565179493,-1.16324791291581,https://salsa.debian.org/ruby-team/ruby-github-linguist,https://salsa.debian.org/ruby-team/ruby-github-linguist,3497.996793981481,0,11,0,0.0,0.0,0.0,0.0 -ruby-team,-1.10514320300276,0.531227105443483,-1.45520269274711,https://salsa.debian.org/ruby-team/ruby-github-markdown,https://salsa.debian.org/ruby-team/ruby-github-markdown,3170.9246875,0,7,0,0.0,0.0,0.0,0.0 -ruby-team,-0.0402315958246687,2.26585122072999,-0.751462188010826,https://salsa.debian.org/ruby-team/ruby-github-markup,https://salsa.debian.org/ruby-team/ruby-github-markup,3514.504826388889,0,15,0,0.0,0.0,0.0,0.0 -globalid,0.566794425706185,3.05185208343155,-0.164807864980667,https://salsa.debian.org/ruby-team/ruby-globalid, https://github.com/rails/globalid/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -guard,-2.98071324834753,-1.61784676093903,-3.31281269568528,https://salsa.debian.org/ruby-team/ruby-guard, https://github.com/guard/guard.git,4726.434537037037,21,191,0,150.0,537.0,0.0,199.0 -hipchat-rb,-0.656642499184759,1.64698920332921,-1.26290406547913,https://salsa.debian.org/ruby-team/ruby-hipchat, https://github.com/hipchat/hipchat-rb,2705.747349537037,7,102,0,82.0,222.0,0.0,1.0 -hiredis-rb,-0.864125054810679,1.25971635974218,-1.35984364268179,https://salsa.debian.org/ruby-team/ruby-hiredis, https://github.com/redis/hiredis-rb.git,4451.3495601851855,10,19,0,20.0,124.0,0.0,1.0 -http.rb,0.53289195958659,3.15871460361099,-0.50414125027534,https://salsa.debian.org/ruby-team/ruby-http, https://github.com/httprb/http.rb,4428.906041666667,68,68,2,106.0,42.0,0.0,37.0 -jquery-rails,0.47629162422549,2.52894039288237,-0.167140999616939,https://salsa.debian.org/ruby-team/ruby-jquery-rails, https://github.com/rails/jquery-rails.git,4697.095868055556,14,69,0,65.0,417.0,0.0,1.0 -jquery-ui-rails,-0.555310039918061,1.25474851696358,-1.14962975443231,https://salsa.debian.org/ruby-team/ruby-jquery-ui-rails, https://github.com/joliss/jquery-ui-rails,4080.96974537037,4,20,0,18.0,217.0,0.0,0.0 -js-routes,-3.46443888085801,-0.448912427867101,-4.25770793969142,https://salsa.debian.org/ruby-team/ruby-js-routes, https://github.com/railsware/js-routes,3471.607662037037,19,61,0,62.0,240.0,0.0,0.0 -json-jwt,-0.664678173904206,1.82433301242804,-1.33767207744544,https://salsa.debian.org/ruby-team/ruby-json-jwt, https://github.com/nov/json-jwt/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -json-schema,-2.10309419888235,-0.252835633222006,-2.47580554866367,https://salsa.debian.org/ruby-team/ruby-json-schema, https://github.com/voxpupuli/json-schema/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -json_spec,-2.59624622223757,0.235746645393774,-3.26976487622892,https://salsa.debian.org/ruby-team/ruby-json-spec, https://github.com/collectiveidea/json_spec,2153.749525462963,1,19,0,16.0,121.0,0.0,0.0 -ruby-jwt,-0.008931060665816,2.92991582128566,-0.735893301336851,https://salsa.debian.org/ruby-team/ruby-jwt, https://github.com/jwt/ruby-jwt/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -kakasi_ffi,-3.43512770438635,-0.663996376780859,-4.21888845591111,https://salsa.debian.org/ruby-team/ruby-kakasi-ffi, https://github.com/knu/kakasi_ffi/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -kaminari,-0.548518597486277,1.04639899006081,-0.964026637366687,https://salsa.debian.org/ruby-team/ruby-kaminari, https://github.com/kaminari/kaminari,4634.299247685185,35,152,3,153.0,70.0,0.0,47.0 -kitchen-salt,-5.03892668763929,-2.91003595314571,-5.47880252364296,https://salsa.debian.org/ruby-team/ruby-kitchen-salt, https://github.com/saltstack/kitchen-salt/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -kramdown,0.158542489753522,1.28859181697314,-0.177482119377244,https://salsa.debian.org/ruby-team/ruby-kramdown, https://github.com/gettalong/kramdown/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby-ldap,0.972369716159411,3.84112355567061,-0.148730482711379,https://salsa.debian.org/ruby-team/ruby-ldap, https://github.com/bearded/ruby-ldap,3395.5528703703703,4,15,0,10.0,49.0,0.0,2.0 -libxml-ruby,-0.165243964204388,1.55273545183271,-0.754044250255796,https://salsa.debian.org/ruby-team/ruby-libxml, https://github.com/xml4r/libxml-ruby/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -mechanize,-0.385894178600464,1.23312762061377,-0.880550223257063,https://salsa.debian.org/ruby-team/ruby-mechanize, https://github.com/sparklemotion/mechanize.git,5735.6054513888885,5,12,0,103.0,529.0,0.0,6.0 -moneta,-0.564013249665526,0.251590548161168,-0.810395607362015,https://salsa.debian.org/ruby-team/ruby-moneta, https://github.com/moneta-rb/moneta,5182.159502314815,20,32,0,38.0,98.0,45.0,0.0 -msgpack-ruby,0.289349615724596,2.75057422607797,-0.316936287829029,https://salsa.debian.org/ruby-team/ruby-msgpack, https://github.com/msgpack/msgpack-ruby,4471.12474537037,7,115,0,71.0,168.0,0.0,0.0 -multi_json,0.658299961622085,3.18113451815751,-0.0546345167045796,https://salsa.debian.org/ruby-team/ruby-multi-json, https://github.com/intridea/multi_json,3679.9527430555554,10,44,1,48.0,209.0,0.0,1.0 -ruby-team,-0.643273362222477,1.92259855385143,-1.22304663941278,https://salsa.debian.org/ruby-team/ruby-omniauth-github,https://salsa.debian.org/ruby-team/ruby-omniauth-github,3158.4246296296296,0,8,0,0.0,0.0,0.0,0.0 -omniauth-gitlab,-0.863455311873375,1.3390999824916,-1.29446320996902,https://salsa.debian.org/ruby-team/ruby-omniauth-gitlab, https://github.com/linchus/omniauth-gitlab/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -omniauth-openid,-2.39935741291074,-0.171642674226449,-2.97783480212631,https://salsa.debian.org/ruby-team/ruby-omniauth-openid, https://github.com/intridea/omniauth-openid,4671.711388888889,3,19,0,14.0,49.0,0.0,0.0 -omniauth-saml,-0.557953172451022,2.35318785298679,-1.24973080467682,https://salsa.debian.org/ruby-team/ruby-omniauth-saml, https://github.com/PracticallyGreen/omniauth-saml.git,4118.115821759259,12,46,0,40.0,204.0,0.0,0.0 -open4,0.090734973072439,2.65910426156055,-0.492171246465847,https://salsa.debian.org/ruby-team/ruby-open4, https://github.com/ahoward/open4,1740.420659722222,2,8,0,7.0,38.0,0.0,0.0 -openid_connect,-1.15024906069492,2.00418171418765,-2.12720173001155,https://salsa.debian.org/ruby-team/ruby-openid-connect, https://github.com/nov/openid_connect,4182.979143518519,0,17,0,9.0,93.0,0.0,3.0 -packable,-3.09922503917592,-0.707774452569116,-3.6975414863465,https://salsa.debian.org/ruby-team/ruby-packable, https://github.com/marcandre/packable/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -paint,0.034074675246231,1.78292088202141,-0.28505659017706,https://salsa.debian.org/ruby-team/ruby-paint, https://github.com/janlelis/paint.git,4285.910474537037,4,14,0,14.0,30.0,0.0,0.0 -parallel,0.619323841529007,3.53983659817764,-0.37749908332836,https://salsa.debian.org/ruby-team/ruby-parallel, https://github.com/grosser/parallel/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -paranoia,-0.101286641645732,3.71762886739992,-1.26110699558109,https://salsa.debian.org/ruby-team/ruby-paranoia, https://github.com/rubysherpas/paranoia/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -ruby_parser,-0.200841478928632,1.50057956701578,-0.620073214667594,https://salsa.debian.org/ruby-team/ruby-parser, https://github.com/seattlerb/ruby_parser.git,5671.90619212963,0,3,0,2.0,215.0,0.0,0.0 -pathname2,-0.96248613784877,1.76464567481222,-1.570334828767,https://salsa.debian.org/ruby-team/ruby-pathname2, https://github.com/djberg96/pathname2,4825.428090277778,0,6,0,1.0,5.0,0.0,1.0 -pdf-reader,0.56157350663903,2.96765316017272,-0.114351047892046,https://salsa.debian.org/ruby-team/ruby-pdf-reader, https://github.com/yob/pdf-reader,5741.409398148148,14,55,0,50.0,0.0,0.0,0.0 -posix-spawn,0.130926224266965,1.69200705818284,-0.24756890586097,https://salsa.debian.org/ruby-team/ruby-posix-spawn, https://github.com/rtomayko/posix-spawn,3425.523310185185,3,31,0,26.0,114.0,0.0,0.0 -rack,0.52370663708963,1.79028699983549,0.0263794791708582,https://salsa.debian.org/ruby-team/ruby-rack, https://github.com/rack/rack,5772.416944444444,210,362,9,391.0,706.0,0.0,76.0 -rack-cors,-0.412726660959519,2.46160287340637,-1.15800554277139,https://salsa.debian.org/ruby-team/ruby-rack-cors, https://github.com/cyu/rack-cors,4892.222060185185,37,39,0,61.0,338.0,0.0,0.0 -punycode.js,0.584390939421985,4.04641621942173,-0.466230817616351,https://salsa.debian.org/ruby-team/ruby-rails-assets-punycode, https://github.com/bestiejs/punycode.js,4371.203738425926,18,3,0,19.0,151.0,0.0,0.0 -rails-dom-testing,1.13952579591952,2.31865099965018,0.452605243049856,https://salsa.debian.org/ruby-team/ruby-rails-dom-testing, https://github.com/rails/rails-dom-testing,3596.7865625,8,32,0,32.0,86.0,0.0,0.0 -rails-html-sanitizer,0.003583064484235,1.43815596943868,-0.287191274895917,https://salsa.debian.org/ruby-team/ruby-rails-html-sanitizer, https://github.com/rails/rails-html-sanitizer,3530.5188078703704,6,25,0,27.0,142.0,0.0,0.0 -rails-i18n,-0.887390700249912,1.47922930291553,-1.44004516765411,https://salsa.debian.org/ruby-team/ruby-rails-i18n, https://github.com/svenfuchs/rails-i18n/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rainbow,-0.0554541407207594,2.18091363175457,-0.487487680104643,https://salsa.debian.org/ruby-team/ruby-rainbow, https://github.com/sickill/rainbow/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rbnacl,-0.510179805944679,1.81844098221407,-1.1442616341555,https://salsa.debian.org/ruby-team/ruby-rbnacl, https://github.com/RubyCrypto/rbnacl,3765.2138425925928,11,37,2,39.0,107.0,0.0,6.0 -rbpdf,0.317074769161044,3.30877334866402,-0.483811180367475,https://salsa.debian.org/ruby-team/ruby-rbpdf, https://github.com/naitoh/rbpdf/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rchardet,0.889800789303886,4.37087239942861,-0.123910973821463,https://salsa.debian.org/ruby-team/ruby-rchardet, https://github.com/jmhodges/rchardet,5157.865810185185,2,16,0,14.0,39.0,0.0,0.0 -rdiscount,0.540077320253619,2.71375110214917,-0.139750341574188,https://salsa.debian.org/ruby-team/ruby-rdiscount, https://github.com/rtomayko/rdiscount,5495.396527777778,14,23,3,28.0,170.0,0.0,9.0 -re2,-0.397524074451073,2.06755776428374,-1.08083804499971,https://salsa.debian.org/ruby-team/ruby-re2, https://github.com/mudge/re2.git,4891.984027777778,5,6,0,6.0,31.0,0.0,1.0 -recaptcha,-0.72275248127782,1.51158444976084,-1.15631336278707,https://salsa.debian.org/ruby-team/ruby-recaptcha, https://github.com/ambethia/recaptcha,5167.506342592593,32,133,0,118.0,0.0,0.0,20.0 -recursive-open-struct,-0.958669414287883,1.86589840928355,-1.69647456196178,https://salsa.debian.org/ruby-team/ruby-recursive-open-struct, https://github.com/aetherknight/recursive-open-struct/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -redcarpet,0.0453332853328228,0.861694552411162,-0.202762196920588,https://salsa.debian.org/ruby-team/ruby-redcarpet, https://github.com/vmg/redcarpet/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -redcloth,0.395842245157601,2.28026811814275,-0.261658559087054,https://salsa.debian.org/ruby-team/ruby-redcloth, https://github.com/jgarber/redcloth.git,5745.453854166667,8,27,0,31.0,85.0,0.0,2.0 -redis-rb,-0.18452947044888,1.6465311995778,-0.572559493439642,https://salsa.debian.org/ruby-team/ruby-redis, https://github.com/redis/redis-rb/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -redis-actionpack,-0.836515157175233,1.4579951576454,-1.29168570618053,https://salsa.debian.org/ruby-team/ruby-redis-actionpack, https://github.com/redis-store/redis-actionpack,3755.356412037037,8,18,0,15.0,48.0,0.0,0.0 -redis-namespace,-0.513694902557104,1.56519782480238,-1.00788732904472,https://salsa.debian.org/ruby-team/ruby-redis-namespace, https://github.com/resque/redis-namespace,5080.32400462963,46,64,0,90.0,271.0,0.0,0.0 -ronn-ng,0.0051973803124171,1.35292803717205,-0.513322958865165,https://salsa.debian.org/ruby-team/ruby-ronn, https://github.com/apjanke/ronn-ng,5091.883310185185,3,20,4,19.0,40.0,0.0,0.0 -sass-rails,0.129545967450833,2.34308051926344,-0.286962862145183,https://salsa.debian.org/ruby-team/ruby-sass-rails, https://github.com/rails/sass-rails,3032.8716550925924,10,70,2,62.0,828.0,0.0,0.0 -seed-fu,-0.340684315585129,2.69862979607183,-1.1723771613379,https://salsa.debian.org/ruby-team/ruby-seed-fu, https://github.com/mbleigh/seed-fu,3639.382974537037,1,34,0,23.0,185.0,0.0,4.0 -select2-rails,0.0255233967024308,4.01706300359317,-1.08293072621371,https://salsa.debian.org/ruby-team/ruby-select2-rails, https://github.com/argerim/select2-rails,3178.743078703704,3,45,0,37.0,323.0,0.0,4.0 -signet,-0.699993439256247,1.72426912653258,-1.231688395593,https://salsa.debian.org/ruby-team/ruby-signet, https://github.com/googleapis/signet,4807.42556712963,28,44,4,52.0,165.0,0.0,1.0 -sinatra,0.386749271599216,1.83009878817128,-0.175954383271379,https://salsa.debian.org/ruby-team/ruby-sinatra, https://github.com/sinatra/sinatra.git,5774.208402777777,157,401,0,368.0,41.0,0.0,0.0 -slack-notifier,-0.230077747524705,2.68139203868078,-0.961449581859591,https://salsa.debian.org/ruby-team/ruby-slack-notifier, https://github.com/slack-notifier/slack-notifier.git,2800.9713773148146,7,25,0,26.0,174.0,0.0,0.0 -solve,-1.8731536972258,0.372254616415477,-2.34213555482145,https://salsa.debian.org/ruby-team/ruby-solve, https://github.com/berkshelf/solve,3205.955972222222,4,24,0,17.0,61.0,0.0,0.0 -sprockets,0.212769678894906,2.15026296744478,-0.237219096457883,https://salsa.debian.org/ruby-team/ruby-sprockets, https://github.com/rails/sprockets.git,3278.045405092593,50,229,0,213.0,572.0,0.0,0.0 -stomp,-0.0622865151208568,2.27857480823714,-0.539926770630288,https://salsa.debian.org/ruby-team/ruby-stomp, https://github.com/stompgem/stomp.git,4485.674305555555,3,49,0,31.0,92.0,0.0,4.0 -svg-graph2,-0.360620887245162,1.99990184204945,-1.03648271724593,https://salsa.debian.org/ruby-team/ruby-svg-graph, https://github.com/lumean/svg-graph2,5000.599039351852,3,24,0,20.0,18.0,0.0,1.0 -task_list,-0.797245273086402,1.53048217175323,-1.27304297708671,https://salsa.debian.org/ruby-team/ruby-task-list, https://github.com/deckar01/task_list.git,3500.9144675925927,4,16,0,14.0,10.0,0.0,2.0 -test_declarative,-3.18614029592163,-0.680294803942653,-3.73228161419542,https://salsa.debian.org/ruby-team/ruby-test-declarative, https://github.com/svenfuchs/test_declarative/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -test-unit,0.508315918207015,3.11877845565933,-0.0204072697861418,https://salsa.debian.org/ruby-team/ruby-test-unit, https://github.com/test-unit/test-unit/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -text,0.395193545718993,2.82878365350909,-0.139155166458522,https://salsa.debian.org/ruby-team/ruby-text, https://github.com/threedaymonk/text,2533.6334375,0,20,0,9.0,25.0,0.0,0.0 -thor,0.489838892813756,3.03231142436935,-0.108264355321474,https://salsa.debian.org/ruby-team/ruby-thor, https://github.com/erikhuda/thor/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -thread_safe,0.789915331378537,3.40620163123357,-0.0364056561782537,https://salsa.debian.org/ruby-team/ruby-thread-safe, https://github.com/ruby-concurrency/thread_safe,1914.587175925926,2,18,1,17.0,28.0,0.0,0.0 -timecop,-1.62494755345376,-0.136572147007059,-1.97702859037335,https://salsa.debian.org/ruby-team/ruby-timecop, https://github.com/travisjeffery/timecop/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -toml-rb,-1.09659973074653,1.70545620655296,-1.72548269340447,https://salsa.debian.org/ruby-team/ruby-toml-rb, https://github.com/emancu/toml-rb.git,3791.6442361111112,5,30,0,29.0,61.0,0.0,0.0 -ruby-unf_ext,0.524978609062779,2.44234370701177,-0.0572331882658427,https://salsa.debian.org/ruby-team/ruby-unf-ext, https://github.com/knu/ruby-unf_ext,4837.972118055555,5,11,0,11.0,144.0,0.0,0.0 -validates_url,-1.57830950316622,0.694726122564468,-2.17291421883927,https://salsa.debian.org/ruby-team/ruby-validate-url, https://github.com/perfectline/validates_url.git,4598.7266782407405,25,34,0,47.0,141.0,0.0,0.0 -vcr,-1.83540817323998,0.345887647417514,-2.42997707111299,https://salsa.debian.org/ruby-team/ruby-vcr, https://github.com/vcr/vcr,5026.147708333333,86,97,0,152.0,774.0,0.0,33.0 -xpath,0.225392451072693,2.63540825142997,-0.453283494506241,https://salsa.debian.org/ruby-team/ruby-xpath, https://github.com/teamcapybara/xpath.git,4699.099942129629,4,29,0,22.0,77.0,0.0,0.0 -yajl-ruby,0.134286873728126,1.2952090225219,-0.198448627183705,https://salsa.debian.org/ruby-team/ruby-yajl, https://github.com/brianmario/yajl-ruby,4761.960428240741,20,41,0,45.0,266.0,0.0,0.0 -yaml_db,-1.69147543716954,0.844880210373094,-2.22594278212568,https://salsa.debian.org/ruby-team/ruby-yaml-db, https://github.com/yamldb/yaml_db,4943.554675925926,10,17,0,20.0,191.0,0.0,3.0 -yell,-2.29457708512619,0.136508445829378,-2.7815318187394,https://salsa.debian.org/ruby-team/ruby-yell, https://github.com/rudionrails/yell,3852.7088541666662,5,10,0,12.0,42.0,0.0,5.0 -rumur,-3.53607346628981,-0.829079108774929,-4.26893948325028,https://github.com/Smattr/rumur.git,https://github.com/Smattr/rumur.git,3378.926203703704,0,5,0,2.0,8.0,0.0,0.0 -sagetex,-0.154990457339111,0.51087324234677,-0.363447528026123,https://salsa.debian.org/tex-team/sagetex, https://github.com/dandrake/sagetex/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -salmon,-0.36496313866009,1.5121758625399,-0.9283685843126,https://salsa.debian.org/med-team/salmon, https://github.com/COMBINE-lab/salmon/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -samizdat,-2.14362263208926,0.0590823844460447,-2.86196074478856,https://salsa.debian.org/ruby-team/samizdat, https://github.com/angdraug/samizdat,3433.232013888889,0,3,0,1.0,2.0,0.0,0.0 -samplv1,0.131881997886185,2.38807427841235,-0.430180476778393,https://salsa.debian.org/multimedia-team/samplv1, https://github.com/rncbc/samplv1.git,4120.8180671296295,1,15,0,6.0,28.0,0.0,3.0 -sandsifter,-0.870299226201277,1.61527247134859,-1.59075399712535,https://salsa.debian.org/pkg-security-team/sandsifter, https://github.com/rigred/sandsifter,736.7519907407408,4,12,0,7.0,12.0,0.0,0.0 -sasview,-1.06271646182923,0.250297261654951,-1.42489359843592,https://salsa.debian.org/science-team/sasview, https://github.com/SasView/sasview.git,5783.19738425926,20,119,0,59.0,30.0,0.0,22.0 -scap-workbench,-0.362911064943978,2.65093298513151,-1.27246505615953,https://salsa.debian.org/debian/scap-workbench, https://github.com/OpenSCAP/scap-workbench.git,4660.289282407407,13,37,0,20.0,138.0,0.0,7.0 -schismtracker,0.203050376678784,1.16663190262702,-0.240048323239523,https://salsa.debian.org/multimedia-team/schism, https://github.com/schismtracker/schismtracker,4666.610729166667,15,42,0,31.0,165.0,0.0,6.0 -coordgenlibs,-0.665765923578571,1.57073877546974,-1.12540202298289,https://salsa.debian.org/science-team/schroedinger-coordgenlibs, https://github.com/schrodinger/coordgenlibs.git,2268.105428240741,12,9,0,14.0,28.0,0.0,0.0 -scram,0.0112378446993806,2.44512482739566,-0.690432285046287,https://salsa.debian.org/science-team/scram, https://github.com/rakhimov/scram.git,1943.5289930555557,2,6,0,3.0,21.0,0.0,1.0 -scrcpy,-0.0596273246573064,2.37005260907049,-0.583387617640955,https://salsa.debian.org/yangfl-guest/scrcpy, https://github.com/Genymobile/scrcpy,2194.2825462962965,140,11,2,121.0,680.0,0.0,13.0 -screenFetch,0.839371855423016,3.42069357217954,0.006465868706162,https://salsa.debian.org/debian/screenfetch, https://github.com/KittyKatt/screenFetch.git,4948.576851851852,38,182,0,141.0,38.0,0.0,5.0 -screengrab,0.143264164157644,1.10782436445147,-0.138023746203509,https://salsa.debian.org/lxqt-team/screengrab, https://github.com/lxqt/screengrab.git,4829.588819444444,59,21,0,54.0,65.0,0.0,0.0 -scrot,0.520776340410167,1.48835473530944,0.0924816727168656,https://salsa.debian.org/debian/scrot, https://github.com/resurrecting-open-source-projects/scrot,1711.9000347222222,19,22,0,23.0,60.0,0.0,0.0 -scrypt,-0.316007582739295,1.91704115949752,-0.753230531310013,https://salsa.debian.org/debian/scrypt, https://github.com/Tarsnap/scrypt.git,4121.472465277778,3,11,0,10.0,45.0,0.0,0.0 -sdate,-0.164409208102411,1.96637580417159,-0.758067793552963,https://github.com/df7cb/sdate,https://github.com/df7cb/sdate,5170.3786689814815,3,6,0,6.0,13.0,0.0,0.0 -seascope,0.141854914147581,3.37647754585079,-0.951559083233916,https://salsa.debian.org/debian/seascope, https://github.com/anilFree/seascope.git,2921.749930555556,1,15,0,6.0,6.0,0.0,0.0 -selinux,-1.94665621577352,0.751145752517991,-2.579195758696,https://salsa.debian.org/selinux-team/secilc, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 -THC-Archive,1.9359167992798,4.44745772446768,0.825156888893887,https://salsa.debian.org/debian/secure-delete, https://github.com/hackerschoice/THC-Archive,1834.166099537037,2,3,0,3.0,7.0,0.0,0.0 -selinux,0.764975420894951,3.39841558893333,-0.12971291673507,https://salsa.debian.org/selinux-team/selinux-python, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 -semi,-0.0012315825526517,0.730430659414898,-0.363630362706879,https://salsa.debian.org/debian/semi, https://github.com/wanderlust/semi,5270.967534722222,3,13,0,9.0,12.0,0.0,0.0 -sendemail,0.514998759345651,2.58027424696462,-0.100100986305897,https://github.com/mogaal/sendemail,https://github.com/mogaal/sendemail,1084.8616782407407,0,2,0,2.0,42.0,0.0,0.0 -sendxmpp,1.69498029723781,3.9154198760279,0.672316801529384,https://salsa.debian.org/xmpp-team/sendxmpp, https://github.com/lhost/sendxmpp.git,3008.622476851852,2,6,0,3.0,52.0,0.0,0.0 -ser2net,0.64381086293887,1.93336201584087,-0.0355562237958406,https://salsa.debian.org/debian/ser2net, https://github.com/cminyard/ser2net,5671.705208333334,14,9,0,15.0,113.0,0.0,0.0 -serd,0.704270314732952,2.91139475526988,0.0669085772051469,https://salsa.debian.org/multimedia-team/serd, https://github.com/drobilla/serd.git ,4700.707199074074,5,1,0,6.0,28.0,0.0,0.0 -serverspec-runner,-1.6557747414546,0.93210010723936,-2.3818100795283,https://salsa.debian.org/ruby-team/serverspec-runner, https://github.com/hiracy/serverspec-runner,3100.293310185185,2,5,0,2.0,5.0,0.0,0.0 -setBfree,0.0170022664145474,2.02593146081277,-0.458724727295439,https://salsa.debian.org/multimedia-team/setbfree, https://github.com/pantherb/setBfree.git,3675.381805555556,8,6,0,10.0,61.0,0.0,0.0 -shapelib,0.283233851138818,1.15301871474865,-0.0270271593988786,https://salsa.debian.org/debian-gis-team/shapelib, https://github.com/OSGeo/shapelib.git,5762.861886574074,4,13,0,16.0,34.0,0.0,0.0 -shellinabox,1.4229551917284,3.54605114251154,0.453604030137298,https://github.com/shellinabox/shellinabox/,https://github.com/shellinabox/shellinabox,3681.188402777778,7,26,0,21.0,143.0,0.0,3.0 -shortuuid,-0.457414490156552,1.88217252275336,-1.17536453453659,https://salsa.debian.org/python-team/packages/shortuuid, https://github.com/skorokithakis/shortuuid.git,4431.3497800925925,19,17,0,30.0,96.0,0.0,0.0 -shotcut,-0.037183512800606,1.38950281114524,-0.39566479111947,https://salsa.debian.org/multimedia-team/shotcut, https://github.com/mltframework/shotcut,4437.047048611111,40,29,1,54.0,300.0,0.0,0.0 -should.js,-1.54067696999616,-0.49279365015915,-1.76326878037244,https://salsa.debian.org/js-team/should.js, https://github.com/shouldjs/should.js.git,3267.859884259259,8,77,0,66.0,165.0,0.0,6.0 -simple-obfs,-0.492148834725906,2.33628373367672,-1.2782165106548,https://salsa.debian.org/bridges-team/simple-obfs, https://github.com/shadowsocks/simple-obfs.git,958.8196412037036,21,12,0,23.0,215.0,0.0,0.0 -simple-tpm-pk11,-0.600240351741211,1.73399811281247,-1.33617384336962,https://salsa.debian.org/debian/simple-tpm-pk11, https://github.com/ThomasHabets/simple-tpm-pk11,3536.426689814815,8,13,0,16.0,52.0,0.0,1.0 -simpleburn,1.13215085973516,4.02733974606994,0.01538467210918,https://github.com/mati75/simpleburn.git,https://github.com/mati75/simpleburn.git,1916.8323611111111,0,3,0,2.0,4.0,0.0,0.0 -simpleeval,-1.05139430806975,0.656524120520537,-1.37257689371325,https://salsa.debian.org/tryton-team/simpleeval, https://github.com/danthedeckie/simpleeval.git,3363.307037037037,10,23,0,21.0,94.0,0.0,0.0 -simplejson,0.778161234664623,2.53070479102907,0.112236973748674,https://salsa.debian.org/python-team/packages/simplejson, https://github.com/simplejson/simplejson,5762.085011574074,6,42,0,35.0,85.0,0.0,0.0 -ssr,0.507476794391828,2.51726533234679,-0.0714681759267078,https://salsa.debian.org/multimedia-team/simplescreenrecorder, https://github.com/MaartenBaert/ssr,3464.059097222222,13,48,0,42.0,288.0,0.0,1.0 -simplesnap,-0.347860080547578,2.48931577684738,-1.25124848753621,https://github.com/jgoerzen/simplesnap,https://github.com/jgoerzen/simplesnap,3116.7912384259257,1,6,0,4.0,24.0,0.0,0.0 -sinntp,-0.748613253900264,2.22419119031069,-1.86443126897777,https://salsa.debian.org/python-team/packages/sinntp, https://github.com/jwilk/sinntp.git,5461.030625,0,2,0,2.0,3.0,0.0,0.0 -skiboot,-1.22677087538962,0.808340910133992,-1.80235669035316,https://salsa.debian.org/debian/skiboot, https://github.com/open-power/skiboot.git,3435.512118055556,156,19,0,99.0,117.0,0.0,0.0 -dict,-0.134196512292479,0.494021828155821,-0.352987531773523,https://salsa.debian.org/debian/skkdic, https://github.com/skk-dev/dict,2069.106724537037,1,13,0,14.0,27.0,0.0,0.0 -skktools,-0.773911555730666,-0.492281698042003,-0.830438258275182,https://salsa.debian.org/debian/skktools, https://github.com/skk-dev/skktools,4603.994340277778,1,14,0,9.0,15.0,0.0,0.0 -sl,0.323098944963659,1.32688290746574,-0.0654472920321516,https://salsa.debian.org/debian/sl, https://github.com/mtoyoda/sl,1446.5538657407408,0,15,0,10.0,116.0,0.0,0.0 -sleef,-2.21049471283947,0.330632286445883,-2.7673859805071,https://salsa.debian.org/science-team/sleef, https://github.com/shibatch/sleef.git,2789.4703935185184,24,7,0,30.0,20.0,0.0,2.0 -sleuthkit,0.248789793977087,0.732207057194791,0.0073823656560896,https://salsa.debian.org/pkg-security-team/sleuthkit, https://github.com/sleuthkit/sleuthkit,5541.681574074074,21,144,0,79.0,39.0,0.0,2.0 -slowhttptest,-0.528541826828133,1.65417138824375,-0.983695793534047,https://salsa.debian.org/debian/slowhttptest, https://github.com/shekyan/slowhttptest,4436.458900462963,5,15,0,11.0,62.0,0.0,3.0 -smarty,0.35043741674187,1.55405515874399,-0.150511039092155,https://salsa.debian.org/debian/smarty3, https://github.com/smarty-php/smarty.git,3318.934618055556,45,52,0,58.0,489.0,0.0,1.0 -smbmap,-0.0942111376502886,1.27295716550052,-0.389455048445473,https://salsa.debian.org/pkg-security-team/smbmap, https://github.com/ShawnDEvans/smbmap.git,3137.721273148148,5,16,0,14.0,95.0,0.0,2.0 -smcroute,-0.54953051706228,0.137923258974923,-0.812248141095543,https://salsa.debian.org/debian/smcroute, https://github.com/troglobit/smcroute.git,5055.776608796296,11,24,0,26.0,82.0,0.0,0.0 -SmokePing,0.190958325155639,0.495116965494432,-0.0114998502528639,https://salsa.debian.org/debian/smokeping, https://github.com/oetiker/SmokePing.git,5773.893090277777,41,36,0,63.0,259.0,0.0,13.0 -snap,-0.28800104820706,1.71992462859508,-0.924480898370672,https://salsa.debian.org/med-team/snap-aligner, https://github.com/amplab/snap.git,3911.334189814815,1,64,0,10.0,89.0,0.0,0.0 -snimpy,-1.17107205814411,-0.36336963815243,-1.35154776735059,https://salsa.debian.org/debian/snimpy, https://github.com/vincentbernat/snimpy/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -snoopy,1.16698249164871,2.87538335813065,0.327958550422538,https://salsa.debian.org/pkg-security-team/snoopy, https://github.com/a2o/snoopy,3060.3719097222224,6,34,4,21.0,133.0,0.0,0.0 -SoapyHackRF,0.160509808114309,2.66735657628688,-0.32455558496388,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyhackrf, https://github.com/pothosware/SoapyHackRF.git,2556.476736111111,1,9,0,7.0,36.0,0.0,5.0 -SoapyOsmo,0.115687169424095,2.54060577678283,-0.333920923800992,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyosmo, https://github.com/pothosware/SoapyOsmo.git,2779.5272569444446,0,2,0,2.0,14.0,0.0,2.0 -SoapySDR,0.575702929361127,3.27154873781337,-0.200934298225776,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapysdr, https://github.com/pothosware/SoapySDR.git,3219.850891203704,4,27,0,26.0,135.0,0.0,20.0 -solarpowerlog,-1.77959704977027,0.0950109384749429,-2.37051827818887,https://github.com/coldtobi/solarpowerlog/tree/debian,https://github.com/coldtobi/solarpowerlog,5143.718831018518,1,8,0,1.0,1.0,0.0,1.0 -solvespace,0.340007831139215,2.47509748354308,-0.301409968232717,https://salsa.debian.org/science-team/solvespace, https://github.com/solvespace/solvespace/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sombok,0.300678887273768,1.83749455881472,-0.0607142369196268,https://salsa.debian.org/kolter/sombok, https://github.com/hatukanezumi/sombok,1612.4445949074077,0,1,0,1.0,4.0,0.0,0.0 -sonata,0.290550559525298,0.957624544235178,-0.0885666060937319,https://salsa.debian.org/mpd-team/sonata, https://github.com/multani/sonata,4950.701516203703,15,21,0,23.0,50.0,0.0,0.0 -sonic,0.343633917217908,1.44741963728112,0.0197565432416776,https://salsa.debian.org/a11y-team/sonic, https://github.com/waywardgeek/sonic,4727.140219907407,3,21,0,12.0,42.0,0.0,0.0 -sope,-0.250285844022473,0.998766195634201,-0.728051886695358,https://salsa.debian.org/debian/sope, https://github.com/inverse-inc/sope.git,4884.871064814814,9,32,0,24.0,32.0,0.0,0.0 -soundkonverter,1.09084727263379,2.47482419920947,0.374357897228152,https://salsa.debian.org/qt-kde-team/extras/soundkonverter, https://github.com/dfaust/soundkonverter.git,4518.085289351852,5,14,0,15.0,97.0,0.0,5.0 -spectrwm,0.874032047401929,3.39956600370536,-0.110628773759858,https://salsa.debian.org/debian/spectrwm, https://github.com/conformal/spectrwm,5428.753796296296,35,24,0,38.0,333.0,0.0,14.0 -sphinxcontrib-bibtex,0.111160598031209,2.11318272129199,-0.419729806860031,https://salsa.debian.org/science-team/sphinxcontrib-bibtex, https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git,4544.649305555556,11,9,0,16.0,150.0,0.0,0.0 -restbuilder,-1.17641651624647,1.28466903560404,-1.67559401147086,https://salsa.debian.org/python-team/packages/sphinxcontrib-restbuilder, https://github.com/sphinx-contrib/restbuilder.git,2987.8306828703703,1,10,0,8.0,23.0,0.0,0.0 -spelling,-0.787411678299217,1.02874816450239,-1.41992962385352,https://salsa.debian.org/python-team/packages/sphinxcontrib-spelling, https://github.com/sphinx-contrib/spelling,5270.833333333333,12,76,0,67.0,83.0,0.0,0.0 -sphinxcontrib-websupport,-1.48901538602213,0.0929123660126154,-1.89594760691602,https://salsa.debian.org/python-team/packages/sphinxcontrib-websupport, https://github.com/sphinx-doc/sphinxcontrib-websupport,4818.693842592593,8,17,0,18.0,21.0,0.0,0.0 -sphinxtesters,-1.0316070726279,1.44784447235123,-1.60460073897989,https://salsa.debian.org/python-team/packages/sphinxtesters, https://github.com/matthew-brett/sphinxtesters.git,2155.7952314814816,0,3,0,2.0,5.0,0.0,0.0 -spin-debian,-0.53072399035707,2.5263569151805,-1.40162814120316,https://github.com/thomaslee/spin-debian,https://github.com/thomaslee/spin-debian,1934.3454282407408,2,4,0,2.0,3.0,0.0,0.0 -sqitch,-1.09874968177566,-0.371705701400283,-1.28992586447073,https://salsa.debian.org/perl-team/modules/packages/sqitch, https://github.com/sqitchers/sqitch/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sqldeveloper-package,0.317846262180643,2.55125211219562,-0.549806455358977,https://github.com/lazarusllong/sqldeveloper-package.git,https://github.com/lazarusllong/sqldeveloper-package.git,2130.304918981481,0,3,0,1.0,6.0,0.0,0.0 -sqlgrey-debian,-0.447394696995026,1.28759403696547,-1.09288612680833,https://github.com/bobek/sqlgrey-debian,https://github.com/bobek/sqlgrey-debian,4172.383530092593,1,3,0,2.0,1.0,0.0,0.0 -sqlmap,-0.0436656035553366,1.22987637940851,-0.407677419447587,https://salsa.debian.org/pkg-security-team/sqlmap, https://github.com/sqlmapproject/sqlmap.git,5537.8440625,75,67,0,118.0,120.0,0.0,6.0 -ssh-audit,0.212805109619305,2.71000373552659,-0.378794663244851,https://salsa.debian.org/debian/ssh-audit, https://github.com/jtesta/ssh-audit.git,2897.0719328703703,19,7,0,23.0,122.0,0.0,13.0 -sshuttle,0.468621287315097,1.59020401281724,-0.0562158764438331,https://salsa.debian.org/debian/sshuttle, https://github.com/sshuttle/sshuttle.git,4975.084467592593,104,46,0,119.0,319.0,0.0,1.0 -sslsplit,0.0482855639097266,2.12289962740315,-0.637127829077254,https://salsa.debian.org/debian/sslsplit, https://github.com/droe/sslsplit,4093.935185185185,9,20,2,17.0,164.0,0.0,0.0 -subliminal,0.719007050611934,3.14219027867566,-0.207924080626069,https://salsa.debian.org/python-team/packages/subliminal, https://github.com/Diaoul/subliminal.git,3790.672627314815,11,36,0,30.0,562.0,0.0,0.0 -suds,-0.20613769522305,0.133500224279092,-0.280338126116505,https://salsa.debian.org/python-team/packages/suds, https://github.com/suds-community/suds.git,3431.642199074074,14,23,0,26.0,80.0,0.0,0.0 -sundials,0.130483493734379,1.32951513697455,-0.421432426655231,https://salsa.debian.org/science-team/sundials, https://github.com/LLNL/sundials.git,5750.416412037037,17,59,0,19.0,126.0,0.0,1.0 -sup,0.728940870273554,1.64564406403328,0.201429465862888,https://salsa.debian.org/ruby-team/sup-mail, https://github.com/sup-heliotrope/sup/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -svgpp,-1.88545594094944,-0.538517313828018,-2.21882754773418,https://salsa.debian.org/debian/svgpp, https://github.com/svgpp/svgpp.git,3480.624872685185,6,8,0,8.0,55.0,0.0,1.0 -svgtune,0.136601990572802,2.76037877899855,-0.708785107010438,http://github.com/yarikoptic/svgtune,http://github.com/yarikoptic/svgtune,4268.484155092593,0,2,0,0.0,0.0,0.0,0.0 -svgwrite,0.163001514332914,2.89783146632471,-0.643165752630008,https://salsa.debian.org/python-team/packages/svgwrite, https://github.com/mozman/svgwrite.git,2562.4058912037035,4,22,0,19.0,110.0,0.0,0.0 -svn2git,0.073570404336437,2.21477992704799,-0.698915696708374,https://salsa.debian.org/debian/svn-all-fast-export, https://github.com/svn-all-fast-export/svn2git.git,5311.248136574074,28,29,0,32.0,96.0,0.0,0.0 -svtplay-dl,-0.259583483993522,1.49093197580035,-0.73300505771981,https://salsa.debian.org/olof/svtplay-dl, https://github.com/spaam/svtplay-dl,4669.149016203704,48,26,3,52.0,53.0,0.0,0.0 -svxlink,-0.363501834070498,1.31601159062806,-0.862809513000875,https://salsa.debian.org/debian-hamradio-team/svxlink, https://github.com/sm0svx/svxlink/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -swaks,-0.0249524641953267,0.321857900912028,-0.148643973333566,https://salsa.debian.org/debian/swaks, https://github.com/jetmore/swaks,5448.060069444445,0,9,5,5.0,49.0,0.0,0.0 -swami,0.147652628802903,1.51831488143364,-0.462498226293679,https://salsa.debian.org/multimedia-team/swami, https://github.com/swami/swami,4547.478796296296,6,10,0,8.0,16.0,0.0,0.0 -swauth,-2.42549018476981,-0.857079313858978,-2.77954426667766,https://salsa.debian.org/openstack-team/services/swauth, https://github.com/openstack/swauth.git,3045.1673958333336,5,41,0,20.0,0.0,0.0,0.0 -swayidle,-0.101420118028715,2.20364200886325,-0.6198513899419,https://salsa.debian.org/swaywm-team/swayidle, https://github.com/swaywm/swayidle,1867.500775462963,24,22,0,36.0,149.0,0.0,0.0 -swift,-0.744860549436327,-0.508114788689935,-0.849748517290689,https://salsa.debian.org/openstack-team/services/swift, https://github.com/openstack/swift.git,4902.789189814815,50,447,0,293.0,35.0,0.0,0.0 -synaptic,4.07863208558205,4.62122051683102,3.64147371025369,https://github.com/mvo5/synaptic,https://github.com/mvo5/synaptic,5665.124976851852,20,60,0,45.0,96.0,0.0,2.0 -tappy,-0.705784056930563,2.23851716592824,-1.50155112842669,https://salsa.debian.org/python-team/packages/tap.py, https://github.com/python-tap/tappy,3537.627025462963,10,7,0,13.0,34.0,0.0,0.0 -tcpflow,0.199332153857178,0.768845369345533,-0.0915379508440729,https://salsa.debian.org/debian/tcpflow, https://github.com/simsong/tcpflow.git,4133.2346875,26,36,0,41.0,169.0,0.0,0.0 -tcpslice,0.335845590539134,2.6360959653613,-0.57091569500002,https://salsa.debian.org/debian/tcpslice, https://github.com/the-tcpdump-group/tcpslice,1218.717835648148,4,7,0,9.0,17.0,0.0,0.0 -tdc,-0.586034764406804,1.72204976789029,-1.19185769505505,https://github.com/MTecknology/tdc,https://github.com/MTecknology/tdc,2078.208020833333,1,4,0,1.0,3.0,0.0,0.0 -tdiary-contrib,-1.49935485678369,-0.333006957206139,-2.04741697549019,https://salsa.debian.org/ruby-team/tdiary-contrib, https://github.com/tdiary/tdiary-contrib,5617.506469907407,4,81,0,39.0,47.0,0.0,0.0 -tdiary-style-gfm,-3.85195760998636,-1.62098730176518,-4.33521170538792,https://salsa.debian.org/ruby-team/tdiary-style-gfm, https://github.com/tdiary/tdiary-style-gfm,3042.210335648148,2,13,0,10.0,14.0,0.0,0.0 -tea-qt,-0.281031083462774,0.168294716769303,-0.470037759021774,https://salsa.debian.org/debian/tea, https://github.com/psemiletov/tea-qt.git,2860.148009259259,4,9,0,7.0,18.0,0.0,1.0 -teckit,2.12616371380411,6.07678880295945,0.745055592667297,https://github.com/debian-tex/teckit,https://github.com/debian-tex/teckit,2563.6115277777776,1,6,0,2.0,1.0,0.0,0.0 -tegaki,1.36181205070787,5.4067459556616,0.141079286593833,https://salsa.debian.org/debian/tegaki-zinnia-japanese, https://github.com/tegaki/tegaki.git,5118.392777777778,1,17,0,7.0,18.0,0.0,0.0 -terminado,0.117041057623266,1.29203487095836,-0.163948297260027,https://salsa.debian.org/python-team/packages/terminado, https://github.com/jupyter/terminado,3771.3957407407406,25,31,0,38.0,96.0,0.0,0.0 -termshark,-0.790234191745614,1.4608630566174,-1.22828984579489,https://salsa.debian.org/go-team/packages/termshark, https://github.com/gcla/termshark.git,1476.2094328703704,6,14,0,14.0,67.0,0.0,0.0 -tifffile,-0.495019139781536,1.09540225176633,-0.943295403808547,https://salsa.debian.org/python-team/packages/tifffile, https://github.com/cgohlke/tifffile.git,1876.595185185185,0,2,0,1.0,107.0,0.0,0.0 -tigervnc,0.386049951760157,0.977138634206926,0.0684855340794749,https://salsa.debian.org/debian-remote-team/tigervnc, https://github.com/TigerVNC/tigervnc.git,5713.216122685185,57,92,0,111.0,563.0,0.0,20.0 -tikzit,-0.316083266782456,1.71784040429033,-0.775896519955274,https://salsa.debian.org/debian/tikzit, https://github.com/tikzit/tikzit.git,4273.840902777778,1,14,0,8.0,114.0,0.0,0.0 -tiledarray,-1.7374267907978,0.176768633819741,-2.3518262419847,https://salsa.debian.org/debichem-team/tiledarray, https://github.com/ValeevGroup/tiledarray.git,5618.111967592593,7,39,0,21.0,38.0,0.0,5.0 -tktable,0.381122633675888,2.97249082624193,-0.224727752517437,https://salsa.debian.org/tcltk-team/tk-table, https://github.com/wjoye/tktable,2301.1677546296296,2,6,0,3.0,5.0,0.0,0.0 -python-tldp,-2.93877526859313,-1.08471981878398,-3.32269469184863,https://github.com/tLDP/python-tldp,https://github.com/tLDP/python-tldp,2447.0141319444447,0,4,0,2.0,4.0,0.0,0.0 -tldr.py,-0.849419117803017,1.58590203274484,-1.37358549608759,https://salsa.debian.org/python-team/packages/tldr-py, https://github.com/lord63/tldr.py,1740.1593055555556,4,6,0,6.0,33.0,0.0,0.0 -tlf,-0.874731641891955,-0.514588381934818,-0.988646862374724,https://salsa.debian.org/debian-hamradio-team/tlf, https://github.com/Tlf/tlf.git,5111.279826388889,15,21,0,19.0,45.0,0.0,2.0 -tootle,1.27112081484644,4.76922613168408,-0.0231156554212357,https://salsa.debian.org/debian/tootle, https://github.com/bleakgrey/tootle.git,1706.1450925925926,21,13,0,23.0,214.0,0.0,0.0 -torbrowser-launcher,0.225449394393413,0.469008137444455,0.0615930109078143,https://salsa.debian.org/pkg-privacy-team/torbrowser-launcher, https://github.com/micahflee/torbrowser-launcher,3941.46244212963,20,66,6,66.0,20.0,0.0,1.0 -toro,-2.2006489718699,0.291807336130628,-2.76681916306593,https://salsa.debian.org/debian/toro, https://github.com/ajdavis/toro/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -totalopenstation,-0.388922176582237,1.0156726480333,-0.733221024342593,https://salsa.debian.org/debian-gis-team/totalopenstation, https://github.com/totalopenstation/totalopenstation.git,3856.579131944444,6,8,0,10.0,14.0,0.0,0.0 -traitlets,0.252950024330779,1.86292382076619,-0.096233862213897,https://salsa.debian.org/python-team/packages/traitlets, https://github.com/ipython/traitlets.git,5659.035034722222,36,89,0,97.0,252.0,0.0,0.0 -twolame,0.84171127820373,2.60675697554107,0.181912310992012,https://salsa.debian.org/multimedia-team/twolame, https://github.com/njh/twolame,5003.766446759259,10,10,2,13.0,33.0,0.0,0.0 -txt2html,0.777425923402395,2.12212836016023,0.106308761047132,https://salsa.debian.org/debian/txt2html, https://github.com/resurrecting-open-source-projects/txt2html,5316.649085648148,1,4,0,2.0,4.0,0.0,0.0 -txt2man,0.40906456207929,1.5195694639647,-0.144245647631959,https://salsa.debian.org/debian/txt2man, https://github.com/mvertes/txt2man,2424.6791435185187,2,9,0,9.0,19.0,0.0,0.0 -txt2tags,0.0507302841798365,1.0615675265799,-0.385371985804156,https://salsa.debian.org/python-team/packages/txt2tags, https://github.com/txt2tags/txt2tags.git,5549.60462962963,9,22,0,3.0,36.0,0.0,1.0 -txWS,-1.42880810465336,1.20791423379852,-2.03361810531591,https://salsa.debian.org/python-team/packages/txws, https://github.com/MostAwesomeDude/txWS,4288.208576388889,2,10,0,9.0,37.0,0.0,0.0 -txZMQ,-0.602187662560627,0.900282208594241,-1.01882931151546,https://salsa.debian.org/python-team/packages/txzmq, https://github.com/smira/txZMQ,3989.247407407408,3,25,0,17.0,61.0,0.0,0.0 -typogrify,-0.584140790363352,1.90994568662528,-1.17865021441541,https://salsa.debian.org/python-team/packages/typogrify, https://github.com/mintchaos/typogrify,4964.599270833333,2,13,0,12.0,50.0,0.0,0.0 -u-msgpack-python,0.710360090024701,3.61378246657055,-0.108216742854604,https://salsa.debian.org/python-team/packages/u-msgpack-python, https://github.com/vsergeev/u-msgpack-python,3518.0095949074075,11,3,1,10.0,40.0,0.0,0.0 -uap-core,-1.4950577767607,0.219577926393572,-1.90078729822547,https://salsa.debian.org/debian/uap-core, https://github.com/ua-parser/uap-core.git,3378.718645833333,35,224,0,172.0,383.0,0.0,0.0 -udisks,1.63793026797211,2.67550873938926,1.00403938947919,https://salsa.debian.org/utopia-team/udisks2, https://github.com/storaged-project/udisks,5742.170138888889,64,76,1,109.0,96.0,0.0,1.0 -ufo2otf-debian,-1.17996435820182,1.85875491159054,-1.92149448436678,https://github.com/Rudloff/ufo2otf-debian,https://github.com/Rudloff/ufo2otf-debian,893.8441666666666,1,3,0,3.0,1.0,0.0,0.0 -UglifyJS2,-0.463127891589347,1.31384250468291,-0.911019458295516,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333335,82,71,0,115.0,88.0,0.0,0.0 -UglifyJS2,1.1390181603255,3.34213410908041,0.221625202037482,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333335,82,71,0,115.0,88.0,0.0,0.0 -ukui-sidebar,-3.88902279029796,-1.541934669291,-4.33995496976508,https://github.com/ukui/ukui-sidebar,https://github.com/ukui/ukui-sidebar,770.8421412037037,16,52,0,28.0,0.0,0.0,0.0 -unshield,1.07920181598955,2.90405112065956,0.246695801227494,https://salsa.debian.org/games-team/unshield, https://github.com/twogood/unshield.git,5774.091805555556,2,32,0,28.0,33.0,0.0,0.0 -Unworkable,-0.495607914980261,1.10785294829239,-1.03878635306529,https://salsa.debian.org/debian/unworkable, https://github.com/niallo/Unworkable.git,3168.162650462963,2,5,0,2.0,2.0,0.0,0.0 -usbauth-all,-0.8486458400467,2.32483380511731,-1.57743961316718,https://salsa.debian.org/debian/usbauth, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0,2.0,7.0,0.0,0.0 -usbauth-all,-1.36183802482326,0.118912188339963,-1.68426853104591,https://salsa.debian.org/debian/usbauth-notifier, https://github.com/kochstefan/usbauth-all.git,2917.283738425926,3,5,0,2.0,7.0,0.0,0.0 -usbguard,-0.21450453002142,0.569139522677088,-0.563655349319627,https://salsa.debian.org/birger/usbguard, https://github.com/dkopecek/usbguard,3141.3933796296296,33,38,1,43.0,150.0,0.0,1.0 -usbmuxd,1.70181066687251,3.39962034301328,0.838549297398376,https://salsa.debian.org/imobiledevice-team/usbmuxd, https://github.com/libimobiledevice/usbmuxd,5280.244328703704,27,16,0,24.0,138.0,0.0,1.0 -usbview,0.28302889659432,1.2165170826129,-0.094514674433882,https://salsa.debian.org/debian/usbview, https://github.com/gregkh/usbview.git,5596.973240740741,7,11,0,12.0,12.0,0.0,0.0 -uvloop,-0.409780345467941,1.61935534909145,-1.07518499430253,https://salsa.debian.org/python-team/packages/uvloop, https://github.com/MagicStack/uvloop,2912.1617939814814,58,10,0,57.0,542.0,0.0,1.0 -v4l2loopback,-0.119731467421868,0.406915249527638,-0.258798542702752,https://salsa.debian.org/debian/v4l2loopback, https://github.com/umlaeute/v4l2loopback.git,5406.21599537037,26,63,0,57.0,94.0,0.0,35.0 -vagrant-libvirt,-0.122144245358309,0.318525309072922,-0.241653892135262,https://salsa.debian.org/ruby-team/vagrant-libvirt, https://github.com/vagrant-libvirt/vagrant-libvirt,3827.345138888889,87,210,0,209.0,98.0,0.0,3.0 -vagrant-lxc,0.803455628511559,4.60210269892023,-0.412211374017774,https://salsa.debian.org/ruby-team/vagrant-lxc, https://github.com/fgrehm/vagrant-lxc,3559.775474537037,9,55,2,46.0,129.0,0.0,31.0 -vagrant-mutate,-0.480140148499671,1.71494445381176,-0.907498911496296,https://salsa.debian.org/ruby-team/vagrant-mutate, https://github.com/sciurus/vagrant-mutate,1407.9479166666667,3,15,4,15.0,61.0,0.0,1.0 -vagrant-sshfs,-0.317771478584954,2.08390990189748,-0.841842578835168,https://salsa.debian.org/ruby-team/vagrant-sshfs, https://github.com/dustymabe/vagrant-sshfs,2305.192847222222,2,14,0,15.0,132.0,0.0,0.0 -vcsh,1.14113160903232,4.26739967107077,0.026131949941663,https://github.com/RichiH/vcsh,https://github.com/RichiH/vcsh,4529.010185185185,11,57,0,53.0,153.0,63.0,2.0 -VOoM,-0.47858056016314,0.612680272233142,-0.659254773037264,https://salsa.debian.org/yyabuki/vim-voom, https://github.com/vim-voom/VOoM.git,1193.926273148148,0,1,0,1.0,20.0,0.0,0.0 -virtualjaguar-debian,-0.332382495932637,1.61861304132141,-0.767405895120304,https://github.com/glaubitz/virtualjaguar-debian,https://github.com/glaubitz/virtualjaguar-debian,1293.0757291666666,2,1,0,1.0,1.0,0.0,0.0 -vmtouch,0.0085288391752888,3.06752347259447,-0.806734738329006,https://salsa.debian.org/debian/vmtouch, https://github.com/hoytech/vmtouch,4266.543483796297,8,25,0,21.0,85.0,0.0,0.0 -voctomix,-0.37274684122285,1.18109505710797,-0.649460373503614,https://salsa.debian.org/debian/voctomix, https://github.com/voc/voctomix.git,3329.1224189814816,7,54,0,35.0,80.0,0.0,5.0 -voctomix-outcasts,-1.68931304753971,-1.2420509412913,-1.76996344473364,https://salsa.debian.org/debian/voctomix-outcasts, https://github.com/CarlFK/voctomix-outcasts.git,2648.5362847222223,0,9,0,6.0,7.0,0.0,0.0 -vokoscreenNG,0.210412109632221,1.29556919416146,-0.153171249826354,https://salsa.debian.org/debian/vokoscreen-ng, https://github.com/vkohaupt/vokoscreenNG/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -volk,0.34903084552309,1.94774127451589,-0.157883477983144,https://salsa.debian.org/bottoms/pkg-volk, https://github.com/gnuradio/volk,4752.915,39,93,0,74.0,106.0,0.0,0.0 -voltron,-1.81394778451535,1.31850409040173,-2.80233837640787,https://salsa.debian.org/python-team/packages/voltron, https://github.com/snare/voltron.git,2775.508645833333,5,31,0,19.0,212.0,0.0,1.0 -voluptuous,-0.403966828040137,1.23588372282756,-0.751460821473307,https://salsa.debian.org/python-team/packages/voluptuous, https://github.com/alecthomas/voluptuous,4900.054074074074,38,69,0,73.0,81.0,0.0,0.0 -voms,-0.756674276018952,-0.2090198319227,-0.920329345187395,https://salsa.debian.org/ellert/voms, https://github.com/italiangrid/voms,3745.526273148148,4,20,0,8.0,29.0,0.0,5.0 -waitress,-0.001435194970412,0.779693615907078,-0.257745730653346,https://salsa.debian.org/python-team/packages/waitress, https://github.com/Pylons/waitress.git,4372.6596990740745,10,50,0,48.0,135.0,0.0,0.0 -wal2json,-1.82757455393376,0.542460048832333,-2.34041711475106,https://salsa.debian.org/postgresql/wal2json, https://github.com/eulerto/wal2json.git,3393.25287037037,6,15,0,13.0,173.0,0.0,0.0 -wand,-0.67759884996555,-0.105630998138164,-0.896210432107274,https://salsa.debian.org/debian/wand, https://github.com/emcconville/wand,4461.499722222222,24,94,1,85.0,430.0,0.0,0.0 -WavPack,0.50064375084998,1.2816911597057,0.144201344064353,https://salsa.debian.org/multimedia-team/wavpack, https://github.com/dbry/WavPack,5719.907256944444,11,19,0,26.0,86.0,0.0,0.0 -libwbxml,0.571657674707482,2.04396774912402,-0.0953236447349134,https://salsa.debian.org/debian/wbxml2, https://github.com/libwbxml/libwbxml.git,5170.821412037037,0,19,0,15.0,25.0,0.0,0.0 -wcwidth,0.333090955677371,1.89896419632852,-0.0738762363904112,https://salsa.debian.org/python-team/packages/wcwidth, https://github.com/jquast/wcwidth,3540.9241550925926,5,18,0,16.0,80.0,0.0,0.0 -websocketpp,-0.373225960093031,1.27055620163145,-0.713422645811124,https://salsa.debian.org/debian/websocketpp, https://github.com/zaphoyd/websocketpp.git,3911.927326388889,7,63,0,40.0,237.0,0.0,21.0 -websploit,-0.422102819233558,2.10233668523303,-1.07261762366906,https://salsa.debian.org/pkg-security-team/websploit, https://github.com/websploit/websploit,0.0014814814814814,1,1,0,1.0,3.0,0.0,0.0 -weevely3,-0.250737217368348,2.17082901671367,-0.863642780532721,https://salsa.debian.org/pkg-security-team/weevely, https://github.com/epinna/weevely3.git,3185.5150578703706,7,21,0,18.0,24.0,0.0,3.0 -welle.io,-1.15037357918904,0.869870709239836,-1.55603759978621,https://salsa.debian.org/debian-hamradio-team/welle.io, https://github.com/AlbrechtL/welle.io,2902.9566203703703,11,44,0,35.0,243.0,0.0,3.0 -weresync,0.868622438506736,5.31491794179674,-0.611088821201198,https://salsa.debian.org/python-team/packages/weresync, https://github.com/DonyorM/weresync.git,2224.0163194444444,5,4,0,4.0,47.0,0.0,0.0 -weupnp,-1.92006896086912,0.314231076959153,-2.34792325109008,https://salsa.debian.org/debian/weupnp, https://github.com/bitletorg/weupnp.git,896.40375,1,9,0,8.0,23.0,0.0,2.0 -wfmath,-0.389387588299087,0.837955787968463,-0.979234500856992,https://salsa.debian.org/games-team/wfmath, https://github.com/worldforge/wfmath,5506.869699074074,0,8,0,7.0,8.0,0.0,0.0 -wfuzz,0.349453190332924,3.03672551955603,-0.346839296038164,https://salsa.debian.org/pkg-security-team/wfuzz, https://github.com/xmendez/wfuzz.git,3000.734814814815,13,27,0,24.0,91.0,0.0,5.0 -whatthepatch,-1.2344880678377,1.1565131399966,-1.81435377941799,https://salsa.debian.org/python-team/packages/whatthepatch, https://github.com/cscorley/whatthepatch,3792.002951388889,6,11,0,11.0,23.0,0.0,0.0 -when,-0.247136554613533,1.47661843722832,-0.816593972653406,https://salsa.debian.org/carnil/when, https://github.com/bcrowell/when/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -whichcraft,-0.303651311001637,1.96454741753557,-0.763838192557727,https://salsa.debian.org/python-team/packages/whichcraft, https://github.com/cookiecutter/whichcraft,2896.985810185185,2,14,0,8.0,22.0,0.0,0.0 -wanderlust,-0.332550066820388,0.46879211996235,-0.662373670308098,https://salsa.debian.org/debian/wl, https://github.com/wanderlust/wanderlust,5747.071041666667,6,25,0,16.0,85.0,0.0,0.0 -wanderlust,-0.963388551835787,-0.684481816191185,-1.0856880816687,https://salsa.debian.org/debian/wl-beta, https://github.com/wanderlust/wanderlust,5747.071041666667,6,25,0,16.0,85.0,0.0,0.0 -WPEBackend-fdo,0.573009598559966,3.29698066104163,-0.0681747088088377,https://salsa.debian.org/webkit-team/wpebackend-fdo, https://github.com/Igalia/WPEBackend-fdo,2058.3566319444444,11,16,1,15.0,33.0,0.0,0.0 -Xastir,0.108948248188163,0.863508814175857,-0.320286247787417,https://salsa.debian.org/debian-hamradio-team/xastir, https://github.com/Xastir/Xastir.git,5658.770590277778,2,27,0,23.0,47.0,0.0,1.0 -xcape,0.103186649828254,2.66352443571924,-0.48817172462312,https://salsa.debian.org/debian/xcape, https://github.com/alols/xcape,2160.454236111111,3,26,0,19.0,215.0,0.0,0.0 -xcffib,0.342276607758732,1.64397362388373,-0.208917083473425,https://salsa.debian.org/python-team/packages/xcffib, https://github.com/tych0/xcffib.git,3466.6135069444445,10,9,0,14.0,67.0,0.0,0.0 -xCHM,0.210695760790321,0.795971847871289,-0.0859691060763882,https://salsa.debian.org/debian/xchm, https://github.com/rzvncj/xCHM.git,5664.286203703704,3,5,0,6.0,25.0,0.0,0.0 -xcscope.el,0.22225671206335,2.73581330732423,-0.509665274216416,https://salsa.debian.org/debian/xcscope-el, https://github.com/dkogan/xcscope.el,3521.9445949074075,2,6,0,6.0,30.0,0.0,0.0 -xdffileio,-0.33703609329714,3.13997421391231,-1.51729011028527,https://salsa.debian.org/med-team/xdffileio, https://github.com/mmlabs-mindmaze/xdffileio.git,3980.6902777777777,1,9,0,3.0,4.0,0.0,0.0 -xdms-debian,-0.324508549703597,1.11111882766628,-0.732719972201246,https://github.com/glaubitz/xdms-debian,https://github.com/glaubitz/xdms-debian,2621.1444212962965,2,1,0,3.0,2.0,0.0,0.0 -xdotool,1.29689129174718,2.6433354619352,0.585464050400781,https://salsa.debian.org/debian/xdotool, https://github.com/jordansissel/xdotool.git,5532.041435185185,34,28,0,50.0,581.0,0.0,0.0 -xen-tools,0.184922680491655,0.404449991481267,0.029379649998388,https://github.com/xen-tools/xen-tools,https://github.com/xen-tools/xen-tools,5773.49619212963,25,18,2,29.0,33.0,0.0,0.0 -xmldiff,0.559598995971893,1.58014148970041,0.0079329530014685,https://salsa.debian.org/debian/xmldiff, https://github.com/Shoobx/xmldiff.git,5659.724016203703,11,15,0,19.0,92.0,0.0,0.0 -xmltv,-0.0141973654544938,0.196827117268805,-0.146599190251928,https://salsa.debian.org/nickm/xmltv, https://github.com/XMLTV/xmltv.git,5729.325231481482,14,54,0,44.0,137.0,0.0,0.0 -xmoto,-0.0128577774958252,0.35047672104516,-0.221279370942503,https://salsa.debian.org/games-team/xmoto, https://github.com/xmoto/xmoto,5752.609814814815,7,30,1,14.0,32.0,0.0,1.0 -yadm,0.155795293007734,2.47899167336278,-0.534660961320123,https://salsa.debian.org/debian/yadm, https://github.com/TheLocehiliosan/yadm,1719.547361111111,26,32,0,34.0,348.0,0.0,0.0 -yanc,-1.50099926106038,1.46162195444987,-2.26685152937622,https://salsa.debian.org/python-team/packages/yanc, https://github.com/0compute/yanc,1361.9793865740742,0,3,0,2.0,13.0,0.0,0.0 -yatm,-0.99699425644898,0.469884003019665,-1.39594494269735,https://salsa.debian.org/debian/yatm, https://github.com/mlang/yatm.git,2272.488912037037,0,3,0,1.0,4.0,0.0,0.0 -yder,-0.573558670541915,1.49485584194788,-1.0176765614188,https://salsa.debian.org/debian-iot-team/oauth2/yder.git, https://github.com/babelouest/yder,1282.873275462963,2,11,0,9.0,16.0,0.0,0.0 -ydpdict,-1.66201223318566,-0.965022576149982,-1.88784607381972,https://github.com/porridge/ydpdict,https://github.com/porridge/ydpdict,5724.953773148148,0,4,0,3.0,0.0,0.0,0.0 -yokadi,-0.624393892670881,1.70289828765903,-1.28550063632623,https://salsa.debian.org/debian/yokadi, https://github.com/agateau/yokadi/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -yoshimi,-0.34447555327641,-0.150960844094766,-0.395152125475785,https://salsa.debian.org/multimedia-team/yoshimi, https://github.com/Yoshimi/yoshimi.git,4804.103599537037,11,39,0,24.0,0.0,0.0,1.0 -zabbix-cli,-0.116244430152616,2.82250935666635,-1.03888250780023,https://github.com/usit-gd/zabbix-cli,https://github.com/usit-gd/zabbix-cli,3337.010740740741,9,35,2,28.0,101.0,0.0,0.0 -zam-plugins,0.302800129289409,2.92045044376257,-0.310176637993487,https://salsa.debian.org/multimedia-team/zam-plugins, https://github.com/zamaudio/zam-plugins.git,3495.4258564814813,5,5,0,8.0,50.0,0.0,0.0 -zbar,1.12742998615967,2.18040905717499,0.530466924475534,https://salsa.debian.org/debian/zbar, https://github.com/mchehab/zbar,5577.42005787037,30,27,0,41.0,117.0,0.0,1.0 -zope.interface,0.894756972646945,2.43572262976472,0.237909121040726,https://salsa.debian.org/python-team/packages/zope.interface, https://github.com/zopefoundation/zope.interface.git,5664.702754629629,13,51,0,52.0,66.0,0.0,0.0 -acorn,-0.352098731788059,0.208180313755519,-0.59790049944258,https://salsa.debian.org/js-team/acorn, https://github.com/ternjs/acorn.git,4089.973773148148,125,21,0,114.0,290.0,0.0,0.0 -acpica,0.704078223289118,1.4328185991839,0.250194214510807,https://salsa.debian.org/debian/acpica-unix, https://github.com/acpica/acpica,5757.107615740741,43,108,0,105.0,57.0,0.0,0.0 -aiomysql,-3.20037947133328,-0.702679209227465,-3.73565617907158,https://salsa.debian.org/python-team/packages/aiomysql, https://github.com/aio-libs/aiomysql.git,5227.991076388889,36,80,0,85.0,174.0,0.0,0.0 -androguard,0.241297069832582,1.96964623712295,-0.413614131846716,https://salsa.debian.org/python-team/packages/androguard, https://github.com/androguard/androguard,4421.14162037037,25,102,1,81.0,211.0,0.0,4.0 -angband,0.524012737304748,1.197044025941,0.093897414172582,https://salsa.debian.org/games-team/angband, https://github.com/angband/angband,5784.383275462963,62,97,7,86.0,73.0,0.0,0.0 -apgdiff,-0.535922125727779,1.15818063763013,-0.998404532675352,https://salsa.debian.org/postgresql/apgdiff, https://github.com/fordfrog/apgdiff,4911.740439814815,14,33,0,28.0,195.0,0.0,2.0 -smali,-0.142364710819105,0.484434745991675,-0.329878944003666,https://salsa.debian.org/android-tools-team/apktool, https://github.com/JesusFreke/smali,4709.844421296296,28,24,0,34.0,365.0,0.0,10.0 -appstream-glib,0.306547939627559,0.950415332480095,0.0390455586714944,https://salsa.debian.org/pkgutopia-team/appstream-glib, https://github.com/hughsie/appstream-glib,3530.064537037037,77,29,0,91.0,216.0,0.0,0.0 -astroplan,-0.440117647380012,0.368099355405067,-0.618300929779659,https://salsa.debian.org/debian-astro-team/astroplan, https://github.com/astropy/astroplan.git,3067.3247685185183,16,34,0,33.0,166.0,0.0,6.0 -Automat,0.57973111859318,2.56516942056424,-0.0081655780065162,https://salsa.debian.org/python-team/packages/automat, https://github.com/glyph/Automat,3398.936238425926,12,27,0,33.0,80.0,0.0,0.0 -autopep8,-0.034679903300575,0.859752537921693,-0.311762502107219,https://salsa.debian.org/python-team/packages/autopep8, https://github.com/hhatto/autopep8.git,4684.442314814814,7,60,0,48.0,455.0,0.0,1.0 -autopsy,0.267363629199221,1.48698131837389,-0.226335563528422,https://salsa.debian.org/debian/autopsy, https://github.com/sleuthkit/autopsy,5552.52337962963,24,149,0,61.0,40.0,0.0,0.0 -B2_Command_Line_Tool,-0.585646026414802,1.05613248809045,-0.982860590975837,https://salsa.debian.org/python-team/packages/backblaze-b2, https://github.com/Backblaze/B2_Command_Line_Tool,2942.6175925925927,21,71,0,65.0,437.0,0.0,2.0 -backbone,0.626839961686094,2.60121778854874,-0.0272691105681844,https://salsa.debian.org/js-team/backbone, https://github.com/jashkenas/backbone,4697.095173611111,30,344,2,288.0,221.0,0.0,516.0 -bcal,-0.76069743784758,1.25821441789707,-1.30485747484126,https://salsa.debian.org/debian/bcal, https://github.com/jarun/bcal.git,2530.8116435185184,8,4,0,9.0,19.0,0.0,0.0 -bchunk,1.39298301877137,3.62755081275134,0.431488685908172,https://salsa.debian.org/debian/bchunk, https://github.com/twojstaryzdomu/bchunk,1689.5562731481482,4,5,0,5.0,0.0,0.0,0.0 -bladeRF,0.248655998016964,1.40886764008124,-0.170338666248805,https://salsa.debian.org/debian-hamradio-team/bladerf, https://github.com/Nuand/bladeRF.git,3942.800648148148,48,43,0,53.0,148.0,0.0,67.0 -blitz,0.0768120247270267,0.481108916453426,-0.151958180445178,https://salsa.debian.org/math-team/blitzxx, https://github.com/blitzpp/blitz,1587.5368287037038,16,14,0,11.0,54.0,0.0,2.0 -bordeaux-threads,-0.131938030153011,2.29490506357594,-0.756389175678033,https://salsa.debian.org/common-lisp-team/bordeaux-threads, https://github.com/sionescu/bordeaux-threads,618.6993865740741,29,15,2,36.0,65.0,7.0,0.0 -bppphyview,-0.322998697146323,1.68940048110285,-1.06946424019755,https://salsa.debian.org/med-team/bppphyview, https://github.com/BioPP/bppphyview,5024.941805555555,0,11,0,2.0,1.0,0.0,0.0 -bpython,-0.0434810994035848,0.644020757602584,-0.307087966803881,https://salsa.debian.org/sramacher/bpython, https://github.com/bpython/bpython.git,5358.551099537037,54,102,0,100.0,257.0,0.0,0.0 -braa,0.18857550913631,2.42325022699813,-0.363339702123432,https://salsa.debian.org/pkg-security-team/braa, https://github.com/mteg/braa,1136.4603125,1,3,0,2.0,3.0,0.0,0.0 -bsdowl,-1.60198847164572,1.75769684398088,-2.51529282607367,https://github.com/michipili/bsdowl/tree/debian,https://github.com/michipili/bsdowl,3910.684305555556,1,6,3,2.0,10.0,0.0,0.0 -Bumblebee,0.376529066809866,1.0876582951625,0.0091091691922931,https://salsa.debian.org/nvidia-team/bumblebee, https://github.com/Bumblebee-Project/Bumblebee,3352.040601851852,5,32,2,13.0,747.0,0.0,56.0 -c-blosc,0.0806218390417441,0.890051594998846,-0.098325224414899,https://salsa.debian.org/debian/c-blosc, https://github.com/Blosc/c-blosc,5250.661886574074,8,67,0,52.0,159.0,0.0,1.0 -cached-property,-0.0144008396077482,0.768841150603926,-0.147182200978449,https://salsa.debian.org/tryton-team/cached-property, https://github.com/pydanny/cached-property.git,3487.9884837962964,5,25,0,20.0,97.0,0.0,0.0 -cakephp,-0.304322882573766,0.0640461085078946,-0.404177810794632,https://salsa.debian.org/debian/cakephp, https://github.com/cakephp/cakephp.git,5783.6353125,209,780,0,353.0,0.0,0.0,27.0 -camlidl,-0.233754700378937,0.070983360778372,-0.316498297708785,https://salsa.debian.org/ocaml-team/camlidl, https://github.com/xavierleroy/camlidl,2560.001168981481,6,6,0,10.0,22.0,0.0,0.0 -castle-engine,-0.13652506448966,2.18823366263936,-1.04099028707213,https://salsa.debian.org/pascal-team/castle-game-engine, https://github.com/castle-engine/castle-engine.git,5781.716412037037,3,36,0,21.0,74.0,0.0,8.0 -cecilia5,2.11941372654458,4.58891034831852,0.951719085649799,https://salsa.debian.org/multimedia-team/cecilia, https://github.com/belangeo/cecilia5.git,2818.905324074074,0,14,0,4.0,62.0,0.0,0.0 -ceres-solver,0.146007252238032,1.31912325385826,-0.329920750077309,https://salsa.debian.org/science-team/ceres-solver, https://github.com/ceres-solver/ceres-solver.git,4197.525416666666,26,96,0,92.0,394.0,0.0,0.0 -cffi,-0.0191807040781388,1.35391352063322,-0.541587320668192,https://salsa.debian.org/common-lisp-team/cffi, https://github.com/cffi/cffi.git,5610.822916666667,73,39,0,74.0,94.0,0.0,6.0 -fiveam,0.185488567318106,3.39476297326925,-0.685652618164102,https://salsa.debian.org/common-lisp-team/cl-fiveam, https://github.com/sionescu/fiveam.git,5674.287337962963,16,9,0,22.0,41.0,0.0,0.0 -cl-plus-ssl,-0.132484343986384,2.37515776230682,-0.86184444510575,https://salsa.debian.org/common-lisp-team/cl-plus-ssl, https://github.com/cl-plus-ssl/cl-plus-ssl,5623.322696759259,6,44,0,38.0,114.0,0.0,0.0 -split-sequence,0.238456885453285,3.53632510820789,-0.67005654498848,https://salsa.debian.org/common-lisp-team/cl-split-sequence, https://github.com/sharplispers/split-sequence,3972.622002314815,4,5,0,6.0,21.0,0.0,0.0 -cloudpickle,-0.135444704190854,0.227092764897738,-0.201763305714843,https://salsa.debian.org/python-team/packages/cloudpickle, https://github.com/cloudpipe/cloudpickle,3146.0455208333333,44,23,0,54.0,301.0,0.0,0.0 -cloudprint-service,-0.505823506968152,0.113680179435873,-0.719538990242667,https://github.com/davesteele/cloudprint-service,https://github.com/davesteele/cloudprint-service,3095.4250115740742,18,20,0,20.0,62.0,0.0,1.0 -cloudsql-proxy,-2.22480744528607,0.67035721276054,-2.9432212872527,https://salsa.debian.org/go-team/packages/cloudsql-proxy, https://github.com/GoogleCloudPlatform/cloudsql-proxy.git,3012.731493055556,90,36,0,103.0,389.0,0.0,0.0 -Clp,0.265211570840681,1.13391031752389,0.0052842839145156,https://salsa.debian.org/science-team/clp, https://github.com/coin-or/Clp,5781.298009259259,3,20,0,17.0,2.0,0.0,0.0 -clustershell,0.192658709212344,2.91396435921751,-0.633817957101621,https://salsa.debian.org/python-team/packages/clustershell, https://github.com/cea-hpc/clustershell,5641.458611111111,20,15,3,25.0,121.0,0.0,5.0 -coffeescript,0.754447923057675,2.32458702818753,0.114142487857081,https://salsa.debian.org/js-team/coffeescript, https://github.com/jashkenas/coffeescript,5027.744583333333,45,236,0,217.0,130.0,0.0,535.0 -compton-conf,0.0365558037896281,2.33559959149864,-0.438569102324087,https://salsa.debian.org/lxqt-team/compton-conf, https://github.com/lxqt/compton-conf.git,3571.817141203704,69,35,0,62.0,50.0,0.0,0.0 -Comskip,-1.12921882299105,2.00928273935997,-1.92251715613048,https://salsa.debian.org/debian/comskip, https://github.com/erikkaashoek/Comskip.git,5415.403148148148,6,28,0,23.0,99.0,0.0,0.0 -coturn,1.02847317193919,3.29681270616991,0.12311749631026,https://github.com/coturn/coturn/tree/debian/master,https://github.com/coturn/coturn,3518.632141203704,69,102,2,114.0,239.0,0.0,0.0 -cpm,1.50030554593415,4.35291061073564,0.259076931680296,https://github.com/comotion/cpm,https://github.com/comotion/cpm,3307.608391203704,0,16,3,5.0,33.0,0.0,4.0 -cqrlog,-0.27542801287245,0.466680289968303,-0.646305842308386,https://salsa.debian.org/debian-hamradio-team/cqrlog, https://github.com/ok2cqr/cqrlog.git,3907.9930208333335,3,34,0,22.0,77.0,0.0,0.0 -cracklib,0.82215549876622,1.3380074207384,0.485069863399516,https://salsa.debian.org/debian/pkg-cracklib/, https://github.com/cracklib/cracklib.git,5758.123356481481,30,18,0,35.0,43.0,0.0,0.0 -cram,-1.55828146225479,0.404430784817172,-2.03735898499585,https://salsa.debian.org/python-team/packages/cram, https://github.com/brodie/cram,4115.669652777778,3,11,0,9.0,40.0,0.0,0.0 -crispy-doom,-0.774189957993927,0.0446191403759617,-0.920726853937846,https://salsa.debian.org/debian/crispy-doom, https://github.com/fabiangreffrath/crispy-doom.git,4757.087858796296,50,87,0,93.0,94.0,0.0,4.0 -crudini,-0.0417948919541669,2.30247891333797,-0.729547201240333,https://salsa.debian.org/python-team/packages/crudini, https://github.com/pixelb/crudini,3928.4521064814817,7,8,0,13.0,111.0,0.0,0.0 -csmith,-1.64827670115649,0.329702465046647,-2.189393160817,https://salsa.debian.org/debian/csmith, https://github.com/csmith-project/csmith.git,4565.639780092592,7,39,0,28.0,77.0,0.0,0.0 -dateutils,0.248966163964174,1.81561866580788,-0.335944677308192,https://salsa.debian.org/alteholz/dateutils, https://github.com/hroptatyr/dateutils,3585.0248032407408,6,16,2,10.0,103.0,0.0,0.0 -ddnet,-0.964163291390815,0.151255788413683,-1.21536273905815,https://salsa.debian.org/games-team/ddnet, https://github.com/ddnet/ddnet,5784.7662152777775,123,275,0,201.0,0.0,0.0,5.0 -dds,-0.198981107742478,1.3473808449561,-0.715152296994495,https://salsa.debian.org/debian/dds, https://github.com/dds-bridge/dds.git,2069.005462962963,2,13,0,11.0,52.0,0.0,0.0 -ddskk,-0.873644530389024,-0.856685110343982,-0.879048032548738,https://salsa.debian.org/debian/ddskk, https://github.com/skk-dev/ddskk,5620.431747685185,2,28,0,20.0,42.0,0.0,0.0 -dfwinreg,-0.0527750481914423,1.07894690853713,-0.406796000050655,https://salsa.debian.org/pkg-security-team/dfwinreg, https://github.com/log2timeline/dfwinreg.git,2962.9065972222224,0,3,0,1.0,14.0,0.0,2.0 -dh-dist-zilla,-1.00752199724441,0.589306650019709,-1.28293350578517,https://github.com/elmar/dh-dist-zilla,https://github.com/elmar/dh-dist-zilla,2392.1696064814814,0,4,0,3.0,3.0,0.0,0.0 -dh-make-golang,-0.307436391950757,0.770263115515491,-0.680055120465306,https://salsa.debian.org/go-team/packages/dh-make-golang, https://github.com/Debian/dh-make-golang.git,3064.970185185185,24,19,0,28.0,79.0,0.0,0.0 -distorm,0.242519587594854,2.0162179615907,-0.300785424821981,https://salsa.debian.org/debian/distorm3, https://github.com/gdabah/distorm.git,2464.690625,2,17,0,13.0,62.0,0.0,1.0 -django-ajax-selects,-1.80264125066177,-1.39892185878209,-1.87010146710181,https://salsa.debian.org/python-team/packages/django-ajax-selects, https://github.com/crucialfelix/django-ajax-selects,4299.027407407408,12,41,0,42.0,258.0,0.0,0.0 -django-anymail,-1.72984340815293,0.000790072373582,-2.06522513421509,https://salsa.debian.org/python-team/packages/django-anymail, https://github.com/anymail/django-anymail,4340.058506944444,33,27,0,51.0,139.0,0.0,0.0 -django-assets,-1.2263795033072,0.878646501636517,-1.80454494183478,https://salsa.debian.org/python-team/packages/django-assets, https://github.com/miracle2k/django-assets.git,4511.067199074074,6,94,0,24.0,93.0,0.0,0.0 -django-jinja,-1.35472993542178,0.150737424977885,-1.65759326053824,https://salsa.debian.org/python-team/packages/django-jinja, https://github.com/niwinz/django-jinja,4245.131724537037,30,48,0,53.0,196.0,0.0,0.0 -django-ldapdb,-1.01081417834882,2.55509597719961,-2.19427575428845,https://salsa.debian.org/python-team/packages/django-ldapdb, https://github.com/django-ldapdb/django-ldapdb,3058.5422222222223,5,21,0,12.0,123.0,0.0,0.0 -django-macaddress,-0.489614537071132,2.37369336544304,-1.53946280496386,https://salsa.debian.org/python-team/packages/django-macaddress, https://github.com/tubaman/django-macaddress.git,3439.070474537037,8,28,0,20.0,36.0,0.0,0.0 -django-markupfield,-1.07593773667785,0.286546187530354,-1.49972713566092,https://salsa.debian.org/python-team/packages/django-markupfield, https://github.com/jamesturk/django-markupfield,5316.459606481481,3,17,0,17.0,45.0,0.0,0.0 -django-pagination,-1.21987228728206,1.65029394892811,-1.98430280233489,https://salsa.debian.org/python-team/packages/django-pagination, https://github.com/ericflo/django-pagination,3284.865787037037,6,18,0,13.0,74.0,0.0,0.0 -django-picklefield,-0.703580644380416,0.57934771567608,-1.05875420348665,https://salsa.debian.org/python-team/packages/django-picklefield, https://github.com/gintas/django-picklefield.git,4658.002905092592,2,16,0,11.0,52.0,0.0,0.0 -django-pipeline,-0.930876169721945,0.713745883165131,-1.5104447326527,https://salsa.debian.org/python-team/packages/django-pipeline, https://github.com/jazzband/django-pipeline,5696.7215625,55,133,0,143.0,677.0,0.0,0.0 -django-q,-0.676225936091092,1.3565065882819,-1.15441399963899,https://salsa.debian.org/python-team/packages/django-q, https://github.com/Koed00/django-q,2734.7205092592594,22,48,0,52.0,559.0,0.0,0.0 -django-recurrence,-1.32652293733886,0.884310932834965,-1.91637277755008,https://salsa.debian.org/python-team/packages/django-recurrence, https://github.com/jazzband/django-recurrence,5185.443993055555,18,46,1,44.0,213.0,0.0,0.0 -django-sekizai,-1.02624252790074,0.604143798803238,-1.58643353912969,https://salsa.debian.org/python-team/packages/django-sekizai, https://github.com/django-cms/django-sekizai.git,4878.868402777778,11,19,0,21.0,135.0,0.0,0.0 -django-session-security,-1.42883309128597,1.11396744897978,-1.91277981712212,https://salsa.debian.org/python-team/packages/django-session-security, https://github.com/yourlabs/django-session-security,4081.298287037037,19,40,0,41.0,84.0,0.0,0.0 -djangorestframework-api-key,-2.8977691007583,0.522103784059181,-3.69100268961243,https://salsa.debian.org/python-team/packages/djangorestframework-api-key, https://github.com/florimondmanca/djangorestframework-api-key,1908.8148263888888,20,6,2,21.0,94.0,0.0,0.0 -dkms,2.37260127765776,3.21557281613004,1.78866272913875,https://salsa.debian.org/debian/dkms, https://github.com/dell/dkms,5777.874641203704,70,65,1,95.0,171.0,0.0,0.0 -dlib,-0.167784850512731,1.17442956246559,-0.591412144971591,https://salsa.debian.org/science-team/dlib, https://github.com/davisking/dlib.git,5697.550277777777,155,59,0,169.0,147.0,0.0,0.0 -dodgy,0.155741812664803,3.62095525465031,-0.792433561479021,https://salsa.debian.org/python-team/packages/dodgy, https://github.com/landscapeio/dodgy,2642.968425925926,4,14,0,11.0,24.0,0.0,0.0 -doona,0.0575012671817577,2.52116677544593,-0.439565640170492,https://salsa.debian.org/pkg-security-team/doona, https://github.com/wireghoul/doona,3578.8472569444443,1,4,0,3.0,6.0,0.0,0.0 -doxygen,1.57285541920274,2.00663097629079,1.23570050367554,https://salsa.debian.org/debian/doxygen, https://github.com/doxygen/doxygen.git,5784.328518518519,59,259,0,250.0,152.0,0.0,0.0 -dumb-jump,-1.00401612289515,1.38938396192979,-1.45538725397063,https://salsa.debian.org/emacsen-team/dumb-jump-el, https://github.com/jacktasia/dumb-jump.git,2796.8254398148147,82,16,0,83.0,196.0,0.0,0.0 -earlyoom,-0.341183177493239,0.813051484006846,-0.602041086806007,https://salsa.debian.org/yangfl-guest/earlyoom, https://github.com/rfjakob/earlyoom,3559.298252314815,38,9,1,35.0,189.0,0.0,2.0 -edgar,1.08839795492961,5.17314917307623,-0.286926227501431,https://salsa.debian.org/games-team/edgar, https://github.com/riksweeney/edgar,5461.022303240741,3,13,0,10.0,32.0,0.0,1.0 -curator,0.0906487219488355,2.1237637356061,-0.674203282917645,https://salsa.debian.org/python-team/packages/elasticsearch-curator, https://github.com/elasticsearch/curator.git,4523.481643518519,47,128,0,119.0,437.0,0.0,9.0 -ensmallen,-4.65186080484944,-1.20167735411521,-5.4243559792702,https://salsa.debian.org/science-team/ensmallen, https://github.com/mlpack/ensmallen,3267.113923611111,33,88,1,79.0,88.0,0.0,0.0 -eom,0.715092860786342,1.96179053680248,0.162373821058576,https://salsa.debian.org/debian-mate-team/eom, https://github.com/mate-desktop/eom.git,4406.35525462963,31,40,0,47.0,171.0,0.0,0.0 -eqonomize,-0.713530596761242,-0.228994478371221,-0.815920165653021,https://salsa.debian.org/debian/eqonomize, https://github.com/Eqonomize/eqonomize.git,2736.879004629629,6,16,0,14.0,78.0,0.0,0.0 -bitcask,-1.63980554689103,0.184667076068673,-2.16430999587271,https://salsa.debian.org/erlang-team/packages/erlang-bitcask, https://github.com/basho/bitcask.git,4652.9643865740745,11,64,0,43.0,104.0,0.0,0.0 -eimp,0.113618380384015,3.10174992362404,-0.556281410260239,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-eimp, https://github.com/processone/eimp.git,1694.160462962963,2,10,0,6.0,23.0,0.0,0.0 -pkix,-0.234474962955573,1.53100669979475,-0.593960523909424,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-pkix, https://github.com/processone/pkix.git,1315.7862615740742,2,8,0,6.0,6.0,0.0,0.0 -erlang-sqlite3,-1.07473466575997,0.955064677192846,-1.52297568779908,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-sqlite3, https://github.com/processone/erlang-sqlite3.git,5341.557349537037,3,35,0,18.0,11.0,0.0,0.0 -stun,0.0861728610565275,2.22776495360094,-0.507245346061424,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-stun, https://github.com/processone/stun.git,3846.888657407407,6,17,0,16.0,32.0,0.0,0.0 -exiv2,2.00721799338912,2.82923170632669,1.44451109833252,https://salsa.debian.org/qt-kde-team/3rdparty/exiv2, https://github.com/Exiv2/exiv2.git,5776.624270833333,78,96,0,113.0,286.0,0.0,4.0 -ocaml-extlib,-0.348114141550944,0.350425218393855,-0.564117168726424,https://salsa.debian.org/ocaml-team/extlib, https://github.com/ygrek/ocaml-extlib.git,5693.391643518518,9,11,0,19.0,34.0,0.0,0.0 -faker,-0.145280747483218,2.69425805512152,-1.09217364329954,https://salsa.debian.org/python-team/packages/faker, https://github.com/joke2k/faker,4045.7559953703694,333,259,1,406.0,724.0,0.0,2.0 -feedgnuplot,-0.0232006873358208,2.3192159355139,-0.475883411920573,https://salsa.debian.org/science-team/feedgnuplot, https://github.com/dkogan/feedgnuplot.git,4457.749803240741,3,11,0,4.0,49.0,0.0,0.0 -feedparser,0.329490030195573,0.887258506590834,0.0591644378455066,https://salsa.debian.org/python-team/packages/feedparser, https://github.com/kurtmckee/feedparser,5778.855555555556,18,42,0,44.0,298.0,0.0,0.0 -feh,1.21389057646133,2.03207040598424,0.696863505679508,https://salsa.debian.org/debian-phototools-team/feh, https://github.com/derf/feh.git,5050.149907407407,28,62,0,64.0,102.0,0.0,4.0 -micropython,0.478410426544107,3.61766596813473,-0.405114305126869,https://salsa.debian.org/python-team/packages/firmware-microbit-micropython, https://github.com/bbcmicrobit/micropython.git,2774.686111111111,52,41,0,69.0,297.0,0.0,7.0 -fitscut,-0.461887466842085,0.810102280137207,-0.688120430418164,https://salsa.debian.org/debian-astro-team/fitscut, https://github.com/spacetelescope/fitscut,4.934247685185185,1,2,0,0.0,3.0,0.0,0.0 -flamerobin,-0.327866657694599,0.665010888077961,-0.57374430777908,https://salsa.debian.org/debian/flamerobin, https://github.com/mariuz/flamerobin,5771.75480324074,5,30,0,18.0,51.0,0.0,1.0 -flare-game,0.13581592220033,2.68837141164579,-0.419579888500682,https://salsa.debian.org/games-team/flare-game, https://github.com/flareteam/flare-game,4548.824502314815,15,65,1,59.0,62.0,0.0,9.0 -flask,0.2833230291285,1.29200960675611,-0.0619464215620129,https://salsa.debian.org/python-team/packages/flask, https://github.com/pallets/flask,4990.467743055556,414,463,2,401.0,564.0,0.0,0.0 -flask-babel,0.249235184378055,2.06363219384402,-0.142918840376056,https://salsa.debian.org/python-team/packages/flask-babel, https://github.com/python-babel/flask-babel,4873.4565625,14,34,1,37.0,245.0,0.0,0.0 -flask-sqlalchemy,0.998578611970873,4.11680605182797,-0.0240710393872945,https://salsa.debian.org/python-team/packages/flask-sqlalchemy, https://github.com/pallets-eco/flask-sqlalchemy,4934.184814814815,57,73,1,103.0,399.0,0.0,0.0 -flask-testing,-0.833397781767501,1.71297943297029,-1.3777911288909,https://salsa.debian.org/python-team/packages/flask-testing, https://github.com/jarus/flask-testing,3837.3830439814815,7,29,1,28.0,140.0,0.0,0.0 -flask-wtf,0.640384175173292,2.79250979467701,-0.0660212157872085,https://salsa.debian.org/python-team/packages/flask-wtf, https://github.com/wtforms/flask-wtf.git,4913.330497685185,22,86,0,85.0,350.0,0.0,0.0 -fluidsynth,0.21850821664717,0.539975028755889,0.0588521012833301,https://salsa.debian.org/multimedia-team/fluidsynth, https://github.com/Fluidsynth/fluidsynth.git,5564.488715277777,68,41,0,75.0,186.0,0.0,48.0 -fontmatrix,2.15994794748211,4.06554705657352,1.12759544137286,https://salsa.debian.org/fonts-team/fontmatrix, https://github.com/fontmatrix/fontmatrix,5474.399907407407,7,13,0,12.0,46.0,0.0,1.0 -freedoom,0.210835778863243,1.51807520194526,-0.223316506619481,https://salsa.debian.org/games-team/freedoom, https://github.com/freedoom/freedoom,5775.941805555555,112,57,0,82.0,72.0,0.0,0.0 -freelan,-0.313859047629364,2.04106354672551,-1.22880805749719,https://salsa.debian.org/debian/freelan, https://github.com/freelan-developers/freelan,3106.272789351852,2,25,1,15.0,54.0,0.0,3.0 -FreeRDP,0.535602671257156,1.36568297184434,0.143324601257681,https://salsa.debian.org/debian-remote-team/freerdp2, https://github.com/FreeRDP/FreeRDP,4547.975034722223,206,376,4,312.0,536.0,0.0,145.0 -wxlauncher,-0.338870131147895,1.6566638618811,-0.935585835018654,https://salsa.debian.org/games-team/freespace2-launcher-wxlauncher, https://github.com/scp-fs2open/wxlauncher,4804.2101041666665,7,12,2,13.0,26.0,0.0,2.0 -fribidi,0.531714460283811,1.18672754036968,0.196001385598062,https://salsa.debian.org/debian/fribidi, https://github.com/fribidi/fribidi.git,5722.369756944445,10,31,0,32.0,94.0,0.0,1.0 -fscrypt,-0.118661142773488,2.07827724244262,-0.64621003179013,https://salsa.debian.org/go-team/packages/fscrypt, https://github.com/google/fscrypt,2602.2166782407407,17,13,2,22.0,49.0,0.0,0.0 -fsm-lite,-0.680671323777026,1.6544118072895,-1.11923848801064,https://salsa.debian.org/med-team/fsm-lite, https://github.com/nvalimak/fsm-lite.git,170.23428240740742,0,5,0,2.0,11.0,0.0,0.0 -fstl,-0.0638362026732831,2.70921948973698,-0.786070361319823,https://salsa.debian.org/sur5r/fstl, https://github.com/fstl-app/fstl,3488.4875231481483,10,13,0,18.0,75.0,0.0,1.0 -fwbuilder,0.569210766786568,1.0021497205634,0.258994228948736,https://salsa.debian.org/debian/fwbuilder, https://github.com/fwbuilder/fwbuilder.git,5643.142071759259,7,40,0,26.0,108.0,0.0,0.0 -fwknop,-0.367325771342167,0.225654341723464,-0.670461964137789,https://salsa.debian.org/debian/fwknop, https://github.com/mrash/fwknop.git,5311.050532407407,2,37,0,28.0,66.0,0.0,0.0 -fwsnort,-0.733292803724229,0.47214127643951,-1.14490286833914,https://salsa.debian.org/debian/fwsnort, https://github.com/mrash/fwsnort.git,3934.757858796296,0,5,0,3.0,14.0,0.0,0.0 -fwupdate,0.0843853428047569,1.05891412017967,-0.244491351851707,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365740743,21,5,0,15.0,40.0,0.0,3.0 -galera,0.767221636200971,1.82144092050012,0.242275822158759,https://salsa.debian.org/mariadb-team/galera-3, https://github.com/codership/galera,5691.742395833333,10,50,1,25.0,0.0,0.0,1.0 -galpy,-0.163144318703034,1.83168174338328,-0.640914183675681,https://salsa.debian.org/debian-astro-team/galpy, https://github.com/jobovy/galpy.git,4901.371655092593,10,36,0,28.0,37.0,0.0,2.0 -gambit,1.08040974044984,3.14129853288694,0.0766910930166644,https://salsa.debian.org/abdelq-guest/gambc, https://github.com/gambit/gambit,5777.729120370371,5,77,0,52.0,184.0,0.0,4.0 -Gem,0.679446578745151,1.22502744459527,0.320237781232395,https://salsa.debian.org/multimedia-team/pd/gem, https://github.com/umlaeute/Gem,5620.098541666666,11,58,1,15.0,77.0,0.0,7.0 -gemmlowp,-0.914209861782336,0.992259106055519,-1.34025763160311,https://salsa.debian.org/science-team/gemmlowp, https://github.com/google/gemmlowp,3053.021979166667,34,42,0,53.0,107.0,18.0,0.0 -genshi,0.98187746812558,2.31649507424025,0.288404295617294,https://salsa.debian.org/python-team/packages/genshi, https://github.com/edgewall/genshi.git,5693.595347222222,8,26,0,27.0,34.0,0.0,0.0 -geoalchemy2,-1.47910767167291,2.31738132188416,-2.45278157052798,https://salsa.debian.org/python-team/packages/geoalchemy2, https://github.com/geoalchemy/geoalchemy2,4123.10619212963,18,35,1,36.0,243.0,0.0,0.0 -geos,0.119087537206031,0.451175135157147,-0.0256104858871241,https://salsa.debian.org/debian-gis-team/geos, https://github.com/libgeos/geos.git,5683.094606481482,37,52,0,75.0,157.0,0.0,0.0 -gImageReader,-0.213911435643066,0.0353297888098082,-0.283353250959965,https://salsa.debian.org/debian/gimagereader, https://github.com/manisandro/gImageReader,3878.611631944445,113,24,0,87.0,276.0,0.0,5.0 -ginga,-0.45776862772662,0.20216258955435,-0.583592752254381,https://salsa.debian.org/debian-astro-team/ginga, https://github.com/ejeschke/ginga.git,4188.922418981481,11,44,0,34.0,87.0,0.0,1.0 -glewlwyd,0.169874762457818,1.3618403908651,-0.177364068753155,https://salsa.debian.org/debian-iot-team/oauth2/glewlwyd.git, https://github.com/babelouest/glewlwyd,2557.2033449074074,11,19,1,18.0,58.0,0.0,0.0 -glfw,0.0977965010010051,1.68882091193038,-0.179650888637476,https://salsa.debian.org/games-team/glfw3, https://github.com/glfw/glfw.git,5186.868055555556,161,47,0,175.0,412.0,0.0,14.0 -gnome-shell-extension-appindicator,0.266480460884379,2.53393601179872,-0.304515496604215,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-appindicator, https://github.com/ubuntu/gnome-shell-extension-appindicator,3879.4440046296295,30,21,0,38.0,794.0,0.0,2.0 -gnome-shell-extension-caffeine,-0.039832887673346,1.75626767882921,-0.389078965927041,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-caffeine, https://github.com/eonpatapon/gnome-shell-extension-caffeine,4204.856111111111,22,56,0,58.0,336.0,0.0,0.0 -EasyScreenCast,-0.247643057016812,1.72224379988039,-0.661567446375378,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-easyscreencast, https://github.com/EasyScreenCast/EasyScreenCast.git,3762.2703125,11,34,0,32.0,222.0,0.0,0.0 -multi-monitors-add-on,0.240334707409969,2.3856514137928,-0.357167869653307,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-multi-monitors, https://github.com/spin83/multi-monitors-add-on.git,2247.7516435185184,1,14,0,10.0,325.0,0.0,0.0 -yaml,-0.18283249946428,1.78793335186982,-0.599059673014276,https://salsa.debian.org/go-team/packages/golang-yaml.v2, https://github.com/go-yaml/yaml.git,4160.8565625,29,26,0,38.0,670.0,0.0,0.0 -gopacket,-1.06288190141592,1.2277474396826,-1.80525057678666,https://salsa.debian.org/go-team/packages/gopacket, https://github.com/google/gopacket.git,3976.855358796297,106,101,0,164.0,338.0,0.0,0.0 -gosu,-0.829319185294956,1.40651200013733,-1.25999977595269,https://salsa.debian.org/go-team/packages/gosu, https://github.com/tianon/gosu.git,3461.229861111111,6,8,0,12.0,100.0,0.0,0.0 -goxel,-0.452502788914954,1.39902110443508,-0.96333909647266,https://salsa.debian.org/debian/goxel, https://github.com/guillaumechereau/goxel.git,2988.285856481481,12,26,0,26.0,120.0,0.0,1.0 -gr-limesdr,-0.922675285913836,0.882732455733595,-1.42385908319867,https://salsa.debian.org/debian-hamradio-team/gr-limesdr, https://github.com/myriadrf/gr-limesdr.git,1838.1773726851848,3,21,0,12.0,88.0,0.0,0.0 -grabc,0.259382871110102,3.26058073141346,-0.658534877421865,https://salsa.debian.org/debian/grabc, https://github.com/muquit/grabc.git,1019.1824189814816,0,3,0,2.0,11.0,0.0,0.0 -Greybird,0.95816204306386,4.08429698271198,0.0735921107534857,https://salsa.debian.org/desktop-themes-team/greybird-gtk-theme, https://github.com/shimmerproject/Greybird,4402.072048611111,24,30,0,33.0,228.0,0.0,2.0 -grfcodec,-0.490563373333505,1.16974650769134,-0.99403605442651,https://salsa.debian.org/openttd-team/grfcodec, https://github.com/OpenTTD/grfcodec.git,5754.043796296296,6,15,0,14.0,16.0,0.0,0.0 -grml-debootstrap,-0.945933574329717,-0.551860296769336,-1.09233853366106,https://github.com/grml/grml-debootstrap,https://github.com/grml/grml-debootstrap,5733.818854166667,7,26,0,18.0,31.0,0.0,0.0 -guiqwt,0.157404843369812,1.71348782473345,-0.39856695770398,https://salsa.debian.org/science-team/guiqwt, https://github.com/PierreRaybaut/guiqwt.git,4806.769652777778,1,21,0,8.0,41.0,0.0,0.0 -harfbuzz,0.171647692654905,0.542997292350876,0.0283701740987368,https://salsa.debian.org/freedesktop-team/harfbuzz, https://github.com/harfbuzz/harfbuzz.git,5645.164965277778,184,76,0,210.0,198.0,0.0,11.0 -hebcal,0.138161090449786,2.8080865957014,-0.836907509155818,https://salsa.debian.org/debian/hebcal, https://github.com/hebcal/hebcal,5547.5039120370375,16,21,0,24.0,134.0,0.0,0.0 -hiera-eyaml,0.31728685467597,4.44703567762882,-0.840765746330657,https://salsa.debian.org/ruby-team/hiera-eyaml, https://github.com/voxpupuli/hiera-eyaml,3753.1260185185183,15,52,1,48.0,305.0,0.0,0.0 -homesick,-0.778889237497118,1.40989765916812,-1.42195488623994,https://salsa.debian.org/ruby-team/homesick, https://github.com/technicalpickles/homesick,3243.959629629629,6,52,0,36.0,113.0,0.0,0.0 -horst,0.190478644121507,1.54695004141826,-0.282062690337637,https://salsa.debian.org/debian/horst, https://github.com/br101/horst.git,5016.211967592592,4,12,0,8.0,63.0,0.0,2.0 -hotspot,-0.279096434934121,2.33740367896778,-1.0457505747954,https://salsa.debian.org/debian/hotspot, https://github.com/KDAB/hotspot.git,2548.033148148148,38,24,0,54.0,102.0,0.0,0.0 -hovercraft,-0.745586220610179,0.886166848987427,-1.23328285354792,https://salsa.debian.org/python-team/packages/hovercraft, https://github.com/regebro/hovercraft,3363.2624305555555,11,27,0,27.0,174.0,0.0,0.0 -httpcode,-0.665917226132441,1.43278820521688,-1.12356826521724,https://salsa.debian.org/python-team/packages/httpcode, https://github.com/rspivak/httpcode,1929.8437152777776,0,9,0,6.0,16.0,0.0,0.0 -httpdirfs,-1.16031873285889,1.21522192578648,-1.64558239811084,https://salsa.debian.org/lavamind/httpdirfs-fuse, https://github.com/fangfufu/httpdirfs.git,1903.2805324074077,12,11,0,15.0,1.0,0.0,0.0 -httpie,0.384613935111809,1.36966665093416,-0.0739168255179186,https://salsa.debian.org/python-team/packages/httpie, https://github.com/httpie/httpie,4259.19712962963,96,74,0,144.0,1031.0,0.0,0.0 -hugo,0.0671368853016907,1.14370944645474,-0.253101467629316,https://salsa.debian.org/go-team/packages/hugo, https://github.com/gohugoio/hugo.git,3813.722662037037,826,45,0,422.0,741.0,0.0,0.0 -python-humanfriendly,0.228381991068723,3.2095279019538,-0.554286794182616,https://salsa.debian.org/python-team/packages/humanfriendly, https://github.com/xolox/python-humanfriendly,3014.954247685185,5,15,0,17.0,79.0,0.0,0.0 -hunchentoot,-0.781887054912999,1.42366033170894,-1.48023621267757,https://github.com/edicl/hunchentoot,https://github.com/edicl/hunchentoot,5414.600162037037,19,51,0,51.0,136.0,0.0,2.0 -hypre,-0.116807516531962,0.329110116990632,-0.3077167067755,https://salsa.debian.org/science-team/hypre, https://github.com/hypre-space/hypre,3128.266851851852,29,123,0,45.0,272.0,0.0,8.0 -i3lock-fancy,0.141114795460248,2.51986399766619,-0.50663810778526,https://salsa.debian.org/debian/i3lock-fancy, https://github.com/meskarune/i3lock-fancy,2712.43375,14,38,0,32.0,191.0,0.0,0.0 -ideviceinstaller,0.568963109437017,2.74506542035172,-0.181779756008986,https://salsa.debian.org/imobiledevice-team/ideviceinstaller, https://github.com/libimobiledevice/ideviceinstaller.git,4944.718449074074,9,5,0,9.0,160.0,0.0,0.0 -ido-completing-read-plus,-0.835851110638491,0.642816870988192,-1.16242953834539,https://salsa.debian.org/emacsen-team/ido-ubiquitous, https://github.com/DarwinAwardWinner/ido-completing-read-plus.git,3558.905173611111,5,15,0,17.0,116.0,0.0,0.0 -im,-0.683203415227418,-0.468849532849079,-0.783434092773863,https://salsa.debian.org/debian/im, https://github.com/tats/im,1297.943900462963,1,2,0,1.0,0.0,0.0,0.0 -imagetooth,-1.56151804986896,1.02976558626745,-2.13055681311183,https://salsa.debian.org/ruby-team/imagetooth, https://github.com/gramos/imagetooth,163.81336805555554,0,1,0,1.0,0.0,0.0,0.0 -imbalanced-learn,-1.87049095287035,1.59545167045936,-2.83188962933758,https://salsa.debian.org/med-team/imbalanced-learn, https://github.com/scikit-learn-contrib/imbalanced-learn.git,3355.2317592592594,67,21,0,75.0,642.0,0.0,3.0 -impacket,0.15808049135145,1.66891964742961,-0.288669068164663,https://salsa.debian.org/python-team/packages/impacket, https://github.com/SecureAuthCorp/impacket.git,5583.002974537037,71,193,0,166.0,138.0,0.0,0.0 -inadyn,1.24910264509236,3.27984786709163,0.280953404438953,https://salsa.debian.org/debian/inadyn, https://github.com/troglobit/inadyn,4734.416620370371,20,58,1,62.0,169.0,0.0,0.0 -incremental,0.285602329751221,1.75756103878,-0.0750684493122969,https://salsa.debian.org/python-team/packages/incremental, https://github.com/twisted/incremental.git,2511.779386574074,4,15,0,10.0,32.0,0.0,0.0 -indexed_gzip,0.246841981503055,2.69003927158436,-0.529583596722079,https://salsa.debian.org/python-team/packages/indexed-gzip, https://github.com/pauldmccarthy/indexed_gzip.git,2811.383310185185,1,15,0,11.0,39.0,0.0,0.0 -media-driver,0.664226000705799,2.71524920257984,0.0467333910468321,https://salsa.debian.org/multimedia-team/intel-media-driver, https://github.com/intel/media-driver.git,2204.022951388889,645,23,0,240.0,182.0,0.0,6.0 -intel-vaapi-driver,0.133644004636135,2.05457880030156,-0.352630979985593,https://salsa.debian.org/multimedia-team/intel-vaapi-driver-shaders, https://github.com/intel/intel-vaapi-driver.git,5083.222291666667,105,18,0,73.0,126.0,0.0,0.0 -ipdb,-0.235014199235816,1.20234635062244,-0.566499343168247,https://salsa.debian.org/python-team/packages/ipdb, https://github.com/gotcha/ipdb,4846.997314814815,26,37,0,51.0,315.0,0.0,0.0 -iptux,-0.210941982489694,1.19286952955745,-0.685777144815563,https://salsa.debian.org/chinese-team/iptux, https://github.com/iptux-src/iptux,5548.864212962963,7,21,2,15.0,92.0,0.0,3.0 -iputils,2.06630957848551,2.71898078142615,1.59331072876177,https://salsa.debian.org/debian/iputils, https://github.com/iputils/iputils.git,5645.155682870371,103,41,0,117.0,123.0,0.0,0.0 -ispell-lt,-0.323517661994141,-0.0990794107370836,-0.395388849737067,https://salsa.debian.org/debian/ispell-lt, https://github.com/ispell-lt/ispell-lt.git,5691.957118055556,0,11,0,3.0,7.0,0.0,0.0 -musicbrainz-isrcsubmit,-0.0652487857983224,2.15673384117705,-0.609436100549815,https://salsa.debian.org/multimedia-team/isrcsubmit, https://github.com/JonnyJD/musicbrainz-isrcsubmit,4205.4764583333335,3,11,3,7.0,26.0,0.0,0.0 -itamae,-2.4298742882979,-0.139863998812457,-2.98002862830704,https://salsa.debian.org/ruby-team/itamae, https://github.com/itamae-kitchen/itamae,3570.7650925925927,12,71,0,65.0,53.0,0.0,9.0 -iverilog,0.428893521594545,1.29394584283642,-0.0384729203471916,https://salsa.debian.org/electronics-team/iverilog, https://github.com/steveicarus/iverilog,5784.215775462963,47,73,0,84.0,248.0,0.0,3.0 -jabref,0.0587466024486578,0.351648544816391,-0.106792030234282,https://salsa.debian.org/java-team/jabref, https://github.com/JabRef/jabref.git,3914.4709953703705,494,267,0,324.0,176.0,0.0,25.0 -jack1,0.670575673564546,1.18912514642088,0.335122338022462,https://salsa.debian.org/multimedia-team/jack-audio-connection-kit, https://github.com/jackaudio/jack1.git,5288.134444444445,9,36,0,26.0,79.0,0.0,0.0 -jemalloc,0.682407669367259,1.64473565781661,0.224104679356945,https://salsa.debian.org/debian/jemalloc, https://github.com/jemalloc/jemalloc,5237.929733796296,146,42,1,141.0,22.0,0.0,4.0 -jenkins-debian-glue,-0.965161404246595,1.48546073261439,-1.55782284279782,https://github.com/mika/jenkins-debian-glue,https://github.com/mika/jenkins-debian-glue,4282.449398148148,10,50,0,42.0,99.0,0.0,2.0 -JGlobus,-0.601880292041699,1.32711245650901,-1.15166104136262,https://salsa.debian.org/ellert/jglobus, https://github.com/jglobus/JGlobus,4874.68375,3,36,0,17.0,46.0,0.0,5.0 -jimfs,-0.383074555025862,1.37799350073055,-0.765782764482557,https://salsa.debian.org/java-team/jimfs, https://github.com/google/jimfs.git,3771.606712962963,24,17,0,24.0,113.0,0.0,0.0 -jquery-minicolors,0.59706509988228,3.6140009204724,-0.292747445784508,https://salsa.debian.org/js-team/jquery-minicolors, https://github.com/claviska/jquery-minicolors,4034.234259259259,8,51,1,51.0,278.0,0.0,0.0 -tablesorter,0.780957035171974,3.78241785711794,-0.0251966700072976,https://salsa.debian.org/js-team/jquery-tablesorter, https://github.com/Mottie/tablesorter.git,4550.660960648148,28,67,0,78.0,142.0,0.0,9.0 -joni,-0.0743980965544175,1.63100768292646,-0.602777420889342,https://salsa.debian.org/java-team/jruby-joni, https://github.com/jruby/joni.git,5683.594571759259,3,29,0,23.0,50.0,0.0,1.0 -jupyter-sphinx,-1.87611377864949,1.76672339106673,-2.88141549460941,https://salsa.debian.org/python-team/packages/jupyter-sphinx, https://github.com/jupyter/jupyter-sphinx.git,2558.909317129629,11,25,0,26.0,59.0,0.0,0.0 -jwm,0.365548919088679,1.19996413376238,-0.115579756384329,https://salsa.debian.org/debian/jwm, https://github.com/joewing/jwm,5370.498564814815,13,37,2,36.0,189.0,0.0,2.0 -kcat,-0.424412698379665,1.19223533582362,-0.709409598211933,https://github.com/edenhill/kcat/tree/debian,https://github.com/edenhill/kcat,3514.989548611112,24,19,1,29.0,434.0,0.0,0.0 -OpenCL-CLHPP,0.688482001322418,3.39390300175028,-0.0690856925512116,https://salsa.debian.org/opencl-team/khronos-opencl-clhpp, https://github.com/KhronosGroup/OpenCL-CLHPP,2856.962511574074,37,22,0,41.0,71.0,0.0,0.0 -kmodpy,0.103061583299217,3.02134500352015,-0.817476379895481,https://github.com/cnanakos/kmodpy/tree/debian/debian,https://github.com/cnanakos/kmodpy,2086.959027777778,2,5,0,3.0,6.0,0.0,0.0 -knock,3.53947787143712,6.45943486056754,2.16015145168608,https://salsa.debian.org/debian/knockd, https://github.com/jvinet/knock.git,3585.12005787037,3,18,0,12.0,32.0,0.0,0.0 -knowthelist,-0.592705519816779,1.05778457824536,-1.07494804228843,https://github.com/knowthelist/knowthelist,https://github.com/knowthelist/knowthelist,1682.080625,1,6,0,1.0,5.0,0.0,1.0 -knxd,-0.680568398353085,1.1892492423331,-1.15575302960075,https://github.com/knxd/knxd,https://github.com/knxd/knxd,3234.4639814814814,12,54,2,46.0,409.0,0.0,16.0 -kombu,0.35191766581425,1.42916559920809,-0.0557315990678068,https://salsa.debian.org/python-team/packages/kombu, https://github.com/celery/kombu,4921.720451388889,276,132,4,326.0,847.0,0.0,0.0 -kraft,-0.394588203887087,1.04192321682085,-0.886784241235354,https://salsa.debian.org/qt-kde-team/extras/kraft, https://github.com/dragotin/kraft.git,3993.7869328703705,23,17,0,20.0,24.0,0.0,0.0 -kthresher,-4.958210954192,-2.99433627197274,-5.44713855808826,https://salsa.debian.org/debian/kthresher, https://github.com/rackerlabs/kthresher,1564.7436342592594,5,6,1,6.0,15.0,0.0,1.0 -kubectx,-0.072520336816443,2.36123561832201,-0.74321242899393,https://salsa.debian.org/debian/kubectx, https://github.com/ahmetb/kubectx,2319.9031944444446,49,15,1,59.0,146.0,0.0,0.0 -leaflet-image,-3.01383828926066,-0.305655627112583,-3.69583702112544,https://salsa.debian.org/js-team/leaflet-image, https://github.com/mapbox/leaflet-image,1265.947175925926,3,14,0,12.0,161.0,0.0,0.0 -Leaflet.markercluster,-0.895652150494044,1.12585061383383,-1.52434956118809,https://salsa.debian.org/js-team/leaflet-markercluster, https://github.com/Leaflet/Leaflet.markercluster,3967.809270833333,22,68,0,60.0,1125.0,0.0,0.0 -ledger2beancount,-1.91392207571378,0.249499306425402,-2.34921511575316,https://salsa.debian.org/jelmer/ledger2beancount, https://github.com/beancount/ledger2beancount,2575.206886574074,7,3,2,8.0,34.0,0.0,0.0 -Catmandu-MARC,-1.43475360554894,0.171452316154227,-1.72515542651399,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-marc-perl, https://github.com/LibreCat/Catmandu-MARC.git,4085.058078703704,4,13,0,10.0,26.0,0.0,3.0 -DBIx-Class,0.577215499352654,1.69489941290488,0.0601666449235969,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-perl, https://github.com/Perl5/DBIx-Class.git,5209.720451388889,61,96,0,114.0,115.0,0.0,0.0 -libdeflate,0.159594288490245,2.49779397201029,-0.279894853335666,https://salsa.debian.org/med-team/libdeflate, https://github.com/ebiggers/libdeflate.git,3254.7726851851853,29,5,0,29.0,140.0,0.0,1.0 -Furl,-0.0521562012113455,2.26786469649234,-0.682608363282686,https://salsa.debian.org/perl-team/modules/packages/libfurl-perl, https://github.com/tokuhirom/Furl.git,4162.7404166666665,2,34,0,28.0,65.0,0.0,0.0 -libical,0.617622962032282,2.0765416434888,0.10158973905849,https://salsa.debian.org/debian/libical3, https://github.com/libical/libical,3453.073877314815,14,46,3,40.0,157.0,0.0,3.0 -libiio,-0.142427274524689,1.27258840139096,-0.575053213487526,https://salsa.debian.org/debian/libiio, https://github.com/analogdevicesinc/libiio.git,3584.807303240741,30,77,0,63.0,211.0,0.0,2.0 -libimagequant,1.17452392447814,4.60436014139135,0.183704913801359,https://salsa.debian.org/debian-phototools-team/libimagequant, https://github.com/ImageOptim/libimagequant.git,4336.732037037037,22,42,0,45.0,60.0,0.0,0.0 -libimobiledevice,0.746151295528314,1.40294621384222,0.360607293845247,https://salsa.debian.org/imobiledevice-team/libimobiledevice, https://github.com/libimobiledevice/libimobiledevice.git,5614.085370370371,61,26,0,63.0,181.0,0.0,8.0 -inih,-0.0499418301621886,1.97896398632524,-0.475270570503976,https://salsa.debian.org/yangfl-guest/inih, https://github.com/benhoyt/inih,5140.454861111111,30,8,0,33.0,112.0,0.0,0.0 -qunit,-0.495189173969768,2.51535578340839,-1.26544130284773,https://salsa.debian.org/js-team/libjs-qunit, https://github.com/jquery/qunit.git,5676.067743055555,143,47,0,173.0,28.0,0.0,0.0 -term.js,1.11365294616395,4.90507282646749,0.0258351053031645,https://salsa.debian.org/js-team/libjs-term.js, https://github.com/chjj/term.js,1033.320011574074,0,13,0,9.0,142.0,0.0,0.0 -adapter,-1.25366727846092,0.490745267783702,-1.69256388020005,https://salsa.debian.org/js-team/libjs-webrtc-adapter, https://github.com/webrtchacks/adapter,3650.9905902777778,24,105,1,69.0,352.0,0.0,0.0 -debian-packages,0.379168644648058,1.99990849421274,-0.376087627692435,https://github.com/mheily/debian-packages/tree/libkqueue,https://github.com/mheily/debian-packages,3042.231712962963,0,4,0,1.0,4.0,0.0,0.0 -kryo,0.439138637122569,2.47532888106887,-0.129178564193754,https://salsa.debian.org/java-team/libkryo-java, https://github.com/EsotericSoftware/kryo.git,5184.608009259259,31,73,0,76.0,670.0,0.0,10.0 -Marpa--R2,-0.484505322412779,2.31252733527863,-1.41687896517219,https://salsa.debian.org/perl-team/modules/packages/libmarpa-r2-perl, https://github.com/jeffreykegler/Marpa--R2.git,4342.804988425926,0,18,0,10.0,32.0,0.0,0.0 -libmypaint,0.798752723283649,2.72248880018829,0.120666988660567,https://salsa.debian.org/multimedia-team/libmypaint, https://github.com/mypaint/libmypaint,4528.350925925926,157,32,0,131.0,105.0,0.0,4.0 -liboping,0.956728204329271,2.48051547581799,0.239930171556677,https://salsa.debian.org/debian/liboping, https://github.com/octo/liboping,4300.975243055555,12,18,0,14.0,71.0,0.0,0.0 -libqb,0.4165321199254,1.3497414760195,0.0049237568700104,https://salsa.debian.org/ha-team/libqb, https://github.com/ClusterLabs/libqb,5002.372013888889,27,39,2,41.0,109.0,0.0,6.0 -libqtxdg,-0.0973226644284822,0.210942497187502,-0.138573205798122,https://salsa.debian.org/lxqt-team/libqtxdg, https://github.com/lxqt/libqtxdg.git,4353.740578703703,12,29,0,33.0,64.0,0.0,0.0 -quartz,-2.43906848860376,-0.610390503887099,-2.95935193585794,https://salsa.debian.org/java-team/libquartz2-java, https://github.com/quartz-scheduler/quartz,5552.904293981482,23,73,2,43.0,410.0,0.0,1.0 -libratbag,-0.0056141039249597,1.78132571047255,-0.552581796518418,https://salsa.debian.org/debian/libratbag, https://github.com/libratbag/libratbag.git,3025.6003935185186,108,44,0,112.0,278.0,0.0,25.0 -perlrdf,-0.42201298662304,2.00095213155501,-1.06531294448896,https://salsa.debian.org/perl-team/modules/packages/librdf-query-perl, https://github.com/kasei/perlrdf.git,4701.621956018518,1,41,0,11.0,30.0,0.0,1.0 -perlrdf,-0.431139851129121,0.79209348427866,-0.784215821148872,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-perl, https://github.com/kasei/perlrdf.git,4701.621956018518,1,41,0,11.0,30.0,0.0,1.0 -p5-rdf-trine-serializer-rdfa,-1.57467206932518,1.22541687467132,-2.28632560166161,https://salsa.debian.org/perl-team/modules/packages/librdf-trine-serializer-rdfa-perl, https://github.com/kjetilk/p5-rdf-trine-serializer-rdfa.git,1268.0197569444445,0,1,0,2.0,4.0,0.0,0.0 -librouteros,-2.16301529626701,0.422440336565631,-2.75850469569176,https://salsa.debian.org/python-team/packages/librouteros, https://github.com/luqasz/librouteros,4024.615208333333,4,7,3,6.0,63.0,0.0,0.0 -SDL_image,0.3933982404481,1.83134872415426,-0.0473641175524412,https://salsa.debian.org/sdl-team/libsdl2-image, https://github.com/libsdl-org/SDL_image.git,5518.743368055556,29,27,0,44.0,81.0,0.0,0.0 -libsmbios,1.07959557534433,2.06198498006541,0.538211352169583,https://salsa.debian.org/efi-team/libsmbios, https://github.com/dell/libsmbios,5712.851053240741,17,21,3,19.0,99.0,0.0,0.0 -libsndfile,0.687122416198427,1.17425366378522,0.365871003046805,https://salsa.debian.org/multimedia-team/libsndfile, https://github.com/erikd/libsndfile,5766.237048611111,102,11,2,89.0,328.0,0.0,0.0 -Software-License,0.113385916335523,1.22207896035628,-0.0630717224638151,https://salsa.debian.org/perl-team/modules/packages/libsoftware-license-perl, https://github.com/Perl-Toolchain-Gang/Software-License.git,5727.028865740741,23,19,0,37.0,63.0,0.0,0.0 -libtomcrypt,0.481089702177077,1.47609543958715,0.0746011361914949,https://salsa.debian.org/debian/libtomcrypt, https://github.com/libtom/libtomcrypt,4891.575775462963,34,37,2,46.0,143.0,0.0,3.0 -libtorrent,0.605470632306201,1.79563815924903,0.0408663558283295,https://salsa.debian.org/debian/libtorrent, https://github.com/rakshasa/libtorrent.git,5501.292025462963,10,26,0,22.0,188.0,0.0,4.0 -libvisual,1.19936146778029,2.93331151942495,0.443027153461634,https://salsa.debian.org/debian/libvisual-plugins, https://github.com/Libvisual/libvisual,5044.523402777778,19,14,4,9.0,24.0,0.0,7.0 -vmime,-0.592445266781496,0.08930958459966,-0.923967776311259,https://salsa.debian.org/giraffe-team/libvmime, https://github.com/kisli/vmime.git,5686.971053240741,3,26,0,19.0,131.0,0.0,0.0 -libvshadow,0.27430347501286,2.65303740771095,-0.35126524914681,https://salsa.debian.org/pkg-security-team/libvshadow, https://github.com/libyal/libvshadow.git,3860.9818171296297,1,1,0,2.0,25.0,0.0,2.0 -linkchecker,0.272313856521349,0.708744107404942,-0.0259388475172617,https://salsa.debian.org/python-team/packages/linkchecker, https://github.com/linkcheck/linkchecker.git,5785.38494212963,19,50,0,51.0,189.0,0.0,3.0 -lua_cliargs,-0.547918670790067,1.20110819383126,-0.925218602795718,https://salsa.debian.org/lua-team/lua-cliargs, https://github.com/amireh/lua_cliargs,4184.137916666667,0,9,0,8.0,24.0,0.0,0.0 -lgi,0.0796701927291182,0.817172695284798,-0.167463962063516,https://salsa.debian.org/lua-team/lua-lgi, https://github.com/lgi-devs/lgi,4786.879918981482,15,37,0,33.0,177.0,0.0,0.0 -luv,0.391431800295549,2.57846041354865,-0.201597373537871,https://salsa.debian.org/lua-team/lua-luv, https://github.com/luvit/luv,4034.944594907408,25,59,0,64.0,155.0,0.0,0.0 -luakit,0.309977718500391,1.19936402482918,-0.167379545497754,https://salsa.debian.org/debian/luakit, https://github.com/luakit/luakit,4157.771076388889,75,51,2,85.0,337.0,0.0,39.0 -LucenePlusPlus,0.166368469581524,1.96604916916922,-0.267810462946104,https://salsa.debian.org/debian/luceneplusplus, https://github.com/luceneplusplus/LucenePlusPlus.git,4584.765231481481,3,40,0,23.0,105.0,0.0,0.0 -lxc,-0.027168934320616,0.029595009427975,-0.0680905702749467,https://salsa.debian.org/lxc-team/lxc, https://github.com/lxc/lxc.git,5607.156944444445,269,336,0,319.0,266.0,0.0,0.0 -lxqt-admin,0.109860838176109,1.6180664209049,-0.162930004360484,https://salsa.debian.org/lxqt-team/lxqt-admin, https://github.com/lxqt/lxqt-admin.git,3455.429861111111,80,41,0,82.0,57.0,0.0,0.0 -lxqt-policykit,0.849725532046253,4.03000539693702,-0.003812132715584,https://salsa.debian.org/lxqt-team/lxqt-policykit, https://github.com/lxqt/lxqt-policykit.git,4324.830844907408,48,36,0,59.0,42.0,0.0,0.0 -lxqt-powermanagement,0.067990475996623,1.19644354347445,-0.145591595765742,https://salsa.debian.org/lxqt-team/lxqt-powermanagement, https://github.com/lxqt/lxqt-powermanagement.git,4140.606550925926,76,51,0,79.0,84.0,0.0,0.0 -lxqt-runner,0.0124283056612465,1.1138238755934,-0.164796166466519,https://salsa.debian.org/lxqt-team/lxqt-runner, https://github.com/lxqt/lxqt-runner.git,4515.725972222223,56,49,0,70.0,50.0,0.0,0.0 -lxqt-sudo,0.140114655965918,1.77834366071532,-0.145434791953686,https://salsa.debian.org/lxqt-team/lxqt-sudo, https://github.com/lxqt/lxqt-sudo.git,3089.181782407408,82,29,0,82.0,39.0,0.0,0.0 -mu,-0.107046255843769,0.217105647172141,-0.278251203721323,https://salsa.debian.org/emacsen-team/maildir-utils, https://github.com/djcb/mu,5121.831759259259,35,231,0,206.0,161.0,0.0,0.0 -maim,0.113711053696173,1.6107062353379,-0.377100307812184,https://salsa.debian.org/debian/maim, https://github.com/naelstrof/maim.git,3690.030474537037,19,40,0,45.0,262.0,0.0,2.0 -mapnik-vector-tile,-1.40056502691077,-0.44800985874745,-1.66548086006116,https://salsa.debian.org/debian-gis-team/mapnik-vector-tile, https://github.com/mapbox/mapnik-vector-tile.git,3418.254965277778,3,30,0,17.0,98.0,0.0,0.0 -mate-menus,0.291699225666982,1.55977593208731,-0.060469425970051,https://salsa.debian.org/debian-mate-team/mate-menus, https://github.com/mate-desktop/mate-menus.git,4292.575694444445,15,28,0,23.0,81.0,0.0,0.0 -mate-power-manager,0.646216818492194,1.46969020880882,0.21493344301007,https://salsa.debian.org/debian-mate-team/mate-power-manager, https://github.com/mate-desktop/mate-power-manager.git,4348.006087962963,20,47,0,48.0,242.0,0.0,0.0 -mate-screensaver,1.60900331743067,3.35454847646224,0.754555565023901,https://salsa.debian.org/debian-mate-team/mate-screensaver, https://github.com/mate-desktop/mate-screensaver.git,4208.470706018518,19,41,0,34.0,233.0,0.0,0.0 -mate-sensors-applet,0.0789010650303653,1.28695911302141,-0.189639983679343,https://salsa.debian.org/debian-mate-team/mate-sensors-applet, https://github.com/mate-desktop/mate-sensors-applet.git,4304.766782407408,15,25,0,24.0,62.0,0.0,0.0 -mate-session-manager,0.339482463152461,0.890109503727652,0.0687723318826919,https://salsa.debian.org/debian-mate-team/mate-session-manager, https://github.com/mate-desktop/mate-session-manager.git,4323.574768518519,19,47,0,38.0,169.0,0.0,0.0 -mate-tweak,1.1711824322115,3.54816538207856,0.224799834784113,https://salsa.debian.org/debian-mate-team/mate-tweak, https://github.com/ubuntu-mate/mate-tweak.git,4804.19712962963,11,22,0,21.0,60.0,0.0,0.0 -mednaffe,0.0695788651301977,1.6947766540162,-0.285905097545065,https://salsa.debian.org/games-team/mednaffe, https://github.com/AmatCoder/mednaffe,3528.2947337962964,2,17,0,7.0,55.0,0.0,1.0 -miniupnp,0.567764962572609,1.22227461099736,0.208817498397338,https://salsa.debian.org/miniupnp-team/minissdpd, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3,107.0,312.0,0.0,4.0 -miniupnp,0.896028584634377,2.20959817825551,0.296824471039593,https://salsa.debian.org/miniupnp-team/miniupnpc, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3,107.0,312.0,0.0,4.0 -miniupnp,-0.320866962830269,0.471153498205093,-0.701062424054327,https://salsa.debian.org/miniupnp-team/miniupnpd, https://github.com/miniupnp/miniupnp,4445.863055555556,27,105,3,107.0,312.0,0.0,4.0 -mistune,0.149354521348081,1.579805043926,-0.145517628501817,https://salsa.debian.org/python-team/packages/mistune, https://github.com/lepture/mistune,3515.880914351852,27,24,1,38.0,224.0,0.0,0.0 -mkchromecast,0.898973076051445,3.26116210403962,-0.0281715966974308,https://salsa.debian.org/debian/mkchromecast, https://github.com/muammar/mkchromecast.git,2825.8958217592594,15,30,0,34.0,536.0,0.0,1.0 -mosh,0.606003492999349,1.43566359670226,0.188674180011505,https://github.com/mobile-shell/mosh,https://github.com/mobile-shell/mosh,4605.12912037037,52,35,3,67.0,1569.0,0.0,35.0 -muffin,0.571495120997324,1.43517958491909,0.146834752032244,https://salsa.debian.org/cinnamon-team/muffin, https://github.com/linuxmint/muffin.git,4329.859942129629,106,160,0,87.0,168.0,0.0,2.0 -muparserx,-1.14701343548615,1.21198112886092,-1.61750844454886,https://salsa.debian.org/debian/muparserx, https://github.com/beltoforion/muparserx.git,4293.234409722222,2,26,0,14.0,46.0,0.0,0.0 -mupen64plus-core,0.0992350276130686,1.30432028316849,-0.26945445417746,https://salsa.debian.org/games-team/mupen64plus-core, https://github.com/mupen64plus/mupen64plus-core.git,5146.490856481481,33,78,0,72.0,233.0,0.0,4.0 -mutagen,0.6308721972927,1.46347737165292,0.211186962173591,https://salsa.debian.org/python-team/packages/mutagen, https://github.com/quodlibet/mutagen.git,3949.215439814815,9,35,0,42.0,122.0,0.0,0.0 -mwparserfromhell,-1.44297334555683,0.682725643077273,-1.95643950190841,https://salsa.debian.org/legoktm/mwparserfromhell, https://github.com/earwig/mwparserfromhell.git,4191.728368055556,10,20,0,20.0,139.0,0.0,0.0 -nrpe,0.477291680000994,0.835901468912501,0.239218580239737,https://salsa.debian.org/nagios-team/nrpe, https://github.com/NagiosEnterprises/nrpe.git,5657.720381944445,12,36,0,29.0,253.0,0.0,0.0 -check_multi,0.163578154897465,2.16918596935981,-0.511868753537618,https://salsa.debian.org/nagios-team/check-multi, https://github.com/flackem/check_multi.git,4620.408148148148,0,15,0,3.0,17.0,0.0,0.0 -manubulon-snmp,0.0426392600122019,1.52234126723326,-0.356703424329942,https://salsa.debian.org/nagios-team/nagios-snmp-plugins, https://github.com/SteScho/manubulon-snmp.git,3770.959710648148,13,22,0,26.0,70.0,0.0,0.0 -nagiosplugin,0.263952344918218,2.90856404482608,-0.329957123913541,https://salsa.debian.org/python-team/packages/nagiosplugin, https://github.com/mpounsett/nagiosplugin.git,4266.1149421296295,1,18,0,12.0,12.0,0.0,0.0 -Nagstamon,0.730907718540055,2.02903073936438,0.043386520370399,https://salsa.debian.org/python-team/packages/nagstamon, https://github.com/HenriWahl/Nagstamon,4918.706157407408,17,112,0,80.0,562.0,0.0,0.0 -ndcube,-0.460274072585896,1.79127259406629,-0.942765756946831,https://salsa.debian.org/debian-astro-team/ndcube/, https://github.com/sunpy/ndcube.git,2309.230162037037,5,25,0,24.0,36.0,0.0,2.0 -neovim,0.139577774440131,0.605538800399618,-0.0780391448356829,https://salsa.debian.org/vim-team/neovim, https://github.com/neovim/neovim,3604.0696527777777,719,402,6,443.0,147.0,0.0,643.0 -netmask,0.156544839444884,1.60012392442616,-0.320303280016655,https://salsa.debian.org/debian/netmask, https://github.com/tlby/netmask,3093.175914351852,0,5,0,3.0,10.0,0.0,0.0 -netmate,-0.719350453768547,2.08281697840534,-1.35631914882567,https://salsa.debian.org/debian/netmate, https://github.com/Rup0rt/netmate,2070.0839814814813,0,5,0,1.0,3.0,0.0,0.0 -netmiko,-1.04890669517233,1.52538450984127,-1.55455492859381,https://salsa.debian.org/python-team/packages/netmiko, https://github.com/ktbyers/netmiko,3283.277928240741,134,166,0,179.0,660.0,0.0,0.0 -newpid,-1.32461244663601,0.560058720153903,-1.7522117210337,https://github.com/df7cb/newpid,https://github.com/df7cb/newpid,2886.7799652777776,3,3,0,3.0,4.0,0.0,0.0 -nextepc,-3.1224390213188,-0.19701473914388,-4.0970791265809,https://salsa.debian.org/debian-mobcom-team/nextepc, https://github.com/acetcom/nextepc.git,2506.134733796296,86,27,0,82.0,45.0,0.0,2.0 -nfdump,0.977271838227154,2.34421694620262,0.233182380725062,https://salsa.debian.org/debian/nfdump, https://github.com/phaag/nfdump,3040.3677314814813,10,40,0,29.0,235.0,0.0,1.0 -nifti_clib,0.482582180988756,2.76582964096068,-0.151018136944796,https://salsa.debian.org/med-team/nifticlib, https://github.com/NIFTI-Imaging/nifti_clib.git,5617.646921296297,18,12,0,22.0,35.0,0.0,0.0 -nobleNote,0.249989368367808,3.63316979098012,-0.775757079659619,https://github.com/hakaishi/nobleNote,https://github.com/hakaishi/nobleNote,4167.68542824074,0,13,2,3.0,13.0,0.0,0.0 -argparse,0.736863005336764,3.61950567820034,-0.146322544927693,https://salsa.debian.org/js-team/node-argparse, https://github.com/nodeca/argparse.git,3647.777442129629,4,24,0,19.0,123.0,0.0,0.0 -async,0.521837357550816,3.0881514943569,-0.153591739285099,https://salsa.debian.org/js-team/node-async, https://github.com/caolan/async,4951.204143518518,77,213,0,235.0,261.0,0.0,2.0 -bootstrap-tour,0.422328031925688,2.9664539994723,-0.149876009104825,https://salsa.debian.org/js-team/node-bootstrap-tour, https://github.com/sorich87/bootstrap-tour,4115.356145833333,7,73,2,57.0,796.0,0.0,0.0 -brace-expansion,0.716228262630341,3.62750370786561,-0.0452789702686191,https://salsa.debian.org/js-team/node-brace-expansion, https://github.com/juliangruber/brace-expansion.git,3650.006261574074,12,13,0,20.0,36.0,0.0,0.0 -browserify-sign,-0.39656278355729,2.18248500935655,-0.97092404787497,https://salsa.debian.org/js-team/node-browserify-sign, https://github.com/browserify/browserify-sign,3266.7325578703703,5,13,0,14.0,57.0,0.0,0.0 -escodegen,-0.909373893530738,1.69207056581527,-1.47807941799231,https://salsa.debian.org/js-team/node-escodegen, https://github.com/estools/escodegen,4135.210347222223,14,53,0,47.0,323.0,0.0,19.0 -eslint-plugin-node,-3.58250386848337,-0.922205708299373,-4.28594917568384,https://salsa.debian.org/js-team/node-eslint-plugin-node, https://github.com/mysticatea/eslint-plugin-node.git,2019.664039351852,35,4,0,34.0,255.0,0.0,0.0 -eslint-scope,-1.08294458078005,1.28176789313915,-1.55794546421809,https://salsa.debian.org/js-team/node-eslint-scope, https://github.com/eslint/eslint-scope.git,4084.622615740741,20,34,0,42.0,115.0,0.0,0.0 -node-glob,0.143825463763194,1.53625678453923,-0.118526066048584,https://salsa.debian.org/js-team/node-glob, https://github.com/isaacs/node-glob.git,5090.514074074074,32,18,0,41.0,333.0,0.0,1.0 -glob-parent,0.64500011838931,3.76124258221443,-0.218433820489926,https://salsa.debian.org/js-team/node-glob-parent, https://github.com/es128/glob-parent,3015.0730902777777,8,7,0,10.0,36.0,0.0,0.0 -node-growl,0.261516847104991,3.00332824575815,-0.587697940237218,https://salsa.debian.org/js-team/node-growl, https://github.com/tj/node-growl,4729.724293981481,12,29,0,34.0,89.0,0.0,0.0 -iferr,0.448968289114061,2.98412118819789,-0.106689465410837,https://salsa.debian.org/js-team/node-iferr, https://github.com/shesek/iferr,3291.114814814815,1,3,0,1.0,4.0,0.0,0.0 -node-ignore,-1.25954331937739,0.389151093008955,-1.59222242688244,https://salsa.debian.org/js-team/node-ignore, https://github.com/kaelzhang/node-ignore.git,3728.032349537037,8,15,0,17.0,72.0,0.0,0.0 -inherits,0.753819751450925,4.08414445580133,-0.0508306715766449,https://salsa.debian.org/js-team/node-inherits, https://github.com/isaacs/inherits,4576.5039120370375,6,4,0,5.0,40.0,0.0,0.0 -JSONStream,0.014885788652368,0.940493955230558,-0.134524130048652,https://salsa.debian.org/js-team/node-jsonstream, https://github.com/dominictarr/JSONStream,2577.6002314814814,1,37,0,29.0,213.0,0.0,0.0 -LiveScript,-0.796454567693591,0.829862240876217,-1.2087204197895,https://salsa.debian.org/js-team/node-livescript, https://github.com/gkz/LiveScript,3444.0588194444445,8,88,2,58.0,60.0,0.0,73.0 -node-rest-client,-2.34771777117685,-0.136208382634589,-2.78587949829909,https://salsa.debian.org/js-team/node-node-rest-client, https://github.com/aacerox/node-rest-client,3880.378981481481,2,29,1,22.0,276.0,0.0,0.0 -nopt,0.13447165373718,1.55249959830994,-0.124448187654037,https://salsa.debian.org/js-team/node-nopt, https://github.com/npm/nopt,4635.836597222222,17,11,0,21.0,82.0,0.0,0.0 -object-assign,0.310845604616587,2.33949121675479,-0.119662545224087,https://salsa.debian.org/js-team/node-object-assign, https://github.com/sindresorhus/object-assign.git,3563.10443287037,7,8,0,13.0,0.0,0.0,0.0 -object-path,0.492684353752583,3.14650442342774,-0.292860259866992,https://salsa.debian.org/js-team/node-object-path, https://github.com/mariocasciaro/object-path,3395.5928125,1,21,1,13.0,58.0,0.0,0.0 -promise,-0.55016777054256,1.4973541225488,-1.03383991541004,https://salsa.debian.org/js-team/node-promise, https://github.com/then/promise,3592.5633101851854,14,29,0,32.0,147.0,0.0,0.0 -proxyquire,-4.69608826349662,-1.98666268575696,-5.41057380198351,https://salsa.debian.org/js-team/node-proxyquire, https://github.com/thlorenz/proxyquire.git,3798.2810416666666,25,13,0,31.0,304.0,0.0,3.0 -pseudomap,0.937778166759224,4.32648099886615,-0.0364711838402969,https://salsa.debian.org/js-team/node-pseudomap, https://github.com/isaacs/pseudomap,2873.803599537037,1,5,0,2.0,19.0,0.0,0.0 -source-map,1.55245207815193,5.26333938850362,0.357953046946245,https://salsa.debian.org/js-team/node-source-map, https://github.com/mozilla/source-map,4395.194918981481,30,77,0,78.0,117.0,0.0,8.0 -node-source-map-support,0.0115822458316907,3.02886679032454,-0.745558315869375,https://salsa.debian.org/js-team/node-source-map-support, https://github.com/evanw/node-source-map-support.git,3692.318310185185,18,59,0,62.0,343.0,0.0,0.0 -sourcemap-codec,-0.978257225317061,1.03977013472883,-1.42048836078263,https://salsa.debian.org/js-team/node-sourcemap-codec, https://github.com/Rich-Harris/sourcemap-codec,2611.721597222222,0,12,0,8.0,19.0,0.0,0.0 -node-tmp,0.0305888511631943,2.19150377951304,-0.407222090250547,https://salsa.debian.org/js-team/node-tmp, https://github.com/raszi/node-tmp.git,4359.087268518519,7,35,0,33.0,198.0,0.0,0.0 -WebSocket-Node,0.394346969026257,3.01474425304256,-0.493087010081738,https://salsa.debian.org/js-team/node-websocket, https://github.com/theturtle32/WebSocket-Node,3898.125949074074,14,47,1,48.0,389.0,0.0,9.0 -window-size,0.817445041352174,4.93165221000849,-0.505792839843926,https://salsa.debian.org/js-team/node-window-size, https://github.com/jonschlinkert/window-size,1623.6925347222225,3,7,0,6.0,16.0,0.0,0.0 -worker-loader,-1.93501312263317,1.12467887991464,-2.71917077243259,https://salsa.debian.org/js-team/node-worker-loader, https://github.com/webpack-contrib/worker-loader.git,3320.771192129629,31,18,0,40.0,447.0,0.0,0.0 -wrap-ansi,0.755764500131751,3.66947744342432,-0.0297221144156634,https://salsa.debian.org/js-team/node-wrap-ansi, https://github.com/chalk/wrap-ansi.git,2991.949641203704,8,6,0,10.0,44.0,0.0,0.0 -ws,-0.597504643579988,0.928783225230523,-0.931281242687366,https://salsa.debian.org/js-team/node-ws, https://github.com/websockets/ws.git,4417.8559606481485,91,121,0,173.0,665.0,0.0,0.0 -nsd,-0.209496714649365,0.166228671461131,-0.454888776465555,https://salsa.debian.org/dns-team/nsd, https://github.com/NLnetLabs/nsd,5722.081597222223,12,44,1,34.0,85.0,0.0,0.0 -nss-mdns,2.06830438591482,3.30017102168803,1.31656391448615,https://salsa.debian.org/debian/nss-mdns, https://github.com/lathiat/nss-mdns,2585.1120138888887,6,5,1,8.0,52.0,0.0,0.0 -numexpr,-0.0194772951772622,0.361916928084253,-0.146422801098473,https://salsa.debian.org/science-team/numexpr, https://github.com/pydata/numexpr,5774.670578703704,9,77,0,55.0,236.0,0.0,6.0 -numpy-stl,0.615825940157454,4.12168181615445,-0.292783420805598,https://salsa.debian.org/python-team/packages/numpy-stl, https://github.com/WoLpH/numpy-stl,3320.4569444444446,4,21,0,19.0,208.0,0.0,0.0 -batteries-included,0.411441141017328,1.71240902559343,-0.118428115063702,https://salsa.debian.org/ocaml-team/ocaml-batteries, https://github.com/ocaml-batteries-team/batteries-included.git,5695.369340277778,48,89,0,88.0,185.0,0.0,26.0 -OCRmyPDF,-0.309965359785653,-0.277069327301108,-0.318576500393822,https://salsa.debian.org/debian/ocrmypdf, https://github.com/ocrmypdf/OCRmyPDF.git,3897.7415625,69,26,0,82.0,0.0,0.0,2.0 -statistics,0.0046253383748497,1.06578838891868,-0.269142495233653,https://salsa.debian.org/pkg-octave-team/octave-statistics, https://github.com/gnu-octave/statistics,5730.789537037037,4,41,0,25.0,16.0,0.0,0.0 -open-iscsi,0.854719990294682,1.35109033964711,0.511903253263732,https://salsa.debian.org/linux-blocks-team/open-iscsi, https://github.com/open-iscsi/open-iscsi.git,2731.834965277778,58,55,0,71.0,172.0,0.0,0.0 -gamecode,0.96396546312347,1.82542565008426,0.437062203257962,https://salsa.debian.org/games-team/openarena, https://github.com/OpenArena/gamecode,5128.333194444444,5,20,0,13.0,23.0,0.0,4.0 -OpenNI,0.453148378020615,1.70909540841027,-0.105089181959868,https://salsa.debian.org/multimedia-team/openni, https://github.com/OpenNI/OpenNI.git,1070.0370601851853,0,4,0,3.0,176.0,0.0,0.0 -mapper,-0.631173932488296,0.749385464496322,-1.07761550056928,https://salsa.debian.org/debian/openorienteering-mapper, https://github.com/OpenOrienteering/mapper,4199.666504629629,148,39,5,107.0,59.0,0.0,3.0 -OpenSceneGraph,0.121945162495101,0.380721743010354,-0.0364053970314388,https://salsa.debian.org/openscenegraph-team/openscenegraph-3.2, https://github.com/openscenegraph/OpenSceneGraph.git,5356.992013888889,72,120,0,111.0,328.0,0.0,0.0 -open-zwave,0.251031456311137,2.52887934370336,-0.590500837100787,https://salsa.debian.org/debian-iot-team/openzwave, https://github.com/OpenZWave/open-zwave,4679.3881481481485,241,322,2,372.0,409.0,0.0,3.0 -ora2pg,-1.06027788592814,1.89450656086026,-1.84336686616175,https://salsa.debian.org/postgresql/ora2pg, https://github.com/darold/ora2pg.git,4257.932048611111,11,55,0,49.0,271.0,0.0,2.0 -simple-orca-plugin-system,-1.79399091258046,0.477648946327548,-2.23772319993185,https://salsa.debian.org/a11y-team/orca-sops, https://github.com/chrys87/simple-orca-plugin-system.git,1662.239976851852,0,8,0,4.0,2.0,0.0,0.0 -orcania,-0.52837094840339,2.05141009060046,-1.0233328648007,https://salsa.debian.org/debian-iot-team/oauth2/orcania.git, https://github.com/babelouest/orcania,1246.8811342592592,5,16,0,11.0,19.0,0.0,0.0 -awk,-0.0072345009631837,1.50108796777715,-0.396611676579941,https://salsa.debian.org/sanvila/original-awk, https://github.com/onetrueawk/awk,3992.553125,14,18,0,21.0,19.0,0.0,0.0 -orocos-bayesian-filtering,-1.20839734703014,0.853925465579936,-1.67447640189669,https://salsa.debian.org/science-team/orocos-bfl, https://github.com/orocos/orocos-bayesian-filtering,3625.9026157407407,2,10,1,6.0,13.0,0.0,1.0 -osmium-tool,-0.355702148740491,1.15342739888521,-0.617079773285203,https://salsa.debian.org/debian-gis-team/osmium-tool/, https://github.com/osmcode/osmium-tool.git,3639.05375,11,18,0,22.0,166.0,0.0,0.0 -osmosis,-0.391633180525616,-0.251842171941677,-0.459482708887277,https://salsa.debian.org/debian-gis-team/osmosis, https://github.com/openstreetmap/osmosis.git,5774.239305555556,9,48,0,37.0,88.0,0.0,0.0 -OSM-binary,-0.0947714797520939,0.733906087146982,-0.299460332959203,https://salsa.debian.org/debian-gis-team/osmpbf, https://github.com/openstreetmap/OSM-binary.git,4802.131689814815,3,18,0,16.0,45.0,0.0,0.0 -OWSLib,0.227162871238011,2.74205480704894,-0.294290743593166,https://salsa.debian.org/debian-gis-team/owslib, https://github.com/geopython/OWSLib.git,5660.128506944445,56,114,0,112.0,313.0,0.0,4.0 -oz,-0.749829510723026,1.30316000937079,-1.42182686453967,https://salsa.debian.org/jas/oz, https://github.com/clalancette/oz.git,4573.480069444445,58,15,0,54.0,130.0,0.0,10.0 -PyPagekite,-0.0541538684090875,1.77223746923183,-0.786890886734185,https://salsa.debian.org/freedombox-team/pagekite, https://github.com/pagekite/PyPagekite,4048.006875,2,18,0,11.0,103.0,0.0,0.0 -pam-MySQL,1.41725517893156,2.68924415592356,0.678149090502143,https://salsa.debian.org/debian/pam-mysql, https://github.com/NigelCunningham/pam-MySQL.git,4452.585636574074,5,24,0,17.0,77.0,0.0,0.0 -panoramisk,-1.66724383398698,0.627793774140285,-2.28695880510305,https://salsa.debian.org/python-team/packages/panoramisk, https://github.com/gawel/panoramisk.git,3565.5460416666665,6,25,0,16.0,52.0,0.0,0.0 -paste,0.701678813906754,1.97229820376607,0.112093320697141,https://salsa.debian.org/python-team/packages/paste, https://github.com/cdent/paste,3197.4934606481484,26,34,0,44.0,48.0,0.0,0.0 -pasystray,0.628864255506922,2.22576917565774,-0.0058350837296234,https://salsa.debian.org/debian/pasystray, https://github.com/christophgysin/pasystray.git,4343.949039351852,23,11,0,25.0,148.0,0.0,0.0 -path.py,-0.0848290877332572,1.1385294168255,-0.351837370630802,https://salsa.debian.org/python-team/packages/path.py, https://github.com/jaraco/path.py.git,5108.109212962963,22,38,0,43.0,110.0,0.0,0.0 -pcmanx,0.405704730707916,2.17018285384239,-0.402989076864394,https://github.com/pcman-bbs/pcmanx/,https://github.com/pcman-bbs/pcmanx,4671.957210648148,20,31,2,33.0,53.0,0.0,0.0 -abl_link,-0.324299912686206,2.16355424689505,-0.868174322922275,https://salsa.debian.org/multimedia-team/pd/pd-ableton-link, https://github.com/libpd/abl_link.git,2218.753101851852,1,11,0,7.0,21.0,0.0,0.0 -csound_pd,-0.176100914298225,2.29698208106979,-0.665282627798041,https://salsa.debian.org/multimedia-team/pd/pd-csound, https://github.com/csound/csound_pd,5151.554479166667,2,16,0,8.0,7.0,0.0,0.0 -pdepend,-0.115983868593709,1.87535356135467,-0.649716900440004,https://salsa.debian.org/php-team/pear/pdepend, https://github.com/pdepend/pdepend,5780.3265625,17,96,2,72.0,362.0,0.0,1.0 -peewee,0.103743491823741,3.38962196040125,-0.890060633979075,https://salsa.debian.org/python-team/packages/peewee, https://github.com/coleifer/peewee,4809.915636574074,33,127,0,122.0,636.0,0.0,1.0 -pekwm,-0.435338541648194,0.377463161544604,-0.717855468766354,https://salsa.debian.org/debian/pekwm, https://github.com/pekdon/pekwm,5508.519722222222,28,12,3,17.0,21.0,0.0,0.0 -perf-tools,-0.0601624543089167,1.51231762559085,-0.483928569096378,https://salsa.debian.org/debian/perf-tools-unstable, https://github.com/brendangregg/perf-tools,2014.1201041666664,2,20,0,14.0,122.0,0.0,0.0 -pg_partman,-1.14997978218077,1.36537315734972,-1.79970042846314,https://salsa.debian.org/postgresql/pg-partman, https://github.com/pgpartman/pg_partman.git,4104.582835648148,18,11,0,20.0,252.0,0.0,0.0 -pg_qualstats,-1.43590772212002,0.949846995393329,-1.96498265038114,https://github.com/powa-team/pg_qualstats,https://github.com/powa-team/pg_qualstats,3499.713865740741,4,13,0,7.0,42.0,0.0,0.0 -pg-rage-terminator-pkg,-5.06640751639078,-3.16889600306041,-5.47213138173857,https://github.com/disco-stu/pg-rage-terminator-pkg,https://github.com/disco-stu/pg-rage-terminator-pkg,3117.208541666667,0,7,0,4.0,2.0,0.0,0.0 -pg_snakeoil,-2.70653635842388,9.60353410794286e-05,-3.30306867956238,https://github.com/df7cb/pg_snakeoil,https://github.com/df7cb/pg_snakeoil,1864.2726273148148,3,7,0,6.0,0.0,0.0,0.0 -pgFormatter,-0.766671696679578,1.40045971348685,-1.2007180309708,https://salsa.debian.org/postgresql/pgformatter, https://github.com/darold/pgFormatter.git,3991.294074074074,8,26,0,24.0,221.0,0.0,0.0 -pgrouting,-0.765232552157106,1.57925457793502,-1.3149612286901,https://salsa.debian.org/debian-gis-team/pgrouting, https://github.com/pgRouting/pgrouting.git,5779.2725,62,134,0,114.0,0.0,0.0,71.0 -pgtap,-0.499566580834352,0.600659593258449,-1.00512046139286,https://salsa.debian.org/postgresql/pgtap, https://github.com/theory/pgtap,5595.746747685185,24,30,0,35.0,0.0,0.0,2.0 -phing,-0.538565856122596,1.5811545107839,-1.0297476237421,https://salsa.debian.org/php-team/pear/phing, https://github.com/phingofficial/phing,5770.388194444445,74,179,2,174.0,0.0,0.0,0.0 -PhotoCollage,0.981027947071719,4.48700278593263,-0.12845551169211,https://salsa.debian.org/debian/photocollage, https://github.com/adrienverge/PhotoCollage,3560.567523148148,15,10,0,17.0,0.0,0.0,0.0 -PFS,0.0565928501185162,1.28352124732467,-0.441454894726839,https://salsa.debian.org/python-team/packages/photofilmstrip, https://github.com/PhotoFilmStrip/PFS.git,5467.569895833333,4,6,0,,,, -photutils,-0.530821730470941,-0.147517470629556,-0.607062667233244,https://salsa.debian.org/debian-astro-team/photutils, https://github.com/astropy/photutils.git,4375.074594907407,24,63,0,50.0,0.0,0.0,8.0 -php-code-coverage,0.0554134964289426,0.892812339821748,-0.25361320683874,https://salsa.debian.org/php-team/pear/php-codecoverage, https://github.com/sebastianbergmann/php-code-coverage,5309.602488425926,61,64,0,0.0,0.0,0.0,0.0 -PHP_CodeSniffer,0.72579747298667,3.08416098823916,-0.145017632982001,https://salsa.debian.org/php-team/pear/php-codesniffer, https://github.com/squizlabs/PHP_CodeSniffer,5773.466666666666,36,241,2,0.0,0.0,0.0,4.0 -data-fixtures,-1.38873766736549,0.818944080015472,-1.85667088228572,https://salsa.debian.org/php-team/pear/php-doctrine-data-fixtures, https://github.com/doctrine/data-fixtures,4832.895266203704,32,91,3,92.0,0.0,0.0,0.0 -instantiator,0.102858191378864,2.27381740242912,-0.319535245760271,https://salsa.debian.org/php-team/pear/php-doctrine-instantiator, https://github.com/doctrine/instantiator,3466.1691666666666,8,34,4,32.0,63.0,0.0,0.0 -dompdf,0.161438496830306,1.83426657504856,-0.313226115410642,https://salsa.debian.org/php-team/pear/php-dompdf, https://github.com/dompdf/dompdf,3771.5165625,98,70,5,129.0,0.0,0.0,82.0 -easyrdf,-4.53985004086169,-1.04760973421574,-5.40008705061473,https://salsa.debian.org/php-team/pear/php-easyrdf, https://github.com/easyrdf/easyrdf.git,4424.606516203704,13,32,0,,,, -fDOMDocument,0.102987222393373,3.04819313229607,-0.604484786621114,https://salsa.debian.org/php-team/pear/php-fdomdocument, https://github.com/theseer/fDOMDocument,4119.523831018519,0,16,0,12.0,0.0,0.0,0.0 -php-font-lib,0.195361938974529,2.28815740087615,-0.335970916189747,https://salsa.debian.org/php-team/pear/php-font-lib, https://github.com/dompdf/php-font-lib,4545.507627314815,16,19,2,28.0,0.0,0.0,1.0 -fXSL,-0.52174395429572,1.86780741853676,-1.10030187391749,https://salsa.debian.org/php-team/pear/php-fxsl, https://github.com/theseer/fXSL.git,1403.957534722222,0,4,0,3.0,8.0,0.0,0.0 -getID3,0.476939316088774,3.16810349949478,-0.210102938549955,https://salsa.debian.org/php-team/pear/php-getid3, https://github.com/JamesHeinrich/getID3,3892.988275462963,13,58,1,52.0,26.0,0.0,0.0 -psr7,0.307487041404784,3.50584748080844,-0.858192121054758,https://salsa.debian.org/php-team/pear/php-guzzlehttp-psr7, https://github.com/guzzle/psr7,3203.658229166667,45,67,2,86.0,0.0,0.0,0.0 -hamcrest-php,-1.90335724682401,1.30883550679566,-2.96841634471535,https://salsa.debian.org/php-team/pear/php-hamcrest, https://github.com/hamcrest/hamcrest-php.git,4488.772615740741,11,18,0,0.0,0.0,0.0,0.0 -carbon,-0.863153713474241,1.65958302705145,-1.5444681867113,https://salsa.debian.org/php-team/pear/php-nesbot-carbon, https://github.com/briannesbitt/carbon,4115.967280092593,161,223,2,291.0,0.0,0.0,0.0 -predis,0.758047451319142,4.27127099326695,-0.359806912130029,https://salsa.debian.org/php-team/pear/php-predis, https://github.com/predis/predis.git,5141.193425925926,61,57,0,82.0,0.0,0.0,0.0 -PHP-Parser,-0.291525039333005,1.8269276917996,-0.766485228038077,https://salsa.debian.org/php-team/pear/php-parser, https://github.com/nikic/PHP-Parser,4619.1675115740745,120,37,1,0.0,0.0,0.0,14.0 -assert,0.0458454749417622,2.37389776833809,-0.414272528330647,https://salsa.debian.org/php-team/pear/php-webmozart-assert, https://github.com/webmozart/assert,2641.243391203704,49,18,0,57.0,167.0,0.0,0.0 -laminas-stdlib,-0.381723807716578,2.1530292212169,-0.964341109980095,https://salsa.debian.org/php-team/pear/php-zend-stdlib, https://github.com/laminas/laminas-stdlib,5325.660555555555,28,212,21,137.0,39.0,0.0,0.0 -Autoload,-0.602928191482872,1.62428997951041,-1.20121007176994,https://salsa.debian.org/php-team/pear/phpab, https://github.com/theseer/Autoload,5109.897094907407,3,23,0,18.0,52.0,0.0,0.0 -phpcpd,-0.348522966295708,2.44943986693503,-1.0411103088707,https://salsa.debian.org/php-team/pear/phpcpd, https://github.com/sebastianbergmann/phpcpd,5098.8530902777775,11,25,0,26.0,0.0,0.0,0.0 -pikepdf,0.0195418776324902,1.42023481003827,-0.255252513329686,https://salsa.debian.org/python-team/packages/pikepdf, https://github.com/pikepdf/pikepdf.git,2830.688946759259,16,36,0,42.0,0.0,0.0,0.0 -pilkit,-0.324452416735405,2.23160617920347,-0.929329863223428,https://salsa.debian.org/python-team/packages/pilkit, https://github.com/matthewwithanm/pilkit,3883.052476851852,2,19,0,0.0,58.0,0.0,0.0 -pkg-pimd,-0.684418495826166,0.170371440937352,-1.07825028790518,https://github.com/bobek/pkg-pimd/tree/debian/sid,https://github.com/bobek/pkg-pimd,4933.096192129629,11,25,0,8.0,2.0,0.0,0.0 -pingus,0.784743477736233,1.27922153610823,0.426609964368551,https://salsa.debian.org/games-team/pingus, https://github.com/Pingus/pingus,5009.11837962963,4,14,1,14.0,46.0,0.0,0.0 -pipenv,1.57550987661238,5.77787804593938,0.220024930636266,https://salsa.debian.org/python-team/packages/pipenv, https://github.com/pypa/pipenv.git,2511.301400462963,208,339,0,398.0,0.0,0.0,3.0 -piper,-0.645820827909022,1.68813434312164,-1.07869150893027,https://salsa.debian.org/debian/piper, https://github.com/libratbag/piper,2849.4881828703706,77,18,0,77.0,0.0,0.0,4.0 -pius,-0.904282809751136,-0.0817697576479114,-1.16395097275579,https://salsa.debian.org/python-team/packages/pius, https://github.com/jaymzh/pius.git,5108.016145833333,16,8,0,0.0,63.0,0.0,0.0 -pivy,1.03234422836158,3.2415283772479,0.196832102632244,https://salsa.debian.org/science-team/pivy, https://github.com/Coin3D/pivy,2942.7228587962964,15,14,1,15.0,62.0,0.0,0.0 -pixelize,0.248415431644665,2.16026352277692,-0.567150356857362,https://salsa.debian.org/debian-phototools-team/pixelize, https://github.com/jcdubois/pixelize.git,802.2084027777778,1,2,0,1.0,1.0,0.0,0.0 -pixz,0.0431924972750206,1.09071245138794,-0.210447934942008,https://salsa.debian.org/debian/pixz, https://github.com/vasi/pixz.git,5100.817256944444,3,19,0,16.0,101.0,0.0,0.0 -plaso,0.231294030616954,1.99178238588694,-0.333117026741082,https://salsa.debian.org/pkg-security-team/plaso, https://github.com/log2timeline/plaso,3988.488020833333,81,40,3,91.0,0.0,0.0,10.0 -playerctl,0.0887192340295862,2.50802971130406,-0.44880921497051,https://salsa.debian.org/multimedia-team/playerctl, https://github.com/altdesktop/playerctl,2720.5505208333334,8,30,1,31.0,153.0,5.0,0.0 -pluma,0.469982701925562,1.32425310177748,0.0788084083852294,https://salsa.debian.org/debian-mate-team/pluma, https://github.com/mate-desktop/pluma.git,4416.788101851852,32,44,0,44.0,0.0,0.0,0.0 -ply,0.296904457989643,1.36579609781993,-0.0308535513414999,https://salsa.debian.org/python-team/packages/ply, https://github.com/dabeaz/ply,5540.916041666666,10,30,0,35.0,0.0,0.0,0.0 -PnetCDF,-0.724851500201701,1.3866108043012,-1.35784321097542,https://salsa.debian.org:/science-team/pnetcdf.git, https://github.com/Parallel-NetCDF/PnetCDF,5739.242511574074,6,9,0,11.0,21.0,0.0,0.0 -poedit,0.377240788351186,0.863696423934454,0.0761307654233322,https://salsa.debian.org/l10n-team/poedit, https://github.com/vslavik/poedit,5784.378252314815,117,44,0,94.0,0.0,0.0,1.0 -polib,-0.0525182229193335,1.16372565323656,-0.433461717893036,https://salsa.debian.org/python-team/packages/polib, https://github.com/izimobil/polib.git,2651.136875,2,29,0,21.0,47.0,0.0,0.0 -selinux,0.13752216154346,0.326484816484227,0.0169149752599068,https://salsa.debian.org/selinux-team/policycoreutils, https://github.com/SELinuxProject/selinux,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 -pony,-2.21087278189333,0.254481864464489,-2.7664426751991,https://salsa.debian.org/python-team/packages/ponyorm, https://github.com/ponyorm/pony,5706.933831018519,26,14,6,26.0,0.0,0.0,2.0 -powerline,0.208476143642733,0.835470834672986,-0.0736591990461245,https://salsa.debian.org/python-team/packages/powerline, https://github.com/powerline/powerline,4036.078587962963,67,105,3,0.0,0.0,0.0,0.0 -powerline-gitstatus,0.322269027019318,3.81710595314915,-0.530256568800533,https://salsa.debian.org/python-team/packages/powerline-gitstatus, https://github.com/jaspernbrouwer/powerline-gitstatus.git,2809.6974884259257,4,10,0,11.0,61.0,0.0,0.0 -powertop,1.15559070897983,1.74082884335626,0.755925157594074,https://salsa.debian.org/debian/powertop, https://github.com/fenrus75/powertop,4841.83894675926,89,27,0,72.0,0.0,0.0,0.0 -ppp,1.57697829267485,1.87493983840755,1.33449177483222,https://salsa.debian.org/debian/ppp, https://github.com/ppp-project/ppp,5732.936932870371,65,38,0,78.0,0.0,0.0,0.0 -proftpd,0.737341261742912,1.0458954995393,0.49495350750098,https://salsa.debian.org/debian-proftpd-team/proftpd, https://github.com/proftpd/proftpd,5767.726412037037,8,45,2,38.0,0.0,0.0,0.0 -progress,0.367141130390621,3.12875196448013,-0.304974770041313,https://salsa.debian.org/debian/progress, https://github.com/Xfennec/progress,3611.722256944444,7,34,0,29.0,165.0,0.0,0.0 -PROJ,0.175037796107248,0.451924065018182,0.022518348385377,https://salsa.debian.org/debian-gis-team/proj, https://github.com/OSGeo/PROJ.git,5782.065810185185,86,100,0,153.0,0.0,0.0,31.0 -projectm,1.086504365469,2.30480366306058,0.44248415091722,https://salsa.debian.org/multimedia-team/projectm, https://github.com/projectM-visualizer/projectm.git,5766.722731481482,55,53,0,0.0,0.0,0.0,8.0 -alertmanager,-0.627716797072544,0.191277552606398,-0.910152772377882,https://salsa.debian.org/go-team/packages/prometheus-alertmanager, https://github.com/prometheus/alertmanager,3799.933726851852,223,166,0,301.0,0.0,0.0,0.0 -blackbox_exporter,-0.981904346913512,0.189153646817056,-1.20715930115695,https://salsa.debian.org/go-team/packages/prometheus-blackbox-exporter, https://github.com/prometheus/blackbox_exporter,3018.838726851852,91,47,0,111.0,0.0,0.0,1.0 -mysqld_exporter,-0.484217220453001,1.46773543487259,-1.16537910211397,https://salsa.debian.org/go-team/packages/prometheus-mysqld-exporter, https://github.com/prometheus/mysqld_exporter,3197.233726851852,55,65,0,91.0,0.0,0.0,2.0 -nginx-prometheus-exporter,-0.917001793392196,1.95729614268404,-1.71391329118814,https://salsa.debian.org/go-team/packages/prometheus-nginx-exporter, https://github.com/nginxinc/nginx-prometheus-exporter,2021.335486111111,34,16,1,34.0,0.0,0.0,0.0 -node_exporter,0.0690726385882185,0.984232656063144,-0.231331928693568,https://salsa.debian.org/go-team/packages/prometheus-node-exporter, https://github.com/prometheus/node_exporter,3891.8962384259257,281,181,1,0.0,0.0,0.0,0.0 -node-exporter-textfile-collector-scripts,-0.327245248943772,3.23015482382769,-1.28265958925532,https://salsa.debian.org/go-team/packages/prometheus-node-exporter-collectors, https://github.com/prometheus-community/node-exporter-textfile-collector-scripts,2551.994803240741,47,28,0,64.0,0.0,0.0,0.0 -postgres_exporter,-0.800265105447162,1.58506096914014,-1.38728683152608,https://salsa.debian.org/go-team/packages/prometheus-postgres-exporter, https://github.com/prometheus-community/postgres_exporter,3027.0144328703705,102,49,0,0.0,0.0,0.0,2.0 -snmp_exporter,-1.3551310327084,1.44742065196107,-2.01734617256376,https://salsa.debian.org/go-team/packages/prometheus-snmp-exporter, https://github.com/prometheus/snmp_exporter,3213.7672916666666,96,43,0,112.0,0.0,0.0,0.0 -squid-exporter,-2.41848251266118,0.241951954704953,-2.99662975801824,https://salsa.debian.org/go-team/packages/prometheus-squid-exporter, https://github.com/boynux/squid-exporter,2307.527222222222,13,20,0,18.0,0.0,0.0,0.0 -prometheus_varnish_exporter,-2.22737684439663,0.194394138028224,-2.90857235800425,https://salsa.debian.org/go-team/packages/prometheus-varnish-exporter, https://github.com/jonnenauha/prometheus_varnish_exporter.git,2552.1847337962963,20,7,0,0.0,88.0,0.0,0.0 -python-prompt-toolkit,0.487219288335155,2.9978306953901,-0.0809488244162375,https://salsa.debian.org/python-team/packages/prompt-toolkit, https://github.com/prompt-toolkit/python-prompt-toolkit,3391.945347222222,231,9,0,205.0,0.0,0.0,1.0 -psi,1.2135210428483,1.77437249231228,0.806961286086633,https://salsa.debian.org/xmpp-team/psi, https://github.com/psi-im/psi.git,5747.445775462963,30,65,0,54.0,0.0,0.0,3.0 -psi-plus-snapshots,-0.0389491456550862,0.359609186020761,-0.259175595888705,https://salsa.debian.org/xmpp-team/psi-plus, https://github.com/psi-plus/psi-plus-snapshots.git,4282.442372685186,3,4,0,6.0,0.0,0.0,0.0 -psi-plus-l10n,0.0021957149266252,2.286416791367,-0.431223071340601,https://salsa.debian.org/xmpp-team/psi-plus-l10n, https://github.com/psi-plus/psi-plus-l10n.git,4205.424212962963,1,2,0,3.0,6.0,0.0,0.0 -psi-l10n,-0.0176490017548628,1.60050001052168,-0.589180216784067,https://salsa.debian.org/xmpp-team/psi-translations, https://github.com/psi-im/psi-l10n.git,3818.9027083333335,1,10,0,8.0,0.0,0.0,0.0 -pssh,1.25126093151198,3.09786426362212,0.342529059832974,https://salsa.debian.org/python-team/packages/pssh, https://github.com/lilydjwg/pssh.git,5265.235138888889,5,13,0,12.0,0.0,0.0,0.0 -list,0.589924984268248,2.22034113393404,0.075745117130546,https://salsa.debian.org/debian/publicsuffix, https://github.com/publicsuffix/list,5785.028506944444,598,98,0,0.0,0.0,0.0,4.0 -pugixml,0.228302722305054,1.29257811833606,-0.0618880814515506,https://salsa.debian.org/debian/pugixml, https://github.com/zeux/pugixml,5448.187962962963,24,58,0,59.0,0.0,0.0,0.0 -beaker,-3.3388976797187,-1.35731765858064,-3.74661072283268,https://salsa.debian.org/debian/puppet-beaker, https://github.com/voxpupuli/beaker,4907.928113425926,70,283,1,0.0,0.0,0.0,54.0 -puppetlabs-apache,-1.54178444078058,-0.124065206083267,-1.98886121691503,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-apache, https://github.com/puppetlabs/puppetlabs-apache,4851.444710648148,122,563,2,312.0,0.0,0.0,0.0 -puppetlabs-concat,-0.9082644121244,1.00396774267501,-1.29052555353025,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-concat, https://github.com/puppetlabs/puppetlabs-concat,4953.97287037037,37,176,1,0.0,0.0,0.0,0.0 -puppetlabs-firewall,-1.67549835899526,0.164018816415436,-2.12307018049536,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-firewall, https://github.com/puppetlabs/puppetlabs-firewall,4586.852083333333,80,232,1,0.0,0.0,0.0,0.0 -puppetlabs-postgresql,-1.95878277292213,-0.0955597617558538,-2.44416950278775,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-postgresql, https://github.com/puppetlabs/puppetlabs-postgresql.git,4242.28400462963,62,322,0,243.0,0.0,0.0,0.0 -puppet-memcached,-2.12144484071194,0.164676507895954,-2.6091973246302,https://salsa.debian.org/puppet-team/puppet-module-saz-memcached, https://github.com/saz/puppet-memcached,4458.983287037037,12,53,1,0.0,96.0,0.0,0.0 -pure-data,0.0157019697110362,0.281668408198807,-0.130901583003357,https://salsa.debian.org/multimedia-team/pd/puredata, https://github.com/pure-data/pure-data,5785.432986111111,63,77,2,77.0,0.0,0.0,0.0 -px,-0.423422432701603,0.581957765196982,-0.633033681073781,https://salsa.debian.org/debian/px, https://github.com/walles/px,2833.17550925926,1,6,0,4.0,0.0,0.0,0.0 -py3status,-0.604162997217986,0.942737828428733,-0.931408600986958,https://salsa.debian.org/debian/py3status, https://github.com/ultrabug/py3status.git,3948.006261574074,125,142,0,0.0,0.0,0.0,0.0 -pyacoustid,0.162364282807266,1.61988294151792,-0.297127440982871,https://salsa.debian.org/python-team/packages/pyacoustid, https://github.com/beetbox/pyacoustid.git,4388.5853125,7,21,0,21.0,68.0,0.0,0.0 -pyaes,0.0439799146662894,1.46563847689993,-0.290497332700578,https://salsa.debian.org/python-team/packages/pyaes, https://github.com/ricmoo/pyaes.git,1227.051747685185,0,7,0,4.0,46.0,0.0,1.0 -pyBigWig,-1.37838749264238,0.906698932241941,-1.94744266506773,https://salsa.debian.org/med-team/pybigwig, https://github.com/deeptools/pyBigWig.git,2807.2654282407407,2,15,0,12.0,0.0,0.0,0.0 -pycodestyle,0.439986634408756,2.1742206342038,-0.0747451364476911,https://salsa.debian.org/python-team/packages/pycodestyle, https://github.com/PyCQA/pycodestyle,5163.460625,31,117,1,0.0,0.0,0.0,12.0 -pycountry,0.294816698645498,1.57364820994181,-0.122309479712131,https://salsa.debian.org/debian/pycountry, https://github.com/flyingcircusio/pycountry,5687.085740740741,1,26,1,24.0,0.0,0.0,0.0 -pycsw,-2.68704520454314,-2.10282113037064,-2.79543575957422,https://salsa.debian.org/debian-gis-team/pycsw, https://github.com/geopython/pycsw.git,4758.626342592593,26,33,0,46.0,0.0,0.0,17.0 -pycuda,-0.456291809365219,0.481879867095548,-0.729976593873598,https://salsa.debian.org/nvidia-team/python-pycuda, https://github.com/inducer/pycuda,5664.963599537037,28,68,0,0.0,244.0,0.0,0.0 -pydbus,-0.326676770365645,1.54560914836696,-0.736540103745462,https://salsa.debian.org/python-team/packages/pydbus, https://github.com/LEW21/pydbus,1343.866273148148,4,10,0,5.0,0.0,0.0,1.0 -pydoctor,-1.42300354787697,-0.333158315694935,-1.82056037046825,https://salsa.debian.org/python-team/packages/pydoctor, https://github.com/twisted/pydoctor,5762.199490740741,10,47,2,30.0,0.0,0.0,0.0 -pydot,0.710705613646775,2.1401436391668,0.087853757877001,https://salsa.debian.org/python-team/packages/pydot, https://github.com/pydot/pydot.git,4914.85730324074,17,9,0,25.0,0.0,0.0,0.0 -pyee,-1.37452658573351,2.14458250633493,-2.18648828344339,https://salsa.debian.org/python-team/packages/pyee, https://github.com/jfhbrook/pyee,4518.116736111111,13,8,0,14.0,49.0,0.0,0.0 -pyephem,-0.0227131662678818,2.35290106480548,-0.451666876474429,https://salsa.debian.org/debian-astro-team/pyephem, https://github.com/brandon-rhodes/pyephem.git,5699.002222222222,31,9,0,28.0,0.0,0.0,0.0 -pyFAI,0.480600339912094,2.23082133459337,-0.240573976533518,https://salsa.debian.org/science-team/pyfai, https://github.com/silx-kit/pyFAI,3860.899710648149,31,70,7,0.0,0.0,0.0,0.0 -PyFerret,-0.720043450037665,0.50276121700717,-1.02716490070978,https://salsa.debian.org:/science-team/pyferret, https://github.com/NOAA-PMEL/PyFerret.git,4609.900659722222,4,23,0,0.0,0.0,0.0,2.0 -pyFFTW,-0.316398042662329,0.802205199164713,-0.700761335252033,https://salsa.debian.org/science-team/pyfftw, https://github.com/pyFFTW/pyFFTW,4024.0905671296296,11,25,0,0.0,0.0,0.0,0.0 -pyflakes,0.604236477652839,1.35505911780103,0.192331132918715,https://salsa.debian.org/python-team/packages/pyflakes, https://github.com/PyCQA/pyflakes,5606.079027777778,52,38,0,74.0,0.0,0.0,0.0 -pygame,1.0962196098806,1.77966486385471,0.656049853906713,https://salsa.debian.org/python-team/packages/pygame, https://github.com/pygame/pygame.git,2564.220520833333,126,252,0,0.0,0.0,0.0,0.0 -pygame_sdl2,0.0393673282987854,2.24068505179172,-0.449471553978388,https://salsa.debian.org/games-team/pygame-sdl2, https://github.com/renpy/pygame_sdl2,3332.3333796296297,5,23,0,20.0,0.0,0.0,0.0 -pygccxml,-0.495551734191547,0.486492468911825,-0.849138889813691,https://salsa.debian.org/debian/pygccxml, https://github.com/gccxml/pygccxml,5668.97650462963,5,16,0,16.0,74.0,0.0,0.0 -pygments,1.09432846646851,2.3132348209107,0.469362463495908,https://salsa.debian.org/python-team/packages/pygments, https://github.com/pygments/pygments.git,2886.0544328703704,306,558,0,391.0,0.0,0.0,0.0 -pyicu,0.567064416758836,1.69830166492967,0.0840500818354553,https://salsa.debian.org/python-team/packages/pyicu, https://github.com/ovalhub/pyicu.git,2184.9113078703704,5,15,0,17.0,144.0,0.0,0.0 -pyinotify,0.539303811447247,1.55973294924873,0.107010693294791,https://salsa.debian.org/python-team/packages/pyinotify, https://github.com/seb-m/pyinotify.git,2642.343379629629,0,16,0,10.0,0.0,0.0,0.0 -pyjokes,-0.213223143779745,3.54203731545436,-1.22575865798678,https://salsa.debian.org/python-team/packages/pyjokes, https://github.com/pyjokes/pyjokes,3166.3977546296296,9,30,1,38.0,71.0,0.0,1.0 -pyjwt,0.295088879140263,1.37043065299221,-0.0542571025196617,https://salsa.debian.org/python-team/packages/pyjwt, https://github.com/jpadilla/pyjwt.git,4675.897326388889,105,47,0,131.0,0.0,0.0,0.0 -pylint,0.174498715716526,0.4665293327002,-0.0043463956002753,https://salsa.debian.org/python-team/packages/pylint, https://github.com/PyCQA/pylint.git,5621.911319444444,451,185,0,378.0,0.0,0.0,0.0 -pylint-flask,0.121478376037209,2.81446522157007,-0.793312583432087,https://salsa.debian.org/python-team/packages/pylint-flask, https://github.com/jschaf/pylint-flask,2579.0026851851853,3,8,0,0.0,31.0,0.0,0.0 -pylint-plugin-utils,-0.0597596177116391,2.49272348865354,-0.676049395041167,https://salsa.debian.org/python-team/packages/pylint-plugin-utils, https://github.com/PyCQA/pylint-plugin-utils.git,3719.603391203704,6,13,0,12.0,32.0,0.0,0.0 -Pymacs,0.930381569651539,2.71440757575525,0.140125463590492,https://salsa.debian.org/python-team/packages/pymacs, https://github.com/pinard/Pymacs.git,2214.350115740741,2,9,0,7.0,84.0,0.0,0.0 -pymarkups,0.0477864201247166,1.79679903237181,-0.289861290944383,https://salsa.debian.org/python-team/packages/pymarkups, https://github.com/retext-project/pymarkups.git,4159.156273148148,2,3,0,4.0,17.0,0.0,0.0 -pympler,-2.5554616545803,1.3732171766135,-3.6067183245679,https://salsa.debian.org/python-team/packages/pympler, https://github.com/pympler/pympler.git,5079.409039351852,13,20,0,22.0,154.0,0.0,0.0 -pympress,-1.08240230765555,0.610933444579991,-1.39376729482119,https://salsa.debian.org/python-team/packages/pympress, https://github.com/Cimbali/pympress/commits/master,5185.326875,55,11,0,0.0,0.0,0.0,0.0 -pymssql,1.04134159755709,3.40258559120885,0.0397901466042378,https://salsa.debian.org/python-team/packages/pymssql, https://github.com/pymssql/pymssql.git,4832.040821759259,33,33,0,37.0,0.0,0.0,4.0 -pyodbc,0.885597744996121,3.48776705118848,0.0174921768342335,https://salsa.debian.org/python-team/packages/pyodbc, https://github.com/mkleehammer/pyodbc.git,5503.078981481482,46,20,0,0.0,271.0,0.0,0.0 -pyopenssl,0.468518289980903,1.10581965565087,0.153109358014596,https://salsa.debian.org/python-team/packages/pyopenssl, https://github.com/pyca/pyopenssl,5770.23,60,60,1,0.0,0.0,0.0,0.0 -pyosmium,-0.485740471775393,1.11244100152356,-0.814987299062785,https://salsa.debian.org/debian-gis-team/pyosmium/, https://github.com/osmcode/pyosmium.git,3345.7311574074074,7,19,0,21.0,0.0,0.0,0.0 -pyotherside,0.0820831316590045,2.69409174321841,-0.717916554547958,https://salsa.debian.org/python-team/packages/pyotherside, https://github.com/thp/pyotherside,4575.2678703703705,2,16,0,13.0,0.0,0.0,0.0 -pyparsing,0.829153777961705,1.89883017408123,0.287084196535926,https://salsa.debian.org/python-team/packages/pyparsing, https://github.com/pyparsing/pyparsing,4066.194490740741,57,14,1,59.0,0.0,0.0,1.0 -pypng,0.657025428296012,3.69424360974505,-0.160382168531365,https://salsa.debian.org/debian/pypng, https://github.com/drj11/pypng,5144.019641203704,4,24,0,22.0,78.0,0.0,0.0 -pyraf,-0.127260534026053,2.09946159976478,-0.564345468370832,https://salsa.debian.org/debian-astro-team/pyraf, https://github.com/iraf-community/pyraf.git,5659.829166666666,7,26,0,17.0,0.0,0.0,0.0 -pyregion,-0.542329876213893,-0.234135264408173,-0.608660181675525,https://salsa.debian.org/debian-astro-team/pyregion/, https://github.com/astropy/pyregion.git,4914.63974537037,1,20,0,14.0,57.0,0.0,0.0 -pyresample,-1.15344876822413,-1.09505537838743,-1.16534539737266,https://salsa.debian.org/debian-gis-team/pyresample, https://github.com/pytroll/pyresample,4965.407013888889,20,51,2,45.0,0.0,0.0,0.0 -pysal,-0.673878057006093,-0.385551627478749,-0.712976291015805,https://salsa.debian.org/debian-gis-team/pysal, https://github.com/pysal/pysal.git,5281.823553240741,17,89,0,0.0,0.0,0.0,27.0 -pysimplesoap,0.554909504649339,2.21506648945914,0.0606250550420368,https://salsa.debian.org/python-team/packages/pysimplesoap, https://github.com/pysimplesoap/pysimplesoap,4858.203993055556,4,57,0,37.0,0.0,0.0,0.0 -PyTables,0.181612795535151,0.514236033227897,-0.0078057701177782,https://salsa.debian.org/science-team/pytables, https://github.com/PyTables/PyTables,5755.91300925926,18,124,2,102.0,0.0,0.0,14.0 -pytaglib,0.490833307822017,3.79837683881992,-0.646536884650869,https://salsa.debian.org/python-team/packages/pytaglib, https://github.com/supermihi/pytaglib,4465.748599537037,1,9,0,7.0,97.0,0.0,0.0 -pyte,0.363748544509015,3.5348771032266,-0.546637713523735,https://salsa.debian.org/python-team/modules/pyte, https://github.com/selectel/pyte,4528.145405092592,19,17,0,31.0,0.0,0.0,1.0 -pytest,-0.0946842032874001,-0.0017053723348632,-0.134620684989344,https://salsa.debian.org/python-team/packages/pytest, https://github.com/pytest-dev/pytest.git,5788.108738425926,365,661,0,380.0,0.0,0.0,32.0 -pytest-django,-0.547512504106694,2.38212809870776,-1.32335023590007,https://salsa.debian.org/python-team/packages/pytest-django, https://github.com/pytest-dev/pytest-django,5190.7967708333335,98,53,2,0.0,0.0,0.0,0.0 -pytest-forked,-0.283596560280026,2.29514601749755,-0.853292027559784,https://salsa.debian.org/python-team/packages/pytest-forked, https://github.com/pytest-dev/pytest-forked.git,2315.652442129629,5,15,0,14.0,0.0,0.0,0.0 -pytest-httpbin,-2.03594697551207,-0.142189710639132,-2.55876256343517,https://salsa.debian.org/python-team/packages/pytest-httpbin, https://github.com/kevin1024/pytest-httpbin,3280.740266203704,1,13,0,12.0,26.0,0.0,0.0 -pytest-mock,-0.251565725072969,1.69811506806052,-0.974021991086496,https://salsa.debian.org/python-team/packages/pytest-mock, https://github.com/pytest-dev/pytest-mock.git,3405.9988541666667,26,48,0,65.0,0.0,0.0,1.0 -pytest-openfiles,0.0198117055865297,1.53487457139493,-0.246139013033888,https://salsa.debian.org/python-team/packages/pytest-openfiles, https://github.com/astropy/pytest-openfiles,4143.710324074074,7,35,1,0.0,16.0,0.0,1.0 -aiosmtpd,-0.670307013829362,1.48445222707364,-1.11600762028611,https://salsa.debian.org/python-team/packages/python-aiosmtpd, https://github.com/aio-libs/aiosmtpd,2704.0818171296296,23,23,3,35.0,45.0,0.0,1.0 -argon2-cffi,-0.507428695626086,2.47954626772091,-1.24583720203671,https://salsa.debian.org/python-team/packages/python-argon2, https://github.com/hynek/argon2-cffi,2912.679050925926,15,4,0,17.0,90.0,0.0,0.0 -arrow,-0.0155472431025059,1.37635812822856,-0.296265816143172,https://salsa.debian.org/debian/python-arrow, https://github.com/crsmithdev/arrow.git,3968.0696527777777,101,197,0,239.0,717.0,0.0,0.0 -asteval,0.125972288937792,2.77679984697409,-0.53943895529481,https://salsa.debian.org/science-team/python-asteval, https://github.com/newville/asteval.git,4236.665451388889,4,25,0,22.0,85.0,0.0,0.0 -bitarray,0.1853646535503,2.71696211707387,-0.389856738541388,https://salsa.debian.org/python-team/packages/python-bitarray, https://github.com/ilanschnell/bitarray.git,5492.002303240741,4,24,0,22.0,174.0,0.0,0.0 -BitBucket-api,-1.80768047140336,0.655321433075774,-2.42711934359575,https://salsa.debian.org/python-team/packages/python-bitbucket-api, https://github.com/Sheeprider/BitBucket-api,2673.033715277778,1,9,0,4.0,15.0,0.0,1.0 -blessed,0.232652358552523,3.20605056891515,-0.718351254037988,https://salsa.debian.org/python-team/packages/python-blessed, https://github.com/jquast/blessed,4419.870092592592,11,20,0,23.0,100.0,0.0,0.0 -BTrees,0.131771356743149,2.79278179856863,-0.632603814290702,https://salsa.debian.org/python-team/packages/python-btrees, https://github.com/zopefoundation/BTrees.git,4005.382384259259,5,28,0,19.0,54.0,0.0,0.0 -python-bugzilla,-0.563366997607635,2.10695252748837,-1.21240516258286,https://salsa.debian.org/python-team/packages/python-bugzilla, https://github.com/python-bugzilla/python-bugzilla,5775.498171296296,51,11,0,52.0,135.0,0.0,0.0 -python-can,-1.20066338058102,0.794195621456955,-1.69593692380182,https://salsa.debian.org/python-team/packages/python-can, https://github.com/hardbyte/python-can.git,3258.697708333333,133,94,0,145.0,591.0,0.0,0.0 -letsencrypt,0.0530697005848172,0.205062033778056,-0.034501071006792,https://salsa.debian.org/letsencrypt-team/certbot/certbot, https://github.com/letsencrypt/letsencrypt.git,4226.966990740741,268,343,0,391.0,0.0,0.0,143.0 -letsencrypt,0.164376385123369,1.1569070052723,-0.113658319351683,https://salsa.debian.org/letsencrypt-team/certbot/certbot-apache, https://github.com/letsencrypt/letsencrypt,4226.966990740741,268,343,2,391.0,0.0,0.0,143.0 -certbot,-0.0402097724502475,2.61410988299018,-0.711802185480417,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-cloudflare, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 -certbot,-1.40219072428383,0.970004158695313,-1.95674155999233,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-digitalocean, https://github.com/certbot/certbot.git,4226.966990740741,268,343,0,391.0,635.0,0.0,143.0 -click,0.533261133725363,1.86963549867411,0.0413641366647804,https://salsa.debian.org/python-team/packages/python-click, https://github.com/pallets/click.git,3511.524525462963,222,172,0,330.0,478.0,0.0,0.0 -clint,-0.0438781208296862,1.71074973976383,-0.429437396504159,https://salsa.debian.org/python-team/packages/python-clint, https://github.com/kennethreitz/clint,2517.082002314815,3,67,1,52.0,193.0,0.0,0.0 -python-cloudflare,0.0381996032608938,2.77406419988188,-0.666375037689694,https://salsa.debian.org/python-team/packages/python-cloudflare, https://github.com/cloudflare/python-cloudflare,3286.4968981481484,13,32,0,35.0,159.0,0.0,2.0 -python-cluster,-0.559555280381538,1.74450964876915,-1.27322096237344,https://salsa.debian.org/python-team/packages/python-cluster, https://github.com/exhuma/python-cluster.git,2854.787951388889,1,7,0,4.0,14.0,0.0,0.0 -py-cpuinfo,0.210056549819962,2.84171853313126,-0.377044596104247,https://salsa.debian.org/python-team/packages/python-cpuinfo, https://github.com/workhorsy/py-cpuinfo,3300.573159722222,1,24,0,15.0,92.0,0.0,0.0 -cryptography,0.0542953295686275,2.87199250330208,-0.555070287642916,https://salsa.debian.org/python-team/packages/python-cryptography-vectors, https://github.com/pyca/cryptography/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -cs,-1.58638712281207,0.481665568993578,-2.23329067501132,https://salsa.debian.org/python-team/packages/python-cs, https://github.com/exoscale/cs,3277.6950578703704,6,20,0,18.0,35.0,0.0,0.0 -django-celery-beat,-1.53400001056745,1.88710259850437,-2.39053964577473,https://salsa.debian.org/python-team/packages/python-django-celery-beat, https://github.com/celery/django-celery-beat,2687.879664351852,111,13,1,108.0,427.0,0.0,0.0 -django-csp,-1.45831743267382,1.33984311418151,-2.16861147719032,https://salsa.debian.org/python-team/packages/python-django-csp, https://github.com/mozilla/django-csp.git,4885.718310185185,17,40,0,46.0,145.0,0.0,0.0 -django-debug-toolbar,-0.794791716705528,-0.149717856397106,-1.02400006654311,https://salsa.debian.org/python-team/packages/python-django-debug-toolbar, https://github.com/jazzband/django-debug-toolbar.git,5583.444155092592,108,202,0,246.0,112.0,0.0,26.0 -django-ordered-model,-1.24083503715617,1.32905395625878,-1.87733775304822,https://salsa.debian.org/python-team/packages/python-django-ordered-model, https://github.com/bfirsh/django-ordered-model.git,5015.315243055556,29,40,0,50.0,244.0,0.0,1.0 -django-push-notifications,-2.88352714154921,1.1630797643721,-4.06008617589567,https://salsa.debian.org/python-team/packages/python-django-push-notifications, https://github.com/jazzband/django-push-notifications,3892.0095254629623,69,44,1,87.0,594.0,0.0,5.0 -python-djvulibre,1.83430171603396,4.14861860289277,0.733031973392286,https://salsa.debian.org/python-team/packages/python-djvulibre, https://github.com/jwilk/python-djvulibre,5340.873275462963,0,1,0,1.0,12.0,0.0,0.0 -eventlet,0.252115609807978,1.15186457181384,-0.198055516809458,https://salsa.debian.org/openstack-team/third-party/python-eventlet, https://github.com/eventlet/eventlet.git,5751.265034722223,91,103,0,136.0,688.0,0.0,0.0 -feather,-1.25068288454204,1.70492416407619,-2.43608687570517,https://salsa.debian.org/python-team/packages/python-feather-format, https://github.com/wesm/feather,1834.8181597222224,30,9,0,30.0,331.0,0.0,0.0 -python-fedora,-2.29967407391479,0.484863817047441,-3.14279644361132,https://salsa.debian.org/python-team/packages/python-fedora, https://github.com/fedora-infra/python-fedora,4670.561863425926,38,64,0,41.0,65.0,0.0,0.0 -py-filelock,0.25864042246865,2.56448428979434,-0.205671902682833,https://salsa.debian.org/debian/python-filelock, https://github.com/tox-dev/py-filelock,3582.474849537037,31,14,0,41.0,104.0,0.0,0.0 -python-fitbit,-1.68563475320931,-1.0235675077146,-1.816362836865,https://salsa.debian.org/med-team/python-fitbit, https://github.com/orcasgit/python-fitbit,2733.117696759259,1,37,1,26.0,181.0,0.0,0.0 -fswrap,-2.10651306806468,0.310291029018578,-2.73445256296084,https://salsa.debian.org/debian/python-fswrap, https://github.com/hyde/fswrap,1272.071238425926,0,7,0,3.0,6.0,0.0,0.0 -fudge,-1.65644390810741,-0.304248052417325,-1.92122880751373,https://salsa.debian.org/python-team/packages/python-fudge, https://github.com/fudge-py/fudge,3423.978506944444,2,11,0,7.0,13.0,0.0,0.0 -python-future,0.503059489203248,1.68720030424491,0.0486866337929686,https://salsa.debian.org/python-team/packages/python-future, https://github.com/PythonCharmers/python-future,3485.568784722222,22,94,0,106.0,493.0,0.0,0.0 -gitdb,-0.0108595084789796,1.21489590869819,-0.300716932513031,https://salsa.debian.org/python-team/packages/python-gitdb, https://github.com/gitpython-developers/gitdb,4929.933865740741,7,31,0,29.0,67.0,0.0,0.0 -python-gitlab,0.220589704011694,1.52429893960614,-0.205214686101085,https://salsa.debian.org/debian/python-pygitlab, https://github.com/python-gitlab/python-gitlab.git,3961.124108796296,129,178,0,222.0,130.0,0.0,0.0 -http-parser,0.155151774589016,3.18380891504713,-0.640356279887151,https://salsa.debian.org/python-team/packages/python-http-parser, https://github.com/benoitc/http-parser,3280.316724537037,14,48,2,29.0,90.0,0.0,0.0 -hug,-3.03973805631588,1.04039550324097,-4.50484302225035,https://salsa.debian.org/debian/python-hug, https://github.com/timothycrosley/hug.git,2905.4028935185183,23,104,0,96.0,464.0,0.0,5.0 -humanize,0.206016004968924,2.32118743308446,-0.279157364985436,https://salsa.debian.org/python-team/packages/python-humanize, https://github.com/jmoiron/humanize,3901.559085648148,11,59,0,53.0,157.0,0.0,0.0 -hyperframe,0.183494579463071,2.89676769623262,-0.381648875212278,https://salsa.debian.org/debian/python-hyperframe, https://github.com/python-hyper/hyperframe.git,2262.714363425926,4,18,0,16.0,26.0,0.0,0.0 -python-ilorest-library,-2.00009801063097,0.337848801444391,-2.47080554403403,https://salsa.debian.org/tijuca/python-ilorest, https://github.com/HewlettPackard/python-ilorest-library.git,1431.336134259259,12,11,0,18.0,145.0,0.0,5.0 -inflect,-0.830879998371281,1.37567925173832,-1.43639488329342,https://salsa.debian.org/python-team/packages/python-inflect, https://github.com/jazzband/inflect.git,4917.082638888889,24,37,0,50.0,152.0,0.0,0.0 -python-iniparse,0.605974173936543,3.1142228173649,-0.100886785208172,https://salsa.debian.org/debian/python-iniparse, https://github.com/candlepin/python-iniparse,5579.407858796297,6,8,0,13.0,25.0,0.0,0.0 -internetarchive,-1.21320060842117,-0.227281650263067,-1.37656063197664,https://salsa.debian.org/python-team/packages/python-internetarchive, https://github.com/jjjake/internetarchive.git,4122.965370370371,16,46,0,49.0,270.0,0.0,0.0 -json-rpc,-1.03454449289022,1.89018329970566,-1.82477718457792,https://salsa.debian.org/python-team/packages/python-jsonrpc, https://github.com/pavlov99/json-rpc,3540.9974421296297,17,29,0,27.0,76.0,0.0,0.0 -langdetect,-0.358621578481637,1.81810975299951,-0.796341757795692,https://salsa.debian.org/python-team/packages/python-langdetect, https://github.com/Mimino666/langdetect,2551.662488425926,2,11,0,9.0,151.0,0.0,0.0 -latexcodec,0.0827349547035988,1.88136424198425,-0.356864006660853,https://salsa.debian.org/python-team/packages/python-latexcodec, https://github.com/mcmtroffaes/latexcodec,3743.919965277778,5,9,0,8.0,31.0,0.0,0.0 -line_profiler,-0.171840946989225,2.57842674496517,-0.918337546009102,https://salsa.debian.org/python-team/packages/python-line-profiler, https://github.com/pyutils/line_profiler,5567.713310185185,22,30,0,39.0,110.0,0.0,0.0 -python-livereload,0.107629861462521,1.59693242173507,-0.353457889372476,https://salsa.debian.org/debian/python-livereload, https://github.com/lepture/python-livereload,4103.893969907407,16,51,1,51.0,159.0,0.0,0.0 -python-llfuse,0.419862830066885,1.27033335940079,0.0164187330742263,https://salsa.debian.org/python-team/packages/python-llfuse, https://github.com/python-llfuse/python-llfuse.git,4733.746342592593,11,9,0,15.0,32.0,0.0,0.0 -lupa,-0.954137149067827,2.14983595509208,-1.89504130086398,https://salsa.debian.org/python-team/packages/python-lupa, https://github.com/scoder/lupa,4904.859849537037,9,18,1,23.0,74.0,0.0,0.0 -python-measurement,-1.3916124319226,1.26850387586932,-1.96155033515476,https://salsa.debian.org/python-team/packages/python-measurement, https://github.com/coddingtonbear/python-measurement,3798.2584953703695,10,14,0,13.0,57.0,0.0,0.0 -mock,0.165979302419957,0.744540067878074,-0.0468504603130108,https://salsa.debian.org/python-team/packages/python-mock, https://github.com/testing-cabal/mock,4146.630486111111,84,22,0,89.0,247.0,0.0,0.0 -molotov,-2.88276850245155,-0.980473075631627,-3.30813935868335,https://salsa.debian.org/python-team/packages/python-molotov, https://github.com/loads/molotov.git,3129.6588194444444,9,11,0,15.0,47.0,0.0,0.0 -multidict,0.479208549500178,3.12807590463098,-0.199532776277039,https://salsa.debian.org/python-team/packages/python-multidict, https://github.com/aio-libs/multidict.git,2868.3713194444445,43,8,0,52.0,109.0,0.0,0.0 -munch,-0.246501339414158,0.598382084242946,-0.418050250509477,https://salsa.debian.org/python-team/packages/python-munch, https://github.com/Infinidat/munch.git,4904.2753125,6,26,0,20.0,72.0,0.0,0.0 -mysqlclient,0.436295905512352,0.861066234678428,0.179430934603889,https://salsa.debian.org/python-team/packages/python-mysqldb, https://github.com/PyMySQL/mysqlclient,5425.159363425926,54,38,1,72.0,445.0,0.0,4.0 -ofxclient,-0.470102582055492,2.15093353115901,-1.37870903178206,https://salsa.debian.org/python-team/packages/python-ofxclient, https://github.com/captin411/ofxclient,2154.9641203703704,2,13,0,12.0,102.0,0.0,0.0 -python-opcua,-0.97328830284469,0.815420320297958,-1.59838933545828,https://salsa.debian.org/python-team/modules/python-opcua, https://github.com/FreeOpcUa/python-opcua,2848.7678356481483,95,42,1,87.0,31.0,0.0,2.0 -osmapi,-0.352056618498373,1.84498408927228,-0.782152601269039,https://salsa.debian.org/debian-gis-team/python-osmapi, https://github.com/metaodi/osmapi.git,3568.77837962963,2,9,0,7.0,37.0,0.0,0.0 -paho.mqtt.python,-0.26385690320408,1.51784573778608,-0.63787308457193,https://salsa.debian.org/debian/python-paho-mqtt, https://github.com/eclipse/paho.mqtt.python.git,3273.1238194444445,17,55,0,64.0,202.0,0.0,0.0 -pbcommand,-0.560074431295294,1.38129287745035,-1.12293844781845,https://salsa.debian.org/med-team/python-pbcommand, https://github.com/PacificBiosciences/pbcommand,3024.5842592592594,0,28,1,11.0,17.0,0.0,0.0 -pbcore,-0.465250971692481,1.03081850291822,-0.971268367521537,https://salsa.debian.org/med-team/python-pbcore, https://github.com/PacificBiosciences/pbcore,4123.129305555555,2,42,0,15.0,57.0,0.0,0.0 -python-pcl,-2.48956573632986,-0.89963330295256,-2.79241451066553,https://salsa.debian.org/python-team/packages/python-pcl, https://github.com/strawlab/python-pcl/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -py_zipkin,-0.749831772430786,1.66372016233673,-1.27858003886142,https://salsa.debian.org/python-team/packages/python-py-zipkin, https://github.com/Yelp/py_zipkin,2422.062048611111,16,29,1,25.0,71.0,0.0,0.0 -pyasn1-modules,0.880366492732551,3.44639951931467,0.0828398688507482,https://salsa.debian.org/python-team/packages/python-pyasn1-modules, https://github.com/etingof/pyasn1-modules.git,3319.679317129629,3,11,0,7.0,43.0,0.0,0.0 -pyelftools,-0.159782903870593,0.952114214528198,-0.436867136215813,https://salsa.debian.org/debian/python-pyelftools, https://github.com/eliben/pyelftools.git,4475.251006944444,75,34,0,86.0,286.0,0.0,8.0 -pykka,-0.128480958414865,1.40113639421173,-0.446569578796732,https://salsa.debian.org/python-team/packages/python-pykka, https://github.com/jodal/pykka.git,4770.51550925926,5,9,0,11.0,42.0,0.0,1.0 -pyld,-1.1864691928245,0.855480737337874,-1.61991395432354,https://salsa.debian.org/python-team/packages/python-pyld, https://github.com/digitalbazaar/pyld,4498.300578703704,14,14,1,23.0,104.0,0.0,0.0 -pylibacl,0.131528837376331,1.00713150206336,-0.132374615279565,https://salsa.debian.org/debian/python-pylibacl, https://github.com/iustin/pylibacl,5414.658530092593,1,3,0,2.0,19.0,0.0,0.0 -PyPump,-1.95077230562065,0.332799268189091,-2.56602633210496,https://salsa.debian.org/python-team/packages/python-pypump, https://github.com/xray7224/PyPump,1973.6342824074077,0,28,2,14.0,34.0,0.0,0.0 -pyqrcode,0.356900356562613,2.94209030158286,-0.219337592691645,https://salsa.debian.org/debian/python-pyqrcode, https://github.com/mnooner256/pyqrcode.git,1108.5763078703703,0,8,0,6.0,59.0,0.0,0.0 -pyqtgraph,0.564161547918785,2.40518051592864,-0.0614102206070495,https://salsa.debian.org/science-team/python-pyqtgraph, https://github.com/pyqtgraph/pyqtgraph.git,4007.3308217592594,135,173,0,229.0,0.0,0.0,7.0 -pyramid_chameleon,-3.39014661132606,-0.280976693069101,-4.23557657958116,https://salsa.debian.org/python-team/packages/python-pyramid-chameleon, https://github.com/Pylons/pyramid_chameleon,4187.212569444445,2,17,0,11.0,25.0,0.0,0.0 -pywebview,-1.31751976724405,1.12206991269327,-1.80202998207921,https://salsa.debian.org/python-team/packages/python-pywebview, https://github.com/r0x0r/pywebview,3307.0006597222223,61,74,0,101.0,158.0,0.0,1.0 -python-qrcode,0.276571432870141,1.79750466921465,-0.157682766587389,https://salsa.debian.org/python-team/packages/python-qrcode, https://github.com/lincolnloop/python-qrcode.git,4693.745821759259,11,50,0,46.0,387.0,0.0,3.0 -releases,-1.91185739418786,-0.0482016172746844,-2.42474926732471,https://salsa.debian.org/python-team/packages/python-releases, https://github.com/bitprophet/releases.git,3728.633414351852,2,9,0,9.0,54.0,0.0,0.0 -requests-cache,0.0096011448688481,2.34072487083404,-0.463486914026279,https://salsa.debian.org/python-team/packages/python-requests-cache, https://github.com/requests-cache/requests-cache,4266.393923611111,17,43,3,51.0,224.0,0.0,0.0 -schema_salad,-0.116017361266221,1.53059926612304,-0.514023281621855,https://salsa.debian.org/python-team/packages/python-schema-salad, https://github.com/common-workflow-language/schema_salad,3066.416192129629,34,21,0,36.0,72.0,0.0,0.0 -shellescape,0.216102898821056,2.95304752231742,-0.478184520234403,https://salsa.debian.org/python-team/packages/python-shellescape, https://github.com/chrissimpkins/shellescape,2183.791458333333,2,2,0,2.0,5.0,0.0,0.0 -shodan-python,-0.0231660335595108,2.27534196489807,-0.562754026031234,https://salsa.debian.org/python-team/packages/python-shodan, https://github.com/achillean/shodan-python,4784.580127314815,12,27,0,24.0,85.0,0.0,1.0 -sievelib,-1.49534307318991,1.30516239770556,-2.32989278557723,https://salsa.debian.org/python-team/packages/python-sievelib, https://github.com/tonioo/sievelib,3482.887233796296,4,23,1,16.0,39.0,0.0,0.0 -uritemplate,-0.942591012539653,1.70560748767681,-1.49041305963889,https://salsa.debian.org/debian/python-sigmavirus24-urltemplate, https://github.com/python-hyper/uritemplate.git,3887.772662037037,5,19,0,17.0,38.0,0.0,1.0 -stetl,-0.380951869732433,1.85992160222997,-0.815818728622616,https://salsa.debian.org/debian-gis-team/python-stetl, https://github.com/geopython/stetl.git,4123.303784722222,1,12,0,9.0,17.0,0.0,0.0 -python-swiftclient,-0.333099361712944,0.597745666944376,-0.614475827420347,https://salsa.debian.org/openstack-team/clients/python-swiftclient, https://github.com/openstack/python-swiftclient.git,4179.361851851852,20,194,0,118.0,34.0,0.0,0.0 -tmdbsimple,-2.14441266097874,0.346488550190115,-2.75436844080196,https://salsa.debian.org/python-team/packages/python-tmdbsimple, https://github.com/celiao/tmdbsimple,2973.5930324074075,10,20,0,20.0,89.0,0.0,0.0 -twilio-python,-1.44341258639509,1.00650092133662,-2.03598164526984,https://salsa.debian.org/python-team/packages/python-twilio, https://github.com/twilio/twilio-python,5203.348668981482,54,122,0,106.0,273.0,0.0,0.0 -python-twitter,0.418895042591163,2.60845172198667,-0.560887813528878,https://salsa.debian.org/python-team/packages/python-twitter, https://github.com/bear/python-twitter.git,3385.4683449074078,27,157,0,138.0,567.0,0.0,10.0 -webob,0.269248114414342,0.939408926616269,-0.0205851245589964,https://salsa.debian.org/python-team/packages/python-webob, https://github.com/Pylons/webob,5771.468935185185,14,108,0,94.0,224.0,0.0,0.0 -websockets,0.821434798697177,2.80004322389045,0.0649687211872258,https://salsa.debian.org/python-team/packages/python-websockets, https://github.com/aaugustin/websockets.git,2952.859398148148,59,16,0,63.0,363.0,0.0,0.0 -python-zeep,-0.308243113662642,1.52801230282343,-0.697542519772299,https://salsa.debian.org/tryton-team/python-zeep, https://github.com/mvantellingen/python-zeep.git,2573.7169907407406,110,44,0,114.0,549.0,0.0,0.0 -python3-lxc,0.378488308112486,2.85424123094581,-0.156269480475037,https://salsa.debian.org/lxc-team/python3-lxc, https://github.com/lxc/python3-lxc.git,1985.898935185185,0,11,0,9.0,38.0,0.0,0.0 -proselint,-0.256056454127872,1.5321180857264,-0.808081838125919,https://salsa.debian.org/python-team/packages/python3-proselint, https://github.com/amperser/proselint,3160.1412962962963,47,44,5,71.0,295.0,0.0,0.0 -typed_ast,0.187764234770539,2.5189505626835,-0.252025964650492,https://salsa.debian.org/python-team/packages/python3-typed-ast, https://github.com/python/typed_ast.git,2639.050300925926,22,9,0,25.0,82.0,0.0,0.0 -pyvows,-3.58551376510932,-1.4150725383474,-4.24534641758732,https://salsa.debian.org/python-team/packages/pyvows, https://github.com/heynemann/pyvows.git,4554.961076388889,1,29,0,13.0,44.0,0.0,3.0 -pywt,0.541606427789053,2.18930347224667,-0.0802426890426814,https://salsa.debian.org/python-team/packages/pywavelets, https://github.com/PyWavelets/pywt.git,5734.799560185185,25,28,0,44.0,303.0,0.0,1.0 -qgit,0.392741865383721,1.27795033678636,-0.0312896728271155,https://salsa.debian.org/debian/qgit, https://github.com/tibirna/qgit.git,5665.688206018519,28,35,0,46.0,79.0,0.0,1.0 -qhull,0.404244927753499,1.36220865514522,0.0359891539047283,https://salsa.debian.org/science-team/qhull, https://github.com/qhull/qhull,1796.1123958333333,6,20,0,27.0,120.0,0.0,1.0 -qps,1.51097704828947,2.60616501600994,0.845280056568653,https://salsa.debian.org/lxqt-team/qps, https://github.com/lxqt/qps.git,3468.927199074074,55,15,0,47.0,54.0,0.0,0.0 -QR-Code-generator,0.389843379095431,2.76920702989891,-0.0955378774297983,https://salsa.debian.org/yangfl-guest/QR-Code-generator, https://github.com/nayuki/QR-Code-generator,2688.5360069444446,1,6,0,6.0,205.0,0.0,0.0 -qtkeychain,0.0558876134224342,0.44246954990915,-0.0879663492093869,https://salsa.debian.org/qt-kde-team/extras/qtkeychain, https://github.com/frankosterfeld/qtkeychain,4430.699548611111,28,41,0,56.0,171.0,0.0,6.0 -qtltools,-0.81443123075593,0.855524996672882,-1.12232114351183,https://salsa.debian.org/med-team/qtltools, https://github.com/qtltools/qtltools/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -qTox,-0.186338231464814,1.55035477819234,-0.494760472921222,https://salsa.debian.org/yangfl-guest/qTox, https://github.com/qTox/qTox,3154.688668981481,156,294,7,243.0,272.0,0.0,41.0 -qwinff,-0.0728687395832074,2.35415592103433,-0.614807949382776,https://salsa.debian.org/multimedia-team/qwinff, https://github.com/qwinff/qwinff,3333.9424189814813,0,10,0,6.0,45.0,0.0,0.0 -callr,0.115138385563855,2.37177972751741,-0.344825316603976,https://salsa.debian.org/r-pkg-team/r-cran-callr, https://github.com/r-lib/callr.git,2730.1466203703703,8,18,0,18.0,57.0,0.0,0.0 -caret,-0.158911509202771,1.37470649956735,-0.441038106924103,https://salsa.debian.org/r-pkg-team/r-cran-caret, https://github.com/topepo/caret.git,3231.0891319444445,48,79,0,97.0,710.0,0.0,0.0 -curl,0.077091534438309,1.50470953659052,-0.260737954025918,https://salsa.debian.org/r-pkg-team/r-cran-curl, https://github.com/jeroen/curl,3312.506412037037,11,17,0,20.0,85.0,0.0,0.0 -dygraphs,-0.0490909843109079,3.39358348954332,-0.913506460568269,https://salsa.debian.org/r-pkg-team/r-cran-dygraphs, https://github.com/rstudio/dygraphs/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -lubridate,0.260151310883355,2.70092580430642,-0.24300364732261,https://salsa.debian.org/r-pkg-team/r-cran-lubridate, https://github.com/tidyverse/lubridate.git,5324.846898148148,53,93,0,89.0,831.0,0.0,0.0 -raster,-0.0742369850961889,2.25679648386161,-0.523290840169459,https://salsa.debian.org/r-pkg-team/r-cran-raster, https://github.com/rspatial/raster.git,1952.0897800925925,9,23,0,25.0,267.0,0.0,0.0 -RNeXML,-0.307546135054736,1.80867512306941,-0.79915015729506,https://salsa.debian.org/r-pkg-team/r-cran-rnexml, https://github.com/ropensci/RNeXML.git,3480.1707407407407,2,22,0,12.0,26.0,0.0,0.0 -scales,0.339304747745806,2.67541230737203,-0.18233206889075,https://salsa.debian.org/r-pkg-team/r-cran-scales, https://github.com/r-lib/scales,4768.619074074074,32,47,1,48.0,231.0,0.0,0.0 -scatterD3,-0.535656644392216,0.99411321932811,-0.809953264867216,https://salsa.debian.org/r-pkg-team/r-cran-scatterd3, https://github.com/juba/scatterD3.git,3041.2167939814813,1,11,0,5.0,46.0,0.0,0.0 -sendmailR,-0.310367019043398,1.27318906199562,-0.586067363523717,https://salsa.debian.org/r-pkg-team/r-cran-sendmailr, https://github.com/olafmersmann/sendmailR/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sjmisc,-0.397357618721593,1.88980482031592,-0.848413921848364,https://salsa.debian.org/r-pkg-team/r-cran-sjmisc, https://github.com/strengejacke/sjmisc/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sjPlot,-0.423579227455836,1.7243482083958,-0.862471834321145,https://salsa.debian.org/r-pkg-team/r-cran-sjplot, https://github.com/strengejacke/sjPlot/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sp,0.0394136667023216,1.27230166723756,-0.229566443741296,https://salsa.debian.org/r-pkg-team/r-cran-sp, https://github.com/edzer/sp.git,2848.9715277777777,1,18,0,9.0,78.0,0.0,0.0 -tibble,0.335422047522137,2.23920900578415,-0.16353602555831,https://salsa.debian.org/r-pkg-team/r-cran-tibble, https://github.com/tidyverse/tibble/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rabbit,-1.0753863465153,-0.452461320473391,-1.25152304417292,https://salsa.debian.org/ruby-team/rabbit, https://github.com/rabbit-shocker/rabbit,5766.766296296296,8,40,0,38.0,62.0,0.0,0.0 -rally,-2.87869359307887,-1.55225765607196,-3.27600983949173,https://salsa.debian.org/openstack-team/services/rally, https://github.com/openstack/rally.git,3774.9832175925926,69,441,0,282.0,33.0,0.0,0.0 -ranger,0.158557832942648,0.887452810426949,-0.118876488946076,https://salsa.debian.org/debian/ranger, https://github.com/ranger/ranger.git,5250.545347222223,73,205,0,197.0,480.0,0.0,158.0 -RBDOOM-3-BFG,-0.492504028084634,0.802143110089703,-0.84281399652303,https://salsa.debian.org/games-team/rbdoom3bfg, https://github.com/RobertBeckebans/RBDOOM-3-BFG,4030.942662037037,14,74,0,63.0,321.0,0.0,0.0 -rbenv,0.566539915958547,3.41510922632661,-0.301697211783975,https://salsa.debian.org/ruby-team/rbenv, https://github.com/rbenv/rbenv,4512.975162037037,36,100,0,106.0,1162.0,0.0,87.0 -rblcheck,0.244294100136855,1.16990268652702,-0.176956618224791,https://github.com/rfc1036/rblcheck,https://github.com/rfc1036/rblcheck,5711.447627314815,2,1,0,3.0,3.0,0.0,0.0 -rc,3.26364583749779,5.89194735951154,1.96439915463499,https://salsa.debian.org/debian/rc, https://github.com/rakitzis/rc,3601.3893981481483,12,15,1,10.0,45.0,0.0,0.0 -rclone,0.33204200535613,1.71723277880513,-0.123665624108888,https://salsa.debian.org/go-team/packages/rclone, https://github.com/rclone/rclone.git,4043.695185185185,821,36,0,394.0,491.0,0.0,87.0 -re2c,0.049047964610728,0.536436632360368,-0.093390292337921,https://salsa.debian.org/jcfp/re2c, https://github.com/skvadrik/re2c,5784.050370370371,20,22,0,29.0,117.0,0.0,1.0 -rear,-0.314712315367848,0.588088744437776,-0.648431856214207,https://salsa.debian.org/debian/rear, https://github.com/rear/rear.git,5387.781423611111,35,162,0,105.0,43.0,0.0,10.0 -recommonmark,0.0137812846115271,1.86099194261938,-0.364642881828289,https://salsa.debian.org/python-team/packages/recommonmark, https://github.com/readthedocs/recommonmark.git,2822.8469328703704,10,35,0,34.0,262.0,0.0,0.0 -reflex,-0.974725206595286,2.01787465644879,-1.63618860105416,https://salsa.debian.org/debian/reflex, https://github.com/cespare/reflex.git,3024.801863425926,4,7,0,8.0,114.0,0.0,0.0 -renderdoc,-0.571652215528999,1.36822849692371,-1.076460589554,https://salsa.debian.org/xorg-team/app/renderdoc, https://github.com/baldurk/renderdoc.git,3576.978726851852,255,31,0,221.0,435.0,0.0,12.0 -reptyr,0.95907542468885,3.54103164497108,0.0685934083853369,https://github.com/nelhage/reptyr/tree/debian,https://github.com/nelhage/reptyr,4619.470868055556,13,37,0,39.0,113.0,0.0,0.0 -selinux,0.567588551889924,4.5013957134859,-0.824730361279045,https://salsa.debian.org/selinux-team/restorecond, https://github.com/SELinuxProject/selinux.git,5593.80261574074,179,30,0,124.0,83.0,0.0,12.0 -alternative-toolbar,-0.296742282819441,1.13315191862386,-0.5644700994867,https://github.com/fossfreedom/alternative-toolbar/tree/debian,https://github.com/fossfreedom/alternative-toolbar,3255.9015277777776,2,19,0,16.0,90.0,0.0,0.0 -catkin,-0.489039781480851,0.118129140741579,-0.603039077347013,https://salsa.debian.org/science-team/ros-catkin, https://github.com/ros/catkin.git,3969.001458333333,64,80,0,84.0,279.0,0.0,0.0 -catkin_pkg,-0.167203497358372,1.2861285448403,-0.485635068001556,https://salsa.debian.org/science-team/ros-catkin-pkg, https://github.com/ros-infrastructure/catkin_pkg.git,4009.4744097222224,38,38,0,54.0,133.0,0.0,0.0 -common_msgs,-0.260735685857777,1.64188464097169,-0.68752787368347,https://salsa.debian.org/science-team/ros-common-msgs, https://github.com/ros/common_msgs,4220.657847222222,11,81,1,36.0,156.0,0.0,0.0 -gencpp,-0.160091149063917,2.2557178524457,-0.719103076323962,https://salsa.debian.org/science-team/ros-gencpp, https://github.com/ros/gencpp,4002.012303240741,11,18,1,17.0,47.0,0.0,0.0 -genlisp,-0.166354322533981,2.24866950739751,-0.730196442265192,https://salsa.debian.org/science-team/ros-genlisp, https://github.com/ros/genlisp.git,2913.208993055556,2,16,0,9.0,11.0,0.0,0.0 -robot_state_publisher,-0.592455886619176,1.35766053965836,-1.01093645133637,https://salsa.debian.org/science-team/ros-robot-state-publisher, https://github.com/ros/robot_state_publisher,4113.0053356481485,37,41,0,43.0,181.0,0.0,0.0 -ros,-0.174542217173464,1.74371986214792,-0.570506770557411,https://salsa.debian.org/science-team/ros-ros, https://github.com/ros/ros.git,4392.927650462963,48,77,0,74.0,82.0,0.0,0.0 -roscpp_core,-0.033152535279659,2.36549991232184,-0.501119620770985,https://salsa.debian.org/science-team/ros-roscpp-core, https://github.com/ros/roscpp_core,4254.705671296297,25,32,1,37.0,98.0,0.0,0.0 -rosinstall_generator,-0.143025821600952,2.21106586662489,-0.69934292908189,https://salsa.debian.org/science-team/ros-rosinstall-generator, https://github.com/ros-infrastructure/rosinstall_generator,3820.013842592593,11,14,2,15.0,43.0,0.0,0.0 -rows,-0.501673824942345,1.99965107262537,-1.29990789232841,https://salsa.debian.org/debian/rows, https://github.com/turicas/rows,3317.3650115740743,11,25,2,29.0,122.0,0.0,0.0 -rubberband,0.918234975772985,2.62268885869139,0.214842324053143,https://salsa.debian.org/multimedia-team/rubberband, https://github.com/breakfastquay/rubberband.git,5683.900474537037,0,9,0,4.0,95.0,0.0,0.0 -arel,0.310658972557814,2.47463109703822,-0.21779483610281,https://salsa.debian.org/ruby-team/ruby-arel, https://github.com/rails/arel,3724.669027777778,28,165,0,149.0,506.0,0.0,0.0 -aruba,-1.36248515337412,0.743065431760748,-1.98539293413176,https://salsa.debian.org/ruby-team/ruby-aruba, https://github.com/cucumber/aruba.git,5041.539664351852,15,94,0,78.0,252.0,0.0,0.0 -ascii85gem,0.220682438911098,2.56872140292753,-0.209003065278562,https://salsa.debian.org/ruby-team/ruby-ascii85, https://github.com/datawraith/ascii85gem,5104.970185185185,3,5,0,5.0,5.0,0.0,0.0 -ruby-atomic,0.457757311957647,3.003545568227,-0.148860402089449,https://salsa.debian.org/ruby-team/ruby-atomic, https://github.com/headius/ruby-atomic,1459.8353125,0,15,2,11.0,70.0,0.0,0.0 -rcairo,0.158164567061363,1.80859599070589,-0.244958071363958,https://salsa.debian.org/ruby-team/ruby-cairo, https://github.com/rcairo/rcairo,5677.594305555555,5,14,0,12.0,60.0,0.0,0.0 -charlock_holmes,-0.27414687778017,2.01520035456465,-0.834403772991921,https://salsa.debian.org/ruby-team/ruby-charlock-holmes, https://github.com/brianmario/charlock_holmes,3398.828090277778,5,21,0,20.0,348.0,0.0,6.0 -childprocess,0.652622912536639,3.23319286308203,-0.0924023392956883,https://salsa.debian.org/ruby-team/ruby-childprocess, https://github.com/jarib/childprocess.git,4814.209652777778,16,34,0,43.0,160.0,0.0,1.0 -do,-1.00904402256637,0.617540968332533,-1.30029321205638,https://salsa.debian.org/ruby-team/ruby-dataobjects-postgres, https://github.com/datamapper/do,2417.1817939814814,23,80,0,57.0,110.0,0.0,14.0 -faye,-2.00693218272051,1.4374394085277,-2.90993526775194,https://salsa.debian.org/ruby-team/ruby-faye, https://github.com/faye/faye,4073.248483796296,5,46,0,33.0,166.0,0.0,8.0 -ffi-yajl,0.0311669559746006,2.34139322033609,-0.404647741092596,https://salsa.debian.org/ruby-team/ruby-ffi-yajl, https://github.com/chef/ffi-yajl.git,3568.588298611111,5,25,0,21.0,68.0,0.0,0.0 -flipper,-1.21253738932967,1.21489209769407,-1.85799545175152,https://salsa.debian.org/ruby-team/ruby-flipper, https://github.com/jnunemaker/flipper,4162.091701388889,31,105,1,108.0,284.0,0.0,0.0 -fog-libvirt,0.217863287846909,2.50351307596338,-0.236950089821332,https://salsa.debian.org/ruby-team/ruby-fog-libvirt, https://github.com/fog/fog-libvirt,3115.761516203704,9,33,0,29.0,79.0,0.0,0.0 -grape-entity,-0.541811296821899,2.00045621748763,-1.19901009991805,https://salsa.debian.org/ruby-team/ruby-grape-entity, https://github.com/intridea/grape-entity,3988.035358796296,43,59,0,76.0,303.0,0.0,0.0 -gruff,-1.42880636005629,1.00953687084435,-2.24425388199573,https://salsa.debian.org/ruby-team/ruby-gruff, https://github.com/topfunky/gruff,5638.625555555555,13,44,1,40.0,157.0,0.0,2.0 -http_parser.rb,0.185483539780022,2.30025907431261,-0.258298363804737,https://salsa.debian.org/ruby-team/ruby-http-parser.rb, https://github.com/tmm1/http_parser.rb.git,4794.161111111112,3,23,0,23.0,111.0,0.0,0.0 -httpclient,3.15602227822802,6.33967013332377,1.79331322235043,https://salsa.debian.org/ruby-team/ruby-httpclient, https://github.com/nahi/httpclient,4669.173564814815,7,81,0,65.0,355.0,0.0,2.0 -licensee,-0.55948107153302,1.99789361583985,-1.13384652936332,https://salsa.debian.org/ruby-team/ruby-licensee, https://github.com/licensee/licensee,3404.3053819444444,14,56,2,55.0,112.0,0.0,0.0 -loofah,0.283654649580742,2.33072355969229,-0.235889640246842,https://salsa.debian.org/ruby-team/ruby-loofah, https://github.com/flavorjones/loofah,5476.03337962963,22,39,1,49.0,244.0,0.0,2.0 -mail,0.569824391096844,2.94293194786905,-0.128185244140694,https://salsa.debian.org/ruby-team/ruby-mail, https://github.com/mikel/mail,5260.285740740741,90,197,6,216.0,80.0,0.0,16.0 -maruku,-0.216540430898513,2.43948015322271,-0.770076020372455,https://salsa.debian.org/ruby-team/ruby-maruku, https://github.com/bhollis/maruku,3523.0504282407405,0,23,2,16.0,132.0,0.0,0.0 -ruby-net-ldap,0.247373085030764,1.93903824820872,-0.292711252233112,https://salsa.debian.org/ruby-team/ruby-net-ldap, https://github.com/ruby-ldap/ruby-net-ldap.git,5396.769085648149,19,114,0,83.0,0.0,0.0,0.0 -nio4r,0.40656514695811,3.34025237171565,-0.350924625736781,https://salsa.debian.org/ruby-team/ruby-nio4r, https://github.com/socketry/nio4r,5508.923969907408,25,41,8,48.0,171.0,0.0,3.0 -nokogumbo,0.0754524159369966,3.17700900735038,-0.752017734490445,https://salsa.debian.org/ruby-team/ruby-nokogumbo, https://github.com/rubys/nokogumbo,3061.6749537037035,9,20,1,24.0,120.0,0.0,0.0 -omniauth-facebook,-0.441980618406242,2.42414527178039,-1.18102722181732,https://salsa.debian.org/ruby-team/ruby-omniauth-facebook, https://github.com/simi/omniauth-facebook,4035.138842592593,21,43,0,49.0,471.0,0.0,3.0 -ruby-prof,-0.194910751417617,1.33267203442195,-0.840733494398847,https://salsa.debian.org/ruby-team/ruby-prof, https://github.com/ruby-prof/ruby-prof,5272.258287037037,11,69,0,60.0,258.0,0.0,1.0 -pundit,-0.81828289247634,2.78819104516578,-1.78787902387636,https://salsa.debian.org/ruby-team/ruby-pundit, https://github.com/varvet/pundit,3993.962199074074,28,115,2,114.0,792.0,0.0,0.0 -rabl,-0.395350806776283,1.92981539670029,-1.123738466312,https://salsa.debian.org/ruby-team/ruby-rabl, https://github.com/nesquena/rabl,4283.3594907407405,15,107,3,97.0,589.0,0.0,65.0 -perfect-scrollbar,-0.374351450994704,3.36511536906709,-1.67154886221496,https://salsa.debian.org/ruby-team/ruby-rails-assets-perfect-scrollbar, https://github.com/mdbootstrap/perfect-scrollbar,4.933356481481481,1,3,0,2.0,327.0,0.0,0.0 -redis-store,-0.695028864407541,1.47032729523593,-1.25288555418833,https://salsa.debian.org/ruby-team/ruby-redis-store, https://github.com/redis-store/redis-store,5265.79619212963,10,85,1,66.0,392.0,0.0,0.0 -responders,-0.15330835598425,2.50289434539084,-0.950455381858559,https://salsa.debian.org/ruby-team/ruby-responders, https://github.com/heartcombo/responders/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -rest-client,0.862100138006452,3.06031048364358,0.07121209837491,https://salsa.debian.org/ruby-team/ruby-rest-client, https://github.com/rest-client/rest-client/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -sidekiq-cron,-0.460965442978789,1.89557658666716,-1.14176049181417,https://salsa.debian.org/ruby-team/ruby-sidekiq-cron, https://github.com/sidekiq-cron/sidekiq-cron,3762.236180555556,37,72,0,93.0,171.0,0.0,0.0 -sshkit,-0.0935961701361413,2.62044656197821,-0.913399959677309,https://salsa.debian.org/ruby-team/ruby-sshkit, https://github.com/capistrano/sshkit.git,3961.9651041666666,23,112,0,111.0,240.0,0.0,0.0 -state_machines,-0.862727506727865,0.738079157532498,-1.17169688542903,https://salsa.debian.org/ruby-team/ruby-state-machines, https://github.com/state-machines/state_machines,3342.349050925926,10,20,0,25.0,102.0,0.0,0.0 -virtus,-0.411418344093543,2.20061342245076,-1.06613131592634,https://salsa.debian.org/ruby-team/ruby-virtus, https://github.com/solnic/virtus.git,3718.9197800925926,2,63,0,54.0,322.0,0.0,2.0 -warden,-0.483453656332785,2.18850334520879,-1.14592743404215,https://salsa.debian.org/ruby-team/ruby-warden, https://github.com/hassox/warden,4887.532384259259,10,50,1,40.0,244.0,0.0,76.0 -websocket-driver-ruby,0.0321691446396087,2.32602763541323,-0.44016561045075,https://salsa.debian.org/ruby-team/ruby-websocket-driver, https://github.com/faye/websocket-driver-ruby,4307.723252314815,5,15,0,17.0,113.0,0.0,1.0 -safeclib,-1.46541924129083,0.986318726090318,-1.91892595175024,https://github.com/kilobyte/safeclib/tree/debian,https://github.com/kilobyte/safeclib,3855.424849537037,10,8,0,8.0,0.0,0.0,0.0 -SafeEyes,0.149015816941472,2.7053025272624,-0.630061457331699,https://salsa.debian.org/debian/safeeyes, https://github.com/slgobinath/SafeEyes.git,2228.7321180555555,169,36,0,134.0,329.0,0.0,1.0 -emacs-scala-mode,0.715851547017848,3.82621072464823,-0.398440121840251,https://salsa.debian.org/emacsen-team/scala-mode-el, https://github.com/hvesalai/emacs-scala-mode,3670.9045486111113,14,21,1,28.0,117.0,0.0,0.0 -scanmem,0.670925394719566,3.40388194703282,-0.241299981019016,https://salsa.debian.org/debian/scanmem, https://github.com/scanmem/scanmem.git,5016.30787037037,17,24,0,21.0,138.0,0.0,2.0 -scour,0.262403226060344,1.28944804880019,-0.0279418889182137,https://salsa.debian.org/debian/scour, https://github.com/codedread/scour.git,2869.134756944444,6,14,0,15.0,106.0,0.0,1.0 -shadow,0.837547936751078,0.972120546827943,0.718830912642781,https://salsa.debian.org/debian/shadow, https://github.com/shadow-maint/shadow,5786.8523958333335,108,113,0,162.0,238.0,0.0,0.0 -shadowsocks-libev,0.146155619802358,1.3775967683102,-0.342459202956474,https://salsa.debian.org/bridges-team/shadowsocks-libev, https://github.com/shadowsocks/shadowsocks-libev,3913.842800925926,124,129,0,189.0,77.0,0.0,0.0 -Sigil,-0.323308348587395,-0.116184004888836,-0.36947687564949,https://salsa.debian.org/debian/sigil, https://github.com/Sigil-Ebook/Sigil.git,5247.695578703704,9,52,0,33.0,366.0,0.0,0.0 -sigviewer,0.711761571633753,3.98949524360161,-0.306494447507988,https://salsa.debian.org/med-team/sigviewer, https://github.com/cbrnr/sigviewer.git,5107.777777777777,5,12,0,7.0,21.0,0.0,0.0 -silverjuke,0.103595622739308,3.11595746776886,-0.811889940249741,https://salsa.debian.org/debian/silverjuke, https://github.com/silverjuke/silverjuke.git,1877.2067592592596,5,8,0,8.0,31.0,0.0,0.0 -siridb-server,-3.63207643109074,-1.50415633583536,-4.26146957846803,https://salsa.debian.org/siridb-team/siridb-server, https://github.com/transceptor-technology/siridb-server.git,2764.489212962963,4,15,0,9.0,48.0,0.0,0.0 -sirikali,0.196083927078078,2.71706034314805,-0.540511922289614,https://github.com/davesteele/sirikali,https://github.com/davesteele/sirikali,2544.706099537037,10,19,0,17.0,1.0,0.0,0.0 -six,0.236432266853317,1.3996579195264,-0.0008290346827076,https://salsa.debian.org/python-team/packages/six, https://github.com/benjaminp/six,4717.273831018519,33,35,0,57.0,171.0,0.0,0.0 -slirp4netns,-0.378373829466941,1.42945025502983,-0.836749478446671,https://salsa.debian.org/debian/slirp4netns, https://github.com/rootless-containers/slirp4netns.git,1916.5166203703704,4,19,0,13.0,123.0,0.0,0.0 -slop,0.0256215961075906,2.45311354514318,-0.421261828310582,https://salsa.debian.org/debian/slop, https://github.com/naelstrof/slop,3674.1057638888888,8,37,0,33.0,147.0,0.0,0.0 -snapd-glib,0.445838997796278,2.31111804219363,-0.199812079793849,https://salsa.debian.org/debian-ayatana-team/snapd-glib, https://github.com/snapcore/snapd-glib,2535.747037037037,8,7,0,9.0,21.0,0.0,0.0 -snapper,0.129296198577568,1.09017049489567,-0.260152133283937,https://salsa.debian.org/debian/snapper, https://github.com/openSUSE/snapper.git,4746.816643518519,93,64,0,90.0,438.0,0.0,3.0 -app,-0.301338451833309,1.86709531843907,-1.06968262078306,https://github.com/socnetv/app/tree/master/,https://github.com/socnetv/app,5571.654675925926,1,6,1,3.0,59.0,0.0,0.0 -sogo,0.10209166671418,0.747413281918718,-0.235558272838706,https://salsa.debian.org/debian/sogo, https://github.com/inverse-inc/sogo.git,5788.112997685185,39,76,0,64.0,32.0,0.0,0.0 -Solaar,1.429922041869,3.86329499060927,0.424051977140571,https://salsa.debian.org/debian/solaar, https://github.com/pwr/Solaar.git,4403.731666666667,124,59,0,148.0,676.0,0.0,3.0 -sparqlwrapper,0.329621999659475,1.7050780354957,-0.145721053438597,https://salsa.debian.org/python-team/packages/sparql-wrapper-python, https://github.com/RDFLib/sparqlwrapper.git,3062.5503703703703,8,32,0,25.0,152.0,0.0,0.0 -libspatialindex,0.378346817539736,1.92195571516466,-0.146304498974042,https://salsa.debian.org/debian-gis-team/libspatialindex, https://github.com/libspatialindex/libspatialindex.git,5433.052118055555,20,25,0,34.0,104.0,0.0,5.0 -speechd,-1.10658923706591,-0.723077412570435,-1.16530086770019,https://salsa.debian.org/tts-team/speech-dispatcher, https://github.com/brailcom/speechd,5766.346284722223,67,19,0,53.0,120.0,0.0,0.0 -spyder-kernels,0.555849164092982,3.55619390632733,-0.191381956314294,https://salsa.debian.org/science-team/spyder-kernels, https://github.com/spyder-ide/spyder-kernels,1977.064375,17,27,1,31.0,102.0,0.0,0.0 -spyder-reports,-0.385959125205035,2.14277517505884,-1.10947796042442,https://salsa.debian.org/science-team/spyder-reports, https://github.com/spyder-ide/spyder-reports/issues/new,2746.3319791666668,2,17,0,0.0,0.0,0.0,0.0 -spyder-unittest,-0.361483755206695,2.64062718865038,-1.15320126676733,https://salsa.debian.org/science-team/spyder-unittest, https://github.com/spyder-ide/spyder-unittest.git,3668.976446759259,5,13,0,11.0,46.0,0.0,1.0 -squashfuse,0.310431919105569,3.2539784341741,-0.44046120680797,https://salsa.debian.org/sgmoore/squashfuse, https://github.com/vasi/squashfuse.git,4403.080740740741,10,20,0,23.0,78.0,0.0,0.0 -stk,0.161350986961681,0.635151894250557,-0.0757101643146169,https://salsa.debian.org/multimedia-team/stk, https://github.com/thestk/stk,5255.633298611111,6,33,2,23.0,67.0,0.0,0.0 -stumpwm,0.244744366061042,1.16892369336062,-0.266497312403179,https://salsa.debian.org/common-lisp-team/stumpwm, https://github.com/stumpwm/stumpwm.git,5783.58130787037,82,149,0,153.0,245.0,0.0,75.0 -suricata-update,-0.875566862243854,1.43351539555108,-1.31573448531461,https://salsa.debian.org/pkg-suricata-team/pkg-suricata-update, https://github.com/OISF/suricata-update,2073.188449074074,16,11,0,18.0,43.0,0.0,0.0 -syncthing,0.116551399825498,0.685220699884462,-0.109925509533538,https://salsa.debian.org/go-team/packages/syncthing, https://github.com/syncthing/syncthing.git,3650.0363310185194,277,155,0,304.0,478.0,0.0,52.0 -systemd,0.206981263276473,0.233535317681592,0.182347659621236,https://salsa.debian.org/systemd-team/systemd, https://github.com/systemd/systemd,5140.484525462963,2040,582,2,383.0,27.0,0.0,0.0 -taglib,0.636911281526059,1.17664097241677,0.319697620200093,https://salsa.debian.org/multimedia-team/taglib, https://github.com/taglib/taglib.git,5783.547962962963,42,108,0,120.0,230.0,0.0,0.0 -TCPDF,1.43620503068368,4.03650783735055,0.445692893073574,https://salsa.debian.org/phpmyadmin-team/tcpdf, https://github.com/tecnickcom/TCPDF,5278.855648148148,85,42,0,113.0,703.0,0.0,0.0 -tenace,0.597887409824028,2.57748271511221,-0.227459824540816,https://github.com/df7cb/tenace,https://github.com/df7cb/tenace,4952.623784722222,1,5,0,3.0,5.0,0.0,0.0 -tenshi,0.0367580557286976,2.66820756632001,-1.10944291002974,https://salsa.debian.org/debian/tenshi, https://github.com/f-secure-foundry/tenshi,3173.510578703704,3,9,0,8.0,10.0,0.0,0.0 -termbox,-0.332071725272558,1.77596898541166,-0.759186002019704,https://salsa.debian.org/debian/termbox, https://github.com/nsf/termbox.git,4364.220393518519,12,41,0,44.0,113.0,0.0,1.0 -thefuck,0.585395647883879,2.87730809158881,-0.22945139954812,https://salsa.debian.org/debian/thefuck, https://github.com/nvbn/thefuck.git,3035.171388888889,98,108,0,169.0,134.0,0.0,37.0 -tidy-html5,2.58506214231347,3.66271559825143,1.85867571563008,https://salsa.debian.org/debian/tidy-html5, https://github.com/htacg/tidy-html5,3722.5229050925927,18,85,3,79.0,135.0,0.0,2.0 -timeshift,0.0156315640585256,1.06811864928072,-0.301132204362499,https://salsa.debian.org/debian/timeshift, https://github.com/linuxmint/timeshift.git,3711.4258449074073,52,39,0,75.0,364.0,0.0,0.0 -tinymux,-0.358104556573467,1.21116943335798,-0.974126882100601,https://github.com/brazilofmux/tinymux,https://github.com/brazilofmux/tinymux,5573.2325925925925,10,7,0,5.0,12.0,0.0,0.0 -tinyows,-1.98511151844238,-0.212331690029963,-2.347873619432,https://salsa.debian.org/debian-gis-team/tinyows, https://github.com/mapserver/tinyows.git,4838.973368055556,4,22,0,8.0,43.0,0.0,2.0 -todoman,-0.633941656040399,1.01466560147069,-1.15564134757205,https://salsa.debian.org/python-team/packages/todoman, https://github.com/pimutils/todoman.git,3181.1360069444445,24,26,0,35.0,119.0,0.0,0.0 -todo.txt-cli,0.0577600851525939,2.76685230170656,-0.554622830248362,https://salsa.debian.org/debian/todotxt-cli/, https://github.com/todotxt/todo.txt-cli.git,5276.743842592593,43,48,0,54.0,14.0,0.0,144.0 -Tomb,-0.519440159582384,0.614700205390144,-0.853511595703441,https://salsa.debian.org/pkg-security-team/tomb, https://github.com/dyne/Tomb,4854.520347222222,29,55,3,55.0,38.0,0.0,11.0 -toolz,-0.0387707331718257,1.25079389482048,-0.32093010605156,https://salsa.debian.org/python-team/packages/toolz, https://github.com/pytoolz/toolz.git,3458.670486111111,19,61,0,63.0,243.0,0.0,0.0 -trash-cli,1.06684138530451,2.39764011651376,0.357979356353325,https://salsa.debian.org/debian/trash-cli, https://github.com/andreafrancia/trash-cli.git,5751.461631944445,18,35,0,41.0,247.0,0.0,0.0 -ttygif,-0.778474708141422,1.48512235508045,-1.29229074560786,https://salsa.debian.org/debian/ttygif, https://github.com/icholy/ttygif.git,3670.9607175925926,6,36,0,36.0,98.0,0.0,0.0 -tvdb_api,-0.533375297627363,2.09673545239005,-1.08109425650425,https://salsa.debian.org/python-team/packages/tvdb-api, https://github.com/dbr/tvdb_api.git,5264.897824074074,6,18,0,19.0,82.0,0.0,3.0 -ucblogo-code,0.551656527477274,2.14944337584563,-0.219713222671356,https://salsa.debian.org/debian/ucblogo, https://github.com/jrincayc/ucblogo-code.git,5543.044212962963,8,20,0,13.0,14.0,0.0,2.0 -ucimf,-2.75218812211195,-0.0969608973488465,-3.57333436547928,https://salsa.debian.org/input-method-team/ucimf-sunpinyin, https://github.com/matlinuxer2/ucimf,2036.6533564814813,0,12,0,6.0,6.0,0.0,2.0 -udevil,0.693950478906608,2.69290241163787,-0.0993242318069802,https://github.com/mati75/udevil.git,https://github.com/mati75/udevil.git,2023.2994675925927,0,4,0,3.0,5.0,0.0,0.0 -udiskie,-0.303120067863482,0.358049612944352,-0.443415750379262,https://salsa.debian.org/debian/udiskie, https://github.com/coldfix/udiskie.git,4957.808217592593,8,28,0,24.0,131.0,0.0,18.0 -uftrace,-0.131657265816516,1.55514517845974,-0.754379279470194,https://salsa.debian.org/debian/uftrace, https://github.com/namhyung/uftrace,3614.265717592592,76,47,1,88.0,162.0,0.0,28.0 -ultrajson,-0.108236142708293,1.85161089732626,-0.619527986386755,https://salsa.debian.org/python-team/packages/ujson, https://github.com/ultrajson/ultrajson,4669.042858796296,23,77,1,71.0,597.0,0.0,0.0 -ulfius,-0.458742321847904,2.08972839714509,-1.01536367073215,https://salsa.debian.org/debian-iot-team/oauth2/ulfius.git, https://github.com/babelouest/ulfius,2934.047835648148,8,24,0,21.0,111.0,0.0,0.0 -umockdev,0.131802460657025,1.53535382972005,-0.476066381561041,https://salsa.debian.org/debian/umockdev, https://github.com/martinpitt/umockdev,4165.230092592593,25,7,1,22.0,93.0,0.0,2.0 -uncertainties,0.719641640370187,3.29605667037932,-0.218762785384588,https://salsa.debian.org/debian/python-uncertainties, https://github.com/lebigot/uncertainties.git,4894.045891203704,5,16,0,14.0,97.0,0.0,0.0 -uriparser,0.789373414154612,2.19271181736327,0.201592645076251,https://jff.email/cgit/uriparser.git, https://github.com/uriparser/uriparser.git,5735.865532407407,19,13,0,27.0,75.0,0.0,0.0 -urlscan,1.3847799551226,3.38941091988752,0.382608734670069,https://salsa.debian.org/debian/urlscan, https://github.com/firecat53/urlscan,5177.948009259259,10,13,0,16.0,29.0,0.0,0.0 -debian-urweb,-1.89586621324589,-0.570523369804673,-2.36517696157143,https://github.com/urweb/debian-urweb,https://github.com/urweb/debian-urweb,4447.221539351852,3,56,0,38.0,0.0,0.0,0.0 -urwid,0.555397851954473,1.39105322984086,0.115376558887944,https://salsa.debian.org/python-team/packages/urwid, https://github.com/urwid/urwid.git,5781.652222222222,48,112,0,122.0,409.0,0.0,43.0 -use-package,-0.264934557891152,2.07260727757563,-0.69435255362102,https://salsa.debian.org/emacsen-team/use-package, https://github.com/jwiegley/use-package.git,3965.777685185185,21,110,0,103.0,525.0,0.0,1.0 -usepackage,-0.97958224407164,1.52805547431667,-1.75977269436821,https://salsa.debian.org/debian/usepackage, https://github.com/jonathanhogg/usepackage.git,3462.962337962963,0,2,0,1.0,2.0,0.0,0.0 -utf8proc,0.0898643883809924,0.803464856892609,-0.0749520007022019,https://salsa.debian.org/julia-team/utf8proc, https://github.com/JuliaStrings/utf8proc,3420.271493055556,31,18,0,42.0,143.0,0.0,0.0 -utidylib,0.431774858776101,1.49340949551563,0.028883751052801,https://salsa.debian.org/python-team/packages/utidylib, https://github.com/nijel/utidylib.git,5086.384525462963,8,4,0,8.0,13.0,0.0,0.0 -uTox,0.381321219098594,3.91894124338963,-0.561164523552396,https://salsa.debian.org/yangfl-guest/uTox, https://github.com/uTox/uTox.git,2920.6360069444445,25,159,0,109.0,132.0,0.0,0.0 -variety,-0.0519547059832828,0.90567764048997,-0.340837093516861,https://salsa.debian.org/jlu-guest/variety, https://github.com/varietywalls/variety.git,4151.289224537037,39,13,0,46.0,234.0,0.0,0.0 -vcrpy,-0.572001835712735,0.836044556932713,-0.929665685959647,https://salsa.debian.org/python-team/packages/vcr.py, https://github.com/kevin1024/vcrpy,4215.454189814815,65,92,2,114.0,547.0,0.0,0.0 -vdirsyncer,0.384354624689491,2.37349353862651,-0.296882334954882,https://salsa.debian.org/python-team/packages/vdirsyncer, https://github.com/pimutils/vdirsyncer,3574.7769560185184,36,34,3,61.0,521.0,0.0,0.0 -vifm,0.590788082058191,1.84167994191702,-0.0079146509705635,https://salsa.debian.org/debian/vifm, https://github.com/vifm/vifm.git,5419.5621875,29,42,0,55.0,113.0,0.0,0.0 -vim-snipmate,-0.116572717140896,2.3205562099979,-0.668019296747243,https://salsa.debian.org/debian/vim-snipmate, https://github.com/garbas/vim-snipmate.git,5137.284826388889,35,58,0,59.0,323.0,0.0,0.0 -vim-snippets,0.284398153213413,3.63847090473935,-0.458271240949462,https://salsa.debian.org/debian/vim-snippets, https://github.com/honza/vim-snippets.git,4556.771770833333,295,399,0,367.0,775.0,0.0,5.0 -vine,0.0090321357145147,2.39078861911377,-0.45113111473157,https://salsa.debian.org/python-team/packages/vine, https://github.com/celery/vine,2839.858310185185,19,6,1,24.0,22.0,0.0,0.0 -virt-manager,1.48542145426514,1.93187998181028,1.13233443238518,https://salsa.debian.org/libvirt-team/virt-manager, https://github.com/virt-manager/virt-manager,5726.728657407408,246,65,0,215.0,211.0,0.0,1.0 -virtualenv-clone,0.578602468279995,2.77082120867057,-0.115751121187041,https://salsa.debian.org/debian/virtualenv-clone, https://github.com/edwardgeorge/virtualenv-clone,3835.1669675925928,11,10,0,18.0,63.0,0.0,0.0 -virtuoso-opensource,1.69839747071231,3.00302489720183,0.954025041428312,https://salsa.debian.org/science-team/virtuoso-opensource, https://github.com/openlink/virtuoso-opensource,5789.126331018519,14,14,0,16.0,594.0,0.0,0.0 -vis,-0.114611962348205,2.32530079944326,-0.828150147708027,https://salsa.debian.org/debian/vis, https://github.com/martanne/vis,3439.6246875,66,84,0,109.0,337.0,0.0,70.0 -vit,0.0632096362254321,2.19418889832411,-0.575356221444179,https://salsa.debian.org/tasktools-team/vit, https://github.com/scottkosty/vit.git,3775.4418171296297,6,22,0,22.0,122.0,0.0,0.0 -vitetris,-0.324046869699416,1.25227578653804,-0.610507528658787,https://salsa.debian.org/debian/vitetris, https://github.com/vicgeralds/vitetris,918.6513310185184,0,4,0,2.0,24.0,0.0,0.0 -vlsub-deb,0.381592360955553,2.14539147499431,-0.187705052723262,https://github.com/simongareste/vlsub-deb,https://github.com/simongareste/vlsub-deb,2.1037731481481483,1,2,0,1.0,1.0,0.0,0.0 -VMDK-stream-converter,-0.616171347781387,2.03715813958988,-1.40038375477191,https://salsa.debian.org/python-team/packages/vmdk-stream-converter, https://github.com/imcleod/VMDK-stream-converter.git,2430.6944328703703,1,3,0,2.0,12.0,0.0,0.0 -emacs-w3m,0.0908536375899957,0.591510526314486,-0.17944561094957,https://salsa.debian.org/debian/w3m-el, https://github.com/emacs-w3m/emacs-w3m,5732.875613425926,8,17,0,19.0,38.0,0.0,2.0 -wabt,-0.215021509071835,1.53413133705831,-0.580080174118336,https://salsa.debian.org/debian/wabt, https://github.com/WebAssembly/wabt,3027.9831828703705,131,19,0,126.0,144.0,0.0,0.0 -websocket-client,0.528626147884189,1.91779650029756,0.0141068119268952,https://salsa.debian.org/python-team/packages/websocket-client, https://github.com/websocket-client/websocket-client,4734.967708333334,73,159,1,187.0,707.0,0.0,5.0 -whipper,-1.00398472018607,-0.683619117439365,-1.05147392210145,https://salsa.debian.org/python-team/packages/whipper, https://github.com/whipper-team/whipper.git,4941.070474537037,23,44,0,49.0,219.0,0.0,0.0 -whois,0.0221996534200785,0.0551054976679655,0.0006342142927265,https://github.com/rfc1036/whois,https://github.com/rfc1036/whois,3907.4041550925926,44,4,0,40.0,119.0,0.0,0.0 -xhtml2pdf,0.31979327115304,2.76807642207541,-0.633079702057243,https://salsa.debian.org/python-team/packages/xhtml2pdf, https://github.com/xhtml2pdf/xhtml2pdf,4912.199826388889,44,134,0,133.0,766.0,0.0,0.0 -xl2tpd,1.75211845757271,3.55517088281134,0.815289827436144,https://github.com/xelerance/xl2tpd,https://github.com/xelerance/xl2tpd,5585.42306712963,26,42,0,43.0,281.0,0.0,1.0 -xqf,0.408563556878546,1.72223408414337,-0.290956621728465,https://salsa.debian.org/debian/xqf, https://github.com/XQF/xqf,4749.099050925926,9,17,1,18.0,26.0,0.0,3.0 -yank,-0.486981797429971,0.321536388587433,-0.872965607135782,https://salsa.debian.org/debian/yank, https://github.com/mptre/yank,2596.2438310185184,12,9,0,15.0,63.0,0.0,0.0 -yapf,-0.0722503180851905,0.997143004238659,-0.509532828712209,https://salsa.debian.org/python-team/packages/yapf, https://github.com/google/yapf.git,3193.809224537037,72,102,0,139.0,61.0,7.0,2.0 -yara,-0.105583037284771,0.102384022920219,-0.165940329485104,https://salsa.debian.org/pkg-security-team/yara, https://github.com/VirusTotal/yara.git,5553.008252314815,173,61,0,186.0,560.0,0.0,1.0 -yotta,-3.01359857305743,-1.26445581786377,-3.32872420631888,https://salsa.debian.org/python-team/packages/yotta, https://github.com/ARMmbed/yotta.git,2536.0050925925925,9,55,0,36.0,157.0,0.0,3.0 -youtube-dl,0.25633398444058,0.432077804875997,0.127697632849977,https://salsa.debian.org/debian/youtube-dl, https://github.com/ytdl-org/youtube-dl.git,5615.23136574074,601,455,0,388.0,41.0,0.0,0.0 -yquake2,0.0785847680516405,1.95970971645533,-0.456273436433834,https://salsa.debian.org/games-team/yquake2, https://github.com/yquake2/yquake2,5404.035983796296,28,60,0,65.0,122.0,0.0,2.0 -zzz-to-char,-1.007512241683,0.849707901616413,-1.4231838868665,https://salsa.debian.org/emacsen-team/zzz-to-char, https://github.com/mrkkrp/zzz-to-char.git,3016.886180555556,1,3,0,2.0,4.0,0.0,0.0 +"project_name","underproduction_mean","underproduction_low","underproduction_high","debian_vcs_link","upstream_vcs_link","age_of_project","contributors","collaborators","milestone_count","api_contrib_count","issue_contrib_count","file_contrib_count","wiki_contrib_count","total_contrib","new.age","new.age.factor","mmt","issue_mmt" +"0xFFFF",-0.510168673,1.4527994311,-1.0011708662,"https://salsa.debian.org/debian/0xffff","https://github.com/pali/0xFFFF",5557.8427777778,3,11,0,6,9,0,0,9,4,"4",1.78571428571429,2 +"3270font",0.7956265926,4.3574626903,-0.214217071,"https://github.com/kilobyte/3270font/tree/debian","https://github.com/kilobyte/3270font",3596.6082060185,6,15,0,9,3,0,0,11,2,"2",1.71428571428571,1.27272727272727 +"4pane-debian-dir",-0.2426279425,2.299894807,-0.8194220994,"https://github.com/dghart/4pane-debian-dir/tree/master/","https://github.com/dghart/4pane-debian-dir",2236.6859722222,0,2,0,1,2,0,0,2,1,"1",2,2 +"4ti2",0.4764408337,3.0285400273,-0.2191943656,"https://salsa.debian.org/math-team/4ti2","https://github.com/4ti2/4ti2.git",5656.5603819445,3,11,0,6,18,0,0,18,4,"4",1.78571428571429,2 +"6tunnel",-0.563131582,0.346490728,-0.8398599484,"https://salsa.debian.org/debian/6tunnel","https://github.com/wojtekka/6tunnel",2673.0241203704,1,7,0,5,18,0,1,19,1,"1",1.875,1.94736842105263 +"a2jmidid",0.3594669173,1.948434404,-0.1562277334,"https://salsa.debian.org/multimedia-team/a2jmidid","https://github.com/linuxaudio/a2jmidid.git",4551.7947916667,8,8,0,12,23,0,0,27,3,"3",1.5,1.85185185185185 +"abGate",0.1706833434,2.3128885166,-0.4447167424,"https://salsa.debian.org/multimedia-team/abgate","https://github.com/antanasbruzas/abGate.git",1677.5786226852,2,8,0,4,5,0,0,6,1,"1",1.8,1.83333333333333 +"link",0.2419062498,3.4521460543,-0.7141549374,"https://salsa.debian.org/multimedia-team/ableton-link","https://github.com/Ableton/link.git",2835.8410648148,20,10,0,19,81,0,0,88,2,"2",1.33333333333333,1.92045454545455 +"acme-tiny",-0.0997740414,0.6982852517,-0.3572560835,"https://salsa.debian.org/letsencrypt-team/acme-tiny","https://github.com/diafygi/acme-tiny.git",2161.2252314815,7,34,0,36,354,0,0,355,1,"1",1.82926829268293,1.99718309859155 +"acpi_call",0.1056920793,1.3196660142,-0.2309830486,"https://salsa.debian.org/moonsweep/acpi-call","https://github.com/nix-community/acpi_call.git",4711.2498958333,14,26,0,29,24,0,0,39,3,"3",1.65,1.61538461538462 +"adapta-kde",-0.0885623802,2.0889906357,-0.5313636783,"https://salsa.debian.org/debian/adapta-kde","https://github.com/PapirusDevelopmentTeam/adapta-kde.git",636.9053819444,2,5,0,3,0,0,0,3,1,"1",1.71428571428571,1 +"admesh",0.1260876875,1.8100481532,-0.381631879,"https://salsa.debian.org/science-team/admesh","https://github.com/admesh/admesh",3319.1463078704,15,9,1,20,42,0,0,44,2,"2",1.375,1.95454545454545 +"ADMS",-0.6746373026,2.0836908399,-1.2638452949,"https://salsa.debian.org/science-team/adms","https://github.com/Qucs/ADMS.git",3397.3394444445,6,10,0,12,44,0,3,49,2,"2",1.625,1.89795918367347 +"ADOL-C",-0.218347665,0.2989988071,-0.4200973016,"https://salsa.debian.org/science-team/adolc","https://github.com/coin-or/ADOL-C",5292.5953472222,11,44,0,11,43,0,2,48,4,"4",1.8,1.89583333333333 +"taplib",-0.1607320251,2.2507776056,-0.6544297324,"https://salsa.debian.org/debian-astro-team/adql","https://github.com/gmantele/taplib.git",3533.9449074074,2,12,0,7,26,0,0,26,2,"2",1.85714285714286,2 +"adwaita-qt",0.205201025,2.3560485193,-0.2873294601,"https://salsa.debian.org/debian/adwaita-qt","https://github.com/FedoraQt/adwaita-qt.git",3324.8509953704,3,11,0,9,135,0,0,137,2,"2",1.78571428571429,1.98540145985401 +"aeskulap",-0.0079946864,0.7360602484,-0.280025211,"https://salsa.debian.org/med-team/aeskulap","https://github.com/pipelka/aeskulap.git",0.1217013889,0,2,0,2,3,0,0,4,1,"1",2,1.75 +"afew",-0.174094467,3.0914363808,-1.0829316549,"https://salsa.debian.org/python-team/packages/afew","https://github.com/afewmail/afew",4444.5631134259,14,62,1,59,188,0,0,190,3,"3",1.81578947368421,1.98947368421053 +"AFFLIBv3",0.4855383072,1.2966231457,0.0866885423,"https://salsa.debian.org/pkg-security-team/afflib","https://github.com/sshock/AFFLIBv3",3923.2419675926,1,18,0,14,23,0,0,28,3,"3",1.94736842105263,1.82142857142857 +"afio",0.7471975104,2.0817065146,0.0678453147,"https://salsa.debian.org/debian/afio","https://github.com/kholtman/afio",3009.1574652778,0,6,0,4,8,0,0,8,2,"2",2,2 +"AFLplusplus",-0.6866375311,2.5698791713,-1.4766466472,"https://salsa.debian.org/pkg-security-team/aflplusplus","https://github.com/AFLplusplus/AFLplusplus.git",1658.7534375,94,190,0,201,0,0,0,201,1,"1",1.66901408450704,1 +"aggdraw",-1.0738283571,1.0896722547,-1.5311943301,"https://salsa.debian.org/debian-gis-team/aggdraw","https://github.com/pytroll/aggdraw",4403.4778240741,4,15,2,15,48,0,0,49,3,"3",1.78947368421053,1.97959183673469 +"aha",-0.0329000287,2.2809487303,-0.5337481366,"https://salsa.debian.org/debian/aha","https://github.com/theZiz/aha.git",3422.3746180556,1,26,0,18,0,0,1,19,2,"2",1.96296296296296,1 +"aiodns",0.1656826228,1.9021756708,-0.2783622395,"https://salsa.debian.org/python-team/packages/aiodns","https://github.com/saghul/aiodns.git",3490.3476273148,13,17,0,27,96,0,0,100,2,"2",1.56666666666667,1.96 +"aioprocessing",-1.8106172723,-0.4031506429,-2.0700475194,"https://github.com/davesteele/aioprocessing","https://github.com/davesteele/aioprocessing",3054.801087963,3,13,0,8,1,0,0,8,2,"2",1.8125,1.125 +"airspyone_host",0.135032826,1.7638004482,-0.2266634267,"https://salsa.debian.org/bottoms/pkg-airspy-host","https://github.com/airspy/airspyone_host.git",3592.9147685185,9,15,0,21,60,0,6,68,2,"2",1.625,1.88235294117647 +"airspyhf",0.4277792447,3.1863173209,-0.2431051192,"https://salsa.debian.org/debian-hamradio-team/airspyhf","https://github.com/airspy/airspyhf.git",2334.5221527778,3,13,0,13,36,0,0,38,1,"1",1.8125,1.94736842105263 +"aiscm",-2.1266027747,-0.9022998492,-2.4482757524,"https://github.com/wedesoft/aiscm","https://github.com/wedesoft/aiscm",3606.1918865741,0,8,0,3,7,0,0,8,2,"2",2,1.875 +"alabaster",1.5840034231,5.0180871348,0.3754116681,"https://github.com/jbouse-debian/alabaster","https://github.com/jbouse-debian/alabaster",3086.3917592593,1,6,0,4,4,0,0,5,2,"2",1.85714285714286,1.8 +"amavisd-milter",0.615386065,3.5879174633,-0.470593397,"https://salsa.debian.org/debian/amavisd-milter","https://github.com/prehor/amavisd-milter",5582.9392824074,1,5,0,3,7,0,0,7,4,"4",1.83333333333333,2 +"amazon-ecr-credential-helper",-1.2935017996,1.3375714894,-1.8855602579,"https://github.com/awslabs/amazon-ecr-credential-helper/tree/debian","https://github.com/awslabs/amazon-ecr-credential-helper",2759.7970717593,31,49,1,56,371,0,0,396,2,"2",1.6125,1.93686868686869 +"amora",-0.6385985537,1.533812873,-1.3373354269,"https://github.com/amora/amora/tree/master/amora-server","https://github.com/amora/amora",4404.2341666667,0,11,0,6,5,0,0,9,3,"3",2,1.55555555555556 +"amsynth",0.3306364812,1.2209617467,-0.1269359447,"https://salsa.debian.org/multimedia-team/amsynth","https://github.com/nixxcode/amsynth.git",5332.9271990741,11,24,0,21,100,0,3,109,4,"4",1.68571428571429,1.91743119266055 +"amule",0.4839430086,0.6876326423,0.3238736448,"https://salsa.debian.org/debian/amule","https://github.com/amule-project/amule.git",5047.6080555556,11,25,0,16,46,0,0,55,4,"4",1.69444444444444,1.83636363636364 +"amule-emc",-0.3584249255,1.8578303929,-0.8058880504,"https://salsa.debian.org/morph/amule-emc","https://github.com/palopezv/amule-emc",2735.137662037,0,2,0,0,1,0,0,1,1,"1",2,2 +"analog-ce",0.3100100337,0.6308951381,0.1129534728,"https://salsa.debian.org/debian/analog","https://github.com/c-amie/analog-ce.git",798.2990509259,2,1,0,1,4,0,0,5,1,"1",1.33333333333333,1.8 +"anfo",-0.5164343879,1.1141228746,-0.8858012402,"https://salsa.debian.org/med-team/anfo","https://github.com/udo-stenzel/anfo",2083.7738310185,0,5,0,1,1,0,1,2,1,"1",2,1.5 +"anomaly",-2.6979232432,-0.9294432931,-3.0157661638,"https://github.com/mogaal/anomaly","https://github.com/mogaal/anomaly",224.8161226852,0,2,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"anosql",-1.7531962484,0.6178873531,-2.3213037286,"https://salsa.debian.org/python-team/packages/anosql","https://github.com/honza/anosql",2207.9932523148,1,18,0,12,24,0,0,24,1,"1",1.94736842105263,2 +"ansible-lint",0.2113200286,2.3970134545,-0.4192549848,"https://salsa.debian.org/python-team/packages/ansible-lint","https://github.com/ansible/ansible-lint",3772.1254976852,239,77,4,263,0,0,0,263,3,"3",1.24367088607595,1 +"antpm",-0.4257977771,1.2499417918,-0.9097264377,"https://salsa.debian.org/debian/antpm","https://github.com/ralovich/antpm",5246.6502893519,2,16,0,6,4,0,0,7,4,"4",1.88888888888889,1.57142857142857 +"anypaper",-0.8366781332,1.8293957466,-1.525331321,"https://github.com/mogaal/anypaper","https://github.com/mogaal/anypaper",358.8230671296,0,1,0,1,0,0,0,1,1,"1",2,1 +"aoeui",-1.5753745078,-0.1018330597,-2.0145689052,"https://salsa.debian.org/debian/aoeui","https://github.com/pklausler/aoeui.git",0.0311342593,0,4,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"apachetop",-0.1433968655,0.1384791106,-0.2436187019,"https://salsa.debian.org/debian/apachetop","https://github.com/tessus/apachetop.git",4171.4287847222,1,5,0,3,11,0,0,12,3,"3",1.83333333333333,1.91666666666667 +"apel",-0.1699911676,0.0467119457,-0.2503884599,"https://salsa.debian.org/debian/apel","https://github.com/wanderlust/apel",5064.9154166667,2,8,0,5,0,0,0,5,4,"4",1.8,1 +"apipkg",0.1848523093,2.3386412167,-0.297646363,"https://salsa.debian.org/python-team/packages/apipkg","https://github.com/pytest-dev/apipkg",4796.3536574074,4,14,0,15,32,0,0,36,3,"3",1.77777777777778,1.88888888888889 +"aplpy",-0.0173305787,1.6394741457,-0.5266587065,"https://salsa.debian.org/debian-astro-team/aplpy","https://github.com/aplpy/aplpy.git",4761.8146296296,3,44,0,33,0,0,1,34,3,"3",1.93617021276596,1 +"appdirs",0.3458277639,1.9577727359,-0.1122252661,"https://salsa.debian.org/python-team/packages/appdirs","https://github.com/ActiveState/appdirs.git",4580.7970601852,5,36,0,28,143,0,0,144,3,"3",1.8780487804878,1.99305555555556 +"appstream-generator",-1.1332713071,-0.1060546301,-1.4824521416,"https://salsa.debian.org/pkgutopia-team/appstream-generator","https://github.com/ximion/appstream-generator",2846.9885185185,14,5,0,14,47,0,0,47,2,"2",1.26315789473684,2 +"apriltag",-1.1179244852,1.091725818,-1.6047836993,"https://salsa.debian.org/science-team/apriltag","https://github.com/AprilRobotics/apriltag.git",1884.0502083333,21,28,0,42,0,0,0,42,1,"1",1.57142857142857,1 +"aprsdigi",0.1781157768,2.7404004262,-0.7343395696,"https://salsa.debian.org/debian-hamradio-team/aprsdigi","https://github.com/n2ygk/aprsdigi.git",5178.2461574074,2,9,0,4,7,0,0,7,4,"4",1.81818181818182,2 +"aprx",-0.2704326877,2.1233467944,-0.9280144637,"https://salsa.debian.org/debian-hamradio-team/aprx","https://github.com/PhirePhly/aprx",4964.0779861111,6,4,1,7,43,0,0,43,3,"3",1.4,2 +"apt-forktracer",0.0547352043,1.112259075,-0.2401275584,"https://github.com/porridge/apt-forktracer","https://github.com/porridge/apt-forktracer",5457.9246990741,1,3,0,2,1,0,0,2,4,"4",1.75,1.5 +"apt-offline",0.7681910278,1.8077281258,0.1487399152,"https://github.com/rickysarraf/apt-offline","https://github.com/rickysarraf/apt-offline",5588.93,4,18,3,12,62,0,2,69,4,"4",1.81818181818182,1.89855072463768 +"apt-venv",0.5985278149,4.8192892935,-0.7291864283,"https://salsa.debian.org/debian/apt-venv","https://github.com/LeoIannacone/apt-venv",1672.1250694445,0,3,0,1,7,0,0,7,1,"1",2,2 +"aptitude-robot",0.0330441368,2.6987643495,-0.6758866251,"https://github.com/elmar/aptitude-robot","https://github.com/elmar/aptitude-robot",3822.3247685185,3,7,1,6,9,0,0,10,3,"3",1.7,1.9 +"apulse-debian",-0.1771724569,1.2997369797,-0.4576897761,"https://github.com/exaexa/apulse-debian","https://github.com/exaexa/apulse-debian",2693.7106712963,2,11,0,9,2,0,0,9,1,"1",1.84615384615385,1.22222222222222 +"apvlv",0.8026186076,2.4912926837,-0.0110446926,"https://salsa.debian.org/debian/apvlv","https://github.com/naihe2010/apvlv",4571.1944675926,1,28,0,18,92,0,0,94,3,"3",1.96551724137931,1.97872340425532 +"arachne-pnr",-0.2393988119,0.9055823033,-0.5128499486,"https://salsa.debian.org/science-team/arachne-pnr","https://github.com/cseed/arachne-pnr.git",1523.5826388889,1,29,0,24,90,0,0,91,1,"1",1.96666666666667,1.98901098901099 +"ArbiterJS",-0.9372250205,1.3094171556,-1.3679284559,"https://salsa.debian.org/js-team/arbiterjs","https://github.com/ArbiterJS/ArbiterJS",777.6784722222,0,1,0,0,0,0,0,0,1,"1",2,NA +"arc",1.0034305192,2.95692526,0.1704629703,"https://git.hadrons.org/cgit/debian/pkgs/arc.git","https://github.com/ani6al/arc",0.1011921296,1,1,0,1,0,0,0,1,1,"1",1.5,1 +"arc-theme",0.0557512099,0.9470106383,-0.1788662281,"https://github.com/UbuntuBudgie/arc-theme/tree/debian","https://github.com/UbuntuBudgie/arc-theme",2773.5425578704,36,30,0,2,2,0,0,3,2,"2",1.45454545454545,1.66666666666667 +"arch-test",0.0607618911,0.902121307,-0.1116504733,"https://github.com/kilobyte/arch-test/tree/debian","https://github.com/kilobyte/arch-test",2721.0558912037,2,7,0,6,10,0,0,10,1,"1",1.77777777777778,2 +"archmage",-0.5766750111,-0.3037651495,-0.666439779,"https://salsa.debian.org/python-team/packages/archmage","https://github.com/dottedmag/archmage",4875.1846412037,1,4,0,3,16,0,0,16,3,"3",1.8,2 +"arcp-py",-5.0400309655,-2.6837801512,-5.4802256243,"https://salsa.debian.org/python-team/packages/arcp","https://github.com/stain/arcp-py.git",744.5613194444,0,3,0,2,4,0,0,4,1,"1",2,2 +"ardentryst",1.6336595561,4.7901963616,0.4114961199,"https://salsa.debian.org/games-team/ardentryst","https://github.com/ardentryst/ardentryst",3087.7143865741,4,6,0,6,7,0,0,7,2,"2",1.6,2 +"arename",-0.7754375198,0.9646514013,-1.1302132776,"https://salsa.debian.org/perl-team/modules/packages/arename","https://github.com/ft/arename.git",5509.5740972222,2,1,0,3,3,0,0,4,4,"4",1.33333333333333,1.75 +"phc-winner-argon2",0.743835667,2.5300173326,0.1203530186,"https://salsa.debian.org/pkg-security-team/argon2","https://github.com/P-H-C/phc-winner-argon2",2090.9970833333,21,70,0,62,101,0,0,123,1,"1",1.76923076923077,1.82113821138211 +"aif",-0.0994853605,0.2382471007,-0.2885738031,"https://salsa.debian.org/pkg-security-team/arno-iptables-firewall","https://github.com/arno-iptables-firewall/aif.git",5173.1893171296,1,13,0,3,50,0,0,50,4,"4",1.92857142857143,2 +"arp-scan",0.7973854024,2.157870748,0.1913515465,"https://salsa.debian.org/pkg-security-team/arp-scan","https://github.com/royhills/arp-scan",5689.2689583333,1,16,0,11,61,0,1,64,4,"4",1.94117647058824,1.953125 +"arpack-ng",0.3837318586,0.9028165971,0.1090371111,"https://salsa.debian.org/science-team/arpack","https://github.com/opencollab/arpack-ng.git",4374.6474884259,45,30,0,53,0,0,0,53,3,"3",1.4,1 +"arping",0.530645087,1.2970011805,0.131538231,"https://salsa.debian.org/debian/arping","https://github.com/ThomasHabets/arping",5640.3308564815,6,8,1,10,48,0,0,49,4,"4",1.57142857142857,1.97959183673469 +"assess",-1.4000321709,1.1332183932,-2.0278507888,"https://salsa.debian.org/emacsen-team/assess-el","https://github.com/phillord/assess.git",2948.0093402778,0,8,0,6,12,0,0,13,2,"2",2,1.92307692307692 +"astLib",-0.4953363519,0.6080154454,-0.6729060494,"https://salsa.debian.org/debian-astro-team/astlib","https://github.com/mattyowl/astLib.git",2666.6349305556,0,4,0,2,5,0,0,5,1,"1",2,2 +"astromenace",-0.4083684893,0.5804361033,-0.6175886343,"https://salsa.debian.org/games-team/astromenace","https://github.com/viewizard/astromenace.git",5567.4927893519,5,4,0,7,21,0,0,22,4,"4",1.44444444444444,1.95454545454545 +"astropy-healpix",-0.4944474025,0.2280631702,-0.7220614086,"https://salsa.debian.org/debian-astro-team/astropy-healpix","https://github.com/astropy/astropy-healpix",2653.9758333333,3,14,5,12,33,0,2,35,1,"1",1.82352941176471,1.94285714285714 +"atig",-1.8648493244,0.279641993,-2.4212366269,"https://salsa.debian.org/ruby-team/atig","https://github.com/atig/atig",4572.5188078704,2,14,1,10,17,0,0,17,3,"3",1.875,2 +"atlas-cpp",0.0341726983,1.1760438151,-0.4721381555,"https://salsa.debian.org/games-team/atlas-cpp","https://github.com/worldforge/atlas-cpp",5588.9221643519,1,7,0,7,9,0,0,11,4,"4",1.875,1.81818181818182 +"audacious-plugins",1.7224717183,2.5284554407,1.1638170855,"https://salsa.debian.org/multimedia-team/audacious-plugins","https://github.com/audacious-media-player/audacious-plugins",5769.3870138889,19,100,0,83,0,0,0,83,4,"4",1.84033613445378,1 +"audiofile",0.422362873,1.1370882832,0.0919717085,"https://salsa.debian.org/multimedia-team/audiofile","https://github.com/mpruett/audiofile",1573.8945023148,10,2,0,8,60,0,0,61,1,"1",1.16666666666667,1.98360655737705 +"austin",-1.9885885289,0.9749582973,-2.7198737394,"https://github.com/P403n1x87/austin","https://github.com/P403n1x87/austin",1837.728599537,4,7,8,7,31,0,1,34,1,"1",1.63636363636364,1.91176470588235 +"autocutsel-debian",0.1797843854,2.4764961713,-0.3873891003,"https://github.com/elmar/autocutsel-debian","https://github.com/elmar/autocutsel-debian",3741.7552430556,3,8,0,7,1,0,0,7,2,"2",1.72727272727273,1.14285714285714 +"autolog",-0.4586466955,0.5238636181,-1.0843460423,"https://salsa.debian.org/pkg-security-team/autolog","https://github.com/JKDingwall/autolog.git",1891.041099537,4,11,0,5,2,0,0,6,1,"1",1.73333333333333,1.33333333333333 +"automx-debian",-0.602057718,1.6606574872,-1.3781487507,"https://github.com/wreiner/automx-debian.git","https://github.com/wreiner/automx-debian.git",38.1884490741,1,1,0,1,0,0,0,1,1,"1",1.5,1 +"autopostgresqlbackup",0.0717331465,1.1779509822,-0.3973782275,"https://salsa.debian.org/kolter/autopostgresqlbackup","https://github.com/k0lter/autopostgresqlbackup",1670.5722222222,8,3,0,6,19,0,0,21,1,"1",1.27272727272727,1.9047619047619 +"autorenamer",-0.3876192426,1.6252404011,-0.8867624476,"https://github.com/porridge/autorenamer","https://github.com/porridge/autorenamer",3637.0090277778,4,1,0,1,3,0,0,3,2,"2",1.2,2 +"averell",-3.3917060035,-0.2624325775,-4.2312153625,"https://github.com/jeanparpaillon/averell","https://github.com/jeanparpaillon/averell",585.8797453704,0,1,0,0,2,0,0,2,1,"1",2,2 +"pkg-avr-evtd",0.7552713955,5.6393427141,-0.8294940805,"https://github.com/rbrito/pkg-avr-evtd","https://github.com/rbrito/pkg-avr-evtd",3784.5630787037,0,1,0,0,1,0,0,1,3,"3",2,2 +"awesfx",0.8705331012,2.216301783,0.1561432022,"https://salsa.debian.org/multimedia-team/awesfx","https://github.com/tiwai/awesfx.git",1324.8292592593,0,1,0,1,2,0,0,2,1,"1",2,2 +"biber",0.025597249,0.3975294935,-0.1139709408,"https://github.com/debian-tex/biber","https://github.com/debian-tex/biber",5232.9484259259,2,17,0,7,1,0,0,7,4,"4",1.89473684210526,1.14285714285714 +"biblesync",0.3250691142,3.3691024007,-0.4547464712,"https://salsa.debian.org/pkg-crosswire-team/biblesync","https://github.com/karlkleinpaste/biblesync.git",2205.1738773148,0,6,0,3,7,0,0,7,1,"1",2,2 +"bibtool",0.6789918484,1.7753249658,0.1299255999,"https://salsa.debian.org/tex-team/bibtool","https://github.com/ge-ne/bibtool.git",4734.0663541667,1,5,0,3,29,0,0,29,3,"3",1.83333333333333,2 +"binkd",-1.5291148732,-0.7208993868,-1.8984875134,"https://salsa.debian.org/md/binkd","https://github.com/pgul/binkd",5661.947349537,4,23,0,12,24,0,0,27,4,"4",1.85185185185185,1.88888888888889 +"bino",0.1952576502,1.8817060276,-0.4774605999,"https://github.com/schaal/bino","https://github.com/schaal/bino",3762.7609490741,0,4,0,2,1,0,0,2,2,"2",2,1.5 +"binwalk",0.2237508811,1.3345373481,-0.1513640072,"https://salsa.debian.org/pkg-security-team/binwalk","https://github.com/ReFirmLabs/binwalk",3364.812650463,24,70,1,71,16,0,25,105,2,"2",1.74468085106383,1.15238095238095 +"biometric-authentication",-0.485933223,1.5346031672,-1.0554082079,"https://github.com/ukui/biometric-authentication","https://github.com/ukui/biometric-authentication",1286.1941203704,2,8,0,4,14,0,0,14,1,"1",1.8,2 +"bitstruct",-1.0422111169,1.6758733437,-1.7408364383,"https://salsa.debian.org/python-team/packages/bitstruct","https://github.com/eerimoq/bitstruct",3110.3722916667,2,10,0,6,34,0,0,34,2,"2",1.83333333333333,2 +"blackboxwm",0.9240670694,1.5485949706,0.4955253,"https://salsa.debian.org/debian/blackbox","https://github.com/bbidulock/blackboxwm",5638.5930671296,4,7,0,8,24,0,0,27,4,"4",1.63636363636364,1.88888888888889 +"pkg-blahtexml",-0.8489779977,1.4826442088,-1.4663049964,"http://github.com/abhidg/pkg-blahtexml","http://github.com/abhidg/pkg-blahtexml",103.9986226852,0,1,0,0,0,0,0,0,1,"1",2,NA +"Bluebird",1.1380974193,4.2767964991,0.1562970087,"https://salsa.debian.org/desktop-themes-team/bluebird-gtk-theme","https://github.com/shimmerproject/Bluebird",2956.8580092593,3,16,0,11,26,0,0,27,2,"2",1.84210526315789,1.96296296296296 +"bmap-tools",-0.1504052056,1.1252732802,-0.4879151231,"https://salsa.debian.org/debian/bmap-tools","https://github.com/intel/bmap-tools",4042.2103240741,15,24,3,22,30,0,1,40,3,"3",1.61538461538462,1.75 +"boinctui",-0.1432413703,1.420786312,-0.5512115785,"https://github.com/suleman1971/boinctui","https://github.com/suleman1971/boinctui",3939.3302893519,1,7,0,5,21,0,0,21,3,"3",1.875,2 +"bootinfoscript",-0.3809313102,1.1240423783,-0.7082417318,"https://salsa.debian.org/debian/boot-info-script","https://github.com/arvidjaar/bootinfoscript",3172.7375,1,7,0,3,19,0,0,20,2,"2",1.875,1.95 +"booth",-2.5882433407,-1.3768010854,-2.9582924151,"https://salsa.debian.org/ha-team/booth","https://github.com/ClusterLabs/booth.git",4438.4447337963,6,37,0,22,34,0,0,41,3,"3",1.86046511627907,1.82926829268293 +"btchip-python",-1.1812672757,1.4023375583,-1.7414921007,"https://salsa.debian.org/python-team/packages/btchip-python","https://github.com/LedgerHQ/btchip-python.git",3019.8821180556,5,10,0,10,36,0,0,36,2,"2",1.66666666666667,2 +"btfs",-0.1692325715,2.6773757299,-0.8903422829,"https://salsa.debian.org/debian/btfs","https://github.com/johang/btfs",2774.3356481482,11,11,0,15,32,0,0,39,2,"2",1.5,1.82051282051282 +"bti",-0.2588997909,0.7195438277,-0.7283552221,"https://git.toastfreeware.priv.at/debian/bti.git","https://github.com/gregkh/bti.git",3076.6664699074,14,25,0,25,36,0,0,45,2,"2",1.64102564102564,1.8 +"btrbk-packaging",0.1156617148,2.2848637542,-0.5286650377,"https://github.com/digint/btrbk-packaging","https://github.com/digint/btrbk-packaging",2807.8996064815,1,3,0,1,4,0,0,4,2,"2",1.75,2 +"compsize",0.1058240849,2.8049694932,-0.4831458072,"https://github.com/kilobyte/compsize/tree/debian","https://github.com/kilobyte/compsize",1814.0231481482,0,8,0,7,52,0,0,52,1,"1",2,2 +"budgie-desktop",-0.3863909585,-0.1050655044,-0.4722349352,"https://github.com/ubuntubudgie/budgie-desktop/tree/debian","https://github.com/ubuntubudgie/budgie-desktop",3652.4221643519,35,69,1,5,47,0,0,48,2,"2",1.66346153846154,1.97916666666667 +"budgie-extras",-0.3549864205,1.918871211,-0.8848111475,"https://github.com/UbuntuBudgie/budgie-extras/tree/debian","https://github.com/UbuntuBudgie/budgie-extras",2299.353599537,13,15,6,20,6,0,0,24,1,"1",1.53571428571429,1.25 +"budgie-indicator-applet",-0.3165710056,1.8644335276,-0.7715039703,"https://github.com/UbuntuBudgie/budgie-indicator-applet/tree/debian","https://github.com/UbuntuBudgie/budgie-indicator-applet",2410.5153935185,0,6,1,2,24,0,0,24,1,"1",2,2 +"buildapp",-0.6306447633,1.6220492356,-1.3420391452,"https://salsa.debian.org/common-lisp-team/buildapp","https://github.com/xach/buildapp",2095.158275463,0,6,0,6,25,0,0,25,1,"1",2,2 +"bwm-ng",1.4012192264,3.1707005611,0.5566987616,"https://salsa.debian.org/debian/bwm-ng","https://github.com/vgropp/bwm-ng",5022.6577083333,1,12,0,7,29,0,0,30,4,"4",1.92307692307692,1.96666666666667 +"cafeobj",-1.8104313277,-1.0153734132,-2.0497300294,"https://github.com/CafeOBJ/cafeobj","https://github.com/CafeOBJ/cafeobj",3212.0939699074,0,7,0,3,3,0,2,7,2,"2",2,1.42857142857143 +"capnproto-debian",0.2688312178,0.9760274096,-0.0981830892,"https://github.com/thomaslee/capnproto-debian","https://github.com/thomaslee/capnproto-debian",3752.338587963,3,4,0,3,5,0,0,5,2,"2",1.57142857142857,2 +"carbon-c-relay",-1.7206703797,2.1186998142,-2.7912817518,"https://salsa.debian.org/debian/carbon-c-relay","https://github.com/grobian/carbon-c-relay.git",3376.0489467593,8,36,0,25,0,0,1,26,2,"2",1.81818181818182,1 +"CARE-debian",-0.2836237154,3.5038071749,-1.3460010784,"https://github.com/ivoire/CARE-debian","https://github.com/ivoire/CARE-debian",2.7190856481,0,2,0,1,1,0,0,2,1,"1",2,1.5 +"observatories-table",-0.1932098569,1.2412651155,-0.4565906785,"https://salsa.debian.org/debian-astro-team/casacore-data-observatories","https://github.com/casacore/observatories-table.git",766.9570138889,1,3,0,2,2,0,0,2,1,"1",1.75,2 +"cassbeam",-0.2590451087,0.999251768,-0.6449745997,"https://salsa.debian.org/debian-astro-team/cassbeam","https://github.com/ratt-ru/cassbeam",1099.9010185185,0,5,0,3,3,0,0,3,1,"1",2,2 +"casync",-1.0162004091,-0.313916552,-1.2265268627,"https://salsa.debian.org/systemd-team/casync","https://github.com/systemd/casync",2466.7584606482,38,15,0,44,38,0,0,69,1,"1",1.28301886792453,1.55072463768116 +"catcodec",-1.1685609799,1.0772762213,-1.6183880518,"https://salsa.debian.org/openttd-team/catcodec","https://github.com/OpenTTD/catcodec.git",4292.8177314815,2,4,0,3,2,0,0,3,3,"3",1.66666666666667,1.66666666666667 +"catimg",-0.0953582269,2.1605928046,-0.6844708001,"https://salsa.debian.org/debian/catimg","https://github.com/posva/catimg.git",3000.6790046296,7,14,0,12,58,0,0,58,2,"2",1.66666666666667,2 +"caveexpress",-0.4341110971,0.5694718441,-0.5965828946,"https://salsa.debian.org/games-team/caveexpress","https://github.com/mgerhardy/caveexpress",2582.468125,2,6,0,4,11,0,3,14,1,"1",1.75,1.78571428571429 +"Cavez-of-Phear-packaging",0.0722256397,3.4094980689,-0.7199285527,"https://github.com/haakonnessjoen/Cavez-of-Phear-packaging","https://github.com/haakonnessjoen/Cavez-of-Phear-packaging",23.0470601852,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"cbatticon",-0.6634198756,2.0334034925,-1.2638833309,"https://salsa.debian.org/debian/cbatticon","https://github.com/valr/cbatticon.git",4175.7122800926,3,25,0,19,61,0,2,63,3,"3",1.89285714285714,1.96825396825397 +"cbflib",0.9354285947,4.3539203092,-0.1929526206,"https://salsa.debian.org/science-team/cbflib","https://github.com/yayahjb/cbflib",5636.0790740741,1,18,0,8,16,0,0,18,4,"4",1.94736842105263,1.88888888888889 +"cbm",0.2175441651,1.9827159385,-0.3872945166,"https://salsa.debian.org/debian/cbm","https://github.com/resurrecting-open-source-projects/cbm",918.9922337963,1,3,0,2,11,0,0,12,1,"1",1.75,1.91666666666667 +"ccbuild",-0.9629469603,0.1146367137,-1.3836463029,"https://salsa.debian.org/debian/ccbuild","https://github.com/bneijt/ccbuild.git",4764.8878703704,1,5,0,2,9,0,0,9,3,"3",1.83333333333333,2 +"cccc",1.1630655625,3.7723724067,0.0933849486,"https://salsa.debian.org/debian/cccc","https://github.com/sarnold/cccc",2703.0782638889,1,7,0,3,10,0,0,11,1,"1",1.875,1.90909090909091 +"ccd2iso-debian",0.361667663,2.3145122267,-0.2829342926,"https://github.com/paulproteus/ccd2iso-debian","https://github.com/paulproteus/ccd2iso-debian",10.0830555556,1,1,0,2,1,0,0,3,1,"1",1.5,1.33333333333333 +"cclive",0.3075023734,1.0246036879,-0.0680117934,"https://github.com/mogaal/cclive","https://github.com/mogaal/cclive",1632.909375,1,4,0,2,0,0,0,2,1,"1",1.8,1 +"cd-discid",0.6925316992,3.3171474044,-0.0825478541,"https://github.com/taem/cd-discid/tree/deb","https://github.com/taem/cd-discid",2591.0086574074,2,2,0,3,8,0,0,9,1,"1",1.5,1.88888888888889 +"cellwriter",1.0089121851,3.1682961137,-0.0123490019,"https://salsa.debian.org/debian/cellwriter","https://github.com/risujin/cellwriter",1174.0054050926,1,2,0,2,8,0,1,9,1,"1",1.66666666666667,1.88888888888889 +"cen64-debian",-0.0299112832,2.2614422439,-0.6566748344,"https://github.com/dh4/cen64-debian/","https://github.com/dh4/cen64-debian",1926.2346064815,0,5,0,3,1,0,0,3,1,"1",2,1.33333333333333 +"cen64-qt-debian",-0.752499837,1.4603763669,-1.3157313926,"https://github.com/dh4/cen64-qt-debian/","https://github.com/dh4/cen64-qt-debian",1637.4857986111,0,4,0,3,1,0,0,3,1,"1",2,1.33333333333333 +"centreon-clib",-3.2868334023,-0.8614963308,-3.7498045046,"https://salsa.debian.org/centreon-team/centreon-clib","https://github.com/centreon/centreon-clib.git",4179.8511458333,9,17,0,12,14,0,0,16,3,"3",1.65384615384615,1.875 +"certspotter",-1.0333689914,-0.0755768851,-1.2332167803,"https://salsa.debian.org/go-team/packages/certspotter","https://github.com/sslmate/certspotter",2838.7901736111,7,8,2,11,9,0,0,16,2,"2",1.53333333333333,1.5625 +"CeWL",-0.0142294382,1.8140197076,-0.3642449144,"https://salsa.debian.org/pkg-security-team/cewl","https://github.com/digininja/CeWL.git",2751.2389351852,7,13,0,13,22,0,0,31,2,"2",1.65,1.70967741935484 +"cgroupfs-mount",0.5950079509,2.246233345,0.0389645239,"https://github.com/tianon/cgroupfs-mount","https://github.com/tianon/cgroupfs-mount",2931.2437847222,0,7,0,5,13,0,0,15,2,"2",2,1.86666666666667 +"chafa",0.2729454746,2.5277999875,-0.1637443656,"https://salsa.debian.org/debian/chafa","https://github.com/hpjansson/chafa.git",2095.0478819445,25,6,0,27,29,0,1,49,1,"1",1.19354838709677,1.59183673469388 +"Chaosreader",0.051219731,1.9660310042,-0.36928528,"https://salsa.debian.org/pkg-security-team/chaosreader","https://github.com/brendangregg/Chaosreader",66.7731134259,0,4,0,3,13,0,0,13,1,"1",2,2 +"charls",0.0895204966,0.7433078443,-0.0746073455,"https://salsa.debian.org/med-team/charls","https://github.com/team-charls/charls.git",5412.7639236111,9,14,0,14,20,0,2,29,4,"4",1.60869565217391,1.68965517241379 +"cjk",0.9697104519,1.6795645993,0.5078842706,"https://github.com/debian-tex/cjk","https://github.com/debian-tex/cjk",4969.9469328704,1,7,0,4,2,0,0,4,3,"3",1.875,1.5 +"cjose",0.2954038942,3.3240815436,-0.6206035693,"https://salsa.debian.org/debian/cjose","https://github.com/zmartzone/cjose.git",2698.734525463,9,16,0,16,4,0,0,17,1,"1",1.64,1.23529411764706 +"cjs",0.3334254948,1.2158627921,-0.0031931609,"https://salsa.debian.org/cinnamon-team/cjs","https://github.com/linuxmint/cjs.git",3771.5652546296,71,77,0,93,33,0,0,114,3,"3",1.52027027027027,1.28947368421053 +"ckbuilder",-1.3486815873,1.7603160909,-2.1472801921,"https://salsa.debian.org/js-team/ckbuilder","https://github.com/ckeditor/ckbuilder.git",3366.2307291667,1,11,0,10,31,0,0,31,2,"2",1.91666666666667,2 +"cl-csv",-0.1843136147,2.282501642,-0.9607356223,"https://salsa.debian.org/common-lisp-team/cl-csv","https://github.com/AccelerationNet/cl-csv",3373.8361342593,0,10,0,9,30,0,0,30,2,"2",2,2 +"cl-ftp",-0.6205750271,2.0407172858,-1.4348634933,"https://github.com/pinterface/cl-ftp","https://github.com/pinterface/cl-ftp",3252.9678009259,1,3,0,2,5,0,0,6,2,"2",1.75,1.83333333333333 +"cl-github-v3",-0.5258867542,3.1486982913,-1.5778685827,"https://github.com/hanshuebner/cl-github-v3","https://github.com/hanshuebner/cl-github-v3",2986.6350810185,1,3,0,2,3,0,0,3,2,"2",1.75,2 +"ironclad",-0.2926194741,2.5462973619,-0.9228966528,"https://salsa.debian.org/common-lisp-team/cl-ironclad","https://github.com/sharplispers/ironclad",5005.7061458333,20,31,0,38,63,0,0,79,4,"4",1.6078431372549,1.79746835443038 +"local-time",-0.1155735019,3.1988484402,-1.0582604602,"http://github.com/dlowe-net/local-time","http://github.com/dlowe-net/local-time",5698.7149884259,7,50,0,0,0,0,0,0,4,"4",1.87719298245614,NA +"lparallel",-0.3212127102,2.5346068068,-1.0978335516,"https://github.com/lmj/lparallel","https://github.com/lmj/lparallel",2019.918599537,0,5,0,4,49,0,0,49,1,"1",2,2 +"cl-markdown",-0.704735028,1.4518477641,-1.1406727407,"https://github.com/gwkkwg/cl-markdown","https://github.com/gwkkwg/cl-markdown",5675.8904513889,2,4,0,3,15,0,0,16,4,"4",1.66666666666667,1.9375 +"debian-coinor-ipopt",0.5832138621,1.8467840552,-0.023431241,"https://github.com/ghorn/debian-coinor-ipopt.git","https://github.com/ghorn/debian-coinor-ipopt.git",39.8457986111,1,2,0,3,6,0,0,7,1,"1",1.66666666666667,1.85714285714286 +"coinst",-2.1191156396,-0.1758133987,-2.7007167402,"https://salsa.debian.org/ocaml-team/coinst","https://github.com/vouillon/coinst",2037.998599537,0,10,0,3,4,0,0,5,1,"1",2,1.8 +"CoinUtils",0.5173058529,1.7235167137,0.083670866,"https://salsa.debian.org/science-team/coinutils","https://github.com/coin-or/CoinUtils",5778.8880671296,5,20,0,19,32,0,0,42,4,"4",1.8,1.76190476190476 +"collada-dom",0.691454203,3.6624920638,-0.1343215008,"https://salsa.debian.org/science-team/collada-dom","https://github.com/rdiankov/collada-dom",2502.5084606482,0,12,0,6,37,0,0,37,1,"1",2,2 +"colord-gtk",0.7697552931,2.9826639125,0.077041879,"https://salsa.debian.org/debian/colord-gtk","https://github.com/hughsie/colord-gtk.git",4151.4261111111,7,4,0,8,20,0,0,21,3,"3",1.36363636363636,1.95238095238095 +"Colormake",0.4957489072,1.6979687579,-0.1003336178,"https://salsa.debian.org/debian/colormake","https://github.com/pagekite/Colormake",1830.1740162037,0,12,0,7,19,0,0,20,1,"1",2,1.95 +"colorspacious",-0.5821614466,2.0041319598,-1.1596382365,"https://salsa.debian.org/python-team/packages/colorspacious","https://github.com/njsmith/colorspacious.git",1894.8289351852,2,10,0,9,30,0,0,33,1,"1",1.83333333333333,1.90909090909091 +"terminal-colors",-0.3857845184,0.9188572345,-0.8063133571,"https://salsa.debian.org/python-team/packages/colortest-python","https://github.com/eikenb/terminal-colors",4692.3352777778,1,2,0,2,11,0,0,11,3,"3",1.66666666666667,2 +"ColPack",0.2017867043,1.9302260292,-0.3695903388,"https://salsa.debian.org/science-team/colpack","https://github.com/CSCsw/ColPack",1916.7757175926,1,22,0,9,0,0,0,9,1,"1",1.95652173913043,1 +"CommonMark-py",-0.1141650084,1.2511686194,-0.3702327483,"https://salsa.debian.org/python-team/packages/commonmark-bkrs","https://github.com/rolandshoemaker/CommonMark-py",472.4580902778,0,5,0,4,23,0,0,24,1,"1",2,1.95833333333333 +"concordance",-0.4625050573,0.3139503984,-0.7573354842,"https://salsa.debian.org/debian/concordance","https://github.com/jaymzh/concordance.git",5701.1186458333,1,3,0,2,16,0,0,16,4,"4",1.75,2 +"config-package-dev",-0.2056225256,1.2522724234,-0.6633860362,"https://github.com/sipb/config-package-dev","https://github.com/sipb/config-package-dev",3585.0969444445,4,6,0,9,9,0,0,16,2,"2",1.6,1.5625 +"ssh-connect",0.6639299634,3.4943269761,-0.2623886668,"https://salsa.debian.org/debian/connect-proxy","https://github.com/gotoh/ssh-connect",3911.0326273148,0,6,0,3,7,0,0,9,3,"3",2,1.77777777777778 +"workbench",0.0811043258,2.6788022329,-0.7528644786,"http://github.com/neurodebian/workbench","http://github.com/neurodebian/workbench",3495.7424652778,3,16,0,0,0,0,0,0,2,"2",1.84210526315789,NA +"conserver",-0.5522688783,0.0570588023,-0.8821891544,"https://salsa.debian.org/debian/conserver","https://github.com/conserver/conserver.git",4671.668912037,1,15,0,9,21,0,0,23,3,"3",1.9375,1.91304347826087 +"constantly",0.8509284475,3.7618528736,0.0151388634,"https://salsa.debian.org/python-team/packages/constantly","https://github.com/twisted/constantly.git",2708.6915162037,2,14,0,8,30,0,0,30,1,"1",1.875,2 +"context",0.3449326884,0.8438807473,0.0662940568,"https://github.com/debian-tex/context","https://github.com/debian-tex/context",5666.6297800926,2,10,0,4,3,0,0,4,4,"4",1.83333333333333,1.75 +"context-modules",0.2805651463,2.5200169996,-0.1441758839,"https://github.com/debian-tex/context-modules","https://github.com/debian-tex/context-modules",4444.3460763889,3,7,0,4,3,0,0,4,3,"3",1.7,1.75 +"context-free",-0.3442355768,0.7562945788,-0.8321584754,"https://github.com/MtnViewJohn/context-free","https://github.com/MtnViewJohn/context-free",2911.319537037,1,9,0,3,27,0,9,36,2,"2",1.9,1.75 +"ConvertAll",0.1771895993,1.8709004223,-0.3855879122,"https://salsa.debian.org/qt-kde-team/extras/convertall","https://github.com/doug-101/ConvertAll.git",72.0215277778,1,2,0,1,0,0,0,1,1,"1",1.66666666666667,1 +"convertdate",-1.0779704926,1.5263503581,-1.6372696683,"https://salsa.debian.org/python-team/packages/convertdate","https://github.com/fitnr/convertdate",2873.5651041667,10,11,0,11,44,0,0,45,2,"2",1.52380952380952,1.97777777777778 +"project--copyright-update",-0.5521971605,1.8066389929,-1.1431761187,"https://salsa.debian.org/debian/copyright-update","https://github.com/jaalto/project--copyright-update",3367.8622453704,0,1,0,1,0,0,0,1,2,"2",2,1 +"core.cache",-0.5610215639,2.4088514058,-1.3030738883,"https://salsa.debian.org/clojure-team/core-cache-clojure","https://github.com/clojure/core.cache",4284.5170138889,8,15,0,13,17,0,18,44,3,"3",1.65217391304348,1.38636363636364 +"cruft",1.801661645,2.7360925805,1.1501879975,"https://github.com/a-detiste/cruft","https://github.com/a-detiste/cruft",5211.5065740741,2,8,0,7,3,0,0,7,4,"4",1.8,1.42857142857143 +"cruft-ng",0.142059124,2.3097088035,-0.5171739502,"https://github.com/a-detiste/cruft-ng","https://github.com/a-detiste/cruft-ng",3368.4031018519,2,10,0,10,11,0,1,13,2,"2",1.83333333333333,1.84615384615385 +"cryfs",-0.1323512993,0.8693806221,-0.3694530273,"https://github.com/davesteele/cryfs","https://github.com/davesteele/cryfs",3180.9594560185,28,15,0,27,1,0,0,27,2,"2",1.34883720930233,1.03703703703704 +"CTDConverter",-2.8525515304,-0.4549866674,-3.3207596251,"https://salsa.debian.org/med-team/ctdconverter","https://github.com/WorkflowConversion/CTDConverter",2616.9146180556,5,13,0,9,15,0,0,15,1,"1",1.72222222222222,2 +"cupt",-0.7851662489,-0.7413560004,-0.8102098137,"https://github.com/jackyf/cupt/tree/master","https://github.com/jackyf/cupt",3964.469525463,4,7,0,6,9,0,1,14,3,"3",1.63636363636364,1.64285714285714 +"curvedns",-1.1461706987,0.1127414426,-1.3738129892,"https://salsa.debian.org/pkg-security-team/curvedns","https://github.com/curvedns/curvedns.git",3466.7757291667,0,3,0,2,9,0,0,9,2,"2",2,2 +"cwm",-0.5002044281,1.5042184567,-0.9352825389,"https://github.com/jamesmcdonald/cwm","https://github.com/jamesmcdonald/cwm",5679.8960532407,1,30,0,0,1,0,0,1,4,"4",1.96774193548387,2 +"cycle",-0.313126049,0.6954651903,-0.7844178818,"https://salsa.debian.org/med-team/cycle","https://github.com/metlov/cycle.git",229.9525347222,0,1,0,1,0,0,0,1,1,"1",2,1 +"project--perl-ddir",-0.9126372061,1.4246841106,-1.4714839475,"https://salsa.debian.org/debian/ddir","https://github.com/jaalto/project--perl-ddir.git",3338.2834722222,0,1,0,1,2,0,0,2,2,"2",2,2 +"debomatic",-0.8158097197,-0.1371156791,-1.0821998073,"https://salsa.debian.org/python-team/packages/debomatic","https://github.com/debomatic/debomatic",5739.495,4,16,0,13,18,0,0,22,4,"4",1.8,1.81818181818182 +"debootstick",-0.5087170385,0.8382307544,-0.8815589055,"https://github.com/drakkar-lig/debootstick","https://github.com/drakkar-lig/debootstick",3036.0772106482,5,8,0,8,20,0,2,23,2,"2",1.61538461538462,1.8695652173913 +"debian-debuerreotype",-1.063173434,1.4648781183,-1.6297873496,"https://github.com/debuerreotype/debian-debuerreotype","https://github.com/debuerreotype/debian-debuerreotype",2712.8558217593,0,4,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"deepin-notifications",0.3474442725,3.6547785603,-0.4321808993,"https://salsa.debian.org/pkg-deepin-team/deepin-notifications","https://github.com/linuxdeepin/deepin-notifications",2025.0469791667,4,26,0,14,18,0,0,30,1,"1",1.86666666666667,1.6 +"dicteval",-2.9536986334,-0.1320875709,-3.6889555809,"https://salsa.debian.org/debian/dicteval","https://github.com/osantana/dicteval.git",1110.6433217593,3,12,0,10,14,0,0,14,1,"1",1.8,2 +"ding-libs",0.3833422556,2.4936424716,-0.1381470129,"https://salsa.debian.org/sssd-team/ding-libs","https://github.com/SSSD/ding-libs",5249.6200810185,15,12,0,14,16,0,0,23,4,"4",1.44444444444444,1.69565217391304 +"dir2ogg",0.2396946845,1.641521491,-0.3190929184,"https://github.com/julian-klode/dir2ogg","https://github.com/julian-klode/dir2ogg",1310.0299884259,1,5,1,3,9,0,0,10,1,"1",1.83333333333333,1.9 +"direnv-deb",-0.006884838,1.7585706473,-0.4511605857,"https://github.com/direnv/direnv-deb","https://github.com/direnv/direnv-deb",3256.5212847222,1,6,0,1,1,0,0,2,2,"2",1.85714285714286,1.5 +"node-dirty",-0.8909885733,2.6227016495,-1.9512157567,"https://salsa.debian.org/js-team/dirty.js","https://github.com/felixge/node-dirty.git",4940.3282175926,7,21,0,20,52,0,0,53,3,"3",1.75,1.9811320754717 +"discus",1.1705020939,3.7454601144,0.0821077036,"https://salsa.debian.org/debian/discus","https://github.com/ncarrier/discus.git",1119.0192592593,0,4,0,1,3,0,0,3,1,"1",2,2 +"diskscan",-0.2808442196,0.3836383801,-0.4193484695,"https://salsa.debian.org/debian/diskscan","https://github.com/baruch/diskscan.git",1436.448587963,0,3,0,3,32,0,0,32,1,"1",2,2 +"ditaa",1.1445611741,3.5538586753,0.1428331298,"https://salsa.debian.org/java-team/ditaa","https://github.com/stathissideris/ditaa",4647.8960416667,3,17,0,12,73,0,0,74,3,"3",1.85,1.98648648648649 +"dizzy",0.5207937556,2.8020455015,-0.2161435151,"https://salsa.debian.org/perl-team/modules/packages/dizzy","https://github.com/penma/dizzy.git",1717.3470949074,4,6,0,4,1,0,0,5,1,"1",1.6,1.2 +"django-bitfield",-1.1647703491,1.6767739512,-1.9098342392,"https://salsa.debian.org/python-team/packages/django-bitfield","https://github.com/disqus/django-bitfield",4482.6217939815,15,33,0,35,84,0,0,98,3,"3",1.6875,1.85714285714286 +"django-cas-server",-1.308896058,2.2292815551,-2.3158506417,"https://salsa.debian.org/python-team/packages/django-cas-server","https://github.com/nitmir/django-cas-server.git",3041.6335532407,8,9,0,13,46,0,0,47,2,"2",1.52941176470588,1.97872340425532 +"pkg-django-compat",-1.3241602951,-0.1886083427,-1.7657341927,"https://github.com/Linaro/pkg-django-compat.git","https://github.com/Linaro/pkg-django-compat.git",1206.0878819445,0,6,0,3,3,0,0,3,1,"1",2,2 +"django-cors-headers",-1.1139410876,0.0671040287,-1.3367389103,"https://salsa.debian.org/python-team/packages/django-cors-headers","https://github.com/adamchainz/django-cors-headers",3979.5858333333,47,28,0,63,10,0,0,66,3,"3",1.37333333333333,1.15151515151515 +"django-guardian",-0.6318405623,-0.1756665381,-0.763973424,"https://salsa.debian.org/python-team/packages/django-guardian","https://github.com/lukaszb/django-guardian",4311.9324074074,74,100,0,127,8,0,0,133,3,"3",1.57471264367816,1.06015037593985 +"pkg-django-restricted-resource",-1.2869731875,0.2279132109,-1.7519542903,"https://github.com/Linaro/pkg-django-restricted-resource","https://github.com/Linaro/pkg-django-restricted-resource",3194.8619212963,0,7,0,4,3,0,0,5,2,"2",2,1.6 +"django-reversion",-0.777150964,0.9983388355,-1.4152875579,"https://salsa.debian.org/python-team/packages/django-reversion","https://github.com/etianen/django-reversion.git",5522.8556828704,31,173,0,144,17,0,14,167,4,"4",1.84803921568627,1.10179640718563 +"django-setuptest",-1.0039883027,1.8917399808,-1.7398796439,"https://salsa.debian.org/python-team/packages/django-setuptest","https://github.com/praekelt/django-setuptest.git",1589.0550810185,0,22,0,14,37,0,0,38,1,"1",2,1.97368421052632 +"pkg-django-testproject",-0.7999395109,1.6435435249,-1.4494523946,"https://github.com/Linaro/pkg-django-testproject","https://github.com/Linaro/pkg-django-testproject",3196.2780324074,0,5,0,3,4,0,0,4,2,"2",2,2 +"pkg-django-testscenarios",-1.3257146932,-0.0322578006,-1.6658090716,"https://github.com/Linaro/pkg-django-testscenarios","https://github.com/Linaro/pkg-django-testscenarios",3196.2901157408,0,7,0,4,5,0,0,5,2,"2",2,2 +"django-xmlrpc",-1.0500707985,0.6741579236,-1.5157519079,"https://salsa.debian.org/python-team/packages/django-xmlrpc","https://github.com/Fantomas42/django-xmlrpc",2632.3087384259,1,5,0,2,8,0,0,8,1,"1",1.83333333333333,2 +"dmarc-cat",-0.1483894393,3.3771756375,-1.1901233623,"https://salsa.debian.org/go-team/packages/dmarc-cat","https://github.com/keltia/dmarc-cat.git",1521.7803009259,0,4,0,3,19,0,0,19,1,"1",2,2 +"dms",-1.7923560941,0.9490139495,-3.0040589667,"https://github.com/grantma/dms","https://github.com/grantma/dms",1425.0333101852,0,7,0,1,0,0,0,1,1,"1",2,1 +"dnstap-ldns",-1.9630028548,0.4908382481,-2.5788124384,"https://salsa.debian.org/dns-team/dnstap-ldns","https://github.com/dnstap/dnstap-ldns.git",2977.0303009259,3,7,0,5,6,0,0,7,2,"2",1.7,1.85714285714286 +"dnswalk",1.9006613427,5.3064955884,0.5879892736,"https://salsa.debian.org/debian/dnswalk","https://github.com/davebarr/dnswalk.git",3790.9134837963,0,2,0,2,5,0,0,5,3,"3",2,2 +"docdiff",-0.3637756064,0.6895030349,-0.723612814,"https://salsa.debian.org/debian/docdiff","https://github.com/hisashim/docdiff",3912.6548148148,0,6,1,5,11,0,2,13,3,"3",2,1.84615384615385 +"Droopy",-0.8939869433,1.3787169177,-1.3337026104,"https://salsa.debian.org/debian/droopy","https://github.com/stackp/Droopy.git",5280.2147685185,0,7,0,4,33,0,0,33,4,"4",2,2 +"drumkv1",-0.1956463038,1.0706720909,-0.4594280916,"https://salsa.debian.org/multimedia-team/drumkv1","https://github.com/rncbc/drumkv1.git",4115.9090277778,1,13,0,4,23,0,1,24,3,"3",1.92857142857143,1.95833333333333 +"dtach",0.4720927384,2.0532258223,-0.05646356,"https://salsa.debian.org/voelkel-guest/dtach","https://github.com/crigler/dtach.git",1708.1544328704,2,2,0,3,25,0,0,26,1,"1",1.5,1.96153846153846 +"dtfabric",0.0544342308,2.3417288031,-0.4793676181,"https://salsa.debian.org/debian/dtfabric","https://github.com/libyal/dtfabric.git",2597.9576388889,0,1,0,1,6,0,1,7,1,"1",2,1.85714285714286 +"dumpet",0.8119567162,4.8329646447,-0.595687567,"https://salsa.debian.org/debian/dumpet","https://github.com/rhboot/dumpet.git",4953.9319097222,2,5,0,3,2,0,0,4,3,"3",1.71428571428571,1.5 +"dvbcut-deb",-0.140015948,0.3995494726,-0.3603098157,"https://github.com/bernhardu/dvbcut-deb","https://github.com/bernhardu/dvbcut-deb",2301.5843402778,21,3,0,13,12,0,0,21,1,"1",1.125,1.57142857142857 +"dvisvgm",0.1719982822,1.5508413641,-0.14266231,"https://github.com/debian-tex/dvisvgm","https://github.com/debian-tex/dvisvgm",1541.3238194445,1,6,0,3,2,0,0,3,1,"1",1.85714285714286,1.66666666666667 +"dymo-cups-drivers",0.1695490981,1.2653423504,-0.0340436611,"https://salsa.debian.org/printing-team/dymo-cups-drivers","https://github.com/matthiasbock/dymo-cups-drivers",4079.6409837963,4,11,0,5,30,0,0,31,3,"3",1.73333333333333,1.96774193548387 +"e2tools",-0.3154826477,0.572945917,-0.5928968266,"https://salsa.debian.org/debian/e2tools","https://github.com/e2tools/e2tools",1196.5083217593,2,6,3,6,14,0,0,16,1,"1",1.75,1.875 +"easygit",0.383586011,3.5957594474,-0.5807571227,"https://salsa.debian.org/debian/easygit","https://github.com/newren/easygit",3676.0657175926,399,15,0,318,0,0,0,318,2,"2",1.03623188405797,1 +"easyprocess",-0.5379917332,1.9459970198,-1.0219432067,"https://salsa.debian.org/python-team/packages/easyprocess","https://github.com/ponty/easyprocess.git",4652.3978009259,3,9,0,6,23,0,0,23,3,"3",1.75,2 +"ecdsautils",-0.5842189084,1.6112758398,-1.017052069,"https://salsa.debian.org/communitywlan-team/ecdsautils","https://github.com/freifunk-gluon/ecdsautils",3436.625625,1,8,0,5,0,0,0,5,2,"2",1.88888888888889,1 +"edbrowse",0.3708322115,1.5829127394,-0.1941202595,"https://salsa.debian.org/a11y-team/edbrowse","https://github.com/CMB/edbrowse.git",5783.5197453704,9,22,0,20,30,0,10,47,4,"4",1.70967741935484,1.63829787234043 +"emacs-python-environment",-0.6497796464,0.8881585898,-0.9254847969,"https://salsa.debian.org/emacsen-team/emacs-python-environment","https://github.com/tkf/emacs-python-environment.git",626.8352777778,0,3,0,3,12,0,0,12,1,"1",2,2 +"engauge_debian",0.4683184378,1.884463339,-0.1321998122,"https://github.com/winchen/engauge_debian","https://github.com/winchen/engauge_debian",3059.1429976852,0,6,0,2,1,0,0,2,2,"2",2,1.5 +"enjarify",0.4273596447,3.1508079803,-0.3690926561,"https://salsa.debian.org/android-tools-team/enjarify","https://github.com/Storyyeller/enjarify",1738.1109490741,3,12,0,10,26,0,0,30,1,"1",1.8,1.86666666666667 +"entrypoints",0.857419697,4.1047834353,0.0074721981,"https://salsa.debian.org/python-team/packages/entrypoints","https://github.com/takluyver/entrypoints",2468.1372569445,5,10,0,10,52,0,0,52,1,"1",1.66666666666667,2 +"enzyme",0.2209281122,2.7508227467,-0.5362781772,"https://salsa.debian.org/python-team/packages/enzyme","https://github.com/Diaoul/enzyme",665.1386111111,0,3,0,2,20,0,0,20,1,"1",2,2 +"epoptes",-0.5424519728,0.3737235027,-0.8396779959,"https://github.com/epoptes/epoptes","https://github.com/epoptes/epoptes",4351.4067939815,4,10,0,8,6,0,0,11,3,"3",1.71428571428571,1.54545454545455 +"epr-api",-0.1835594424,2.5490628716,-0.8931266505,"https://salsa.debian.org/debian-gis-team/epr-api","https://github.com/bcdev/epr-api",4843.1898611111,0,19,0,7,3,0,0,8,3,"3",2,1.375 +"erfa",0.2626332321,2.3178268988,-0.1835083824,"https://salsa.debian.org/debian-astro-team/erfa","https://github.com/liberfa/erfa",3687.0853240741,3,14,0,13,25,0,0,29,2,"2",1.82352941176471,1.86206896551724 +"eris",-0.632476633,0.6133940856,-1.1993507243,"https://salsa.debian.org/games-team/eris","https://github.com/worldforge/eris",5633.2405092593,2,7,0,8,6,0,0,10,4,"4",1.77777777777778,1.6 +"bear",-1.5598707008,0.7740571851,-2.0549566735,"https://salsa.debian.org/erlang-team/packages/erlang-bear","https://github.com/boundary/bear.git",985.0124652778,0,11,0,6,17,0,0,17,1,"1",2,2 +"cuttlefish",-1.1570169301,1.4079371161,-1.9722441303,"https://salsa.debian.org/erlang-team/packages/erlang-cuttlefish","https://github.com/Kyorai/cuttlefish.git",3504.2075115741,6,42,0,29,12,0,17,51,2,"2",1.875,1.23529411764706 +"getopt",-1.2464014688,1.2405525277,-1.7527351047,"https://salsa.debian.org/erlang-team/packages/erlang-getopt","https://github.com/jcomellas/getopt",5121.0564583333,4,19,0,16,31,0,0,33,4,"4",1.82608695652174,1.93939393939394 +"extrace",-0.716911996,1.6418001527,-1.2621214591,"https://salsa.debian.org/debian/extrace","https://github.com/chneukirchen/extrace",3149.892662037,4,2,0,5,5,0,0,6,2,"2",1.33333333333333,1.83333333333333 +"eyeD3-debian",1.2363220835,2.3225067373,0.5919861745,"https://github.com/gaetano-guerriero/eyeD3-debian","https://github.com/gaetano-guerriero/eyeD3-debian",2546.8571180556,1,6,0,1,2,0,0,3,1,"1",1.85714285714286,1.66666666666667 +"faac",0.4086376314,1.7882056088,-0.0272312251,"https://salsa.debian.org/multimedia-team/faac","https://github.com/knik0/faac",5409.5071180556,6,12,0,10,30,0,0,30,4,"4",1.66666666666667,2 +"faad2",1.0544175056,2.2339624185,0.4716640534,"https://salsa.debian.org/multimedia-team/faad2","https://github.com/knik0/faad2.git",5741.3708333333,16,14,0,22,44,0,0,49,4,"4",1.46666666666667,1.89795918367347 +"faba-icon-theme",0.8911212387,4.4384740676,-0.1142443813,"https://github.com/ubuntubudgie/faba-icon-theme/tree/debian","https://github.com/ubuntubudgie/faba-icon-theme",1592.9366782407,0,6,0,2,0,0,0,2,1,"1",2,1 +"fabulous",-1.9004216273,-0.0667224502,-2.4935029916,"https://salsa.debian.org/python-team/packages/fabulous","https://github.com/jart/fabulous.git",4223.1852546296,4,8,0,7,25,5,0,30,3,"3",1.66666666666667,1.83333333333333 +"fadecut",-0.6673500925,1.8538364578,-1.1385440983,"https://github.com/fadecut/fadecut/tree/debian","https://github.com/fadecut/fadecut",2792.815474537,1,14,5,2,11,0,1,12,2,"2",1.93333333333333,1.91666666666667 +"fai",-0.1410290031,-0.0834131887,-0.1875070234,"https://github.com/faiproject/fai","https://github.com/faiproject/fai",5773.004537037,75,16,0,54,6,0,0,57,4,"4",1.17582417582418,1.10526315789474 +"fakesleep",-2.4812653648,0.0741874264,-3.0028931926,"https://salsa.debian.org/python-team/packages/fakesleep","https://github.com/wearpants/fakesleep",0.0144907407,0,1,0,1,3,0,0,3,1,"1",2,2 +"fastd",0.3335142219,3.127871508,-0.5170005596,"https://salsa.debian.org/communitywlan-team/fastd","https://github.com/NeoRaider/fastd.git",4199.101087963,7,5,0,10,31,0,1,35,3,"3",1.41666666666667,1.88571428571429 +"ft2-clone",-1.4004624291,1.3055702677,-2.1338147005,"https://salsa.debian.org/multimedia-team/fasttracker2","https://github.com/8bitbubsy/ft2-clone",1461.1673958333,1,7,0,7,46,0,0,46,1,"1",1.875,2 +"fastx_toolkit",-0.3457886057,1.0929975464,-0.7809122121,"https://salsa.debian.org/med-team/fastx-toolkit","https://github.com/agordon/fastx_toolkit.git",3133.6998726852,1,6,0,3,38,0,0,39,2,"2",1.85714285714286,1.97435897435897 +"fatcat",0.4842442346,3.2701121154,-0.2692644397,"https://salsa.debian.org/pkg-security-team/fatcat","https://github.com/gregwar/fatcat",3248.5118981482,2,7,0,6,33,0,0,33,2,"2",1.77777777777778,2 +"fatresize",1.7814820731,4.9928976784,0.5330410517,"https://salsa.debian.org/parted-team/fatresize","https://github.com/ya-mouse/fatresize",2189.5325,0,6,0,4,33,0,0,33,1,"1",2,2 +"fbpager",1.5882380186,4.0001262231,0.5019616446,"https://salsa.debian.org/debian/fbpager","https://github.com/fluxbox/fbpager",37.6531828704,0,2,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"fbset",1.3134317762,2.3999244161,0.6559617709,"https://github.com/sudipm-mukherjee/fbset.git","https://github.com/sudipm-mukherjee/fbset.git",5178.7434375,2,3,0,1,1,0,0,2,4,"4",1.6,1.5 +"fcgiwrap",0.3134577921,1.1712166293,-0.0802338795,"https://salsa.debian.org/debian/fcgiwrap","https://github.com/gnosek/fcgiwrap",2589.7245138889,5,10,0,10,65,0,0,68,1,"1",1.66666666666667,1.95588235294118 +"fcitx-libpinyin",1.3904314469,5.5830539288,-0.0318276844,"https://salsa.debian.org/input-method-team/fcitx-libpinyin","https://github.com/fcitx/fcitx-libpinyin",4359.6518287037,2,6,0,6,22,0,0,22,3,"3",1.75,2 +"pkg-fdm",0.3672168929,2.1938634044,-0.4626394068,"https://github.com/ft/pkg-fdm/","https://github.com/ft/pkg-fdm",5107.6653125,0,3,0,2,1,0,0,3,4,"4",2,1.33333333333333 +"fizmo-ncursesw",-0.2032604477,2.2028162183,-0.7770451436,"https://github.com/chrender/fizmo-ncursesw","https://github.com/chrender/fizmo-ncursesw",4851.4142708333,0,5,0,2,1,0,0,2,3,"3",2,1.5 +"flake8-polyfill",-0.2905096989,2.1500667272,-0.8317869422,"https://salsa.debian.org/python-team/packages/flake8-polyfill","https://github.com/PyCQA/flake8-polyfill.git",2673.1830902778,0,6,0,4,5,0,0,7,1,"1",2,1.71428571428571 +"flam3",0.7831072925,3.742743382,-0.2650609153,"https://salsa.debian.org/debian/flam3","https://github.com/scottdraves/flam3",1152.1052083333,1,7,0,3,25,0,4,29,1,"1",1.875,1.86206896551724 +"flask-jwt-simple",-3.7410042156,-1.191605345,-4.3201217059,"https://salsa.debian.org/python-team/packages/flask-jwt-simple","https://github.com/vimalloc/flask-jwt-simple.git",1518.8651041667,3,4,0,3,21,0,0,22,1,"1",1.57142857142857,1.95454545454545 +"flask-ldapconn",-1.0816817059,1.8547595955,-1.9421748383,"https://salsa.debian.org/python-team/packages/flask-ldapconn","https://github.com/rroemhild/flask-ldapconn",3190.6329976852,4,10,0,11,32,0,0,32,2,"2",1.71428571428571,2 +"flask-silk",-0.0747361696,1.0191065444,-0.3413292213,"https://salsa.debian.org/python-team/packages/flask-silk","https://github.com/sublee/flask-silk.git",2842.4741087963,0,7,0,3,4,0,0,4,2,"2",2,2 +"Junicode-font",0.9749123035,2.3528322079,0.3195301325,"https://salsa.debian.org/fonts-team/fonts-junicode","https://github.com/psb1558/Junicode-font",1677.9374305556,3,4,0,6,15,0,0,19,1,"1",1.57142857142857,1.78947368421053 +"font-abyssinica",1.1912418458,4.4703518731,0.0766166908,"https://salsa.debian.org/fonts-team/fonts-sil-abyssinica","https://github.com/silnrsi/font-abyssinica",1729.8640509259,1,8,0,7,2,0,0,7,1,"1",1.88888888888889,1.28571428571429 +"font-andika",0.226819753,1.7302356665,-0.1521199628,"https://salsa.debian.org/fonts-team/fonts-sil-andika","https://github.com/silnrsi/font-andika",2361.7046180556,0,9,0,6,6,0,0,11,1,"1",2,1.54545454545455 +"foomatic-db",1.5209798812,2.5785791995,0.8766539303,"https://salsa.debian.org/printing-team/foomatic-db","https://github.com/OpenPrinting/foomatic-db.git",5681.1902083333,5,53,0,16,22,0,0,30,4,"4",1.91379310344828,1.73333333333333 +"formiko-debian",0.1628471672,3.1297243219,-0.6061311313,"https://github.com/ondratu/formiko-debian","https://github.com/ondratu/formiko-debian",1770.974849537,2,2,0,3,3,0,0,3,1,"1",1.5,2 +"fortunes-br",0.3826030919,2.4726357351,-0.4239383871,"https://github.com/leitao/fortunes-br.git","https://github.com/leitao/fortunes-br.git",0.0056944444,0,1,0,1,0,0,0,1,1,"1",2,1 +"fortunes-mario-deb",0.2746196581,1.8773332397,-0.3193714441,"http://github.com/fike/fortunes-mario-deb","http://github.com/fike/fortunes-mario-deb",1606.775150463,3,8,0,0,0,0,0,0,1,"1",1.72727272727273,NA +"fpgatools",0.2633177336,3.6230241615,-0.6179143711,"https://github.com/Wolfgang-Spraul/fpgatools","https://github.com/Wolfgang-Spraul/fpgatools",1132.0893287037,1,6,0,5,0,0,0,5,1,"1",1.85714285714286,1 +"fqterm",-1.4778336115,-0.4100027914,-1.8864383483,"https://salsa.debian.org/chinese-team/fqterm","https://github.com/mytbk/fqterm",3515.765625,5,7,0,7,21,0,1,23,2,"2",1.58333333333333,1.91304347826087 +"FreeAlchemist",0.059449695,2.2746437451,-0.4707582387,"https://salsa.debian.org/python-team/packages/freealchemist","https://github.com/dakk/FreeAlchemist",3586.1830324074,0,3,0,1,0,0,0,1,2,"2",2,1 +"freedv-gui",-0.3213805891,1.1426935949,-0.7378333115,"https://salsa.debian.org/debian-hamradio-team/freedv","https://github.com/drowe67/freedv-gui",3043.6515972222,1,33,0,13,0,0,0,13,2,"2",1.97058823529412,1 +"freewheeling",0.5792903992,2.5071657819,-0.2534567966,"https://salsa.debian.org/multimedia-team/freewheeling","https://github.com/free-wheeling/freewheeling",5218.8730671296,1,3,0,3,28,0,2,30,4,"4",1.75,1.93333333333333 +"frozen-bubble",0.1650357772,0.4601977225,-0.0231433032,"https://salsa.debian.org/perl-team/modules/packages/frozen-bubble","https://github.com/kthakore/frozen-bubble.git",3389.417650463,4,17,0,10,23,0,0,27,2,"2",1.80952380952381,1.85185185185185 +"fyba",0.4754986254,2.6289545812,-0.0402028003,"https://salsa.debian.org/debian-gis-team/fyba","https://github.com/kartverket/fyba.git",1185.3266203704,1,10,0,5,17,0,0,17,1,"1",1.90909090909091,2 +"g2",-0.2327989276,0.4800818237,-0.5737455032,"https://salsa.debian.org/med-team/g2","https://github.com/danielrmeyer/g2",0,0,1,0,0,3,0,0,3,NA,NA,2,2 +"ganeti-os-noop",-0.2281036129,2.1546963922,-0.852366861,"https://salsa.debian.org/ganeti-team/ganeti-os-noop","https://github.com/grnet/ganeti-os-noop",677.1858449074,0,6,0,2,5,1,0,6,1,"1",2,1.83333333333333 +"ganglia-modules-linux",0.0664199188,1.2956066726,-0.272928033,"https://salsa.debian.org/debian/ganglia-modules-linux","https://github.com/ganglia/ganglia-modules-linux.git",1617.3040972222,0,6,0,3,4,0,0,4,1,"1",2,2 +"sonata",-0.5294268825,1.0612461481,-0.8314567315,"https://salsa.debian.org/science-team/gap-sonata","https://github.com/gap-packages/sonata.git",4006.9744907407,4,7,0,4,8,0,0,60,3,"3",1.63636363636364,1.13333333333333 +"toric",-0.2451456454,2.4949167647,-0.8186260968,"https://salsa.debian.org/science-team/gap-toric","https://github.com/gap-packages/toric.git",3029.62,4,5,0,5,6,0,0,7,2,"2",1.55555555555556,1.85714285714286 +"garmintools",-0.2174342508,0.5366088912,-0.517674515,"https://salsa.debian.org/debian/garmin-forerunner-tools","https://github.com/jorgesca/garmintools.git",2685.7982986111,0,5,0,3,1,0,0,4,1,"1",2,1.25 +"gatk-native-bindings",-0.1009865887,2.4624009827,-0.676296384,"https://salsa.debian.org/java-team/gatk-native-bindings","https://github.com/broadinstitute/gatk-native-bindings",505.8018981481,1,4,0,3,6,0,0,6,1,"1",1.8,2 +"gau2grid",-0.815898809,1.1342927173,-1.4069047503,"https://salsa.debian.org/debichem-team/gau2grid","https://github.com/dgasmith/gau2grid",1166.9793981482,4,10,0,8,18,0,0,18,1,"1",1.71428571428571,2 +"gconjugue",-1.193395361,0.6134141951,-1.7117987645,"https://salsa.debian.org/debian/gconjugue","https://github.com/jalvesaq/gconjugue",2752.1538888889,0,4,0,1,3,0,0,3,2,"2",2,2 +"gdnsd",-2.9678392165,-0.3979054994,-3.671905411,"https://github.com/paravoid/gdnsd","https://github.com/paravoid/gdnsd",4241.3566550926,2,11,0,9,3,0,0,11,3,"3",1.84615384615385,1.27272727272727 +"geki2",-0.2585741806,1.1302096458,-0.6025965378,"https://salsa.debian.org/games-team/geki2","https://github.com/Quipyowert2/geki2",1827.8569328704,0,3,0,1,1,0,0,1,1,"1",2,2 +"gelemental",0.1018714919,1.200080654,-0.3080550909,"https://salsa.debian.org/debichem-team/gelemental","https://github.com/ginggs/gelemental",1560.5809722222,8,4,0,9,9,0,0,12,1,"1",1.33333333333333,1.75 +"genetic",0.2707726153,2.7069673968,-0.4380759284,"https://salsa.debian.org/science-team/genetic","https://github.com/skoblov-lab/genetic",1118.9616550926,2,4,0,1,1,0,0,1,1,"1",1.66666666666667,2 +"genext2fs",-0.2882576546,0.2063423739,-0.5033680475,"https://salsa.debian.org/debian/genext2fs","https://github.com/bestouff/genext2fs",3682.2901041667,0,10,0,5,18,0,0,19,2,"2",2,1.94736842105263 +"gimp-texturize",0.1555855572,1.2662980132,-0.1945666027,"https://salsa.debian.org/debian/gimp-texturize","https://github.com/lmanul/gimp-texturize.git",3625.7350810185,1,11,0,4,8,0,0,8,2,"2",1.91666666666667,2 +"ginkgocadx",-0.2628483641,0.2619463655,-0.4738586037,"https://salsa.debian.org/med-team/ginkgocadx","https://github.com/gerddie/ginkgocadx.git",2123.8061111111,1,5,0,5,27,0,0,27,1,"1",1.83333333333333,2 +"git-lfs",0.1085080655,1.2887939983,-0.2117786782,"https://salsa.debian.org/go-team/packages/git-lfs","https://github.com/github/git-lfs.git",3479.3090162037,54,197,0,202,5,0,124,330,2,"2",1.78486055776892,1.01515151515152 +"git-remote-hg",1.3804187017,3.9090882195,0.2873521231,"https://salsa.debian.org/debian/git-remote-hg","https://github.com/mnauw/git-remote-hg/commits/master",5185.326875,55,11,0,0,0,0,0,0,4,"4",1.16666666666667,NA +"debian",-0.5135509471,0.0361166657,-0.7320665039,"https://salsa.debian.org/debian/github-backup","https://salsa.debian.org/debian/github-backup",3299.6675694445,9,13,0,0,0,0,0,2,2,"2",1.59090909090909,1 +"gitless",-1.0129472172,1.1745444276,-1.5532855313,"https://salsa.debian.org/python-team/packages/gitless","https://github.com/sdg-mit/gitless.git",1580.4098032407,8,31,0,24,19,0,0,38,1,"1",1.7948717948718,1.5 +"gitmagic",0.0058626792,1.3968023647,-0.4117773836,"https://salsa.debian.org/debian/gitmagic","https://github.com/blynn/gitmagic",4774.4399537037,12,73,0,47,40,0,3,65,3,"3",1.85882352941176,1.61538461538462 +"giza",-0.0821548044,1.7697955982,-0.4330998724,"https://salsa.debian.org/debian-astro-team/giza","https://github.com/danieljprice/giza",4755.9934837963,2,14,0,9,20,0,1,23,3,"3",1.875,1.8695652173913 +"gjots2",0.4947222776,2.209205505,-0.3492735275,"https://github.com/leggewie-DM/gjots2","https://github.com/leggewie-DM/gjots2",4231.0400231482,3,4,0,1,2,0,0,2,3,"3",1.57142857142857,2 +"gkrellm-cpufreq-debian",0.5206628103,3.0983277333,-0.2908114881,"https://github.com/glaubitz/gkrellm-cpufreq-debian","https://github.com/glaubitz/gkrellm-cpufreq-debian",3039.7838657408,1,2,0,1,3,0,0,3,2,"2",1.66666666666667,2 +"gkrelluim",-1.2524698575,0.70104569,-1.6202431051,"https://salsa.debian.org/debian/gkrelluim","https://github.com/dai-vdr/gkrelluim.git",5001.2533333333,0,1,0,0,0,0,0,0,4,"4",2,NA +"glimpse",4.8421978907,8.0624327916,3.3845931676,"https://github.com/az143/glimpse","https://github.com/az143/glimpse",3292.5989583333,0,6,0,2,2,0,0,4,2,"2",2,1.5 +"global",0.9251069439,1.8029807522,0.3956705838,"https://github.com/punitagrawal/global","https://github.com/punitagrawal/global",2253.924212963,4,4,0,5,4,0,0,6,1,"1",1.5,1.66666666666667 +"gmetric4j",-2.7598692877,-0.5906102463,-3.2950920542,"https://github.com/ganglia/gmetric4j","https://github.com/ganglia/gmetric4j",3040.7001273148,1,11,0,5,21,0,2,23,2,"2",1.91666666666667,1.91304347826087 +"gnarwl",-1.0091273178,-0.1197325367,-1.4783256893,"https://salsa.debian.org/debian/gnarwl","https://github.com/fln/gnarwl",2570.5118287037,1,9,0,5,7,0,0,8,1,"1",1.9,1.875 +"dash-to-panel",0.1124971506,2.1907441864,-0.4246734255,"https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dash-to-panel","https://github.com/home-sweet-gnome/dash-to-panel.git",2629.7539467593,40,85,0,86,104,0,2,187,1,"1",1.68,1.55614973262032 +"dash-to-dock",-0.0287596469,0.9830411728,-0.301129726,"https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dashtodock","https://github.com/micheleg/dash-to-dock.git",4172.0530092593,157,30,0,142,64,0,0,197,3,"3",1.16042780748663,1.3248730964467 +"GoldenEye",0.2914223421,3.2376647843,-0.4228022843,"https://salsa.debian.org/pkg-security-team/goldeneye","https://github.com/jseidl/GoldenEye",3012.1110532407,1,7,0,5,0,0,0,5,2,"2",1.875,1 +"apps-gorm",0.3792145956,1.5053938025,-0.0975198397,"https://salsa.debian.org/gnustep-team/gorm.app","https://github.com/gnustep/apps-gorm",5785.6866782407,3,22,0,21,13,0,0,27,4,"4",1.88,1.48148148148148 +"gosa-core",-0.3775685336,-0.2189132452,-0.4901429898,"https://salsa.debian.org/debian-edu-pkg-team/gosa","https://github.com/gosa-project/gosa-core",5676.7658217593,7,31,0,8,18,0,0,20,4,"4",1.81578947368421,1.9 +"gosa-plugins-mailaddress",-2.3383979882,0.2643568587,-2.9856475557,"https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-mailaddress","https://github.com/gosa-project/gosa-plugins-mailaddress",2274.6763657408,0,4,0,2,4,0,0,4,1,"1",2,2 +"gosa-plugins-netgroups",-0.9914007629,0.4777372444,-1.3827009663,"https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-netgroups","https://github.com/gosa-project/gosa-plugins-netgroups",1422.7270023148,0,3,0,1,2,0,0,2,1,"1",2,2 +"gosa-plugins-pwreset",-1.3598337718,0.2879233373,-1.6292931799,"https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-pwreset","https://github.com/gosa-project/gosa-plugins-pwreset",2184.168125,0,3,0,1,1,0,0,2,1,"1",2,1.5 +"linux-crypto",-2.3611563875,-0.8645584676,-2.6234146821,"https://salsa.debian.org/lumag/gost-crypto","https://github.com/GostCrypt/linux-crypto.git",1726.5372222222,2,3,0,2,3,0,0,3,1,"1",1.6,2 +"gpicview",2.0702671645,4.218597649,1.053942169,"https://salsa.debian.org/lxde-team/gpicview","https://github.com/lxde/gpicview",5713.732662037,76,42,0,59,6,0,0,60,4,"4",1.35593220338983,1.1 +"gpp",0.6295645906,3.8657120667,-0.3089812218,"https://salsa.debian.org/debian/gpp","https://github.com/logological/gpp/commits/master",5185.326875,55,11,0,0,0,0,0,0,4,"4",1.16666666666667,NA +"gpustat",-0.7414031604,1.6738603051,-1.1885003927,"https://salsa.debian.org/nvidia-team/gpustat","https://github.com/wookayin/gpustat",2769.8730787037,16,5,3,17,31,0,0,44,2,"2",1.23809523809524,1.70454545454545 +"gpyfft",-0.0412032188,3.0931064376,-0.9221041966,"https://salsa.debian.org/science-team/gpyfft","https://github.com/geggo/gpyfft",2840.7253009259,4,10,0,8,33,0,0,33,2,"2",1.71428571428571,2 +"gss-ntlmssp",-1.0758514008,0.7187446283,-1.5147853098,"https://salsa.debian.org/freeipa-team/gss-ntlmssp","https://github.com/gssapi/gss-ntlmssp",3594.9212152778,10,4,0,7,12,0,1,19,2,"2",1.28571428571429,1.63157894736842 +"gtkguitune",-0.2491277386,0.3826186785,-0.4591495452,"https://github.com/bobek/gtkguitune","https://github.com/bobek/gtkguitune",3186.2603587963,1,3,0,2,1,0,0,2,2,"2",1.75,1.5 +"gtkterm",1.6614158143,3.2236786848,0.801083568,"https://salsa.debian.org/debian/gtkterm","https://github.com/Jeija/gtkterm.git",4575.4452083333,6,17,0,14,44,0,0,46,3,"3",1.73913043478261,1.95652173913043 +"gtranscribe",-0.5259853209,1.6855244705,-0.950618829,"https://salsa.debian.org/debian/gtranscribe","https://github.com/innir/gtranscribe",3558.9036921296,0,5,1,2,14,0,0,14,2,"2",2,2 +"guake-indicator",0.2250848406,2.5013911283,-0.5378976224,"https://salsa.debian.org/debian/guake-indicator/","https://github.com/Ozzyboshi/guake-indicator",2489.1411226852,1,8,0,4,11,0,0,11,1,"1",1.88888888888889,2 +"gufw",1.8217065732,4.3624901931,0.7344598754,"https://salsa.debian.org/python-team/packages/gui-ufw","https://github.com/costales/gufw.git",1462.9175578704,0,7,0,8,66,0,0,67,1,"1",2,1.98507462686567 +"guidedog",-1.2127820662,0.0904612737,-1.6926274962,"https://github.com/antocm/guidedog/tree/debian","https://github.com/antocm/guidedog",2480.6617361111,0,5,0,2,1,0,1,4,1,"1",2,1.25 +"guile-ssh",-0.8980031766,3.1579670718,-2.0800708726,"https://salsa.debian.org/debian/guile-ssh","https://github.com/artyom-poptsov/guile-ssh.git",3867.3559837963,0,10,0,8,28,0,0,28,3,"3",2,2 +"gup",-5.1695702647,-4.4485454537,-5.4289590562,"https://github.com/rfc1036/gup","https://github.com/rfc1036/gup",3593.8147453704,0,1,0,1,0,0,0,1,2,"2",2,1 +"guzzle_sphinx_theme",-0.8704022633,0.681504729,-1.1374775257,"https://salsa.debian.org/python-team/packages/guzzle-sphinx-theme","https://github.com/guzzle/guzzle_sphinx_theme.git",2860.3134027778,3,11,0,12,42,0,0,42,2,"2",1.78571428571429,2 +"debian-gwaei",-0.2415301818,1.2081497422,-0.8722234296,"https://github.com/norbusan/debian-gwaei","https://github.com/norbusan/debian-gwaei",2765.6634375,2,2,0,2,3,0,0,3,2,"2",1.5,2 +"gwakeonlan",0.8535169941,3.0627414632,-0.0322068923,"https://salsa.debian.org/debian/gwakeonlan","https://github.com/muflone/gwakeonlan.git",4933.5151273148,2,13,0,10,35,0,0,35,3,"3",1.86666666666667,2 +"gwc",0.608752043,1.6289733041,0.0519069422,"https://salsa.debian.org/multimedia-team/gwc","https://github.com/AlisterH/gwc.git",3165.1705324074,1,5,0,3,6,0,0,7,2,"2",1.83333333333333,1.85714285714286 +"gxkb",0.3787936181,4.0698464881,-0.6334875708,"https://github.com/mati75/gxkb.git","https://github.com/mati75/gxkb.git",2732.567650463,0,4,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"gxtuner",1.2625236588,4.7533829415,0.0339744566,"https://salsa.debian.org/multimedia-team/gxtuner","https://github.com/brummer10/gxtuner",1914.1892013889,3,6,0,4,9,0,0,9,1,"1",1.66666666666667,2 +"h2o",-0.7321540349,0.815719718,-1.2812732312,"https://salsa.debian.org/debian/h2o","https://github.com/h2o/h2o",4716.5859490741,44,155,4,123,17,0,22,154,3,"3",1.77889447236181,1.11038961038961 +"h5utils",-0.0466394355,0.6200500479,-0.3159473526,"https://salsa.debian.org/debian-gis-team/h5utils","https://github.com/NanoComp/h5utils.git",5379.8304166667,0,6,0,3,18,0,0,18,4,"4",2,2 +"hacktv",-2.0082673058,0.152267044,-2.4727541201,"https://salsa.debian.org/debian-hamradio-team/hacktv","https://github.com/fsphil/hacktv",2394.7430787037,3,7,0,8,43,0,0,45,1,"1",1.7,1.95555555555556 +"HandBrake",1.3904843391,2.685148707,0.6451582617,"https://salsa.debian.org/multimedia-team/handbrake","https://github.com/HandBrake/HandBrake",5786.3675231482,105,51,3,108,0,0,2,110,4,"4",1.32692307692308,1 +"hexedit",1.4888142147,3.4858685969,0.5617313768,"https://salsa.debian.org/debian/hexedit","https://github.com/pixel/hexedit.git",5414.7907060185,8,14,0,14,45,0,0,45,4,"4",1.63636363636364,2 +"hexter",0.4080603481,2.7603000142,-0.3443231764,"https://salsa.debian.org/multimedia-team/hexter","https://github.com/smbolton/hexter.git",4380.3528472222,0,6,0,5,17,0,0,17,3,"3",2,2 +"hfst-ospell",0.2591920737,1.3643095914,-0.0408851515,"https://salsa.debian.org/science-team/hfst-ospell","https://github.com/hfst/hfst-ospell.git",4745.7576967593,1,17,0,8,24,0,1,26,3,"3",1.94444444444444,1.92307692307692 +"hijra",-1.1521044725,0.9019784859,-1.9896405953,"https://salsa.debian.org/islamic-team/hijra","https://github.com/ojuba-org/hijra.git",4311.2884143519,0,8,0,4,4,0,0,6,3,"3",2,1.66666666666667 +"hinawa-utils",-1.8036430906,0.9409258571,-2.4422801802,"https://salsa.debian.org/debian/hinawa-utils/","https://github.com/takaswie/hinawa-utils.git",2264.2987962963,1,2,0,2,8,0,0,8,1,"1",1.66666666666667,2 +"hiro",-3.1230113579,-1.1402355338,-3.6931446576,"https://salsa.debian.org/python-team/packages/hiro","https://github.com/alisaifee/hiro",3329.7532638889,1,3,0,3,6,0,0,6,2,"2",1.75,2 +"hmat-oss",0.3027957485,3.0822404955,-0.6301530543,"https://salsa.debian.org/science-team/hmat-oss","https://github.com/jeromerobert/hmat-oss.git",3261.6730555556,6,19,0,14,7,0,0,16,2,"2",1.76,1.4375 +"hodie",-0.8398270988,0.8472590081,-1.2059612682,"https://salsa.debian.org/cts/hodie","https://github.com/michiexile/hodie",1318.6005671296,0,5,0,1,2,0,0,2,1,"1",2,2 +"hoel",-2.626226217,-0.6734593354,-3.0112543725,"https://salsa.debian.org/debian-iot-team/oauth2/hoel.git","https://github.com/babelouest/hoel",1340.3941203704,3,9,0,7,12,0,0,12,1,"1",1.75,2 +"html2text",1.3340380398,2.3215255445,0.7275451633,"https://salsa.debian.org/debian/html2text","https://github.com/grobian/html2text",1388.0924421296,5,7,0,7,21,0,0,23,1,"1",1.58333333333333,1.91304347826087 +"html5-parser",0.4588005785,2.4674305887,-0.084728594,"https://github.com/debian-calibre/html5-parser","https://github.com/debian-calibre/html5-parser",2309.5259259259,1,6,0,5,4,0,0,6,1,"1",1.85714285714286,1.66666666666667 +"hyphen",0.4314729534,1.6039540493,0.0503177929,"https://salsa.debian.org/libreoffice-team/hyphen","https://github.com/hunspell/hyphen.git",2824.9621875,2,9,0,6,18,0,0,19,2,"2",1.81818181818182,1.94736842105263 +"hyphen-ru",1.3639402124,5.60995268,0.0175129851,"http://github.com/Protagores/hyphen-ru","http://github.com/Protagores/hyphen-ru",3.0971875,0,1,0,0,0,0,0,0,1,"1",2,NA +"i18nspector",-0.3130156228,1.3470282705,-0.8210059464,"https://salsa.debian.org/debian/i18nspector","https://github.com/jwilk/i18nspector",3956.4540162037,0,2,0,2,6,0,0,7,3,"3",2,1.85714285714286 +"i2pd",-0.8587827802,0.1492942795,-1.1545577005,"https://salsa.debian.org/yangfl-guest/i2pd","https://github.com/PurpleI2P/i2pd",3747.1315856482,37,139,2,97,14,0,23,126,2,"2",1.78977272727273,1.11111111111111 +"i7z",0.0808738409,1.2622361789,-0.2430911659,"https://salsa.debian.org/debian/i7z","https://github.com/ajaiantilal/i7z",310.0352199074,0,7,0,3,33,0,0,35,1,"1",2,1.94285714285714 +"IanniX",-0.1880732304,2.1486905541,-0.8754662474,"https://salsa.debian.org/multimedia-team/iannix","https://github.com/buzzinglight/IanniX",4212.6902430556,7,14,0,10,41,0,3,45,3,"3",1.66666666666667,1.91111111111111 +"ibuffer-projectile",-0.7228061953,1.8154077231,-1.292148074,"https://salsa.debian.org/emacsen-team/ibuffer-projectile","https://github.com/purcell/ibuffer-projectile.git",3152.3891087963,1,7,0,7,14,0,0,14,2,"2",1.875,2 +"ice-builder-gradle-debian-packaging",-1.1849485707,0.9406079932,-1.6391429375,"https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git","https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git",2370.9240625,0,3,0,2,3,0,0,4,1,"1",2,1.75 +"icebreaker",0.4692256371,1.8411957204,-0.176942106,"https://salsa.debian.org/games-team/icebreaker","https://github.com/mattdm/icebreaker.git",3923.7699305556,0,5,0,4,7,0,0,7,3,"3",2,2 +"icemon",0.7030922937,3.5835100346,-0.2959059985,"https://salsa.debian.org/qt-kde-team/extras/icemon","https://github.com/icecc/icemon.git",4527.72,9,27,0,37,45,0,1,68,3,"3",1.75,1.66176470588235 +"icecream-sundae",-1.0385376489,1.8149325043,-1.7149505904,"https://salsa.debian.org/debian/icecream-sundae","https://github.com/JPEWdev/icecream-sundae",638.2833796296,3,6,0,6,16,0,0,16,1,"1",1.66666666666667,2 +"ifetch-tools",-1.7763116684,-1.4179435016,-1.8644650677,"https://github.com/unixabg/ifetch-tools","https://github.com/unixabg/ifetch-tools",5167.9663194445,0,4,0,3,2,0,0,3,4,"4",2,1.66666666666667 +"ifupdown-multi",-0.0008911093,3.5795714925,-1.035637135,"https://github.com/edmonds/ifupdown-multi","https://github.com/edmonds/ifupdown-multi",2598.1821759259,0,2,0,1,1,0,0,2,1,"1",2,1.5 +"inn",-0.504610683,-0.419983647,-0.5703395284,"https://salsa.debian.org/md/inn2","https://github.com/InterNetNews/inn.git",5725.5850115741,6,6,0,10,0,0,0,10,4,"4",1.5,1 +"iodine",-0.2722510221,-0.1412187428,-0.330852502,"https://git.toastfreeware.priv.at/debian/iodine.git/","https://github.com/yarrick/iodine.git",5593.1268634259,29,23,0,31,45,0,0,60,4,"4",1.44230769230769,1.75 +"ionit",-2.5676980502,-0.9981519368,-2.9844493768,"https://github.com/bdrung/ionit/tree/debian/unstable","https://github.com/bdrung/ionit",1307.9435069445,2,5,0,2,4,0,0,4,1,"1",1.71428571428571,2 +"ip4r",-1.4632745556,-0.4677957849,-1.7119933385,"https://salsa.debian.org/postgresql/ip4r","https://github.com/RhodiumToad/ip4r.git",3711.2765972222,1,6,0,5,22,0,0,23,2,"2",1.85714285714286,1.95652173913043 +"ipheth-debian",0.9430908027,3.7638258527,-0.137434873,"https://github.com/pmcenery/ipheth-debian","https://github.com/pmcenery/ipheth-debian",4243.6053819445,0,4,0,2,1,0,0,2,3,"3",2,1.5 +"ipmctl",-1.8038062885,-0.2344447385,-2.0696396657,"https://github.com/kilobyte/ipmctl/tree/debian","https://github.com/kilobyte/ipmctl",1854.5950810185,32,11,0,22,0,0,0,22,1,"1",1.25581395348837,1 +"ippusbxd",0.0111748533,2.660027865,-0.7220268879,"https://salsa.debian.org/printing-team/ippusbxd","https://github.com/OpenPrinting/ippusbxd",2327.0776967593,1,12,0,6,11,0,0,13,1,"1",1.92307692307692,1.84615384615385 +"iprange",0.6480375888,3.9597495364,-0.2945161283,"https://salsa.debian.org/debian/iprange","https://github.com/firehol/iprange.git",1873.7119328704,0,7,0,3,20,0,1,21,1,"1",2,1.95238095238095 +"iprutils",-1.9030231406,0.3339685092,-2.4460433686,"https://salsa.debian.org/debian/iprutils","https://github.com/bjking1/iprutils",5119.0450578704,18,20,0,15,14,0,0,22,4,"4",1.52631578947368,1.63636363636364 +"ipv6calc",0.5432988576,1.7634814459,-0.0022190697,"https://salsa.debian.org/debian/ipv6calc","https://github.com/pbiering/ipv6calc",5498.6132407407,2,10,5,7,16,0,0,19,4,"4",1.83333333333333,1.84210526315789 +"ipv6toolkit",0.1556183786,2.6785840103,-0.5536700112,"https://github.com/alvarezp/ipv6toolkit/tree/debian","https://github.com/alvarezp/ipv6toolkit",3020.5637962963,1,17,0,8,0,0,0,8,2,"2",1.94444444444444,1 +"pkg-ipvsadm",1.6190855359,2.7831585401,0.9056298919,"https://github.com/formorer/pkg-ipvsadm","https://github.com/formorer/pkg-ipvsadm",3173.692650463,1,2,0,2,3,0,0,4,2,"2",1.66666666666667,1.75 +"ipython_genutils",0.5301773312,3.2373221637,-0.0754853283,"https://salsa.debian.org/python-team/packages/ipython-genutils","https://github.com/ipython/ipython_genutils",4920.5252546296,2,28,3,27,23,0,0,43,3,"3",1.93333333333333,1.53488372093023 +"ir.lv2",0.0482033805,1.8072786295,-0.420434878,"https://salsa.debian.org/multimedia-team/ir.lv2","https://github.com/tomszilagyi/ir.lv2.git",901.6371759259,2,4,0,0,1,0,0,1,1,"1",1.66666666666667,2 +"sptable",-0.3572895376,2.8910468841,-1.1439831667,"https://salsa.debian.org/debian-astro-team/iraf-sptable","https://github.com/iraf-community/sptable",2001.9924189815,2,4,0,1,3,0,0,3,1,"1",1.66666666666667,2 +"ircmarkers",-1.4435928142,0.7583118463,-1.9125989528,"https://github.com/df7cb/ircmarkers","https://github.com/df7cb/ircmarkers",5694.8846527778,1,3,0,3,1,0,0,3,4,"4",1.75,1.33333333333333 +"jack_midi_clock",0.3118920052,2.9552674463,-0.4056573573,"https://salsa.debian.org/multimedia-team/jack-midi-clock","https://github.com/x42/jack_midi_clock",4775.6370949074,0,4,0,3,3,0,0,4,3,"3",2,1.75 +"jackson-dataformat-yaml",-0.30501226,2.808298895,-1.2455361494,"https://salsa.debian.org/java-team/jackson-dataformat-yaml","https://github.com/FasterXML/jackson-dataformat-yaml.git",2094.1709722222,1,22,0,16,0,0,4,20,1,"1",1.95652173913043,1 +"jaraco.itertools",-2.1770715585,0.4444182514,-2.9053425973,"https://salsa.debian.org/python-team/packages/jaraco.itertools","https://github.com/jaraco/jaraco.itertools.git",3229.3396990741,17,5,0,18,7,0,0,21,2,"2",1.22727272727273,1.33333333333333 +"java-atk-wrapper",0.561521277,1.2449834534,0.2042642146,"https://salsa.debian.org/a11y-team/java-atk-wrapper","https://github.com/GNOME/java-atk-wrapper",5298.5764814815,11,11,0,8,3,0,0,11,4,"4",1.5,1.27272727272727 +"JDim",-1.0625455629,0.9599464829,-1.4721593744,"https://salsa.debian.org/debian/jdim","https://github.com/JDimproved/JDim.git",5782.9914467593,2,15,0,8,9,0,0,9,4,"4",1.88235294117647,2 +"jhead",-0.1046962169,0.0128556712,-0.1619952781,"https://salsa.debian.org/reichel/jhead","https://github.com/Matthias-Wandel/jhead",974.1013078704,4,13,0,10,49,0,0,49,1,"1",1.76470588235294,2 +"jinja2-time",-0.4698555936,1.1570025567,-0.7656248707,"https://salsa.debian.org/python-team/packages/jinja2-time","https://github.com/hackebrot/jinja2-time",2112.1138657407,0,3,0,2,20,0,0,20,1,"1",2,2 +"jitterdebugger",-2.3485028902,-0.1533055837,-2.7859741296,"https://salsa.debian.org/debian/jitterdebugger","https://github.com/igaw/jitterdebugger.git",1214.2022916667,8,3,0,9,12,0,0,13,1,"1",1.27272727272727,1.92307692307692 +"jitterentropy-rngd",-1.0568983374,-0.2694182082,-1.1867836067,"https://salsa.debian.org/debian/jitterentropy-rngd","https://github.com/smuellerDD/jitterentropy-rngd",2267.9794675926,9,1,0,10,33,0,0,33,1,"1",1.1,2 +"jmxetric",-2.9017326958,-0.7363274677,-3.3243552835,"https://github.com/ganglia/jmxetric","https://github.com/ganglia/jmxetric",2292.7484027778,0,9,0,5,14,0,0,16,1,"1",2,1.875 +"jp2a",0.9044983067,3.5392448615,-0.0351520282,"https://salsa.debian.org/debian/jp2a","https://github.com/Talinx/jp2a",2190.7298032407,3,4,0,6,11,0,0,13,1,"1",1.57142857142857,1.84615384615385 +"jupyter-sphinx-theme",-0.4091049447,-0.045316663,-0.4899605303,"https://salsa.debian.org/python-team/packages/jupyter-sphinx-theme","https://github.com/jupyter/jupyter-sphinx-theme",1834.3539467593,2,32,0,24,12,0,0,30,1,"1",1.94117647058824,1.4 +"kamcli",-4.7786388825,-2.4182541708,-5.4179403291,"https://salsa.debian.org/pkg-voip-team/kamcli/","https://github.com/kamailio/kamcli",3121.9156134259,1,5,0,5,8,0,0,8,2,"2",1.83333333333333,2 +"kamerka",0.8743124322,3.7857646393,-0.1312218342,"http://github.com/dos1/kamerka","http://github.com/dos1/kamerka",2873.9879282407,7,12,1,0,0,0,0,0,2,"2",1.63157894736842,NA +"debian-karlyriceditor",-0.1145592946,2.7444681458,-1.0688808595,"https://github.com/martin-steghoefer/debian-karlyriceditor","https://github.com/martin-steghoefer/debian-karlyriceditor",1746.0329513889,1,1,0,2,0,0,0,2,1,"1",1.5,1 +"kbtin",-0.2885497121,1.2472045448,-0.639846297,"https://github.com/kilobyte/kbtin/tree/debian","https://github.com/kilobyte/kbtin",5761.0344212963,1,4,0,3,7,0,0,7,4,"4",1.8,2 +"kcemu-debian",-1.5465318214,-0.3965547601,-1.8452569055,"https://github.com/glaubitz/kcemu-debian","https://github.com/glaubitz/kcemu-debian",4222.8273842593,2,2,0,1,0,0,0,1,3,"3",1.5,1 +"kchmviewer",0.9382066218,2.3758050403,0.2613367395,"https://salsa.debian.org/qt-kde-team/extras/kchmviewer","https://github.com/gyunaev/kchmviewer",2255.6306481482,1,6,0,4,23,0,0,23,1,"1",1.85714285714286,2 +"kcmsystemd-debian",0.7599629002,3.9388494787,-0.1577270679,"https://github.com/shsorbom/kcmsystemd-debian.git","https://github.com/shsorbom/kcmsystemd-debian.git",684.1522685185,1,12,0,8,3,0,0,9,1,"1",1.92307692307692,1.33333333333333 +"keychain",1.0933393106,2.2752386059,0.4360362266,"https://salsa.debian.org/debian/keychain","https://github.com/funtoo/keychain",3125.5103356482,23,18,0,32,53,0,0,63,2,"2",1.4390243902439,1.84126984126984 +"khard",0.0842088929,2.5350536215,-0.5777839137,"https://salsa.debian.org/python-team/packages/khard","https://github.com/lucc/khard",3364.3432523148,16,20,1,32,41,0,0,63,2,"2",1.55555555555556,1.65079365079365 +"kim-api",-0.8423857472,1.4393693103,-1.2913134011,"https://salsa.debian.org/science-team/kim-api","https://github.com/openkim/kim-api",4210.4546527778,1,26,1,10,24,0,1,26,3,"3",1.96296296296296,1.92307692307692 +"kindleclip",-0.8974283368,0.9569429807,-1.3449393666,"https://github.com/gwolf/kindleclip","https://github.com/gwolf/kindleclip",1841.0025925926,0,1,0,1,7,0,0,7,1,"1",2,2 +"javadev",-0.406165741,0.7632042123,-0.7000750742,"https://salsa.debian.org/med-team/king","https://github.com/rlabduke/javadev.git",5017.5933217593,0,15,0,1,3,0,0,4,4,"4",2,1.75 +"kismet-debian",1.9335416891,2.9570779251,1.2756598324,"https://github.com/andrikos/kismet-debian","https://github.com/andrikos/kismet-debian",1415.5860300926,0,1,0,1,0,0,0,1,1,"1",2,1 +"clj-kitchensink",-0.6039126858,2.5849138336,-1.5600356447,"https://salsa.debian.org/clojure-team/kitchensink-clojure","https://github.com/puppetlabs/clj-kitchensink.git",3697.8495138889,12,47,0,34,0,0,0,34,2,"2",1.79661016949153,1 +"klatexformula_debian",-0.2602166071,0.57054691,-0.5330870672,"https://github.com/TobiasWinchen/klatexformula_debian","https://github.com/TobiasWinchen/klatexformula_debian",3554.8463541667,0,6,0,3,1,0,0,3,2,"2",2,1.33333333333333 +"debian-ksmtuned",0.6468606724,3.7904647882,-0.3169526232,"https://github.com/bzed/debian-ksmtuned","https://github.com/bzed/debian-ksmtuned",2027.7201157408,1,1,0,2,2,0,0,3,1,"1",1.5,1.66666666666667 +"kylin-burner",0.5891863927,3.7002638946,-0.3231693637,"https://github.com/ukui/kylin-burner","https://github.com/ukui/kylin-burner",1294.0143055556,2,9,0,4,7,0,0,8,1,"1",1.81818181818182,1.875 +"kylin-display-switch",-1.7366978486,1.7252586454,-2.558884793,"https://github.com/ukui/kylin-display-switch","https://github.com/ukui/kylin-display-switch",1387.1396296296,4,11,0,10,8,0,0,12,1,"1",1.73333333333333,1.66666666666667 +"lablgtk-extras",-0.8756228195,2.0634481167,-1.8186386711,"https://salsa.debian.org/ocaml-team/lablgtk-extras","https://github.com/zoggy/lablgtk-extras.git",3792.5139930556,0,3,0,1,2,0,0,2,3,"3",2,2 +"labltk",-0.1496995002,2.0785630827,-0.594072233,"https://salsa.debian.org/ocaml-team/labltk","https://github.com/garrigue/labltk.git",3339.1637268519,1,3,0,3,27,0,0,28,2,"2",1.75,1.96428571428571 +"laby",1.665594867,5.3198865227,0.3634891036,"https://salsa.debian.org/ocaml-team/laby","https://github.com/sgimenez/laby.git",2556.9824884259,11,12,0,15,44,0,7,56,1,"1",1.52173913043478,1.78571428571429 +"coffee",-0.8084062082,0.1539618161,-0.9674228878,"https://salsa.debian.org/debian/latex-coffee-stains","https://github.com/Echsecutor/coffee",1954.8484027778,1,7,0,3,2,0,0,3,1,"1",1.875,1.66666666666667 +"latexmk",2.3142169158,4.8870249679,1.1895147626,"https://github.com/debian-tex/latexmk","https://github.com/debian-tex/latexmk",1865.2669907407,3,7,0,5,3,0,0,5,1,"1",1.7,1.6 +"latexml",0.5426184631,2.9655400064,-0.3271877484,"https://github.com/debian-tex/latexml","https://github.com/debian-tex/latexml",2055.9208333333,2,6,0,4,1,0,0,4,1,"1",1.75,1.25 +"pkg-lava-tool",-1.5553171291,-0.4092627761,-1.882507141,"https://github.com/Linaro/pkg-lava-tool","https://github.com/Linaro/pkg-lava-tool",2892.9631481482,0,21,0,7,2,0,0,7,2,"2",2,1.28571428571429 +"pkg-lavapdu",-1.360190138,0.6576027042,-1.9660643803,"https://github.com/Linaro/pkg-lavapdu","https://github.com/Linaro/pkg-lavapdu",1898.0415972222,9,22,0,16,6,0,0,19,1,"1",1.70967741935484,1.31578947368421 +"lazyarray",-1.6930876257,1.5097154973,-2.5262604044,"https://salsa.debian.org/science-team/lazyarray","https://github.com/NeuralEnsemble/lazyarray",3518.1808333333,0,8,0,4,5,0,0,6,2,"2",2,1.83333333333333 +"lbzip2",0.4553413125,1.9206872689,-0.0826154573,"https://github.com/kjn/lbzip2/tree/debian","https://github.com/kjn/lbzip2",2710.187037037,0,3,0,1,4,0,1,5,1,"1",2,1.8 +"lcdf-typetools",0.5850757713,1.6610997166,0.0976153045,"https://salsa.debian.org/fonts-team/lcdf-typetools","https://github.com/kohler/lcdf-typetools.git",5649.3697337963,4,5,0,6,27,0,0,28,4,"4",1.55555555555556,1.96428571428571 +"acme-poe-knee",-1.8444968736,-0.7377441759,-2.0661466284,"https://salsa.debian.org/perl-team/modules/packages/libacme-poe-knee-perl","https://github.com/jib/acme-poe-knee.git",0,0,1,0,1,0,0,0,1,NA,NA,2,1 +"Alien-SDL",-0.0977796476,0.3529808751,-0.1969931002,"https://salsa.debian.org/perl-team/modules/packages/libalien-sdl-perl","https://github.com/PerlGameDev/Alien-SDL.git",2024.7772222222,0,15,0,7,10,0,0,12,1,"1",2,1.83333333333333 +"ambix",-0.2891761381,1.5956439603,-0.6870161119,"https://salsa.debian.org/multimedia-team/libambix","https://github.com/iem-projects/ambix.git",2332.8963194445,2,15,0,3,2,0,0,4,1,"1",1.88235294117647,1.5 +"apache-singleton",-1.4918758035,1.0630563092,-2.2427825215,"https://salsa.debian.org/perl-team/modules/packages/libapache-singleton-perl","https://github.com/mschout/apache-singleton.git",2808.9702777778,2,1,0,2,0,0,0,2,2,"2",1.33333333333333,1 +"mod_authnz_pam",-0.1714935794,2.2098425672,-0.8074827861,"https://salsa.debian.org/freeipa-team/mod-authnz-pam","https://github.com/adelton/mod_authnz_pam.git",3451.9741203704,6,1,0,5,17,0,0,18,2,"2",1.14285714285714,1.94444444444444 +"App-CPANTS-Lint",-0.2108873196,3.0022710317,-1.1931665391,"https://salsa.debian.org/perl-team/modules/packages/libapp-cpants-lint-perl","https://github.com/charsbar/App-CPANTS-Lint.git",177.5091782407,0,3,0,3,4,0,0,4,1,"1",2,2 +"p5-app-perlrdf-command-query",-2.5195716821,-0.1728085325,-3.0060090978,"https://salsa.debian.org/perl-team/modules/packages/libapp-perlrdf-command-query-perl","https://github.com/tobyink/p5-app-perlrdf-command-query",786.4794675926,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"Archive-Ar",-0.7153173845,1.4218992511,-1.4262008359,"https://salsa.debian.org/perl-team/modules/packages/libarchive-ar-perl","https://github.com/jbazik/Archive-Ar.git",1734.3291435185,1,5,0,2,4,0,0,4,1,"1",1.83333333333333,2 +"libaria",-0.4287076752,2.5333867692,-1.5521033494,"https://github.com/jksrecko/libaria","https://github.com/jksrecko/libaria",1255.0196875,1,2,0,2,3,0,0,4,1,"1",1.66666666666667,1.75 +"perl-Array-Iterator",-1.1520508851,1.0062186595,-1.5899210944,"https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl","https://github.com/perlancar/perl-Array-Iterator.git",4456.1288194445,1,16,0,6,7,0,0,8,3,"3",1.94117647058824,1.875 +"Astro-FITS-CFITSIO",-0.284600426,1.0728247575,-0.745324073,"https://salsa.debian.org/perl-team/modules/packages/libastro-fits-cfitsio-perl","https://github.com/pratzlaff/Astro-FITS-CFITSIO",41.8160185185,1,3,0,2,1,0,0,2,1,"1",1.75,1.5 +"AtomBus",-2.9184975503,-0.9823925311,-3.3182517592,"https://salsa.debian.org/perl-team/modules/packages/libatombus-perl","https://github.com/ironcamel/AtomBus.git",574.4602777778,0,2,0,2,4,0,0,4,1,"1",2,2 +"p5-atteanx-compatibility-trine",-5.221355937,-3.8031880755,-5.4863317126,"https://salsa.debian.org/perl-team/modules/packages/libatteanx-compatibility-trine-perl","https://github.com/kjetilk/p5-atteanx-compatibility-trine.git",174.8482291667,0,1,0,2,4,0,0,4,1,"1",2,2 +"atteanx-endpoint",-5.0524581401,-2.9636769875,-5.4798110024,"https://salsa.debian.org/perl-team/modules/packages/libatteanx-endpoint-perl","https://github.com/kasei/atteanx-endpoint.git",581.8788078704,0,3,0,2,1,0,0,2,1,"1",2,1.5 +"p5-atteanx-store-sparql",-3.6547632503,-1.1140927923,-4.301232368,"https://salsa.debian.org/perl-team/modules/packages/libatteanx-store-sparql-perl","https://github.com/kjetilk/p5-atteanx-store-sparql.git",1578.1186458333,1,3,0,4,5,0,0,5,1,"1",1.75,2 +"perl-Authen-Captcha",-0.8189234623,0.262039817,-1.0902527604,"https://salsa.debian.org/perl-team/modules/packages/libauthen-captcha-perl","https://github.com/lkundrak/perl-Authen-Captcha.git",604.0063194444,4,2,0,4,1,0,0,5,1,"1",1.33333333333333,1.2 +"B-Hooks-OP-Check",0.6263225059,3.4250343136,-0.0183739613,"https://salsa.debian.org/perl-team/modules/packages/libb-hooks-op-check-perl","https://github.com/karenetheridge/B-Hooks-OP-Check",4225.8527430556,1,3,0,3,0,0,0,3,3,"3",1.75,1 +"B-Hooks-Parser",-1.1725055097,-0.0976957027,-1.3418704161,"https://salsa.debian.org/perl-team/modules/packages/libb-hooks-parser-perl","https://github.com/karenetheridge/B-Hooks-Parser.git",3844.972962963,4,3,0,6,6,0,0,9,3,"3",1.42857142857143,1.66666666666667 +"b-utils",-0.2233577064,1.2899551919,-0.5541961272,"https://salsa.debian.org/perl-team/modules/packages/libb-utils-perl","https://github.com/jbenjore/b-utils.git",1697.3214351852,0,9,0,2,12,0,0,12,1,"1",2,2 +"libb2",0.4344926484,2.4059587424,-0.0945466725,"https://salsa.debian.org/debian/libb2","https://github.com/BLAKE2/libb2.git",2769.1435185185,5,14,0,15,43,0,0,44,2,"2",1.73684210526316,1.97727272727273 +"backuppc-xs",0.0682740707,4.0111217079,-0.9932975309,"https://salsa.debian.org/debian/libbackuppc-xs-perl","https://github.com/backuppc/backuppc-xs.git",1496.301400463,2,5,0,2,11,0,0,11,1,"1",1.71428571428571,2 +"libbase58",-0.3899391721,2.4680002613,-1.1487322403,"https://salsa.debian.org/debian/libbase58","https://github.com/luke-jr/libbase58",2238.1648148148,3,7,0,8,0,0,0,8,1,"1",1.7,1 +"libbde",0.3715579957,2.3531465313,-0.2679169251,"https://salsa.debian.org/pkg-security-team/libbde","https://github.com/libyal/libbde",2546.6279398148,2,1,0,3,54,0,2,56,1,"1",1.33333333333333,1.96428571428571 +"BerkeleyDB",0.094191881,0.6104187657,-0.0890236719,"https://salsa.debian.org/md/libberkeleydb-perl","https://github.com/pmqs/BerkeleyDB.git",5644.9127083333,1,4,0,3,5,0,0,5,4,"4",1.8,2 +"bio-alignio-stockholm",-4.9835930933,-2.6349248881,-5.4713428559,"https://salsa.debian.org/med-team/libbio-alignio-stockholm-perl","https://github.com/bioperl/bio-alignio-stockholm.git",10.2199305556,0,2,0,2,0,0,0,2,1,"1",2,1 +"bio-cluster",-0.7997866799,1.4401770295,-1.3214678694,"https://salsa.debian.org/med-team/libbio-cluster-perl","https://github.com/bioperl/bio-cluster.git",7.3618171296,0,2,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"bio-db-embl",-3.9031050099,-1.6133202421,-4.3425936432,"https://salsa.debian.org/med-team/libbio-db-embl-perl","https://github.com/bioperl/bio-db-embl.git",156.3099421296,0,2,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"bioparser",-1.0837320242,1.8160602363,-1.7618255497,"https://salsa.debian.org/med-team/libbioparser-dev","https://github.com/rvaser/bioparser",2526.0444675926,2,4,0,2,7,0,0,7,1,"1",1.66666666666667,2 +"bot-training",-3.2750745336,-1.1281011499,-3.7406250651,"https://salsa.debian.org/perl-team/modules/packages/libbot-training-perl","https://github.com/avar/bot-training.git",3166.8061805556,0,2,0,2,3,0,0,3,2,"2",2,2 +"bpp-core",-0.3055083002,1.3427773866,-0.9266820803,"https://salsa.debian.org/med-team/libbpp-core","https://github.com/BioPP/bpp-core",4797.1825925926,3,24,0,9,13,0,0,14,3,"3",1.88888888888889,1.92857142857143 +"bpp-phyl",-0.6908318666,0.5108256238,-1.0987919805,"https://salsa.debian.org/med-team/libbpp-phyl","https://github.com/BioPP/bpp-phyl.git",5775.3533796296,2,40,0,11,26,0,0,30,4,"4",1.95238095238095,1.86666666666667 +"bpp-phyl-omics",-0.3598958857,2.0635272475,-1.1073993387,"https://salsa.debian.org/med-team/libbpp-phyl-omics","https://github.com/BioPP/bpp-phyl-omics.git",4025.9415046296,0,9,0,3,3,0,0,4,3,"3",2,1.75 +"bpp-popgen",-0.5271533507,1.1251682809,-1.1042333821,"https://salsa.debian.org/med-team/libbpp-popgen","https://github.com/BioPP/bpp-popgen",5514.9573032407,1,13,0,4,2,0,0,4,4,"4",1.92857142857143,1.5 +"bpp-qt",-0.0541983729,2.8865148932,-1.0203907927,"https://salsa.debian.org/med-team/libbpp-qt","https://github.com/BioPP/bpp-qt",5024.8754050926,0,12,0,3,1,0,0,3,4,"4",2,1.33333333333333 +"bpp-raa",-0.4695334076,2.4236088145,-1.4371504644,"https://salsa.debian.org/med-team/libbpp-raa","https://github.com/BioPP/bpp-raa",5066.2362962963,0,17,0,4,1,0,0,4,4,"4",2,1.25 +"bpp-seq",-0.7192518957,0.6394875381,-1.1233907337,"https://salsa.debian.org/med-team/libbpp-seq","https://github.com/BioPP/bpp-seq",5747.7503472222,1,22,0,5,7,0,0,9,4,"4",1.95652173913043,1.77777777777778 +"bpp-seq-omics",-0.4569335369,1.1913544639,-1.0602096041,"https://salsa.debian.org/med-team/libbpp-seq-omics","https://github.com/BioPP/bpp-seq-omics.git",4806.9277083333,0,14,0,4,5,0,0,6,3,"3",2,1.83333333333333 +"bultitude",-1.4773927994,1.1163772935,-2.107348178,"https://salsa.debian.org/clojure-team/libbultitude-clojure","https://github.com/TimoFreiberg/bultitude.git",2812.2660300926,1,20,0,15,5,0,0,18,2,"2",1.95238095238095,1.27777777777778 +"Business-EDI",-3.9144500578,-1.6606272938,-4.344431509,"https://salsa.debian.org/perl-team/modules/packages/libbusiness-edi-perl","https://github.com/atz/Business-EDI.git",1031.8625925926,0,2,0,1,2,0,0,2,1,"1",2,2 +"business-isbn",0.4456335938,2.2644684353,-0.07414136,"https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl","https://github.com/briandfoy/business-isbn.git",5456.629849537,2,8,0,6,17,0,0,19,4,"4",1.8,1.89473684210526 +"libcaca",1.7158261148,2.8952023479,1.0094395421,"https://salsa.debian.org/multimedia-team/libcaca","https://github.com/cacalabs/libcaca.git",5032.4727199074,5,18,0,13,72,0,0,75,4,"4",1.78260869565217,1.96 +"cache-historical-perl",-2.3954691781,0.151997288,-2.9853546683,"https://salsa.debian.org/perl-team/modules/packages/libcache-historical-perl","https://github.com/mschilli/cache-historical-perl.git",1172.6421064815,1,1,0,2,0,0,0,2,1,"1",1.5,1 +"Cache-Memcached-Fast",0.4990329576,3.9172913613,-0.4350811541,"https://salsa.debian.org/perl-team/modules/packages/libcache-memcached-fast-perl","https://github.com/JRaspass/Cache-Memcached-Fast.git",5347.5680324074,1,11,0,8,23,0,0,23,4,"4",1.91666666666667,2 +"libcap-ng",0.8396700265,1.681480669,0.3896198847,"https://salsa.debian.org/debian/libcap-ng","https://github.com/stevegrubb/libcap-ng",2330.4456365741,16,5,0,19,22,0,0,29,1,"1",1.23809523809524,1.75862068965517 +"libcapi20",0.8368813861,2.3931041059,0.2031772198,"https://github.com/leggewie-DM/libcapi20","https://github.com/leggewie-DM/libcapi20",1469.2789236111,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"Catalyst-Authentication-Credential-HTTP",-0.5445869591,1.7237240173,-0.9848916986,"https://salsa.debian.org/perl-team/modules/packages/libcatalyst-authentication-credential-http-perl","https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP",3862.9087152778,0,7,0,7,0,0,0,7,3,"3",2,1 +"catalyst-dispatch-regex",-0.2606173856,1.8455952252,-0.6908933433,"https://salsa.debian.org/perl-team/modules/packages/libcatalyst-dispatchtype-regex-perl","https://github.com/mvgrimes/catalyst-dispatch-regex.git",733.893287037,0,2,0,2,3,0,0,3,1,"1",2,2 +"Catalyst-Model-DBIC-Schema",0.0213319889,2.940935467,-0.7164785923,"https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl","https://github.com/perl-catalyst/Catalyst-Model-DBIC-Schema",5560.3081828704,1,18,0,13,3,0,0,16,4,"4",1.94736842105263,1.1875 +"Catmandu-Atom",-2.0448922521,-0.090192519,-2.4689508151,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-atom-perl","https://github.com/LibreCat/Catmandu-Atom.git",2313.0128472222,0,6,0,5,2,0,0,5,1,"1",2,1.4 +"Catmandu-FileStore",-4.6751603427,-1.9416786358,-5.4067542228,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-filestore-perl","https://github.com/LibreCat/Catmandu-FileStore.git",1680.9195138889,0,7,0,6,8,0,0,8,1,"1",2,2 +"Catmandu-Importer-getJSON",-1.1909213366,1.1095653007,-1.9138474886,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-importer-getjson-perl","https://github.com/nichtich/Catmandu-Importer-getJSON.git",2053.8504513889,2,5,0,5,11,0,0,12,1,"1",1.71428571428571,1.91666666666667 +"Catmandu-MAB2",-2.1995168172,-0.5970612736,-2.5957637184,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-mab2-perl","https://github.com/jorol/Catmandu-MAB2.git",2364.9603356482,0,4,0,2,7,0,0,7,1,"1",2,2 +"Catmandu-RDF",-1.5674004847,0.7873124502,-2.1156699483,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-rdf-perl","https://github.com/LibreCat/Catmandu-RDF.git",3436.1034722222,1,7,0,4,19,0,1,21,2,"2",1.875,1.9047619047619 +"Catmandu-SRU",-1.6347444625,0.7856473937,-2.213169114,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-sru-perl","https://github.com/LibreCat/Catmandu-SRU.git",3182.483275463,4,14,0,8,13,0,0,14,2,"2",1.77777777777778,1.92857142857143 +"Catmandu-Store-MongoDB",-2.1900265394,0.0427518931,-2.6176713043,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-store-mongodb-perl","https://github.com/LibreCat/Catmandu-Store-MongoDB.git",3318.0048263889,0,6,0,4,6,0,0,6,2,"2",2,2 +"Catmandu-Wikidata",-1.8751171258,0.7106805559,-2.4545693893,"https://salsa.debian.org/perl-team/modules/packages/libcatmandu-wikidata-perl","https://github.com/nichtich/Catmandu-Wikidata.git",3124.955462963,0,3,0,1,4,0,1,5,2,"2",2,1.8 +"cgi-application-server",-1.3503684925,1.1163471363,-2.0606594531,"https://salsa.debian.org/perl-team/modules/packages/libcgi-application-server-perl","https://github.com/rjbs/cgi-application-server.git",2084.0161111111,0,3,0,2,2,0,0,4,1,"1",2,1.5 +"CGI-Expand",-0.5995119077,1.6030547825,-1.0867729842,"https://salsa.debian.org/perl-team/modules/packages/libcgi-expand-perl","https://github.com/bowman/CGI-Expand.git",1724.580462963,2,5,0,2,1,0,0,2,1,"1",1.71428571428571,1.5 +"CGI-Session-ExpireSessions",-2.1411258628,-0.6175205041,-2.4722907936,"https://salsa.debian.org/perl-team/modules/packages/libcgi-session-expiresessions-perl","https://github.com/ronsavage/CGI-Session-ExpireSessions",152.6683333333,0,1,0,1,2,0,0,2,1,"1",2,2 +"Chatbot-Eliza",-1.3144935043,1.2362568323,-1.8965557655,"https://salsa.debian.org/perl-team/modules/packages/libchatbot-eliza-perl","https://github.com/ggruen/Chatbot-Eliza",2872.7296875,1,4,0,2,0,0,0,2,2,"2",1.8,1 +"chi-driver-redis",-1.0562831931,1.2500992113,-1.5273046989,"https://salsa.debian.org/perl-team/modules/packages/libchi-driver-redis-perl","https://github.com/rentrak/chi-driver-redis",2250.5063078704,1,6,0,4,5,0,0,6,1,"1",1.85714285714286,1.83333333333333 +"libcitygml",-1.0898756324,0.0704593832,-1.422660328,"https://salsa.debian.org/debian-gis-team/libcitygml","https://github.com/jklimke/libcitygml.git",4063.0042476852,3,34,0,18,41,0,0,42,3,"3",1.91891891891892,1.97619047619048 +"class-c3-adopt-next",-0.163979537,2.015060941,-0.6012557543,"https://salsa.debian.org/perl-team/modules/packages/libclass-c3-adopt-next-perl","https://github.com/rafl/class-c3-adopt-next.git",539.1778587963,0,4,0,2,0,0,0,2,1,"1",2,1 +"Class-Container",-0.0506280246,1.6643843634,-0.4036695635,"https://salsa.debian.org/perl-team/modules/packages/libclass-container-perl","https://github.com/kenahoo/Class-Container.git",1.6649189815,1,3,0,3,3,0,0,3,1,"1",1.75,2 +"class-insideout",-0.6783523447,1.0454132392,-0.9711596731,"https://salsa.debian.org/perl-team/modules/packages/libclass-insideout-perl","https://github.com/dagolden/class-insideout.git",3195.8285300926,0,3,0,2,8,0,0,8,2,"2",2,2 +"class-meta",-2.1588155835,0.1407589648,-2.6165631943,"https://salsa.debian.org/perl-team/modules/packages/libclass-meta-perl","https://github.com/theory/class-meta.git",2689.2590856482,0,3,0,2,3,0,0,3,1,"1",2,2 +"class-refresh",-1.6945342203,0.5207835259,-2.147534344,"https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl","https://github.com/doy/class-refresh.git",1057.1042708333,0,3,0,3,6,0,0,6,1,"1",2,2 +"libcleri",-2.6428568291,0.0499127531,-3.28649977,"https://salsa.debian.org/siridb-team/libcleri","https://github.com/cesbit/libcleri.git",2711.9692592593,2,9,0,4,7,0,0,8,1,"1",1.81818181818182,1.875 +"config-auto",0.2333854777,2.0661047236,-0.2396184716,"https://salsa.debian.org/perl-team/modules/packages/libconfig-auto-perl","https://github.com/jib/config-auto.git",2192.3712731482,2,3,0,1,2,0,0,3,1,"1",1.6,1.66666666666667 +"Config-Identity",-1.1292654123,1.0457452223,-1.5624237769,"https://salsa.debian.org/perl-team/modules/packages/libconfig-identity-perl","https://github.com/dagolden/Config-Identity.git",2902.5731828704,0,4,0,3,2,0,0,4,2,"2",2,1.5 +"perl-Convert-ASN1",0.4197948981,1.947299648,-0.0317401557,"https://salsa.debian.org/perl-team/modules/packages/libconvert-asn1-perl","https://github.com/gbarr/perl-Convert-ASN1.git",5538.4047453704,6,11,0,13,39,0,0,41,4,"4",1.64705882352941,1.95121951219512 +"convert-binhex",0.5297090391,2.6158283055,-0.0231792705,"https://salsa.debian.org/perl-team/modules/packages/libconvert-binhex-perl","https://github.com/stephenenelson/convert-binhex.git",816.5657407407,0,2,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"CPAN-DistnameInfo",0.2522399529,2.0212536151,-0.1714651554,"https://salsa.debian.org/perl-team/modules/packages/libcpan-distnameinfo-perl","https://github.com/gbarr/CPAN-DistnameInfo.git",2596.9826157407,4,4,0,6,11,0,0,16,1,"1",1.5,1.6875 +"perl-crypt-cracklib",-0.6543542036,2.0569886418,-1.4105292586,"https://salsa.debian.org/perl-team/modules/packages/libcrypt-cracklib-perl","https://github.com/dsully/perl-crypt-cracklib.git",1122.6671643519,0,2,0,1,5,0,0,5,1,"1",2,2 +"Crypt-DH-GMP",-0.2521104835,0.8592315725,-0.4600056877,"https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-gmp-perl","https://github.com/lestrrat/Crypt-DH-GMP.git",1507.2044791667,0,3,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"crypt-dh",-0.350596725,1.4226875994,-0.742243187,"https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-perl","https://github.com/wchristian/crypt-dh.git",6.7348726852,0,3,0,2,0,0,0,2,1,"1",2,1 +"perl-Crypt-OpenSSL-Bignum",0.573671133,2.817673072,-0.0231679046,"https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-bignum-perl","https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git",1031.4781134259,1,6,0,3,7,0,0,8,1,"1",1.85714285714286,1.875 +"perl-crypt-openssl-pkcs10",-0.3431098229,2.5077909436,-1.1135889242,"https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-pkcs10-perl","https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git",84.9646875,1,2,0,1,1,0,0,1,1,"1",1.66666666666667,2 +"Crypt-OpenSSL-RSA",0.4685020789,2.4809174365,-0.0400198203,"https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-rsa-perl","https://github.com/toddr/Crypt-OpenSSL-RSA.git",4592.8473842593,12,12,0,16,31,0,0,35,3,"3",1.5,1.88571428571429 +"crypt-saltedhash",-0.4905719307,1.6402467611,-0.9344153294,"https://salsa.debian.org/perl-team/modules/packages/libcrypt-saltedhash-perl","https://github.com/campus-explorer/crypt-saltedhash",137.0340162037,2,4,0,4,7,0,0,8,1,"1",1.66666666666667,1.875 +"CSS-Tiny",-0.2187157738,2.0546898664,-0.9614626512,"https://salsa.debian.org/perl-team/modules/packages/libcss-tiny-perl","https://github.com/chorny/CSS-Tiny.git",2896.0719791667,1,2,0,3,0,0,0,3,2,"2",1.66666666666667,1 +"libcue",1.3280527366,4.5646098156,0.2528534907,"https://salsa.debian.org/debian/libcue","https://github.com/lipnitsk/libcue",5295.1366435185,10,5,0,13,29,0,0,29,4,"4",1.33333333333333,2 +"libcypher-parser",-0.5122868361,1.7043358431,-0.9505714794,"https://github.com/cleishm/libcypher-parser","https://github.com/cleishm/libcypher-parser",2052.1131134259,4,8,0,4,34,0,1,35,1,"1",1.66666666666667,1.97142857142857 +"Dancer-Plugin-REST",-1.332193545,1.346725582,-1.9482623921,"https://salsa.debian.org/perl-team/modules/packages/libdancer-plugin-rest-perl","https://github.com/perldancer/Dancer-Plugin-REST.git",1451.9472800926,1,5,0,2,4,0,0,6,1,"1",1.83333333333333,1.66666666666667 +"perl-Data-Alias",0.1378605049,2.1486354011,-0.5977466385,"https://salsa.debian.org/perl-team/modules/packages/libdata-alias-perl","https://github.com/mvduin/perl-Data-Alias",610.4551041667,0,2,0,2,4,0,0,4,1,"1",2,2 +"Data-Dumper-Concise",0.2663762197,2.5519999595,-0.2144683206,"https://salsa.debian.org/perl-team/modules/packages/libdata-dumper-concise-perl","https://github.com/p5sagit/Data-Dumper-Concise",2778.0428240741,1,3,0,2,0,0,0,2,2,"2",1.75,1 +"Data-FormValidator",-0.452587545,1.1833831498,-0.804155609,"https://salsa.debian.org/perl-team/modules/packages/libdata-formvalidator-perl","https://github.com/dnmfarrell/Data-FormValidator.git",2189.7575578704,3,6,0,6,10,0,0,11,1,"1",1.66666666666667,1.90909090909091 +"data-hal",-0.7708587998,2.2387120212,-1.7298903065,"https://salsa.debian.org/perl-team/modules/packages/libdata-hal-perl","https://github.com/sipwise/data-hal.git",3620.8497222222,0,13,0,10,4,0,0,12,2,"2",2,1.33333333333333 +"Data-OptList",0.4752078978,2.7815727481,-0.0271116591,"https://salsa.debian.org/perl-team/modules/packages/libdata-optlist-perl","https://github.com/rjbs/Data-OptList.git",5253.3015972222,0,2,0,2,5,0,0,5,4,"4",2,2 +"data-phrasebook",-2.0173455185,0.5053918978,-2.598257896,"https://salsa.debian.org/perl-team/modules/packages/libdata-phrasebook-perl","https://github.com/barbie/data-phrasebook.git",3782.0208333333,0,1,0,1,0,0,0,1,3,"3",2,1 +"perl-database-dumptruck",-2.6354712016,-0.053291936,-3.2800311486,"https://salsa.debian.org/perl-team/modules/packages/libdatabase-dumptruck-perl","https://github.com/lkundrak/perl-database-dumptruck.git",85.8566550926,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"DateTime-Format-Mail",0.3841471215,2.8615309864,-0.1765169258,"https://salsa.debian.org/perl-team/modules/packages/libdatetime-format-mail-perl","https://github.com/book/DateTime-Format-Mail.git",809.9546875,2,1,0,3,7,0,0,7,1,"1",1.33333333333333,2 +"DBD-ODBC",-0.4492586589,-0.3647039199,-0.4605696828,"https://salsa.debian.org/perl-team/modules/packages/libdbd-odbc-perl","https://github.com/perl5-dbi/DBD-ODBC.git",4357.0500347222,1,12,0,8,22,0,0,22,3,"3",1.92307692307692,2 +"DBD-SQLite2",-0.2242626457,0.8599429182,-0.4391897101,"https://salsa.debian.org/perl-team/modules/packages/libdbd-sqlite2-perl","https://github.com/rurban/DBD-SQLite2",1683.3107175926,3,5,0,1,0,0,0,1,1,"1",1.625,1 +"DBIx-Abstract",-0.7663996691,0.9860020058,-1.2168119968,"https://salsa.debian.org/perl-team/modules/packages/libdbix-abstract-perl","https://github.com/iarna/DBIx-Abstract.git",3028.2298842593,1,6,0,3,3,0,0,3,2,"2",1.85714285714286,2 +"dbix-class-schema-loader",0.899902187,3.2743262714,-0.0171547791,"https://salsa.debian.org/perl-team/modules/packages/libdbix-class-schema-loader-perl","https://github.com/dbsrgits/dbix-class-schema-loader",5369.7104282407,13,29,0,32,33,0,0,52,4,"4",1.69047619047619,1.63461538461538 +"Debian-Copyright",0.0036003397,1.9825965853,-0.5566012214,"https://salsa.debian.org/perl-team/modules/packages/libdebian-copyright-perl","https://github.com/periapt/Debian-Copyright.git",467.6439236111,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"Devel-bt",-0.5926888766,2.1164194627,-1.6374000091,"https://salsa.debian.org/perl-team/modules/packages/libdevel-bt-perl","http://github.com/rafl/Devel-bt",563.5733796296,0,1,0,0,0,0,0,0,1,"1",2,NA +"Devel-Cycle",0.2975717055,2.3628676137,-0.1689937232,"https://salsa.debian.org/perl-team/modules/packages/libdevel-cycle-perl","https://github.com/lstein/Devel-Cycle.git",24.4394791667,1,2,0,1,0,0,0,1,1,"1",1.66666666666667,1 +"devel-symdump",0.1995761912,1.3405631393,-0.0953876401,"https://salsa.debian.org/debian/libdevel-symdump-perl","https://github.com/andk/devel-symdump",2899.582337963,0,6,0,4,4,0,0,5,2,"2",2,1.8 +"Perl-Device-Cdio",-1.3704489286,-0.772668166,-1.5698638654,"https://salsa.debian.org/perl-team/modules/packages/libdevice-cdio-perl","https://github.com/rocky/Perl-Device-Cdio.git",3711.3743287037,0,4,0,1,6,0,0,6,2,"2",2,2 +"directory-scratch",-0.3578234126,3.2936545083,-1.4107895462,"https://salsa.debian.org/perl-team/modules/packages/libdirectory-scratch-perl","https://github.com/bobtfish/directory-scratch.git",1951.3868981482,1,5,0,4,1,0,0,4,1,"1",1.83333333333333,1.25 +"p5-dist-inkt",-1.6527902396,0.7910520727,-2.1410543937,"https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-perl","https://github.com/tobyink/p5-dist-inkt",2915.0334953704,0,1,0,1,4,0,0,4,2,"2",2,2 +"p5-dist-inkt-role-test",-1.5942005273,1.6783425318,-2.409860989,"https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-role-test-perl","https://github.com/tobyink/p5-dist-inkt-role-test",0.0739467593,0,1,0,1,0,0,0,1,1,"1",2,1 +"dist-zilla-plugins-cjm",-0.7135120934,1.9137851349,-1.4906069541,"https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-plugins-cjm-perl","https://github.com/madsen/dist-zilla-plugins-cjm",3005.9145833333,0,4,0,4,10,0,0,11,2,"2",2,1.90909090909091 +"libdivsufsort",0.3802819676,3.1639307168,-0.2503528943,"https://salsa.debian.org/med-team/libdivsufsort","https://github.com/y-256/libdivsufsort.git",2687.7754050926,0,6,0,2,28,0,0,28,1,"1",2,2 +"libdogleg",-0.2667101184,1.7245498351,-0.6711419661,"https://salsa.debian.org/science-team/libdogleg","https://github.com/dkogan/libdogleg.git",4490.860775463,0,5,0,2,1,0,0,2,3,"3",2,1.5 +"libeatmydata",0.3763000817,1.1375608394,0.0117248362,"https://salsa.debian.org/debian/libeatmydata","https://github.com/stewartsmith/libeatmydata.git",5640.2884027778,11,12,0,16,27,0,0,35,4,"4",1.52173913043478,1.77142857142857 +"Email-MIME-CreateHTML",-0.598597254,0.9396464518,-0.9866469243,"https://salsa.debian.org/perl-team/modules/packages/libemail-mime-createhtml-perl","https://github.com/vanstyn/Email-MIME-CreateHTML.git",1257.2075810185,1,3,0,3,9,0,0,10,1,"1",1.75,1.9 +"end",-1.6952231001,0.2859980609,-2.1369126329,"https://salsa.debian.org/perl-team/modules/packages/libend-perl","https://github.com/Abigail/end.git",519.9620023148,0,1,0,0,1,0,0,1,1,"1",2,2 +"libeot",0.4231617787,2.6750549846,-0.0161024184,"https://salsa.debian.org/fonts-team/libeot","https://github.com/umanwizard/libeot.git",3660.8458101852,1,5,0,4,6,0,0,9,2,"2",1.83333333333333,1.66666666666667 +"eval-closure",0.3725931069,2.6025825306,-0.0711445029,"https://salsa.debian.org/perl-team/modules/packages/libeval-closure-perl","https://github.com/doy/eval-closure.git",2047.9688310185,1,4,0,5,11,0,0,13,1,"1",1.8,1.84615384615385 +"libevt",0.3231580646,2.9388038619,-0.3464543518,"https://salsa.debian.org/pkg-security-team/libevt","https://github.com/libyal/libevt",2794.588125,1,2,0,2,3,0,2,5,2,"2",1.66666666666667,1.6 +"libevtx",0.4679040206,3.3941203575,-0.3128196542,"https://salsa.debian.org/pkg-security-team/libevtx","https://github.com/libyal/libevtx",2794.5568055556,0,1,0,1,24,0,2,26,2,"2",2,1.92307692307692 +"libeXaDrums",-1.57576575,0.4655834923,-2.0471585802,"https://github.com/SpintroniK/libeXaDrums/tree/debian","https://github.com/SpintroniK/libeXaDrums",2888.0486342593,2,6,0,3,6,0,0,7,2,"2",1.75,1.85714285714286 +"libexif-gtk",0.6899028208,2.4094585548,0.0374998074,"https://salsa.debian.org/debian-phototools-team/libexif-gtk","https://github.com/libexif/libexif-gtk.git",5131.8707407407,2,5,0,6,4,0,0,6,4,"4",1.71428571428571,1.66666666666667 +"ExtUtils-CBuilder",-0.5036465134,1.0344999475,-0.9863787578,"https://salsa.debian.org/perl-team/modules/packages/libextutils-cbuilder-perl","https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder.git",4657.3346759259,8,12,0,11,12,0,0,17,3,"3",1.6,1.70588235294118 +"extutils-modulemaker",-1.6287177053,0.4949751478,-2.0632435211,"https://salsa.debian.org/perl-team/modules/packages/libextutils-modulemaker-perl","https://github.com/jkeenan/extutils-modulemaker.git",3844.1565972222,0,2,0,1,4,0,0,4,3,"3",2,2 +"libfcgi-debian",2.4025790949,4.8601691677,1.2415729675,"https://github.com/tehnick/libfcgi-debian","https://github.com/tehnick/libfcgi-debian",1176.1604513889,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"File-MimeInfo",1.3146582473,3.1446233838,0.4775906292,"https://salsa.debian.org/perl-team/modules/packages/libfile-mimeinfo-perl","https://github.com/mbeijen/File-MimeInfo.git",3834.7099189815,10,12,0,18,50,0,0,53,3,"3",1.54545454545455,1.94339622641509 +"File-Modified",-0.1454311962,1.4011585761,-0.5041124489,"https://salsa.debian.org/perl-team/modules/packages/libfile-modified-perl","https://github.com/neilb/File-Modified",2145.0378472222,1,2,0,1,0,0,0,1,1,"1",1.66666666666667,1 +"file-save-home",-1.8007818428,0.3604487668,-2.2376298003,"https://salsa.debian.org/perl-team/modules/packages/libfile-save-home-perl","https://github.com/jkeenan/file-save-home",1776.9554861111,0,2,0,1,0,0,0,1,1,"1",2,1 +"File-Touch",0.098284703,1.8336262821,-0.2560959194,"https://salsa.debian.org/perl-team/modules/packages/libfile-touch-perl","https://github.com/neilb/File-Touch",4116.4970486111,1,3,0,2,3,0,0,3,3,"3",1.75,2 +"perl-File-Write-Rotate",-1.0296556573,1.3459084629,-1.5005566671,"https://salsa.debian.org/perl-team/modules/packages/libfile-write-rotate-perl","https://github.com/sharyanto/perl-File-Write-Rotate.git",3146.8113888889,0,17,0,5,6,0,0,7,2,"2",2,1.85714285714286 +"filehandle-unget",0.0063823885,1.5940372704,-0.2756601201,"https://salsa.debian.org/perl-team/modules/packages/libfilehandle-unget-perl","https://github.com/coppit/filehandle-unget.git",3647.0964930556,0,3,0,1,0,0,0,1,2,"2",2,1 +"Filesys-Notify-Simple",0.1924577796,2.7235880131,-0.2464440556,"https://salsa.debian.org/perl-team/modules/packages/libfilesys-notify-simple-perl","https://github.com/miyagawa/Filesys-Notify-Simple.git",4730.4164814815,0,13,0,9,27,0,0,27,3,"3",2,2 +"Filter",-0.2555356397,0.0318054425,-0.3077435742,"https://salsa.debian.org/debian/libfilter-perl","https://github.com/rurban/Filter",4868.3054861111,5,12,0,11,13,0,0,14,3,"3",1.70588235294118,1.92857142857143 +"filter-template",-1.0581574357,1.1903314595,-1.5773248661,"https://salsa.debian.org/perl-team/modules/packages/libfilter-template-perl","https://github.com/rcaputo/filter-template",1475.5620138889,0,1,0,1,0,0,0,1,1,"1",2,1 +"libfixposix",-0.4206114577,2.0891396228,-0.9806467917,"https://salsa.debian.org/common-lisp-team/libfixposix","https://github.com/sionescu/libfixposix.git",4611.074537037,9,4,0,10,24,0,0,28,3,"3",1.30769230769231,1.85714285714286 +"libfizmo",0.6273284521,4.5692102059,-0.4878285416,"https://github.com/chrender/libfizmo","https://github.com/chrender/libfizmo",4850.5273958333,1,7,0,3,3,0,0,3,3,"3",1.875,2 +"libfsntfs",0.3317907898,2.8232850998,-0.2751892076,"https://salsa.debian.org/pkg-security-team/libfsntfs","https://github.com/libyal/libfsntfs.git",3331.7044212963,0,1,0,1,16,0,2,18,2,"2",2,1.88888888888889 +"libfte",-1.9268255727,0.4828975174,-2.5557399688,"https://github.com/kpdyer/libfte/tree/debian/unstable","https://github.com/kpdyer/libfte",519.2035763889,0,6,1,3,6,0,0,6,1,"1",2,2 +"libfvde",0.9569035002,4.5103410226,-0.1365413277,"https://salsa.debian.org/pkg-security-team/libfvde","https://github.com/libyal/libfvde.git",3327.7584953704,0,1,0,1,79,0,2,81,2,"2",2,1.97530864197531 +"libfwnt",0.4678493195,3.4503175442,-0.3155910203,"https://salsa.debian.org/pkg-security-team/libfwnt","https://github.com/libyal/libfwnt",3707.8170833333,2,1,0,3,9,0,2,11,2,"2",1.33333333333333,1.81818181818182 +"libfwsi",0.4767451355,3.2824611568,-0.3244519074,"https://salsa.debian.org/pkg-security-team/libfwsi","https://github.com/libyal/libfwsi.git",3356.5179398148,0,1,0,1,19,0,2,21,2,"2",2,1.9047619047619 +"gclib",-1.2540063751,1.2393506434,-1.793979304,"https://salsa.debian.org/med-team/libgclib","https://github.com/gpertea/gclib",2782.2130555556,2,2,0,3,11,0,0,11,2,"2",1.5,2 +"gdal-grass",0.1785470496,2.1229290789,-0.4698383341,"https://salsa.debian.org/debian-gis-team/gdal-grass","https://github.com/OSGeo/gdal-grass.git",695.4440625,6,4,0,13,3,0,0,13,1,"1",1.4,1.23076923076923 +"geo-google-mapobject",-0.8736364381,1.4566987694,-1.3139869808,"https://salsa.debian.org/perl-team/modules/packages/libgeo-google-mapobject-perl","https://github.com/periapt/geo-google-mapobject.git",50.641099537,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"geoip-api-perl",-0.1336111961,0.5223083889,-0.2976960926,"https://salsa.debian.org/perl-team/modules/packages/libgeo-ip-perl","https://github.com/maxmind/geoip-api-perl.git",4739.8765162037,5,12,0,10,18,0,0,22,3,"3",1.70588235294118,1.81818181818182 +"git-pureperl",-0.9270531395,0.744963627,-1.3901965303,"https://salsa.debian.org/perl-team/modules/packages/libgit-pureperl-perl","https://github.com/broquaint/git-pureperl.git",2866.3317824074,3,22,0,14,6,0,0,15,2,"2",1.88,1.4 +"libgit2",0.7426843467,1.4899627881,0.3118438265,"https://salsa.debian.org/debian/libgit2","https://github.com/libgit2/libgit2.git",5520.8953703704,104,508,0,399,0,0,0,399,4,"4",1.83006535947712,1 +"gnupg-interface",0.1615830389,0.739184756,-0.1104590476,"https://salsa.debian.org/perl-team/modules/packages/libgnupg-interface-perl","https://github.com/bestpractical/gnupg-interface.git",5505.2035300926,4,10,0,13,15,0,0,22,4,"4",1.71428571428571,1.68181818181818 +"Graph-D3",-2.0103879366,0.5815176639,-2.5923181246,"https://salsa.debian.org/perl-team/modules/packages/libgraph-d3-perl","https://github.com/shoheik/Graph-D3.git",1331.9675925926,1,3,0,3,3,0,0,4,1,"1",1.75,1.75 +"Graph-ReadWrite",0.0013928296,2.5958738365,-0.7361535942,"https://salsa.debian.org/perl-team/modules/packages/libgraph-readwrite-perl","https://github.com/neilb/Graph-ReadWrite.git",2428.8532986111,0,5,0,3,3,0,0,3,1,"1",2,2 +"p5-graph-writer-dsm",-2.8359680573,-0.7007526287,-3.3075782595,"https://salsa.debian.org/perl-team/modules/packages/libgraph-writer-dsm-perl","https://github.com/joenio/p5-graph-writer-dsm.git",1743.0827777778,0,2,0,1,0,0,0,1,1,"1",2,1 +"Graphics-ColorNames-WWW",-0.8846098514,1.1184900901,-1.3674713039,"https://salsa.debian.org/perl-team/modules/packages/libgraphics-colornames-www-perl","https://github.com/cfaerber/Graphics-ColorNames-WWW",3881.2659606482,0,3,0,1,0,0,0,1,3,"3",2,1 +"GraphViz",-0.0292832904,0.8748911062,-0.2131770807,"https://salsa.debian.org/perl-team/modules/packages/libgraphviz-perl","https://github.com/ronsavage/GraphViz.git",4149.5647685185,0,8,0,6,5,0,0,6,3,"3",2,1.83333333333333 +"libgtextutils",0.1810799898,2.3142226538,-0.6333026117,"https://salsa.debian.org/med-team/libgtextutils","https://github.com/agordon/libgtextutils.git",1379.9043171296,1,2,0,1,21,0,0,21,1,"1",1.66666666666667,2 +"gzstream",-0.4604271748,1.0639003315,-0.7280422963,"https://salsa.debian.org/med-team/libgzstream","https://github.com/kanedo/gzstream.git",1271.8150115741,0,2,0,1,4,0,0,4,1,"1",2,2 +"perl-html-stripscripts",-0.3606801075,1.7950802024,-0.7870879637,"https://salsa.debian.org/perl-team/modules/packages/libhtml-stripscripts-perl","https://github.com/clintongormley/perl-html-stripscripts.git",634.9694444444,1,1,0,2,4,0,0,4,1,"1",1.5,2 +"html-template",0.2623998312,1.2787610043,-0.0168521747,"https://salsa.debian.org/perl-team/modules/packages/libhtml-template-perl","https://github.com/mpeters/html-template.git",2360.5546296296,1,10,0,6,17,0,0,17,1,"1",1.90909090909091,2 +"HTML-Tiny",-0.2742049645,2.1158495273,-0.8034234216,"https://salsa.debian.org/perl-team/modules/packages/libhtml-tiny-perl","https://github.com/ap/HTML-Tiny.git",5143.9249537037,0,2,0,2,0,0,0,2,4,"4",2,1 +"HTTP-Message",1.2240574234,4.0822720732,0.2771667606,"https://salsa.debian.org/perl-team/modules/packages/libhttp-message-perl","https://github.com/libwww-perl/HTTP-Message.git",5655.1268518519,76,18,0,56,26,0,1,74,4,"4",1.19148936170213,1.35135135135135 +"HTTP-Proxy",-0.0949217121,1.2455203169,-0.6350123924,"https://salsa.debian.org/perl-team/modules/packages/libhttp-proxy-perl","https://github.com/book/HTTP-Proxy.git",4041.0415393519,7,1,0,8,15,0,0,18,3,"3",1.125,1.83333333333333 +"http-server-simple",0.8231195226,2.8527464993,0.0853932498,"https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-perl","https://github.com/bestpractical/http-server-simple",2910.7674074074,4,11,0,11,4,0,0,12,2,"2",1.73333333333333,1.33333333333333 +"HTTP-Server-Simple-PSGI",-0.1977126095,1.9180365026,-0.6285309261,"https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-psgi-perl","https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git",1409.5210763889,0,2,0,2,3,0,0,4,1,"1",2,1.75 +"libhugetlbfs",-0.6583887261,1.4081810608,-1.179127099,"https://github.com/punitagrawal/libhugetlbfs.git","https://github.com/punitagrawal/libhugetlbfs.git",2039.1172800926,1,1,0,2,1,0,0,3,1,"1",1.5,1.33333333333333 +"libics",-1.5487571477,-0.7977160114,-1.7237343016,"https://salsa.debian.org/med-team/libics","https://github.com/svi-opensource/libics",4511.1015277778,4,15,0,9,13,0,0,14,3,"3",1.78947368421053,1.92857142857143 +"Net-IDN-Encode",0.0249334359,3.9722760412,-1.0659289095,"https://salsa.debian.org/perl-team/modules/packages/libidna-punycode-perl","https://github.com/cfaerber/Net-IDN-Encode.git",3674.6395949074,6,7,0,3,12,0,0,12,2,"2",1.53846153846154,2 +"iksemel",1.4056706717,3.3010035011,0.531380273,"https://salsa.debian.org/debian/libiksemel","https://github.com/meduketto/iksemel",2285.3264351852,0,3,0,0,15,0,0,15,1,"1",2,2 +"p5-image-exif",-0.3566210754,0.8027615419,-0.610345557,"https://salsa.debian.org/perl-team/modules/packages/libimage-exif-perl","https://github.com/arc/p5-image-exif.git",101.2955787037,2,2,0,1,1,0,0,2,1,"1",1.5,1.5 +"Image-MetaData-JPEG",0.1782474931,2.8015789571,-0.5717239967,"https://salsa.debian.org/perl-team/modules/packages/libimage-metadata-jpeg-perl","https://github.com/rjbs/Image-MetaData-JPEG.git",1915.8586921296,1,3,0,2,0,0,0,2,1,"1",1.75,1 +"image-size",0.2728915097,1.5941936935,-0.1459963248,"https://salsa.debian.org/perl-team/modules/packages/libimage-size-perl","https://github.com/rjray/image-size.git",4527.5378587963,0,12,0,10,14,0,0,14,3,"3",2,2 +"libinstpatch",0.3063715043,2.068273106,-0.0894533028,"https://salsa.debian.org/multimedia-team/libinstpatch","https://github.com/swami/libinstpatch",4470.7645833333,4,11,0,8,17,0,0,19,3,"3",1.73333333333333,1.89473684210526 +"p5-io-callback",-2.0212295476,0.6694774365,-2.7211969358,"https://salsa.debian.org/perl-team/modules/packages/libio-callback-perl","https://github.com/tobyink/p5-io-callback.git",2909.5988078704,0,1,0,1,0,0,0,1,2,"2",2,1 +"IO-Digest",-0.1769998583,2.4353442239,-0.8553329296,"https://salsa.debian.org/perl-team/modules/packages/libio-digest-perl","https://github.com/clkao/IO-Digest.git",1863.0997106482,1,4,0,3,4,0,0,4,1,"1",1.8,2 +"File-Flock",0.2170241797,2.8246432586,-0.6360167425,"https://salsa.debian.org/perl-team/modules/packages/libio-event-perl","https://github.com/muir/File-Flock.git",474.8396990741,0,4,0,4,6,0,0,6,1,"1",2,2 +"LibIO-Interface-Perl",1.0184295465,4.1476474847,0.0508969184,"https://salsa.debian.org/perl-team/modules/packages/libio-interface-perl","https://github.com/lstein/LibIO-Interface-Perl.git",2278.4801041667,0,2,0,1,6,0,0,7,1,"1",2,1.85714285714286 +"perl-io-socket-inet6",1.0536105818,2.554159089,0.3603685147,"https://salsa.debian.org/perl-team/modules/packages/libio-socket-inet6-perl","https://github.com/shlomif/perl-io-socket-inet6.git",5052.8307060185,0,3,0,1,0,0,0,1,4,"4",2,1 +"IPC-Run3",0.5630723174,3.202492468,-0.0863000736,"https://salsa.debian.org/perl-team/modules/packages/libipc-run3-perl","https://github.com/rjbs/IPC-Run3.git",1899.0353819445,8,2,0,10,19,0,0,20,1,"1",1.2,1.95 +"ipc-system-simple",0.7025068064,3.3730782331,0.0378027178,"https://salsa.debian.org/perl-team/modules/packages/libipc-system-simple-perl","https://github.com/pjf/ipc-system-simple.git",5306.4576388889,4,11,0,8,42,0,0,42,4,"4",1.73333333333333,2 +"ITL",0.0254308757,1.554670546,-0.4274590481,"https://salsa.debian.org/islamic-team/libitl","https://github.com/arabeyes-org/ITL",3251.4730902778,2,13,0,6,19,0,0,19,2,"2",1.86666666666667,2 +"libitl-gobject",-0.7439913292,1.4835301757,-1.3690898031,"https://salsa.debian.org/islamic-team/libitl-gobject","https://github.com/aelmahmoudy/libitl-gobject.git",2211.2291898148,0,2,0,1,0,0,0,1,1,"1",2,1 +"jbzip2",-0.1117625553,1.7645153992,-0.5532046545,"https://salsa.debian.org/java-team/libjbzip2-java","https://github.com/routeKIT/jbzip2.git",1394.2040046296,0,2,0,1,0,0,0,1,1,"1",2,1 +"libjcat",-2.9665296188,-1.1386554909,-3.3229751102,"https://salsa.debian.org/efi-team/libjcat","https://github.com/hughsie/libjcat.git",1373.0888425926,7,5,0,7,13,0,0,14,1,"1",1.41666666666667,1.92857142857143 +"jifty-dbi",-1.6146679558,0.7852306876,-2.2707603438,"https://salsa.debian.org/perl-team/modules/packages/libjifty-dbi-perl","https://github.com/bestpractical/jifty-dbi.git",2518.1463888889,1,16,0,21,6,0,0,25,1,"1",1.94117647058824,1.24 +"Lingua-EN-Inflect-Number",0.1280326899,2.5007020448,-0.4017863004,"https://salsa.debian.org/perl-team/modules/packages/liblingua-en-inflect-number-perl","https://github.com/neilbowers/Lingua-EN-Inflect-Number",2030.0671527778,1,2,0,1,0,0,0,1,1,"1",1.66666666666667,1 +"Lingua-EN-Numbers-Ordinate",-0.5287396988,1.7136767904,-0.9568574903,"https://salsa.debian.org/perl-team/modules/packages/liblingua-en-numbers-ordinate-perl","https://github.com/neilb/Lingua-EN-Numbers-Ordinate",4119.2290856482,1,2,0,1,0,0,0,1,3,"3",1.66666666666667,1 +"Lingua-PT-Stemmer",-0.0370378021,1.7556059977,-0.4052943013,"https://salsa.debian.org/perl-team/modules/packages/liblingua-pt-stemmer-perl","https://github.com/neilb/Lingua-PT-Stemmer.git",472.7143518519,1,2,0,1,0,0,0,1,1,"1",1.66666666666667,1 +"list-compare",0.3913134488,2.6930680807,-0.0910990527,"https://salsa.debian.org/perl-team/modules/packages/liblist-compare-perl","https://github.com/jkeenan/list-compare.git",5186.5518171296,4,4,0,6,7,0,0,7,4,"4",1.5,2 +"Locale-Maketext-Gettext",-0.4988694756,1.1302337571,-0.8279808959,"https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-gettext-perl","https://github.com/imacat/Locale-Maketext-Gettext.git",519.6569444444,0,2,0,1,0,0,0,1,1,"1",2,1 +"locale-maketext-lexicon",0.161275632,1.8969602532,-0.2840997851,"https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-lexicon-perl","https://github.com/clintongormley/locale-maketext-lexicon.git",1951.7074074074,1,9,0,7,17,0,0,17,1,"1",1.9,2 +"p5-Locales",-1.0439124558,1.1408551718,-1.4785456456,"https://salsa.debian.org/perl-team/modules/packages/liblocales-perl","https://github.com/drmuey/p5-Locales.git",1740.6568287037,0,3,0,2,4,0,0,4,1,"1",2,2 +"liblockfile-debian",1.3452804851,2.1620317868,0.8349604945,"https://github.com/miquels/liblockfile-debian","https://github.com/miquels/liblockfile-debian",1484.1868055556,0,2,0,1,0,0,0,1,1,"1",2,1 +"log-message-simple",0.207617298,1.6631748554,-0.0635138373,"https://salsa.debian.org/perl-team/modules/packages/liblog-message-simple-perl","https://github.com/jib/log-message-simple.git",1230.0807175926,0,3,0,2,1,0,0,2,1,"1",2,1.5 +"libltc",0.2546232027,2.4814619881,-0.1954510519,"https://salsa.debian.org/multimedia-team/libltc","https://github.com/x42/libltc",3674.4912152778,2,8,0,6,48,0,0,50,2,"2",1.8,1.96 +"p5-lwp-useragent-chicaching",-0.7942219141,1.5178916477,-1.2272281043,"https://salsa.debian.org/perl-team/modules/packages/liblwp-useragent-chicaching-perl","https://github.com/kjetilk/p5-lwp-useragent-chicaching.git",1283.7690740741,0,1,0,1,3,0,0,3,1,"1",2,2 +"magpie",-1.7158635114,1.197884825,-2.5208982983,"https://salsa.debian.org/perl-team/modules/packages/libmagpie-perl","https://github.com/tamarou/magpie.git",2275.6417824074,0,6,0,5,5,0,3,9,1,"1",2,1.55555555555556 +"mail-mbox-messageparser",-0.0992180029,0.3833084593,-0.2549281336,"https://salsa.debian.org/perl-team/modules/packages/libmail-mbox-messageparser-perl","https://github.com/coppit/mail-mbox-messageparser.git",3258.3029513889,0,3,0,1,0,0,0,1,2,"2",2,1 +"perl5-MailTools",1.0529685668,2.1520713579,0.4690208845,"https://salsa.debian.org/perl-team/modules/packages/libmailtools-perl","https://github.com/markov2/perl5-MailTools",1648.7267013889,0,2,0,1,4,0,0,4,1,"1",2,2 +"libmatemixer",0.5190776518,2.8714266987,-0.0439618764,"https://salsa.debian.org/debian-mate-team/libmatemixer","https://github.com/mate-desktop/libmatemixer.git",3404.5255092593,7,20,0,15,31,0,0,35,2,"2",1.74074074074074,1.88571428571429 +"perl-math-basecalc",-1.0492971392,0.7762474864,-1.6069135742,"https://salsa.debian.org/perl-team/modules/packages/libmath-basecalc-perl","https://github.com/kenahoo/perl-math-basecalc.git",3269.0290740741,0,8,0,2,5,0,0,5,2,"2",2,2 +"Math-GMP",-0.4977700318,1.2717897116,-0.9791927568,"https://salsa.debian.org/perl-team/modules/packages/libmath-gmp-perl","https://github.com/turnstep/Math-GMP.git",2969.082974537,1,6,0,5,6,0,0,6,2,"2",1.85714285714286,2 +"Math-Random-ISAAC",0.6477137679,3.3609472371,-0.0377506361,"https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-perl","https://github.com/jawnsy/Math-Random-ISAAC",2416.3080324074,0,1,0,1,1,0,0,1,1,"1",2,2 +"Math-Random-ISAAC-XS",0.4200441154,2.426176795,-0.0688144675,"https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-xs-perl","https://github.com/jawnsy/Math-Random-ISAAC-XS.git",2412.8853703704,0,1,0,1,0,0,0,1,1,"1",2,1 +"math-random-oo",-1.3518748941,0.9987771421,-1.8072166016,"https://salsa.debian.org/perl-team/modules/packages/libmath-random-oo-perl","https://github.com/dagolden/math-random-oo.git",1499.3150694445,0,1,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"mce-perl",-0.2406488454,2.0794415417,-0.6733224842,"https://salsa.debian.org/perl-team/modules/packages/libmce-perl","https://github.com/marioroy/mce-perl.git",2944.7772337963,1,6,0,6,17,0,0,17,2,"2",1.85714285714286,2 +"Memoize-ExpireLRU",0.1936518014,2.9309817533,-0.4019145174,"https://salsa.debian.org/perl-team/modules/packages/libmemoize-expirelru-perl","https://github.com/neilb/Memoize-ExpireLRU",624.640474537,1,2,0,1,0,0,0,1,1,"1",1.66666666666667,1 +"Message-Passing",-1.5721707445,-0.5831799889,-1.7635460333,"https://salsa.debian.org/perl-team/modules/packages/libmessage-passing-perl","https://github.com/suretec/Message-Passing.git",2987.7789236111,1,15,0,11,14,0,0,16,2,"2",1.9375,1.875 +"method-signatures-simple",-0.5051718146,2.287989514,-1.1367149384,"https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-simple-perl","https://github.com/rhesa/method-signatures-simple.git",4262.9309953704,0,6,0,2,4,0,0,4,3,"3",2,2 +"minIni",-0.452730067,0.8302579746,-0.745676424,"https://salsa.debian.org/yangfl-guest/minIni","https://github.com/compuphase/minIni",2280.3336342593,2,6,0,4,22,0,0,22,1,"1",1.75,2 +"MLDBM",0.2556850889,2.2171328226,-0.1413700534,"https://salsa.debian.org/perl-team/modules/packages/libmldbm-perl","https://github.com/chorny/MLDBM.git",1906.0319791667,3,2,0,2,0,0,0,2,1,"1",1.4,1 +"Module-CPANTS-Analyse",0.6092458087,3.4788905255,-0.4688881027,"https://salsa.debian.org/perl-team/modules/packages/libmodule-cpants-analyse-perl","https://github.com/cpants/Module-CPANTS-Analyse.git",5647.7312152778,8,20,0,23,21,0,0,33,4,"4",1.71428571428571,1.63636363636364 +"module-extract-use",-1.4214887251,0.7223462254,-1.8616614077,"https://salsa.debian.org/perl-team/modules/packages/libmodule-extract-use-perl","https://github.com/briandfoy/module-extract-use.git",2918.7995717593,0,7,0,4,8,0,0,8,2,"2",2,2 +"Module-Find",0.5306890725,2.9619110746,-0.0631954531,"https://salsa.debian.org/perl-team/modules/packages/libmodule-find-perl","https://github.com/crenz/Module-Find.git",4710.686875,2,8,0,7,14,0,0,15,3,"3",1.8,1.93333333333333 +"module-install-readmefrompod",-1.8312131642,-0.8033082466,-2.0615814708,"https://salsa.debian.org/perl-team/modules/packages/libmodule-install-readmefrompod-perl","https://github.com/bingos/module-install-readmefrompod.git",2847.0250694445,0,7,0,6,4,0,0,6,2,"2",2,1.66666666666667 +"Perl-Module-Install-XSUtil",-1.9528681484,-0.4161990227,-2.2440219121,"https://salsa.debian.org/perl-team/modules/packages/libmodule-install-xsutil-perl","https://github.com/gfx/Perl-Module-Install-XSUtil.git",1649.8556828704,0,9,0,3,4,0,0,6,1,"1",2,1.66666666666667 +"Module-Manifest",-0.2750809802,2.0412664766,-0.7072069311,"https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-perl","https://github.com/karenetheridge/Module-Manifest",3547.1878935185,0,3,0,3,0,0,0,3,2,"2",2,1 +"module-manifest-skip-pm",-0.3311047045,2.0896483213,-0.8611240864,"https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-skip-perl","https://github.com/ingydotnet/module-manifest-skip-pm.git",1169.1213194445,0,5,0,3,11,0,0,11,1,"1",2,2 +"p5-module-package-rdf",-1.9996964425,0.8089579857,-2.7247782661,"https://salsa.debian.org/perl-team/modules/packages/libmodule-package-rdf-perl","https://github.com/tobyink/p5-module-package-rdf",668.6822106481,0,1,0,1,0,0,0,1,1,"1",2,1 +"module-signature",0.6153933477,2.3081438868,0.0588548985,"https://salsa.debian.org/perl-team/modules/packages/libmodule-signature-perl","https://github.com/audreyt/module-signature.git",4414.5291782407,0,17,0,11,23,0,0,23,3,"3",2,2 +"Module-Starter-Plugin-CGIApp",-1.0772217685,1.7774421629,-2.0362185062,"https://github.com/jaldhar/Module-Starter-Plugin-CGIApp","https://github.com/jaldhar/Module-Starter-Plugin-CGIApp",4024.0661921296,0,7,0,4,4,0,0,4,3,"3",2,2 +"p5-moops",-2.0160241228,0.1848579356,-2.5747690554,"https://salsa.debian.org/perl-team/modules/packages/libmoops-perl","https://github.com/tobyink/p5-moops",2419.9678819445,0,3,0,2,7,0,0,7,1,"1",2,2 +"p5-moosex-attributetags",-1.484446991,0.7122802252,-1.9169457017,"https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributetags-perl","https://github.com/tobyink/p5-moosex-attributetags",2042.2449074074,0,1,0,1,4,0,0,4,1,"1",2,2 +"perl-mp3-info",0.9722005224,3.0635904685,0.1459746264,"https://salsa.debian.org/perl-team/modules/packages/libmp3-info-perl","https://github.com/JJ/perl-mp3-info.git",3267.4327777778,1,4,0,1,3,0,0,3,2,"2",1.8,2 +"libmsiecf",0.4655231291,3.4302212781,-0.3202002984,"https://salsa.debian.org/pkg-security-team/libmsiecf","https://github.com/libyal/libmsiecf.git",3548.1866898148,0,1,0,1,5,0,2,7,2,"2",2,1.71428571428571 +"multidimensional",0.6378488709,3.4059130057,-0.1088057954,"https://salsa.debian.org/perl-team/modules/packages/libmultidimensional-perl","https://github.com/ilmari/multidimensional",4293.3777314815,1,3,0,4,4,0,0,6,3,"3",1.75,1.66666666666667 +"libmurmurhash",-1.1606750215,1.2419656851,-1.5922212752,"https://salsa.debian.org/med-team/libmurmurhash","https://github.com/kloetzl/libmurmurhash.git",1568.0675578704,0,1,0,1,0,0,0,1,1,"1",2,1 +"perl-nagios-object",-0.0287280626,2.4165825039,-0.5145037556,"https://salsa.debian.org/perl-team/modules/packages/libnagios-object-perl","https://github.com/duncs/perl-nagios-object.git",4719.3367939815,1,14,0,9,10,0,0,11,3,"3",1.93333333333333,1.90909090909091 +"libnatpmp",0.2543409022,1.1083518392,4.5219738185424e-05,"https://salsa.debian.org/miniupnp-team/libnatpmp","https://github.com/miniupnp/libnatpmp",3832.0982523148,3,20,0,19,24,0,0,26,3,"3",1.8695652173913,1.92307692307692 +"libnbcompat",-5.0470695639,-2.6158016281,-5.4799549879,"https://github.com/jgoerzen/libnbcompat","https://github.com/jgoerzen/libnbcompat",3888.0046759259,0,19,0,0,2,0,0,2,3,"3",2,2 +"libndp",0.413875636,2.2608821975,0.0018314313,"https://salsa.debian.org/debian/libndp","https://github.com/jpirko/libndp.git",3924.0402314815,9,4,0,9,18,0,0,20,3,"3",1.30769230769231,1.9 +"libneo4j-client",-0.4420044551,1.822604323,-1.1962509735,"https://github.com/cleishm/libneo4j-client","https://github.com/cleishm/libneo4j-client",1826.3064351852,2,5,0,3,62,0,1,63,1,"1",1.71428571428571,1.98412698412698 +"p5-Net-DNS-Lite",-0.3886008757,1.7387555976,-0.810307745,"https://salsa.debian.org/perl-team/modules/packages/libnet-dns-lite-perl","https://github.com/kazuho/p5-Net-DNS-Lite.git",2215.0713888889,0,7,0,6,9,0,0,9,1,"1",2,2 +"Net-IDN-Encode",0.2021202967,2.48699816,-0.240749263,"https://salsa.debian.org/perl-team/modules/packages/libnet-idn-encode-perl","https://github.com/cfaerber/Net-IDN-Encode.git",3674.6395949074,6,7,0,3,12,0,0,12,2,"2",1.53846153846154,2 +"perl-net-jabber-bot",-1.4064709925,2.213836255,-2.339836966,"https://salsa.debian.org/perl-team/modules/packages/libnet-jabber-bot-perl","https://github.com/toddr/perl-net-jabber-bot.git",4656.9431712963,0,12,0,5,11,0,1,12,3,"3",2,1.91666666666667 +"Net-LDAP-FilterBuilder",-1.0311673826,1.3164424951,-1.5505907465,"https://salsa.debian.org/perl-team/modules/packages/libnet-ldap-filterbuilder-perl","https://github.com/ollyg/Net-LDAP-FilterBuilder.git",3727.9931481482,1,4,0,2,2,0,0,2,2,"2",1.8,2 +"libnet-ldapapi-perl",0.3298012331,4.2171229252,-0.937584259,"https://github.com/whm/libnet-ldapapi-perl","https://github.com/whm/libnet-ldapapi-perl",2319.3761458333,0,8,0,3,3,0,0,3,1,"1",2,2 +"Net-Netmask",0.1949090184,1.297397456,-0.0893189593,"https://salsa.debian.org/perl-team/modules/packages/libnet-netmask-perl","https://github.com/jmaslak/Net-Netmask.git",4478.3867592593,1,7,0,6,3,0,0,7,3,"3",1.875,1.42857142857143 +"Net-OpenID-Server",-1.0955544028,0.6845393717,-1.5372515082,"https://salsa.debian.org/perl-team/modules/packages/libnet-openid-server-perl","https://github.com/robn/Net-OpenID-Server.git",848.2155092593,2,3,0,3,3,0,0,4,1,"1",1.6,1.75 +"Net-SMTP-TLS",-0.1132113761,2.611489661,-0.7024918462,"https://salsa.debian.org/perl-team/modules/packages/libnet-smtp-tls-butmaintained-perl","https://github.com/fayland/Net-SMTP-TLS",3215.1503240741,2,5,0,4,4,0,0,4,2,"2",1.71428571428571,2 +"libnfo",-1.6756209904,0.1206412877,-2.1869772617,"https://salsa.debian.org/debian/libnfo","https://github.com/GeeXboX/libnfo",1108.0312384259,0,6,0,3,0,0,0,3,1,"1",2,1 +"libnids",1.4807006894,2.868899345,0.7254298026,"https://salsa.debian.org/pkg-security-team/libnids","https://github.com/MITRECND/libnids.git",3593.0894791667,1,9,0,6,10,0,0,12,2,"2",1.9,1.83333333333333 +"number-fraction",-1.540099922,1.0079905103,-2.1216475277,"https://salsa.debian.org/perl-team/modules/packages/libnumber-fraction-perl","https://github.com/p5-number-fraction/number-fraction.git",5664.8216203704,3,11,0,5,9,0,0,9,4,"4",1.78571428571429,2 +"libofa",0.4733582109,1.4335688496,0.0963115975,"https://salsa.debian.org/debian/libofa","https://github.com/tanob/libofa.git",2279.4909837963,1,2,0,1,3,0,0,3,1,"1",1.66666666666667,2 +"libolecf",0.4621655423,3.3267217863,-0.317708483,"https://salsa.debian.org/pkg-security-team/libolecf","https://github.com/libyal/libolecf.git",3351.0533101852,0,1,0,1,5,0,2,7,2,"2",2,1.71428571428571 +"libopenaptx",-1.7697893715,0.4021046488,-2.2318938305,"https://salsa.debian.org/debian/libopenaptx","https://github.com/pali/libopenaptx",1024.2505671296,0,2,0,2,31,0,0,31,1,"1",2,2 +"pal",-0.7436164089,0.7988128956,-1.0249643964,"https://salsa.debian.org/med-team/libpal-java","https://github.com/tamuri/pal",382.9409953704,0,2,0,1,0,0,0,1,1,"1",2,1 +"p5-Palm",0.0204029609,1.2197989009,-0.348294955,"https://salsa.debian.org/perl-team/modules/packages/libpalm-perl","https://github.com/madsen/p5-Palm",2036.3955092593,2,5,0,5,0,0,0,5,1,"1",1.71428571428571,1 +"pam-encfs",-0.0672752006,1.0391890178,-0.5514410008,"https://salsa.debian.org/debian/libpam-encfs","https://github.com/tinti/pam-encfs",2773.2122222222,0,4,0,2,2,0,0,4,2,"2",2,1.5 +"libpam-pwdfile",-0.1067432026,0.5002558718,-0.3226316808,"https://github.com/tiwe-de/libpam-pwdfile/tree/debian","https://github.com/tiwe-de/libpam-pwdfile",923.3027546296,2,2,0,2,8,0,0,9,1,"1",1.5,1.88888888888889 +"PGObject-Type-DateTime",-1.4815397898,0.6709430232,-1.9159731716,"https://salsa.debian.org/perl-team/modules/packages/libpgobject-type-datetime-perl","https://github.com/ledgersmb/PGObject-Type-DateTime.git",3652.6989467593,0,8,0,4,6,0,0,6,2,"2",2,2 +"PGObject-Util-DBAdmin",-1.5448908629,0.6014090328,-1.9825388902,"https://salsa.debian.org/perl-team/modules/packages/libpgobject-util-dbadmin-perl","https://github.com/ledgersmb/PGObject-Util-DBAdmin.git",2615.9496412037,0,5,0,3,10,0,0,10,1,"1",2,2 +"pgp-sign",-0.5037910117,2.2440221924,-1.3324653392,"https://salsa.debian.org/rra/libpgp-sign-perl","https://github.com/rra/pgp-sign",2555.0956134259,1,5,0,2,2,0,0,2,1,"1",1.83333333333333,2 +"perl5-PGPLOT",-0.1986814175,1.8032644315,-0.9289181032,"https://salsa.debian.org/perl-team/modules/packages/libpgplot-perl","https://github.com/PDLPorters/perl5-PGPLOT.git",2564.25125,4,7,0,6,6,0,0,7,1,"1",1.63636363636364,1.85714285714286 +"Plack-Middleware-CSRFBlock",-2.8898967554,-0.7198364868,-3.3240833199,"https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-csrfblock-perl","https://github.com/mattp-/Plack-Middleware-CSRFBlock",1436.9725347222,1,7,0,3,3,0,0,4,1,"1",1.875,1.75 +"Plack-Middleware-Deflater",-0.8686046005,1.4026303206,-1.3409550295,"https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl","https://github.com/miyagawa/Plack-Middleware-Deflater.git",4308.6622222222,0,5,0,3,10,0,0,11,3,"3",2,1.90909090909091 +"Plack-Middleware-File-Sass",-3.742621833,-1.2109466542,-4.3202138211,"https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-file-sass-perl","https://github.com/miyagawa/Plack-Middleware-File-Sass.git",372.7359490741,0,1,0,1,4,0,0,5,1,"1",2,1.8 +"plack-test-anyevent",-2.2481916187,0.456054425,-2.955500627,"https://salsa.debian.org/perl-team/modules/packages/libplack-test-anyevent-perl","https://github.com/hoelzro/plack-test-anyevent.git",2226.7020138889,0,6,0,3,7,0,0,7,1,"1",2,2 +"pod-2-docbook",-2.1858439437,0.1225281674,-2.6170683957,"https://salsa.debian.org/perl-team/modules/packages/libpod-2-docbook-perl","https://github.com/jozef/pod-2-docbook",1292.6652546296,0,6,0,3,2,0,0,3,1,"1",2,1.66666666666667 +"libpod-webserver-perl",-0.4204997081,2.3714699089,-1.5368509522,"https://github.com/mogaal/libpod-webserver-perl","https://github.com/mogaal/libpod-webserver-perl",801.0357291667,1,1,0,1,1,0,0,2,1,"1",1.5,1.5 +"Pod-Wordlist-hanekomu",-2.3524762868,-0.0387599898,-2.7860641364,"https://salsa.debian.org/perl-team/modules/packages/libpod-wordlist-hanekomu-perl","https://github.com/dagolden/Pod-Wordlist-hanekomu",1571.1035763889,0,3,0,2,0,0,0,2,1,"1",2,1 +"poe-component-client-http",-1.0501503685,-0.2644618645,-1.3283877911,"https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-http-perl","https://github.com/rcaputo/poe-component-client-http",2297.0143402778,1,4,0,7,6,0,0,10,1,"1",1.8,1.6 +"poe-component-client-ident",-2.7407891821,-1.3969533145,-3.0142475956,"https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-ident-perl","https://github.com/bingos/poe-component-client-ident.git",49.7081481481,0,1,0,1,0,0,0,1,1,"1",2,1 +"poe-component-client-keepalive",-0.9123072197,1.3895866184,-1.3489172881,"https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-keepalive-perl","https://github.com/rcaputo/poe-component-client-keepalive.git",2357.5085300926,2,4,0,8,6,0,0,10,1,"1",1.66666666666667,1.6 +"poe-filter-ircd",-0.3745579428,1.9358389215,-0.8315150468,"https://salsa.debian.org/perl-team/modules/packages/libpoe-filter-ircd-perl","https://github.com/bingos/poe-filter-ircd.git",1552.6868865741,0,4,0,3,1,0,0,3,1,"1",2,1.33333333333333 +"poe-loop-tk",-0.195847078,2.023755452,-0.7553813013,"https://salsa.debian.org/perl-team/modules/packages/libpoe-loop-tk-perl","https://github.com/rcaputo/poe-loop-tk",2011.4116435185,0,7,0,11,1,0,0,12,1,"1",2,1.08333333333333 +"Probe-Perl",-0.1208694783,2.6826431693,-0.7468528277,"https://salsa.debian.org/perl-team/modules/packages/libprobe-perl-perl","https://github.com/kenahoo/Probe-Perl",112.0281712963,0,2,0,1,0,0,0,1,1,"1",2,1 +"perl-proc-processtable",0.037499403,0.4824843529,-0.0771518619,"https://salsa.debian.org/perl-team/modules/packages/libproc-processtable-perl","https://github.com/jwbargsten/perl-proc-processtable",3896.7371180556,1,25,0,20,24,0,0,25,3,"3",1.96153846153846,1.96 +"libpuzzle",-0.6680140267,0.6529557031,-1.1243331237,"https://salsa.debian.org/debian-phototools-team/libpuzzle","https://github.com/jedisct1/libpuzzle",2324.9386458333,1,8,0,5,25,0,0,26,1,"1",1.88888888888889,1.96153846153846 +"libpwquality",0.5103514314,1.8778785061,0.0684762008,"https://salsa.debian.org/gnome-team/libpwquality","https://github.com/libpwquality/libpwquality.git",4429.9063773148,51,15,0,49,43,0,0,74,3,"3",1.22727272727273,1.58108108108108 +"libqcow",0.4345572635,3.1501552197,-0.2914212024,"https://salsa.debian.org/pkg-security-team/libqcow","https://github.com/libyal/libqcow.git",3715.7671527778,0,1,0,1,19,0,2,21,2,"2",2,1.9047619047619 +"p5-rdf-acl",-2.0654979491,1.2809082376,-3.0733910723,"https://salsa.debian.org/perl-team/modules/packages/librdf-acl-perl","https://github.com/tobyink/p5-rdf-acl",1688.9962731482,0,1,0,1,0,0,0,1,1,"1",2,1 +"RDF-aREF",-1.6321655974,0.5126731294,-2.0632435211,"https://salsa.debian.org/perl-team/modules/packages/librdf-aref-perl","https://github.com/nichtich/RDF-aREF.git",2565.8667708333,2,8,0,4,11,0,1,12,1,"1",1.8,1.91666666666667 +"RDF-Generator-Void",-1.6331954297,0.6259569496,-2.0634280229,"https://salsa.debian.org/perl-team/modules/packages/librdf-generator-void-perl","https://github.com/kjetilk/RDF-Generator-Void.git",1725.5093171296,0,6,0,4,4,0,0,5,1,"1",2,1.8 +"RDF-Helper-Properties",-1.4850797677,1.0749945226,-2.1065327245,"https://salsa.debian.org/perl-team/modules/packages/librdf-helper-properties-perl","https://github.com/kjetilk/RDF-Helper-Properties.git",2324.5435416667,0,5,0,3,5,0,0,5,1,"1",2,2 +"RDF-LinkedData",-1.5297189997,-0.0678424369,-2.0840021227,"https://salsa.debian.org/perl-team/modules/packages/librdf-linkeddata-perl","https://github.com/kjetilk/RDF-LinkedData.git",4060.5603472222,0,7,0,4,7,0,0,7,3,"3",2,2 +"p5-rdf-ns-curated",-1.1846297848,1.0171931504,-1.6213429531,"https://salsa.debian.org/perl-team/modules/packages/librdf-ns-curated-perl","https://github.com/kjetilk/p5-rdf-ns-curated.git",2949.064224537,0,4,0,3,5,0,0,5,2,"2",2,2 +"RDF-NS",-0.5250160099,1.01221794,-0.8720836033,"https://salsa.debian.org/perl-team/modules/packages/librdf-ns-perl","https://github.com/nichtich/RDF-NS.git",4253.4168518519,2,5,0,4,13,0,0,13,3,"3",1.71428571428571,2 +"p5-rdf-query-client",-1.1913139725,0.7502046078,-1.7548289358,"https://salsa.debian.org/perl-team/modules/packages/librdf-query-client-perl","https://github.com/tobyink/p5-rdf-query-client",1767.4564930556,0,1,0,1,2,0,0,2,1,"1",2,2 +"libSavitar",-0.0624513388,1.310740378,-0.382634692,"https://salsa.debian.org/3dprinting-team/libsavitar","https://github.com/Ultimaker/libSavitar.git",2417.8881481482,12,19,0,17,35,0,0,38,1,"1",1.61290322580645,1.92105263157895 +"libsbsms",0.1678753971,1.6421405226,-0.1313541464,"https://salsa.debian.org/multimedia-team/libsbsms","https://github.com/claytonotey/libsbsms.git",571.9734837963,2,6,0,5,9,0,0,9,1,"1",1.75,2 +"p5-scalar-does",-0.5366651555,1.2277898949,-0.9504713641,"https://salsa.debian.org/perl-team/modules/packages/libscalar-does-perl","https://github.com/tobyink/p5-scalar-does",1614.181099537,0,3,0,1,2,0,0,2,1,"1",2,2 +"libscca",0.4636827697,3.5204192618,-0.331124383,"https://salsa.debian.org/pkg-security-team/libscca","https://github.com/libyal/libscca",3348.012650463,1,1,0,2,11,0,2,13,2,"2",1.5,1.84615384615385 +"SDL_net",0.2879256018,2.7048282977,-0.176557932,"https://salsa.debian.org/sdl-team/libsdl2-net","https://github.com/libsdl-org/SDL_net.git",5565.0336111111,10,12,0,14,0,0,0,14,4,"4",1.54545454545455,1 +"perl-SHARYANTO-Utils",-2.3441465625,-0.0852227274,-2.7855609174,"https://salsa.debian.org/perl-team/modules/packages/libsharyanto-utils-perl","https://github.com/perlancar/perl-SHARYANTO-Utils.git",2945.5977546296,0,13,0,2,4,0,0,5,2,"2",2,1.8 +"simpleini",-3.1256993279,-0.5243099389,-3.727940764,"https://salsa.debian.org/yangfl-guest/simpleini","https://github.com/brofield/simpleini",5767.1290509259,12,11,0,17,66,0,0,66,4,"4",1.47826086956522,2 +"libsmdev",0.4901912636,3.5473022844,-0.3181659308,"https://salsa.debian.org/pkg-security-team/libsmdev","https://github.com/libyal/libsmdev",2801.6257060185,0,1,0,1,7,0,2,9,2,"2",2,1.77777777777778 +"libsml",-2.5583752988,0.0607386648,-3.2378106609,"https://github.com/volkszaehler/libsml/tree/debian","https://github.com/volkszaehler/libsml",4561.3065740741,12,15,0,19,11,0,0,23,3,"3",1.55555555555556,1.47826086956522 +"libsmraw",0.4741059034,3.3966321112,-0.3210256742,"https://salsa.debian.org/pkg-security-team/libsmraw","https://github.com/libyal/libsmraw.git",2800.5750925926,0,1,0,1,3,0,2,5,2,"2",2,1.6 +"SNMP-Extension-PassPersist",0.1226846415,3.0805333609,-0.7398128832,"https://salsa.debian.org/perl-team/modules/packages/libsnmp-extension-passpersist-perl","https://github.com/maddingue/SNMP-Extension-PassPersist.git",1526.080787037,0,1,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"SOAP-WSDL",0.2494473126,2.2213700721,-0.2151765381,"https://salsa.debian.org/perl-team/modules/packages/libsoap-wsdl-perl","https://github.com/scrottie/SOAP-WSDL",3956.8486342593,2,7,0,5,8,0,0,8,3,"3",1.77777777777778,2 +"debian-libsodium",0.7652440851,2.6480355078,0.1255307975,"https://github.com/gcsideal/debian-libsodium","https://github.com/gcsideal/debian-libsodium",2198.6639814815,0,2,0,2,3,0,0,5,1,"1",2,1.6 +"sort-naturally",0.7344792523,3.7354162178,-0.0108935716,"https://salsa.debian.org/perl-team/modules/packages/libsort-naturally-perl","https://github.com/bingos/sort-naturally.git",681.4402893519,0,3,0,3,6,0,0,7,1,"1",2,1.85714285714286 +"term-ui",0.3980651932,2.5988929786,-0.0533124701,"https://salsa.debian.org/perl-team/modules/packages/libterm-ui-perl","https://github.com/jib/term-ui.git",4487.1224074074,4,10,0,11,10,0,0,11,3,"3",1.71428571428571,1.90909090909091 +"Test-Cmd",-1.4068778673,-0.2437675076,-1.6282879603,"https://salsa.debian.org/perl-team/modules/packages/libtest-cmd-perl","https://github.com/neilb/Test-Cmd.git",4572.2283101852,1,7,0,4,6,0,0,7,3,"3",1.875,1.85714285714286 +"test-compile",-0.1757790814,2.2630567936,-0.8030738551,"https://salsa.debian.org/perl-team/modules/packages/libtest-compile-perl","https://github.com/egiles/test-compile",5567.3756018519,2,14,0,11,11,0,0,12,4,"4",1.875,1.91666666666667 +"test-corpus-audio-mpd",-2.7413583357,-1.3992673585,-3.0159490653,"https://salsa.debian.org/perl-team/modules/packages/libtest-corpus-audio-mpd-perl","http://github.com/jquelin/test-corpus-audio-mpd",904.9165856481,0,2,0,0,0,0,0,0,1,"1",2,NA +"Test-Database",-1.833809135,0.6133274632,-2.3400867988,"https://salsa.debian.org/perl-team/modules/packages/libtest-database-perl","https://github.com/book/Test-Database.git",2702.2549537037,3,2,0,5,6,0,0,9,1,"1",1.4,1.66666666666667 +"Test-File-Contents",-1.1809622978,0.4343778683,-1.4826469865,"https://salsa.debian.org/perl-team/modules/packages/libtest-file-contents-perl","https://github.com/ap/Test-File-Contents.git",4644.3475115741,2,4,0,3,8,0,0,9,3,"3",1.66666666666667,1.88888888888889 +"Test-Perl-Critic",0.2642060273,2.9016834456,-0.5237825629,"https://salsa.debian.org/perl-team/modules/packages/libtest-perl-critic-perl","https://github.com/Perl-Critic/Test-Perl-Critic.git",4634.7458449074,0,9,0,6,19,0,0,20,3,"3",2,1.95 +"Test-Pod-Coverage",-0.201777392,1.0831475883,-0.4327477008,"https://salsa.debian.org/perl-team/modules/packages/libtest-pod-coverage-perl","https://github.com/neilbowers/Test-Pod-Coverage",1677.1204166667,1,2,0,2,4,0,0,5,1,"1",1.66666666666667,1.8 +"test-prereq",-1.8896057083,-0.3676533696,-2.1546117193,"https://salsa.debian.org/perl-team/modules/packages/libtest-prereq-perl","https://github.com/briandfoy/test-prereq.git",2918.7659375,4,8,0,7,13,0,0,14,2,"2",1.66666666666667,1.92857142857143 +"Test-RDF",-1.5273740593,1.1507063443,-2.1229709088,"https://salsa.debian.org/perl-team/modules/packages/libtest-rdf-perl","https://github.com/kjetilk/Test-RDF.git",2744.0844328704,0,3,0,2,4,0,0,4,1,"1",2,2 +"Test-RedisServer",-2.9408349327,-0.0880954323,-3.6685151023,"https://salsa.debian.org/perl-team/modules/packages/libtest-redisserver-perl","https://github.com/typester/Test-RedisServer.git",3497.317025463,0,12,0,6,19,0,0,19,2,"2",2,2 +"Test-Strict",0.0413930215,1.9710003237,-0.4917254856,"https://salsa.debian.org/perl-team/modules/packages/libtest-strict-perl","https://github.com/manwar/Test-Strict.git",2362.5205092593,1,15,0,11,23,0,0,23,1,"1",1.9375,2 +"Test-XPath",-1.6970041276,0.5827254278,-2.146747561,"https://salsa.debian.org/perl-team/modules/packages/libtest-xpath-perl","https://github.com/manwar/Test-XPath.git",4673.8964699074,1,7,0,5,9,0,0,10,3,"3",1.875,1.9 +"Text-CSV_XS",0.3210443384,2.3035648179,-0.0928202393,"https://salsa.debian.org/perl-team/modules/packages/libtext-csv-xs-perl","https://github.com/Tux/Text-CSV_XS.git",5755.1094907407,9,17,0,13,37,0,0,39,4,"4",1.65384615384615,1.94871794871795 +"Text-Diff",0.3186250385,2.4917818706,-0.1685547916,"https://salsa.debian.org/perl-team/modules/packages/libtext-diff-perl","https://github.com/neilb/Text-Diff",2314.1856018519,0,6,0,3,4,0,0,4,1,"1",2,2 +"p5-Text-FindIndent",-0.5555131835,1.6711252899,-1.0083252674,"https://salsa.debian.org/perl-team/modules/packages/libtext-findindent-perl","https://github.com/tsee/p5-Text-FindIndent.git",3337.1243287037,0,6,0,2,1,0,0,2,2,"2",2,1.5 +"text-markdown",0.9343197619,4.332977055,-0.1666854375,"https://salsa.debian.org/perl-team/modules/packages/libtext-markdown-perl","https://github.com/bobtfish/text-markdown.git",2874.5088194445,0,12,0,7,40,0,0,41,2,"2",2,1.97560975609756 +"text-multimarkdown",0.2517262893,2.9301320017,-0.5540498908,"https://salsa.debian.org/perl-team/modules/packages/libtext-multimarkdown-perl","https://github.com/bobtfish/text-multimarkdown.git",2348.7609953704,0,10,0,6,15,0,0,18,1,"1",2,1.83333333333333 +"Text-Soundex",0.8131696461,4.2054082056,0.0081736989,"https://salsa.debian.org/perl-team/modules/packages/libtext-soundex-perl","https://github.com/rjbs/Text-Soundex",1152.2136342593,3,2,0,3,0,0,0,3,1,"1",1.4,1 +"perl-Text-sprintfn",-0.8179589658,2.1500712495,-1.6069534948,"https://salsa.debian.org/perl-team/modules/packages/libtext-sprintfn-perl","https://github.com/perlancar/perl-Text-sprintfn",2949.61625,0,11,0,2,2,0,0,3,2,"2",2,1.66666666666667 +"thread_pool",-0.5406636263,1.505263536,-1.0728830879,"https://salsa.debian.org/med-team/libthread-pool","https://github.com/rvaser/thread_pool",1629.2300810185,1,4,0,1,6,0,0,6,1,"1",1.8,2 +"libthumbor",-3.097994256,-0.4370183469,-3.7171702145,"https://salsa.debian.org/python-team/packages/libthumbor","https://github.com/thumbor/libthumbor",4029.2128125,6,18,0,14,40,0,7,48,3,"3",1.75,1.83333333333333 +"Tie-IxHash",0.7308735457,3.2747506675,0.0615000078,"https://salsa.debian.org/perl-team/modules/packages/libtie-ixhash-perl","https://github.com/chorny/Tie-IxHash.git",1314.8113773148,1,4,0,2,6,0,0,6,1,"1",1.8,2 +"tools.logging",-0.0293820524,2.7335220749,-0.6673515718,"https://salsa.debian.org/clojure-team/libtools-logging-clojure","https://github.com/clojure/tools.logging.git",4541.1196180556,3,16,0,7,0,0,0,7,3,"3",1.84210526315789,1 +"p5-types-datetime",-1.2224253104,1.1350772403,-1.7134370382,"https://salsa.debian.org/perl-team/modules/packages/libtypes-datetime-perl","https://github.com/tobyink/p5-types-datetime",1190.8059837963,1,4,0,3,5,0,0,5,1,"1",1.8,2 +"libunibreak",0.3910707314,2.538413373,-0.1234807159,"https://salsa.debian.org/qt-kde-team/3rdparty/libunibreak","https://github.com/adah1972/libunibreak.git",5748.0207407407,6,11,0,12,26,0,3,29,4,"4",1.64705882352941,1.89655172413793 +"libuninameslist",0.4875132738,2.4863001693,-0.0941545187,"https://salsa.debian.org/fonts-team/libuninameslist","https://github.com/fontforge/libuninameslist",5640.1865740741,5,13,0,13,19,0,0,20,4,"4",1.72222222222222,1.95 +"usbauth-all",-0.6014875746,1.9320845325,-1.2251803558,"https://salsa.debian.org/debian/libusbauth-configparser","https://github.com/kochstefan/usbauth-all.git",2917.2837384259,3,5,0,2,7,0,0,7,2,"2",1.625,2 +"vcs-lite",-0.8542886427,1.4604399952,-1.3294177339,"https://salsa.debian.org/perl-team/modules/packages/libvcs-lite-perl","http://github.com/barbie/vcs-lite",1975.3471527778,0,1,0,0,0,0,0,0,1,"1",2,NA +"libverto",2.4189536777,5.947206779,1.0158918925,"https://salsa.debian.org/debian/libverto","https://github.com/latchset/libverto",3721.9244907408,8,2,0,9,9,0,0,14,2,"2",1.2,1.64285714285714 +"libvhdi",0.6481021454,3.1352052875,-0.1671545473,"https://salsa.debian.org/pkg-security-team/libvhdi","https://github.com/libyal/libvhdi.git",3717.6224074074,1,1,0,2,16,0,2,18,2,"2",1.5,1.88888888888889 +"vitacilina",-3.6021180136,-0.769754564,-4.2924781327,"https://salsa.debian.org/perl-team/modules/packages/libvitacilina-perl","https://github.com/damog/vitacilina.git",2796.7499884259,1,5,0,4,5,0,0,6,2,"2",1.83333333333333,1.83333333333333 +"libvmdk",0.9664788559,4.388428618,-0.090886102,"https://salsa.debian.org/pkg-security-team/libvmdk","https://github.com/libyal/libvmdk.git",2936.766087963,2,1,0,3,29,0,2,31,2,"2",1.33333333333333,1.93548387096774 +"perl5-XML-Compile-WSDL11",-1.4310286216,0.7419388273,-1.8594446745,"https://salsa.debian.org/perl-team/modules/packages/libxml-compile-wsdl11-perl","https://github.com/markov2/perl5-XML-Compile-WSDL11",1204.3164351852,0,2,0,1,0,0,0,1,1,"1",2,1 +"XML-Encoding",-0.7093222742,1.489807431,-1.1875178918,"https://salsa.debian.org/perl-team/modules/packages/libxml-encoding-perl","https://github.com/steve-m-hay/XML-Encoding.git",2428.8622685185,1,1,0,1,0,0,0,1,1,"1",1.5,1 +"perl-XML-Generator",-0.4859689923,1.0279841867,-0.8301607275,"https://salsa.debian.org/perl-team/modules/packages/libxml-generator-perl","https://github.com/timlegge/perl-XML-Generator",442.0406828704,0,3,0,2,0,0,0,2,1,"1",2,1 +"XML-SAX-Expat",0.7084412925,2.9227171248,0.0786452436,"https://salsa.debian.org/perl-team/modules/packages/libxml-sax-expat-perl","https://github.com/hoehrmann/XML-SAX-Expat",2544.4844675926,0,4,0,2,2,0,0,2,1,"1",2,2 +"xml-sax-machines",-0.9628604737,0.4253404586,-1.269754049,"https://salsa.debian.org/perl-team/modules/packages/libxml-sax-machines-perl","https://github.com/perigrin/xml-sax-machines.git",1529.9486111111,1,2,0,1,2,0,0,2,1,"1",1.66666666666667,2 +"xml-sax",0.996402312,2.2577312148,0.3914828238,"https://salsa.debian.org/perl-team/modules/packages/libxml-sax-perl","https://github.com/grantm/xml-sax",3966.2573726852,0,6,0,3,4,0,0,5,3,"3",2,1.8 +"p5-xml-saxon-xslt2",-1.0066125051,2.2847267339,-1.8645802565,"https://salsa.debian.org/perl-team/modules/packages/libxml-saxon-xslt2-perl","https://github.com/tobyink/p5-xml-saxon-xslt2",1518.5208564815,0,1,0,1,2,0,0,2,1,"1",2,2 +"xmlbird",0.3929313241,3.1477652867,-0.4381392316,"https://salsa.debian.org/fonts-team/libxmlbird","https://github.com/johanmattssonm/xmlbird.git",3048.2602777778,1,7,0,6,9,0,0,9,2,"2",1.875,2 +"YAML-AppConfig",-0.2806665447,2.1538425871,-0.9966889755,"https://salsa.debian.org/perl-team/modules/packages/libyaml-appconfig-perl","https://github.com/Xaerxess/YAML-AppConfig",1551.2373611111,5,2,0,4,0,0,0,4,1,"1",1.28571428571429,1 +"libydpdict",-1.336791229,0.3110794516,-1.7407427608,"https://github.com/porridge/libydpdict","https://github.com/porridge/libydpdict",5005.9569675926,1,3,0,2,1,0,0,2,4,"4",1.75,1.5 +"libzeep",-1.527909209,-0.6468594182,-1.7548572329,"https://salsa.debian.org/med-team/libzeep","https://github.com/mhekkel/libzeep.git",5502.8286342593,2,5,0,2,10,0,0,10,4,"4",1.71428571428571,2 +"20kly",1.4342234885,4.3783383344,0.2667152562,"https://salsa.debian.org/python-team/packages/lightyears","https://github.com/20kly/20kly.git",4073.732349537,0,3,0,1,5,0,0,5,3,"3",2,2 +"lilv",0.3731954954,1.1783141026,0.0585307699,"https://salsa.debian.org/multimedia-team/lilv","https://github.com/lv2/lilv.git",5733.8443518519,8,1,0,9,44,0,0,45,4,"4",1.11111111111111,1.97777777777778 +"limereg",0.2360714075,2.909288917,-0.7247260854,"https://salsa.debian.org/science-team/limereg","https://github.com/RoelofBerg/limereg.git",1172.0418171296,0,3,0,2,6,0,0,6,1,"1",2,2 +"logtop",0.3498096662,3.7145308344,-0.5283480087,"https://github.com/JulienPalard/logtop","https://github.com/JulienPalard/logtop",3192.2077430556,0,9,0,4,8,0,0,8,2,"2",2,2 +"lolcat",0.6721262935,3.1765432052,-0.1088405445,"https://salsa.debian.org/ruby-team/lolcat","https://github.com/busyloop/lolcat.git",3767.9154513889,1,19,0,15,63,0,0,72,3,"3",1.95,1.875 +"loqui",-1.7007984788,0.6039967407,-2.1464740031,"https://salsa.debian.org/debian/loqui","https://github.com/sunnyone/loqui.git",4178.2538078704,1,9,0,3,2,0,0,3,3,"3",1.9,1.66666666666667 +"lsmount",0.241790673,3.2370471304,-0.6151908303,"https://github.com/Llandon/lsmount","https://github.com/Llandon/lsmount",2894.8834259259,1,4,0,1,3,0,0,3,2,"2",1.8,2 +"ltsp",-0.2605389691,-0.1270230433,-0.35762279,"https://github.com/ltsp/ltsp/","https://github.com/ltsp/ltsp",1481.8791782407,11,5,0,10,11,0,25,43,1,"1",1.3125,1.25581395348837 +"luadbi",0.1585813148,2.686351466,-0.4949553216,"https://salsa.debian.org/lua-team/lua-dbi","https://github.com/mwild1/luadbi",2870.1189699074,1,15,0,9,30,0,0,31,2,"2",1.9375,1.96774193548387 +"luaexpat",0.0739779286,0.7317384216,-0.0425516616,"https://salsa.debian.org/lua-team/lua-expat","https://github.com/lunarmodules/luaexpat",4256.8331365741,4,6,0,7,11,0,0,11,3,"3",1.6,2 +"linotify",-0.5779890984,2.143926952,-1.2238495501,"https://salsa.debian.org/lua-team/lua-inotify","https://github.com/hoelzro/linotify.git",2964.3124768519,3,9,0,8,16,0,0,18,2,"2",1.75,1.88888888888889 +"lualdap",0.0504029107,1.7349223597,-0.4425312123,"https://salsa.debian.org/lua-team/lua-ldap","https://github.com/lualdap/lualdap.git",4408.7069791667,7,12,0,13,25,0,0,30,3,"3",1.63157894736842,1.83333333333333 +"say",0.0600475565,3.4355060639,-0.8262923484,"https://salsa.debian.org/lua-team/lua-say","https://github.com/lunarmodules/say.git",4008.0407638889,1,11,0,8,11,0,0,11,3,"3",1.91666666666667,2 +"lyaml",-0.3454983994,1.9583709762,-0.7980928636,"https://salsa.debian.org/lua-team/lua-yaml/","https://github.com/gvvaughan/lyaml",3607.2911111111,1,7,1,6,63,0,0,63,2,"2",1.875,2 +"lunar-date",-1.0901325066,-0.0609883227,-1.3741924046,"https://salsa.debian.org/chinese-team/lunar-date","https://github.com/yetist/lunar-date",5400.1525115741,1,8,0,2,12,0,0,12,4,"4",1.88888888888889,2 +"luola",-0.2736280431,0.4554221137,-0.5709254832,"https://salsa.debian.org/debian/luola","https://github.com/callaa/luola.git",0.009537037,0,1,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"lv2file",0.6267118175,3.5316112473,-0.3364614164,"https://salsa.debian.org/multimedia-team/lv2file","https://github.com/jeremysalwen/lv2file.git",4139.5358449074,2,9,0,4,7,0,0,9,3,"3",1.81818181818182,1.77777777777778 +"lwt",-0.134408789,0.9137216874,-0.5254639396,"https://salsa.debian.org/ocaml-team/lwt","https://github.com/ocsigen/lwt.git",5681.6560300926,82,99,0,111,0,0,0,111,4,"4",1.54696132596685,1 +"lxappearance",2.8189754808,5.1307581038,1.6743807599,"https://salsa.debian.org/lxde-team/lxappearance","https://github.com/lxde/lxappearance.git",4801.901712963,111,38,0,71,12,0,0,76,3,"3",1.25503355704698,1.15789473684211 +"lxsession",1.2116112613,1.9433064205,0.7300432073,"https://salsa.debian.org/lxde-team/lxsession","https://github.com/lxde/lxsession.git",5699.8882175926,92,44,0,68,24,0,0,80,4,"4",1.32352941176471,1.3 +"lz4json",-0.4492537171,1.9714794785,-0.9639366883,"https://github.com/kilobyte/lz4json/tree/debian","https://github.com/kilobyte/lz4json",1639.7853125,4,5,0,5,0,0,0,5,1,"1",1.55555555555556,1 +"mac-fdisk-debian",2.7880780441,5.7864461789,1.4460748362,"https://github.com/glaubitz/mac-fdisk-debian","https://github.com/glaubitz/mac-fdisk-debian",0.0261342593,1,1,0,1,1,0,0,2,1,"1",1.5,1.5 +"MACTelnet-Debian-Packaging",0.2259589335,2.9645776481,-0.5410252908,"https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging","https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging",1885.9548726852,0,3,0,1,3,0,0,3,1,"1",2,2 +"madwimax",0.5386816454,4.8433430858,-0.9450458426,"http://github.com/ago/madwimax","http://github.com/ago/madwimax",1040.9560532407,1,3,0,0,0,0,0,0,1,"1",1.75,NA +"magicrescue",0.5638588917,1.9092658203,-0.0393062113,"https://salsa.debian.org/pkg-security-team/magicrescue","https://github.com/jbj/magicrescue",1064.0338194445,1,3,0,2,2,0,0,2,1,"1",1.75,2 +"magit-popup",0.2571268821,2.5085186003,-0.2260041619,"https://salsa.debian.org/emacsen-team/magit-popup","https://github.com/magit/magit-popup.git",3610.5775925926,17,32,0,43,14,0,0,53,2,"2",1.6530612244898,1.26415094339623 +"emacsen-team",-0.9153485178,0.2878604704,-1.1484533672,"https://salsa.debian.org/emacsen-team/magithub","https://salsa.debian.org/emacsen-team/magithub",1074.2872569445,13,18,0,0,0,0,0,0,1,"1",1.58064516129032,NA +"mando",-0.8468044385,1.2154767785,-1.3465386928,"https://salsa.debian.org/python-team/packages/mando","https://github.com/rubik/mando.git",3495.7249768519,7,5,0,9,21,0,0,21,2,"2",1.41666666666667,2 +"manpages-zh",0.3013864409,1.4801748551,-0.1366673269,"https://salsa.debian.org/chinese-team/manpages-zh","https://github.com/man-pages-zh/manpages-zh",5615.6429976852,2,12,2,8,40,0,0,44,4,"4",1.85714285714286,1.90909090909091 +"manuel",-1.8188927476,0.9170806837,-2.5490910041,"https://salsa.debian.org/python-team/packages/manuel","https://github.com/benji-york/manuel",5520.6818171296,2,23,0,16,26,0,0,29,4,"4",1.92,1.89655172413793 +"marisa-trie",-0.2770059581,0.4130762278,-0.5523788144,"https://salsa.debian.org/input-method-team/marisa","https://github.com/s-yata/marisa-trie.git",1648.6119675926,1,9,0,7,42,0,0,42,1,"1",1.9,2 +"mate-backgrounds",0.5159356315,3.1381456756,-0.0659273196,"https://salsa.debian.org/debian-mate-team/mate-backgrounds","https://github.com/mate-desktop/mate-backgrounds.git",4154.5609837963,7,18,0,16,26,0,0,30,3,"3",1.72,1.86666666666667 +"mate-user-guide",0.5094536603,3.3401486345,-0.0704353393,"https://salsa.debian.org/debian-mate-team/mate-user-guide","https://github.com/mate-desktop/mate-user-guide.git",2933.2399768519,5,16,0,11,19,0,0,21,2,"2",1.76190476190476,1.9047619047619 +"mate-user-share",-0.0144878955,0.7287904866,-0.2142966004,"https://salsa.debian.org/debian-mate-team/mate-user-share","https://github.com/mate-desktop/mate-user-share.git",4144.6895601852,7,22,0,16,27,0,0,29,3,"3",1.75862068965517,1.93103448275862 +"mate-window-applets",-0.186625862,1.9636663587,-0.6313160521,"https://salsa.debian.org/debian-mate-team/mate-window-applets","https://github.com/ubuntu-mate/mate-window-applets.git",1140.5334375,6,3,0,6,20,0,0,20,1,"1",1.33333333333333,2 +"materia-theme",0.1045234392,1.9891123795,-0.3220563371,"https://salsa.debian.org/desktop-themes-team/materia-gtk-theme","https://github.com/nana-4/materia-theme/commits/master",5185.326875,55,11,0,0,0,0,0,0,4,"4",1.16666666666667,NA +"maybe",-0.652177661,1.9314993227,-1.1686602213,"https://salsa.debian.org/debian/maybe","https://github.com/p-e-w/maybe",363.7199652778,0,2,1,2,60,0,0,60,1,"1",2,2 +"marionette-collective",0.2172201034,1.7225219851,-0.4315505666,"https://salsa.debian.org/puppet-team/mcollective","https://github.com/puppetlabs/marionette-collective",3620.6848148148,74,101,0,96,3,0,0,99,2,"2",1.57714285714286,1.03030303030303 +"meanwhile",1.6225494468,3.5813327858,0.7214154539,"https://salsa.debian.org/debian/meanwhile","https://github.com/obriencj/meanwhile.git",352.0019560185,1,1,0,2,2,0,0,3,1,"1",1.5,1.66666666666667 +"medusa",0.7418834796,1.8416337033,0.1473000467,"https://salsa.debian.org/pkg-security-team/medusa","https://github.com/jmk-foofus/medusa",2618.4448032407,4,10,0,10,71,0,0,71,1,"1",1.71428571428571,2 +"memkind",-2.3338755247,-0.4330380435,-2.7754873055,"https://github.com/kilobyte/memkind/tree/debian","https://github.com/kilobyte/memkind",3438.6727199074,30,85,0,50,2,0,0,52,2,"2",1.73913043478261,1.03846153846154 +"memtest86plus",2.2601852863,3.3021289749,1.5576924368,"https://salsa.debian.org/debian/memtest86plus","https://github.com/memtest86plus/memtest86plus.git",663.5358564815,15,10,0,12,7,0,0,15,1,"1",1.4,1.46666666666667 +"mercator",-0.2340868407,1.6571874232,-0.993372484,"https://salsa.debian.org/games-team/mercator","https://github.com/worldforge/mercator",5633.2390393519,0,7,0,5,5,0,0,7,4,"4",2,1.71428571428571 +"minidb",-0.4525684191,1.7891094238,-0.9018820656,"https://salsa.debian.org/mwerlen/minidb","https://github.com/thp/minidb.git",4339.2984953704,2,5,0,6,13,0,0,13,3,"3",1.71428571428571,2 +"minieigen",-0.2097696756,0.7860654925,-0.499567475,"https://salsa.debian.org/science-team/minieigen","https://github.com/eudoxos/minieigen",4093.4507523148,0,12,0,7,18,0,0,18,3,"3",2,2 +"minisat",0.081865083,0.8637917657,-0.1532386767,"http://github.com/niklasso/minisat","http://github.com/niklasso/minisat",2028.9114699074,1,5,0,0,0,0,0,0,1,"1",1.83333333333333,NA +"mkalias",-0.7408475157,2.3071375002,-1.5762128281,"https://salsa.debian.org/ruby-team/mkalias","https://github.com/LucianoPC/mkalias",68.2117476852,0,3,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"mktorrent",0.2711814394,1.9101515608,-0.3158320018,"https://salsa.debian.org/debian/mktorrent","https://github.com/pobrn/mktorrent",4360.041099537,6,10,1,14,72,0,4,77,3,"3",1.625,1.93506493506494 +"mmtf-java",-5.037602316,-2.8514886182,-5.4781542553,"https://salsa.debian.org/debichem-team/mmtf-java","https://github.com/rcsb/mmtf-java.git",2412.8476967593,1,12,0,6,13,0,0,13,1,"1",1.92307692307692,2 +"mmv",1.5597347679,2.9419260396,0.7739885392,"https://salsa.debian.org/debian/mmv","https://github.com/rrthomas/mmv.git",971.7580902778,1,1,0,2,10,0,0,10,1,"1",1.5,2 +"mod_proxy_msrpc",-0.4686771794,2.4036030859,-1.2427083432,"https://github.com/bombadil/mod_proxy_msrpc/tree/debian/unstable","https://github.com/bombadil/mod_proxy_msrpc",805.3717013889,0,4,0,1,20,0,1,21,1,"1",2,1.95238095238095 +"modem-cmd",-0.6052898943,1.7555013841,-1.1587030212,"https://salsa.debian.org/debian/modem-cmd","https://github.com/imZack/modem-cmd.git",939.0309143519,1,4,0,2,5,0,0,5,1,"1",1.8,2 +"modplug-tools",0.4632988211,2.9493569553,-0.4712506177,"https://salsa.debian.org/multimedia-team/modplugtools","https://github.com/alexmyczko/modplug-tools",1743.9280324074,2,5,0,3,4,0,0,4,1,"1",1.71428571428571,2 +"mom",-0.6777849161,1.9853085783,-1.5072869412,"https://salsa.debian.org/debian/mom","https://github.com/oVirt/mom",4972.7826157407,31,16,1,25,13,0,0,31,3,"3",1.34042553191489,1.41935483870968 +"mongo-c-driver",0.3915954735,1.6519342417,-0.0863313883,"https://github.com/mongodb/mongo-c-driver/tree/master","https://github.com/mongodb/mongo-c-driver",5226.5267939815,106,124,0,112,0,0,0,112,4,"4",1.53913043478261,1 +"montage-wrapper",-0.3865274729,1.1809812531,-0.6680117033,"https://salsa.debian.org/debian-astro-team/montage-wrapper","https://github.com/astropy/montage-wrapper",3566.7960416667,2,16,3,14,39,0,0,42,2,"2",1.88888888888889,1.92857142857143 +"mopidy-alsamixer",-0.098708743,2.9303656044,-0.8810971993,"https://salsa.debian.org/mopidy-team/mopidy-alsamixer","https://github.com/mopidy/mopidy-alsamixer",3286.4480439815,1,5,0,5,39,0,0,39,2,"2",1.83333333333333,2 +"mopidy-beets",-0.6046887672,2.3676499619,-1.3922973554,"https://salsa.debian.org/mopidy-team/mopidy-beets","https://github.com/mopidy/mopidy-beets",3887.5415162037,2,10,0,7,27,0,0,27,3,"3",1.83333333333333,2 +"mopidy-dleyna",-0.6150387258,1.8626619639,-1.276416264,"https://salsa.debian.org/mopidy-team/mopidy-dleyna","https://github.com/tkem/mopidy-dleyna.git",2554.9614351852,1,6,0,4,25,0,0,25,1,"1",1.85714285714286,2 +"mp3wrap",0.1511883249,2.4047625906,-0.4072551552,"https://github.com/marciosouza20/mp3wrap.git","https://github.com/marciosouza20/mp3wrap.git",36.6266319444,0,2,0,1,0,0,0,1,1,"1",2,1 +"mpc123",0.851583608,3.5692284528,-0.2366259159,"https://salsa.debian.org/debian/mpc123","https://github.com/bucciarati/mpc123",4095.7045717593,0,4,0,1,2,0,0,2,3,"3",2,2 +"mpdscribble",-0.7233101544,-0.5981438455,-0.7658816633,"https://salsa.debian.org/mpd-team/mpdscribble","https://github.com/MusicPlayerDaemon/mpdscribble.git",5474.3595486111,22,17,0,29,73,0,0,90,4,"4",1.43589743589744,1.81111111111111 +"mruby",-1.5514391,-1.3019492907,-1.6243857492,"https://github.com/mruby-debian/mruby","https://github.com/mruby-debian/mruby",4156.8421527778,37,353,0,255,2,0,32,288,3,"3",1.9051282051282,1.00694444444444 +"msgpuck",-1.9345101796,0.7538606408,-2.5762644187,"https://github.com/rtsisyk/msgpuck","https://github.com/rtsisyk/msgpuck",1946.1415046296,3,13,1,11,15,0,0,21,1,"1",1.8125,1.71428571428571 +"msitools",0.9685786476,3.4437444916,0.0488138918,"https://salsa.debian.org/debian/msitools","https://github.com/GNOME/msitools",4016.1692361111,45,59,0,69,4,0,0,71,3,"3",1.56730769230769,1.05633802816901 +"mt-st",0.1082142752,0.6983439611,-0.1608193497,"https://salsa.debian.org/debian/mt-st","https://github.com/iustin/mt-st",3093.7365972222,14,5,0,10,19,0,0,20,2,"2",1.26315789473684,1.95 +"mtpolicyd",-1.3311506647,1.0954039333,-1.9915905372,"https://salsa.debian.org/debian/mtpolicyd","https://github.com/benningm/mtpolicyd.git",2186.9926157407,1,4,0,3,21,0,0,21,1,"1",1.8,2 +"mtree-netbsd",-1.5216638363,0.5725600433,-2.0355608409,"https://github.com/jgoerzen/mtree-netbsd","https://github.com/jgoerzen/mtree-netbsd",1538.1956712963,1,7,0,0,1,0,0,1,1,"1",1.875,2 +"MU-CITE",-0.9256165282,0.9613021982,-1.3098678212,"https://salsa.debian.org/debian/mu-cite","https://github.com/cvs-m17n-org/MU-CITE",4190.5202430556,2,3,0,4,3,0,0,5,3,"3",1.6,1.6 +"mudita24",-0.0566417905,1.5271069455,-0.4568909604,"https://salsa.debian.org/multimedia-team/mudita24","https://github.com/NielsMayer/mudita24",2005.0215046296,0,5,0,2,9,0,0,11,1,"1",2,1.81818181818182 +"mugshot",0.7316630016,2.7960037279,-0.1554059373,"https://salsa.debian.org/python-team/packages/mugshot","https://github.com/bluesabre/mugshot",3560.1744907408,3,9,0,7,25,0,1,28,2,"2",1.75,1.89285714285714 +"mupen64plus-video-glide64",0.1160309114,2.3242018271,-0.3185351881,"https://salsa.debian.org/games-team/mupen64plus-video-glide64","https://github.com/mupen64plus/mupen64plus-video-glide64",4871.8438310185,2,17,0,10,7,0,0,11,3,"3",1.89473684210526,1.63636363636364 +"mupen64plus-video-z64",-0.0630178119,1.307530126,-0.3263531841,"https://salsa.debian.org/games-team/mupen64plus-video-z64","https://github.com/mupen64plus/mupen64plus-video-z64",4885.8515046296,2,17,0,10,9,0,0,12,3,"3",1.89473684210526,1.75 +"muse",0.9834892976,2.8604314623,0.0726359102,"https://salsa.debian.org/emacsen-team/muse-el","https://github.com/alexott/muse",5662.6274884259,5,7,0,9,14,0,0,76,4,"4",1.58333333333333,1.18421052631579 +"mwrap",-0.6055213344,1.7500683415,-1.3620779276,"https://salsa.debian.org/pkg-octave-team/mwrap","https://github.com/zgimbutas/mwrap",3042.6040856482,0,5,0,3,5,0,0,5,2,"2",2,2 +"nasty",1.7398622788,6.040628791,0.3559757417,"https://salsa.debian.org/pkg-security-team/nasty","https://github.com/folkertvanheusden/nasty",2093.1121412037,0,4,0,2,1,0,0,3,1,"1",2,1.33333333333333 +"natsort",0.2307395007,2.1095787345,-0.2397860986,"https://salsa.debian.org/python-team/packages/natsort","https://github.com/SethMMorton/natsort.git",4065.0547106482,9,17,0,19,20,0,1,38,3,"3",1.65384615384615,1.52631578947368 +"repairer",0.924989159,3.2280109324,0.0005519878,"https://salsa.debian.org/l10n-korean-team/nautilus-filename-repairer","https://github.com/choehwanjin/repairer",2878.1959953704,0,1,0,1,3,0,1,4,2,"2",2,1.75 +"nb2plots",-1.170670669,1.5589366654,-1.743374148,"https://salsa.debian.org/python-team/packages/nb2plots","https://github.com/matthew-brett/nb2plots.git",2904.4454282408,2,7,0,6,21,0,0,22,2,"2",1.77777777777778,1.95454545454545 +"nbtscan",0.2989992596,1.090810849,-0.0722586258,"https://salsa.debian.org/pkg-security-team/nbtscan","https://github.com/resurrecting-open-source-projects/nbtscan",1167.6364699074,1,3,0,3,5,0,0,5,1,"1",1.75,2 +"ncbi-vdb",-0.6569361569,-0.2675890873,-0.7753516055,"https://salsa.debian.org/med-team/ncbi-vdb","https://github.com/ncbi/ncbi-vdb",3367.922349537,2,70,0,18,30,0,5,46,2,"2",1.97222222222222,1.65217391304348 +"ncompress",0.6360276236,1.8663344659,0.0985497423,"https://salsa.debian.org/debian/ncompress","https://github.com/vapier/ncompress.git",4740.1165856482,11,4,0,11,22,0,0,23,3,"3",1.26666666666667,1.95652173913043 +"ndctl",-0.3026771532,0.473161469,-0.4939488737,"https://github.com/kilobyte/ndctl/tree/debian","https://github.com/kilobyte/ndctl",3210.1365509259,74,5,0,51,3,0,0,54,2,"2",1.06329113924051,1.05555555555556 +"ndg_httpsclient",0.1546655272,1.0783288299,-0.0773848973,"https://salsa.debian.org/debian/ndg-httpsclient","https://github.com/cedadev/ndg_httpsclient",3360.0136342593,2,11,0,6,22,0,0,22,2,"2",1.84615384615385,2 +"neard-deb",0.5311444679,4.0953604611,-0.5296646663,"https://github.com/sameo/neard-deb","https://github.com/sameo/neard-deb",1126.7503587963,0,4,0,2,2,0,0,2,1,"1",2,2 +"neartree",-0.0269486668,2.399314564,-0.5366245779,"https://salsa.debian.org/science-team/neartree","https://github.com/yayahjb/neartree",4773.070625,0,3,0,2,2,0,0,3,3,"3",2,1.66666666666667 +"neko-debian",-0.3476116673,0.4024674223,-0.6520598063,"https://github.com/HaxeFoundation/neko-debian","https://github.com/HaxeFoundation/neko-debian",5577.6636111111,6,3,0,5,2,0,0,7,4,"4",1.33333333333333,1.28571428571429 +"neomutt",1.0660685693,2.7351403402,0.2935299788,"https://salsa.debian.org/mutt-team/neomutt","https://github.com/neomutt/neomutt",5650.5290625,268,117,0,322,9,0,0,326,4,"4",1.3038961038961,1.02760736196319 +"netconsole",-1.2200873308,0.812746843,-1.6449255455,"https://salsa.debian.org/debian/netconsole","https://github.com/ionos-cloud/netconsole",558.8093865741,0,1,0,1,2,0,0,2,1,"1",2,2 +"nfoview",-0.0498945429,1.6663964244,-0.6736195708,"https://salsa.debian.org/python-team/packages/nfoview","https://github.com/otsaloma/nfoview",5657.3754861111,14,5,0,10,8,0,0,13,4,"4",1.26315789473684,1.61538461538462 +"nfstrace",0.7169141553,2.6489983997,-0.0935466194,"https://salsa.debian.org/debian/nfstrace","https://github.com/epam/nfstrace",2137.7810300926,9,42,0,16,32,0,0,38,1,"1",1.82352941176471,1.84210526315789 +"nifti2dicom",-0.1186607259,1.299142347,-0.6903266138,"https://salsa.debian.org/med-team/nifti2dicom","https://github.com/biolab-unige/nifti2dicom.git",2963.0766898148,0,2,0,2,17,0,0,17,2,"2",2,2 +"ninka",-1.2427926984,1.0338618531,-1.6842246523,"https://salsa.debian.org/debian/ninka","https://github.com/dmgerman/ninka",4166.3812268519,0,17,0,10,27,0,0,27,3,"3",2,2 +"nload",0.6920286572,1.9662038736,0.1248983732,"https://github.com/marciosouza20/nload.git","https://github.com/marciosouza20/nload.git",5.8634143519,0,1,0,1,0,0,0,1,1,"1",2,1 +"nm-tray",0.2402419984,2.9899186351,-0.4509695416,"https://salsa.debian.org/lxqt-team/nm-tray","https://github.com/palinek/nm-tray.git",2973.3749074074,57,7,0,43,49,0,0,80,2,"2",1.109375,1.6125 +"nocache",0.6323720855,2.8803006592,-0.068529056,"https://salsa.debian.org/debian/nocache","https://github.com/Feh/nocache",3331.9030902778,2,12,0,11,42,0,0,42,2,"2",1.85714285714286,2 +"nodau",-1.5991809833,-0.3805538345,-1.905798655,"https://salsa.debian.org/carnil/nodau","https://github.com/TicklishHoneyBee/nodau",4073.1802662037,2,7,0,3,6,0,0,6,3,"3",1.77777777777778,2 +"abbrev-js",0.3167225092,2.5424116289,-0.1165089261,"https://salsa.debian.org/js-team/node-abbrev","https://github.com/npm/abbrev-js",5021.0522106482,6,4,0,8,4,0,0,12,4,"4",1.4,1.33333333333333 +"node-active-x-obfuscator",-1.7102077451,0.4939822957,-2.1488227767,"https://salsa.debian.org/js-team/node-active-x-obfuscator","https://github.com/felixge/node-active-x-obfuscator.git",979.9255902778,0,5,0,3,0,0,0,3,1,"1",2,1 +"address",-2.3512829732,-0.2296492891,-2.7851879565,"https://salsa.debian.org/js-team/node-address","https://github.com/node-modules/address.git",3756.5830208333,7,6,0,10,40,0,0,41,2,"2",1.46153846153846,1.97560975609756 +"ansi.js",0.651738311,3.3801423506,-0.0622958722,"https://salsa.debian.org/js-team/node-ansi","https://github.com/TooTallNate/ansi.js.git",2003.1949884259,2,6,0,6,9,0,0,13,1,"1",1.75,1.69230769230769 +"applause",-2.6025031313,0.0354812349,-3.2768862018,"https://salsa.debian.org/js-team/node-applause","https://github.com/outatime/applause.git",2600.1592592593,1,6,0,4,30,0,0,30,1,"1",1.85714285714286,2 +"node-cross-spawn-async",-0.4789307226,0.5287764974,-0.6568563161,"https://salsa.debian.org/js-team/node-cross-spawn-async","https://github.com/IndigoUnited/node-cross-spawn-async.git",674.7693981481,1,12,0,8,0,0,0,8,1,"1",1.92307692307692,1 +"CSSStyleDeclaration",0.0239557668,3.7882296404,-1.1998721983,"https://salsa.debian.org/js-team/node-cssstyle","https://github.com/chad3814/CSSStyleDeclaration.git",2137.4537037037,0,9,0,5,0,0,0,5,1,"1",2,1 +"d3-color",-0.5677058758,2.345342576,-1.264606113,"https://salsa.debian.org/js-team/node-d3-color","https://github.com/d3/d3-color",3047.9240046296,6,8,0,11,41,0,0,44,2,"2",1.57142857142857,1.93181818181818 +"node-dashdash",0.812623388,3.8026107021,-0.0104465219,"https://salsa.debian.org/js-team/node-dashdash","https://github.com/trentm/node-dashdash",3657.7330671296,5,4,0,5,28,0,0,28,2,"2",1.44444444444444,2 +"node-deep-extend",0.3074384175,2.5963720517,-0.1256934881,"https://salsa.debian.org/js-team/node-deep-extend","https://github.com/unclechu/node-deep-extend.git",2469.0779513889,2,14,0,9,1,0,0,9,1,"1",1.875,1.11111111111111 +"dryice",-1.6777851216,0.5009822025,-2.1440213388,"https://salsa.debian.org/js-team/node-dryice","https://github.com/mozilla/dryice",1261.6348842593,1,13,0,12,13,0,0,17,1,"1",1.92857142857143,1.76470588235294 +"node-errno",0.7419951798,3.986012183,-0.0698570252,"https://salsa.debian.org/js-team/node-errno","https://github.com/rvagg/node-errno",3152.3664699074,3,11,0,11,31,0,0,31,2,"2",1.78571428571429,2 +"node-error-ex",-0.1994307651,1.9233568792,-0.6268261848,"https://salsa.debian.org/js-team/node-error-ex","https://github.com/qix-/node-error-ex.git",1448.5513425926,4,8,0,5,25,0,0,25,1,"1",1.66666666666667,2 +"node-extend",0.7004129328,3.6122581892,-0.0527431497,"https://salsa.debian.org/js-team/node-extend","https://github.com/justmoon/node-extend",4212.296400463,1,15,0,13,1,0,0,13,3,"3",1.9375,1.07692307692308 +"extend-shallow",-0.1006921362,1.3927484709,-0.3636715364,"https://salsa.debian.org/js-team/node-extend-shallow","https://github.com/jonschlinkert/extend-shallow",1170.6065046296,0,5,0,3,4,0,0,4,1,"1",2,2 +"file-entry-cache",-0.7855336157,1.967354907,-1.5011474598,"https://salsa.debian.org/js-team/node-file-entry-cache","https://github.com/royriojas/file-entry-cache.git",3181.5545138889,1,11,0,7,28,0,0,28,2,"2",1.91666666666667,2 +"node-findit",-0.2051260072,2.7355493581,-1.1209208962,"https://salsa.debian.org/js-team/node-findit2","https://github.com/andrewrk/node-findit.git",1811.4445601852,1,5,0,4,4,0,0,6,1,"1",1.83333333333333,1.66666666666667 +"fined",-0.1637425394,2.1242452034,-0.5982871995,"https://salsa.debian.org/js-team/node-fined","https://github.com/js-cli/fined",1982.8433680556,5,3,0,4,10,0,0,10,1,"1",1.375,2 +"node-form-data",0.5074076179,3.0343874901,-0.0886742861,"https://salsa.debian.org/js-team/node-form-data","https://github.com/felixge/node-form-data.git",3563.1111111111,9,36,0,35,5,0,0,36,2,"2",1.8,1.13888888888889 +"node-fresh",-0.3450557311,2.0039913503,-0.81124946,"https://salsa.debian.org/js-team/node-fresh","https://github.com/visionmedia/node-fresh.git",3886.7925231482,11,3,0,12,37,0,0,37,3,"3",1.21428571428571,2 +"is-npm",0.9785051776,4.5008052167,0.0095997285,"https://salsa.debian.org/js-team/node-is-npm","https://github.com/sindresorhus/is-npm",2619.0418634259,7,2,0,7,17,0,0,17,1,"1",1.22222222222222,2 +"is-typedarray",0.3980978816,2.528720541,-0.0976776715,"https://salsa.debian.org/js-team/node-is-typedarray","https://github.com/hughsk/is-typedarray",349.2442476852,0,2,0,2,14,0,0,14,1,"1",2,2 +"isexe",0.3099265646,2.6155667478,-0.1218258686,"https://salsa.debian.org/js-team/node-isexe","https://github.com/isaacs/isexe",2832.2716319445,1,4,0,1,26,0,0,26,2,"2",1.8,2 +"Jed",0.9307464408,4.5334423493,-0.0663016053,"https://salsa.debian.org/js-team/node-jed","https://github.com/messageformat/Jed.git",1857.5029166667,3,19,0,18,61,0,0,61,1,"1",1.86363636363636,2 +"jsesc",0.1478102512,3.2506359357,-0.5098361018,"https://salsa.debian.org/js-team/node-jsesc","https://github.com/mathiasbynens/jsesc",2702.1588310185,6,3,0,8,44,0,0,44,1,"1",1.33333333333333,2 +"JSON.minify",-0.1691871793,2.0408856828,-0.6162694158,"https://salsa.debian.org/js-team/node-jsonminify","https://github.com/fkei/JSON.minify",3001.0353819445,2,9,0,8,17,0,0,18,2,"2",1.81818181818182,1.94444444444444 +"JSONSelect",0.5601821689,4.3158830877,-0.4551619485,"https://salsa.debian.org/js-team/node-jsonselect","https://github.com/lloyd/JSONSelect",984.9768287037,2,8,0,8,38,0,0,39,1,"1",1.8,1.97435897435897 +"knockout",-1.6817262176,0.9748888004,-2.3144504112,"https://salsa.debian.org/js-team/node-knockout","https://github.com/knockout/knockout.git",4081.7972685185,20,115,0,81,45,0,125,241,3,"3",1.85185185185185,1.18672199170124 +"lastfm-node",-0.2802502576,3.2316861272,-1.2092934746,"https://salsa.debian.org/js-team/node-lastfm","https://github.com/jammus/lastfm-node",4644.4506018519,2,11,2,9,28,0,0,28,3,"3",1.84615384615385,2 +"node-macaddress",-2.3578089542,0.3286344876,-2.9837856086,"https://salsa.debian.org/js-team/node-macaddress","https://github.com/scravy/node-macaddress",2961.7712268519,5,13,0,12,73,0,0,73,2,"2",1.72222222222222,2 +"map-visit",0.0602654466,2.3400984295,-0.3823836028,"https://salsa.debian.org/js-team/node-map-visit","https://github.com/jonschlinkert/map-visit",645.0525115741,0,3,0,2,3,0,0,4,1,"1",2,1.75 +"media-typer",-0.1314554385,2.3567183276,-0.7554351148,"https://salsa.debian.org/js-team/node-media-typer","https://github.com/expressjs/media-typer.git",2488.2450925926,1,1,0,2,14,0,0,14,1,"1",1.5,2 +"merge-descriptors",-0.2368061411,2.2901222412,-0.8069774958,"https://salsa.debian.org/js-team/node-merge-descriptors","https://github.com/component/merge-descriptors.git",3669.9310532407,3,3,0,6,17,0,0,17,2,"2",1.5,2 +"node-mess",-0.2872327671,3.3046798368,-1.2179833072,"https://salsa.debian.org/js-team/node-mess","https://github.com/bobrik/node-mess",420.8625578704,0,3,0,2,2,0,0,2,1,"1",2,2 +"minimist",0.3063916948,2.5263654362,-0.1223643827,"https://salsa.debian.org/js-team/node-minimist","https://github.com/minimistjs/minimist.git",3791.1307175926,12,9,0,15,32,0,0,43,3,"3",1.42857142857143,1.74418604651163 +"mixin-deep",0.2041015905,2.301231867,-0.3460970033,"https://salsa.debian.org/js-team/node-mixin-deep","https://github.com/jonschlinkert/mixin-deep.git",1736.2018171296,0,4,0,2,14,0,0,14,1,"1",2,2 +"node-mocks-http",-1.7138454453,1.129012054,-2.4238704392,"https://salsa.debian.org/js-team/node-mocks-http","https://github.com/howardabrams/node-mocks-http",4315.2549074074,38,62,0,71,2,0,0,72,3,"3",1.62,1.02777777777778 +"repeat-element",0.0303018925,2.2050520215,-0.399164761,"https://salsa.debian.org/js-team/node-repeat-element","https://github.com/jonschlinkert/repeat-element",2277.9809027778,1,7,0,3,6,0,0,6,1,"1",1.875,2 +"semver-diff",0.3257088663,2.53870067,-0.1250464411,"https://salsa.debian.org/js-team/node-semver-diff","https://github.com/sindresorhus/semver-diff",2556.954525463,4,3,0,6,11,0,0,11,1,"1",1.42857142857143,2 +"node-simple-swizzle",-3.3828108141,-1.5319435267,-3.7510526278,"https://salsa.debian.org/js-team/node-simple-swizzle","https://github.com/qix-/node-simple-swizzle",2271.2482060185,1,3,0,1,3,0,0,3,1,"1",1.75,2 +"snapdragon",0.0374783954,2.1244720905,-0.3853126603,"https://salsa.debian.org/js-team/node-snapdragon","https://github.com/jonschlinkert/snapdragon.git",2160.5059722222,3,7,0,4,43,0,0,43,1,"1",1.7,2 +"ssri",0.4331740134,2.8578668337,-0.1107367526,"https://salsa.debian.org/js-team/node-ssri","https://github.com/zkat/ssri.git",2084.4809606482,2,3,0,2,27,0,0,27,1,"1",1.6,2 +"starttls",-3.2028271629,0.3123776454,-4.1656333947,"https://salsa.debian.org/js-team/node-starttls","https://github.com/mattcg/starttls",960.3696643519,0,1,0,1,4,0,0,4,1,"1",2,2 +"string_decoder",0.4324513521,3.0006538783,-0.1138855604,"https://salsa.debian.org/js-team/node-string-decoder","https://github.com/nodejs/string_decoder.git",2072.5483449074,4,7,0,8,9,0,0,12,1,"1",1.63636363636364,1.75 +"test-commonjs",-1.1865527924,1.2057642216,-1.6221327583,"https://salsa.debian.org/js-team/node-test","https://github.com/Gozala/test-commonjs",826.1617476852,0,3,0,1,16,0,0,16,1,"1",2,2 +"timed-out",0.534083437,2.8184506266,-0.0696353825,"https://salsa.debian.org/js-team/node-timed-out","https://github.com/floatdrop/timed-out",2343.4748726852,6,7,0,8,28,0,0,28,1,"1",1.53846153846154,2 +"nodeenv",-0.6570648957,1.4812327857,-1.14641203,"https://github.com/chriskuehl/nodeenv","https://github.com/chriskuehl/nodeenv",2128.7291782408,1,53,0,38,2,0,0,40,1,"1",1.98148148148148,1.05 +"nomacs",-0.1195252619,0.4799728253,-0.3176324087,"https://salsa.debian.org/lxqt-team/nomacs","https://github.com/nomacs/nomacs/commits/master",5185.326875,55,11,0,0,0,0,0,0,4,"4",1.16666666666667,NA +"nomnom",0.4452914343,2.9402706663,-0.3322295975,"https://github.com/mogaal/nomnom","https://github.com/mogaal/nomnom",917.9151273148,0,2,0,1,0,0,0,1,1,"1",2,1 +"nordlicht",-0.4190840106,1.2017878417,-0.7274544195,"https://salsa.debian.org/multimedia-team/nordlicht","https://github.com/nordlicht/nordlicht",1854.1766087963,0,8,0,6,13,0,0,13,1,"1",2,2 +"norm",0.0395894571,0.5725879857,-0.0372679262,"https://salsa.debian.org/debian/norm","https://github.com/USNavalResearchLaboratory/norm",1453.1532523148,10,9,0,11,11,0,1,19,1,"1",1.47368421052632,1.57894736842105 +"notmuch-addrlookup-c",-0.5765143279,1.1877508137,-1.0148913081,"https://salsa.debian.org/debian/notmuch-addrlookup","https://github.com/aperezdc/notmuch-addrlookup-c",3177.0368287037,9,8,0,14,28,0,0,28,2,"2",1.47058823529412,2 +"nsca-ng",-0.5633658512,0.8404353755,-1.1288671432,"https://salsa.debian.org/nagios-team/nsca-ng","https://github.com/weiss/nsca-ng.git",3817.9714236111,3,6,0,5,6,0,0,9,3,"3",1.66666666666667,1.66666666666667 +"nsnake.debian",0.294306693,3.1180145865,-0.512619257,"https://github.com/alexdantas/nsnake.debian","https://github.com/alexdantas/nsnake.debian",35.0934490741,0,2,0,0,1,0,0,1,1,"1",2,2 +"nsntrace",-0.2107095266,2.4855302503,-1.1430329763,"https://salsa.debian.org/sudip/nsntrace","https://github.com/nsntrace/nsntrace",1665.640150463,1,7,0,6,21,0,0,21,1,"1",1.875,2 +"nss-passwords",0.7982881531,3.7262660831,-0.2843886787,"https://salsa.debian.org/ocaml-team/nss-passwords","https://github.com/glondu/nss-passwords",4767.9518865741,1,2,0,2,4,0,0,5,3,"3",1.66666666666667,1.8 +"nulib2",-2.8835281311,-0.617225292,-3.3218622057,"https://salsa.debian.org/debian/nulib2","https://github.com/fadden/nulib2.git",2958.8671643519,0,7,0,4,9,0,0,9,2,"2",2,2 +"nuntius-linux",0.0562256061,3.0068525021,-0.7578958074,"https://salsa.debian.org/debian/nuntius-linux","https://github.com/holylobster/nuntius-linux.git",1285.1505324074,2,13,0,13,70,0,0,71,1,"1",1.86666666666667,1.98591549295775 +"nurpawiki",-4.202425836,-3.4681724303,-4.3504039812,"https://salsa.debian.org/ocaml-team/nurpawiki","https://github.com/glondu/nurpawiki.git",5643.4121296296,0,6,0,2,2,0,0,2,4,"4",2,2 +"nvidia-modprobe",0.5457409995,2.6334328552,-0.0334171669,"https://salsa.debian.org/nvidia-team/nvidia-modprobe","https://github.com/NVIDIA/nvidia-modprobe",3894.0040972222,0,3,0,3,7,0,0,9,3,"3",2,1.77777777777778 +"nvidia-persistenced",0.5544050718,2.8521283153,-0.0537008341,"https://salsa.debian.org/nvidia-team/nvidia-persistenced","https://github.com/NVIDIA/nvidia-persistenced",3871.0209606482,0,3,0,3,13,0,0,15,3,"3",2,1.86666666666667 +"nvidia-settings",0.3151479615,2.7684405123,-0.2288499596,"https://salsa.debian.org/nvidia-team/nvidia-settings","https://github.com/NVIDIA/nvidia-settings",5776.4649305556,24,5,0,16,143,0,0,150,4,"4",1.17241379310345,1.95333333333333 +"ocaml-ffmpeg",-1.7680324626,0.6213946308,-2.2379595426,"https://salsa.debian.org/ocaml-team/ocaml-ffmpeg","https://github.com/savonet/ocaml-ffmpeg.git",4033.3768634259,2,11,0,7,20,0,0,21,3,"3",1.84615384615385,1.95238095238095 +"ocaml-fileutils",-1.2078611318,0.0677154031,-1.4595756972,"https://salsa.debian.org/ocaml-team/ocaml-fileutils","https://github.com/gildor478/ocaml-fileutils.git",1144.3784027778,5,6,0,7,12,0,0,12,1,"1",1.54545454545455,2 +"ocaml-flac",-1.7507623662,-0.3502245327,-2.1890215844,"https://salsa.debian.org/ocaml-team/ocaml-flac","https://github.com/savonet/ocaml-flac.git",4915.2796990741,1,7,0,5,12,0,0,14,3,"3",1.875,1.85714285714286 +"gen",-2.9140964642,-0.9922910043,-3.3171869681,"https://salsa.debian.org/ocaml-team/ocaml-gen","https://github.com/c-cube/gen.git",3422.9857291667,3,9,0,7,18,0,0,18,2,"2",1.75,2 +"ocaml-gstreamer",-0.175799754,2.6087723309,-0.9430825776,"https://salsa.debian.org/ocaml-team/ocaml-gstreamer","https://github.com/savonet/ocaml-gstreamer.git",5244.7535532407,0,10,0,5,5,0,0,7,4,"4",2,1.71428571428571 +"ocaml-http",-1.5494605128,1.5864107076,-2.4465473259,"https://salsa.debian.org/ocaml-team/ocaml-http","https://github.com/sacerdot/ocaml-http.git",3570.2121180556,1,3,0,2,0,0,0,2,2,"2",1.75,1 +"ocaml-inotify",-1.5984447381,0.206726916,-1.9785130273,"https://salsa.debian.org/ocaml-team/ocaml-inotify","https://github.com/whitequark/ocaml-inotify",3586.2803240741,4,14,0,12,18,0,0,19,2,"2",1.77777777777778,1.94736842105263 +"ocaml-ladspa",-0.7118657078,1.2358767302,-1.4392313232,"https://salsa.debian.org/ocaml-team/ocaml-ladspa","https://github.com/savonet/ocaml-ladspa.git",4935.8736458333,1,7,0,4,4,0,0,6,3,"3",1.875,1.66666666666667 +"ocaml-ogg",-0.348620776,1.64371205,-0.9603602503,"https://salsa.debian.org/ocaml-team/ocaml-ogg","https://github.com/savonet/ocaml-ogg.git",5318.8518402778,1,7,0,4,2,0,0,4,4,"4",1.875,1.5 +"ocaml-opus",-0.9457632068,1.3513638625,-1.5381035109,"https://salsa.debian.org/ocaml-team/ocaml-opus","https://github.com/savonet/ocaml-opus.git",3889.1978819445,2,8,0,5,6,0,0,7,3,"3",1.8,1.85714285714286 +"res",-1.6619256072,0.8404387726,-2.374669465,"https://salsa.debian.org/ocaml-team/ocaml-res","https://github.com/mmottl/res",3234.9244791667,0,3,0,2,6,0,0,6,2,"2",2,2 +"ocaml-sha",-2.1615777656,-1.5624804098,-2.2474510973,"https://salsa.debian.org/ocaml-team/ocaml-sha","https://github.com/djs55/ocaml-sha.git",5351.1972453704,6,17,0,13,26,0,0,27,4,"4",1.73913043478261,1.96296296296296 +"ocaml-shine",-1.6537337701,1.6212733101,-2.5015175014,"https://salsa.debian.org/ocaml-team/ocaml-shine","https://github.com/savonet/ocaml-shine.git",3549.8277199074,1,5,0,4,3,0,0,5,2,"2",1.83333333333333,1.6 +"ocaml-speex",-0.6153846806,3.1543840863,-1.9637699192,"https://salsa.debian.org/ocaml-team/ocaml-speex","https://github.com/savonet/ocaml-speex.git",5316.9980902778,1,7,0,4,2,0,0,4,4,"4",1.875,1.5 +"ocaml-ssl",1.2627219166,4.0685720227,0.1401679649,"https://salsa.debian.org/ocaml-team/ocaml-ssl","https://github.com/savonet/ocaml-ssl.git",5405.4381828704,11,30,0,25,0,0,0,25,4,"4",1.73170731707317,1 +"ocaml-theora",-0.2512292534,3.1544360643,-1.4728171897,"https://salsa.debian.org/ocaml-team/ocaml-theora","https://github.com/savonet/ocaml-theora.git",5316.9970717593,1,8,0,4,1,0,0,4,4,"4",1.88888888888889,1.25 +"ocaml-usb",-0.5973686893,1.7793339383,-1.206091524,"https://salsa.debian.org/ocaml-team/ocaml-usb","https://github.com/letoh/ocaml-usb.git",4549.6073263889,1,8,0,5,8,0,0,10,3,"3",1.88888888888889,1.8 +"ocaml-vorbis",-0.9822001321,0.9986914273,-1.5520563192,"https://salsa.debian.org/ocaml-team/ocaml-vorbis","https://github.com/savonet/ocaml-vorbis.git",5459.5669675926,1,7,0,4,3,0,0,6,4,"4",1.875,1.5 +"ocamlagrep",-2.1652077496,-1.0121628969,-2.3572482465,"https://salsa.debian.org/ocaml-team/ocamlagrep","https://github.com/xavierleroy/ocamlagrep",2115.1310300926,1,2,0,2,4,0,0,4,1,"1",1.66666666666667,2 +"gsl-ocaml",0.1216448812,1.0155865797,-0.2462866522,"https://salsa.debian.org/ocaml-team/ocamlgsl","https://github.com/mmottl/gsl-ocaml.git",3442.6045023148,1,11,0,10,21,0,0,22,2,"2",1.91666666666667,1.95454545454545 +"ocaml-makefile",-0.4214445039,1.3411395826,-0.7864395598,"https://salsa.debian.org/ocaml-team/ocamlmakefile","https://github.com/mmottl/ocaml-makefile.git",1922.9826967593,0,4,0,2,8,0,0,8,1,"1",2,2 +"ocl-icd",0.2781454411,0.8515664588,0.03306071,"https://salsa.debian.org/opencl-team/ocl-icd","https://github.com/OCL-DEV/ocl-icd.git",4207.2761689815,2,15,0,5,27,0,0,28,3,"3",1.88235294117647,1.96428571428571 +"octave-mpi",-0.032052781,2.1492331512,-0.6364834294,"https://salsa.debian.org/pkg-octave-team/octave-mpi","https://github.com/carlodefalco/octave-mpi",1390.161724537,1,3,0,1,6,0,0,6,1,"1",1.75,2 +"odil",-0.8317789828,-0.397569442,-0.9351734244,"https://salsa.debian.org/med-team/odil","https://github.com/lamyj/odil",2678.1739351852,5,12,1,9,15,0,1,16,1,"1",1.70588235294118,1.9375 +"odt2txt",0.9552454239,3.2643599868,0.0923391006,"https://salsa.debian.org/debian/odt2txt","https://github.com/dstosberg/odt2txt",3417.1558564815,1,9,0,5,28,0,0,28,2,"2",1.9,2 +"ofxstatement",-0.8387724027,1.4898616569,-1.2924218148,"https://github.com/gerasiov/ofxstatement","https://github.com/gerasiov/ofxstatement",1632.6686689815,1,16,0,11,3,0,0,13,1,"1",1.94117647058824,1.23076923076923 +"ofxstatement-plugins",-0.5554916063,2.2730604682,-1.2542888677,"https://github.com/gerasiov/ofxstatement-plugins","https://github.com/gerasiov/ofxstatement-plugins",1689.0224305556,0,3,0,1,0,0,0,1,1,"1",2,1 +"ogdi",0.4637866222,1.3827381608,0.0703190227,"https://salsa.debian.org/debian-gis-team/ogdi-dfsg","https://github.com/libogdi/ogdi.git",5366.5318402778,1,9,0,9,11,0,0,13,4,"4",1.9,1.84615384615385 +"onesixtyone",-0.0525705364,1.7993576972,-0.4404876155,"https://salsa.debian.org/pkg-security-team/onesixtyone","https://github.com/trailofbits/onesixtyone",3350.0547222222,10,11,0,15,26,0,0,27,2,"2",1.52380952380952,1.96296296296296 +"onionbalance",-1.7072197089,-0.2953383489,-2.1044905747,"https://salsa.debian.org/debian/onionbalance","https://github.com/asn-d6/onionbalance.git",3123.2153240741,16,8,0,18,1,0,0,19,2,"2",1.33333333333333,1.05263157894737 +"Sensor",-0.705184402,0.5021820033,-0.967790767,"https://salsa.debian.org/multimedia-team/openni-sensor-primesense","https://github.com/PrimeSense/Sensor.git",1069.8803587963,0,3,0,3,28,0,1,31,1,"1",2,1.90322580645161 +"opensysusers",-3.3096631827,-1.1081118835,-3.751144934,"https://salsa.debian.org/debian/opensysusers","https://github.com/cromerc/opensysusers.git",1929.9289236111,4,11,0,5,2,0,0,5,1,"1",1.73333333333333,1.4 +"OpenMSX",0.5832066024,3.2825027954,-0.1430416611,"https://salsa.debian.org/openttd-team/openttd-openmsx","https://github.com/OpenTTD/OpenMSX.git",5037.8726041667,7,8,0,10,18,0,0,19,4,"4",1.53333333333333,1.94736842105263 +"OpenSFX",0.0341113683,1.8104216829,-0.3723043838,"https://salsa.debian.org/openttd-team/openttd-opensfx","https://github.com/OpenTTD/OpenSFX.git",5073.9709953704,7,9,0,10,14,0,0,15,4,"4",1.5625,1.93333333333333 +"opentyrian",-0.4709020515,1.8128682506,-0.9006361349,"https://salsa.debian.org/games-team/opentyrian","https://github.com/opentyrian/opentyrian.git",5445.2196527778,6,17,0,14,49,0,1,54,4,"4",1.73913043478261,1.90740740740741 +"platform",0.4510883183,2.2604153125,-0.0788317433,"https://salsa.debian.org/debian/p8-platform","https://github.com/Pulse-Eight/platform.git",2947.3549768519,2,28,0,23,43,0,0,48,2,"2",1.93333333333333,1.89583333333333 +"pacemaker",1.1235155799,1.8849677755,0.6240113585,"https://salsa.debian.org/ha-team/pacemaker","https://github.com/ClusterLabs/pacemaker",5780.1951388889,21,156,0,106,3,0,0,107,4,"4",1.88135593220339,1.02803738317757 +"packit",1.4894283431,3.9572075631,0.3794626915,"https://salsa.debian.org/debian/packit","https://github.com/resurrecting-open-source-projects/packit",2522.8474189815,3,11,0,6,11,0,0,11,1,"1",1.78571428571429,2 +"pacman4console.debian",0.7320531649,3.0292005631,-0.1602141611,"https://github.com/alexdantas/pacman4console.debian","https://github.com/alexdantas/pacman4console.debian",442.2178819444,0,2,0,2,1,0,0,3,1,"1",2,1.33333333333333 +"padthv1",-0.0637358518,2.799184112,-0.6752002578,"https://salsa.debian.org/multimedia-team/padthv1","https://github.com/rncbc/padthv1.git",2334.0719907407,2,4,0,3,6,0,0,6,1,"1",1.66666666666667,2 +"pajeng",-2.2918945291,-1.4246521723,-2.5749097918,"https://salsa.debian.org/debian/pajeng","https://github.com/schnorr/pajeng.git",3890.9853472222,1,24,0,10,19,0,5,24,3,"3",1.96,1.79166666666667 +"pam_p11",-0.5485831615,0.9644461867,-1.1064659619,"https://salsa.debian.org/opensc-team/pam-p11","https://github.com/OpenSC/pam_p11.git",5663.1348842593,3,10,0,11,24,0,0,25,4,"4",1.76923076923077,1.96 +"ParaFly",-0.7037850797,1.1831572633,-1.0930849211,"https://salsa.debian.org/med-team/parafly","https://github.com/ParaFly/ParaFly",1437.0966666667,1,4,0,2,1,0,0,3,1,"1",1.8,1.33333333333333 +"parallax",-0.0887932063,2.3891626891,-0.651790374,"https://salsa.debian.org/python-team/packages/parallax","https://github.com/krig/parallax",5166.3950231482,4,10,0,8,6,0,0,9,4,"4",1.71428571428571,1.66666666666667 +"partd",0.2096153056,2.6193211803,-0.3193732736,"https://salsa.debian.org/python-team/packages/partd","https://github.com/dask/partd.git",3130.7778009259,14,10,0,21,46,0,0,46,2,"2",1.41666666666667,2 +"pass-extension-tail",-0.3578050897,2.1366716684,-0.9333806276,"https://salsa.debian.org/debian/pass-extension-tail","https://github.com/palortoff/pass-extension-tail",1892.8072222222,4,2,0,5,18,0,0,18,1,"1",1.33333333333333,2 +"pastedeploy",0.1590091885,1.1475071601,-0.1727660592,"https://salsa.debian.org/python-team/packages/pastedeploy","https://github.com/Pylons/pastedeploy",4320.1172453704,5,24,0,21,22,0,0,33,3,"3",1.82758620689655,1.66666666666667 +"pastescript",0.3538232706,1.3551325439,-0.0943410822,"https://salsa.debian.org/python-team/packages/pastescript","https://github.com/cdent/pastescript.git",3347.9577893519,0,24,0,14,7,0,0,18,2,"2",2,1.38888888888889 +"libdir",-0.0254803142,1.5396086069,-0.4343390486,"https://salsa.debian.org/multimedia-team/pd/pd-libdir","https://github.com/pure-data/libdir",2709.9478356482,1,9,0,3,1,0,0,3,1,"1",1.9,1.33333333333333 +"pd-lua",-0.3693835135,1.759056146,-0.7808199336,"https://salsa.debian.org/multimedia-team/pd/pd-lua","https://github.com/agraef/pd-lua.git",3302.6912962963,1,8,0,6,12,0,0,12,2,"2",1.88888888888889,2 +"moonlib",-0.2205765237,2.0226305482,-0.7345172583,"https://salsa.debian.org/multimedia-team/pd/pd-moonlib","https://github.com/MetaluNet/moonlib.git",5328.8024537037,1,11,0,4,15,0,0,15,4,"4",1.91666666666667,2 +"PuRestJson",-0.254922487,2.320237042,-0.8198404593,"https://salsa.debian.org/multimedia-team/pd/pd-purest-json","https://github.com/residuum/PuRestJson.git",4472.3532291667,0,8,0,5,24,0,2,26,3,"3",2,1.92307692307692 +"tclpd",-0.5472322751,1.0653891207,-0.8320989326,"https://salsa.debian.org/multimedia-team/pd/pd-tclpd","https://github.com/pd-externals/tclpd.git",5367.8831018519,2,12,0,3,0,0,0,3,4,"4",1.85714285714286,1 +"vbap",-0.2128975248,1.7544581087,-0.7432504363,"https://salsa.debian.org/multimedia-team/pd/pd-vbap","https://github.com/pd-externals/vbap.git",5156.0736574074,1,7,0,2,5,0,0,5,4,"4",1.875,2 +"xsample",-0.3812603066,1.9525555214,-0.8681596425,"https://salsa.debian.org/multimedia-team/pd/pd-xsample","https://github.com/grrrr/xsample.git",5672.9809259259,1,13,0,6,6,0,0,9,4,"4",1.92857142857143,1.66666666666667 +"pdd",-0.9684689619,1.3033133236,-1.4106955016,"https://salsa.debian.org/debian/pdd","https://github.com/jarun/pdd.git",2233.8472337963,8,9,0,11,23,0,0,23,1,"1",1.52941176470588,2 +"pdfresurrect",-0.2399652539,1.6794626137,-0.5968823707,"https://salsa.debian.org/debian/pdfresurrect","https://github.com/enferex/pdfresurrect.git",5171.962662037,2,6,0,6,19,0,0,19,4,"4",1.75,2 +"pkg-pdudaemon",-2.9130668064,-0.1458508245,-3.6790610276,"https://github.com/pdudaemon/pkg-pdudaemon","https://github.com/pdudaemon/pkg-pdudaemon",1898.0415972222,9,22,0,16,6,0,0,19,1,"1",1.70967741935484,1.31578947368421 +"peony-extensions",-0.5641116061,1.8659191557,-1.1878043816,"https://github.com/ukui/peony-extensions","https://github.com/ukui/peony-extensions",1664.9383333333,13,33,0,17,25,0,0,31,1,"1",1.71739130434783,1.80645161290323 +"pgcharts",-0.3307169052,2.7252468866,-1.42193945,"https://github.com/dimitri/pgcharts","https://github.com/dimitri/pgcharts",2256.897962963,2,6,0,6,31,0,0,31,1,"1",1.75,2 +"pgextwlist",-2.6334021475,-0.1576929626,-3.2620922871,"https://github.com/dimitri/pgextwlist","https://github.com/dimitri/pgextwlist",4298.9919444445,2,19,0,12,42,0,0,42,3,"3",1.9047619047619,2 +"pgl_ddl_deploy",-2.518566076,0.3310770855,-3.2597707489,"https://salsa.debian.org/postgresql/pgl-ddl-deploy","https://github.com/enova/pgl_ddl_deploy.git",2403.2563425926,9,12,0,10,14,0,0,17,1,"1",1.57142857142857,1.82352941176471 +"pglogical_ticker",-1.9930028095,1.9160778986,-3.1056655448,"https://salsa.debian.org/postgresql/pglogical-ticker","https://github.com/enova/pglogical_ticker.git",1787.9691666667,1,7,0,5,4,0,0,5,1,"1",1.875,1.8 +"pgpdump",0.3614395033,1.5189339773,-0.144183693,"https://salsa.debian.org/debian/pgpdump","https://github.com/kazu-yamamoto/pgpdump.git",4538.9134143519,4,16,0,16,27,0,0,28,3,"3",1.8,1.96428571428571 +"pgqd",-1.087235167,1.0595056838,-1.531425517,"https://salsa.debian.org/postgresql/pgqd","https://github.com/pgq/pgqd",2225.1037384259,0,1,0,1,6,0,0,6,1,"1",2,2 +"pgsphere",-0.619432589,1.6193404032,-1.0673571695,"https://salsa.debian.org/postgresql/pgsphere","https://github.com/akorotkov/pgsphere",1961.9147569445,2,10,0,7,24,0,0,26,1,"1",1.83333333333333,1.92307692307692 +"pgsql-asn1oid",-2.1322683467,0.0065837251,-2.973862338,"https://github.com/df7cb/pgsql-asn1oid","https://github.com/df7cb/pgsql-asn1oid",2425.8964351852,3,4,0,5,4,0,0,5,1,"1",1.57142857142857,1.8 +"pgxnclient",-0.8515588813,0.3709704299,-1.1014910489,"https://salsa.debian.org/postgresql/pgxnclient","https://github.com/pgxn/pgxnclient.git",3780.2494212963,0,7,0,7,26,0,1,27,3,"3",2,1.96296296296296 +"pgzero",-0.0710203462,2.371473236,-0.5273222344,"https://github.com/RPi-Distro/pgzero","https://github.com/RPi-Distro/pgzero",1071.605775463,0,31,0,19,0,0,0,19,1,"1",2,1 +"Auth_SASL",0.4421914964,2.6769992169,-0.103972592,"https://salsa.debian.org/php-team/pear/php-auth-sasl","https://github.com/pear/Auth_SASL.git",5614.3564699074,3,10,0,7,4,0,0,8,4,"4",1.76923076923077,1.5 +"ansel",-1.6222799231,-0.0808757241,-1.9210437163,"https://salsa.debian.org/horde-team/php-horde-ansel","https://github.com/horde/ansel.git",3572.8158912037,8,17,0,12,3,0,0,13,2,"2",1.68,1.23076923076923 +"Auth",0.2047852084,2.9463639076,-0.5544067681,"https://salsa.debian.org/horde-team/php-horde-auth","https://github.com/horde/Auth.git",5222.153275463,8,22,0,12,3,0,0,13,4,"4",1.73333333333333,1.23076923076923 +"Cache",-0.1744700522,2.1064596197,-0.6213237314,"https://salsa.debian.org/horde-team/php-horde-cache","https://github.com/horde/Cache.git",5348.4683796296,2,18,0,8,2,0,0,9,4,"4",1.9,1.22222222222222 +"Compress",-0.0162442716,2.57315541,-0.6076939055,"https://salsa.debian.org/horde-team/php-horde-compress","https://github.com/horde/Compress.git",5217.754375,1,13,0,8,5,0,0,9,4,"4",1.92857142857143,1.55555555555556 +"Core",-0.3802607961,0.3526269848,-0.6046153747,"https://salsa.debian.org/horde-team/php-horde-core","https://github.com/horde/Core.git",5226.4980671296,21,34,0,20,9,0,0,25,4,"4",1.61818181818182,1.36 +"Crypt",0.1875117087,2.6751835929,-0.5329652206,"https://salsa.debian.org/horde-team/php-horde-crypt","https://github.com/horde/Crypt.git",5471.7365162037,3,21,0,13,6,0,0,16,4,"4",1.875,1.375 +"Css_Parser",-0.0402081222,2.5291557096,-0.6027329405,"https://salsa.debian.org/horde-team/php-horde-css-parser","https://github.com/horde/Css_Parser.git",3874.0563888889,2,10,0,6,4,0,0,7,3,"3",1.83333333333333,1.57142857142857 +"Data",0.183171821,3.0993813097,-0.5706552519,"https://salsa.debian.org/horde-team/php-horde-data","https://github.com/horde/Data.git",5055.5932638889,0,13,0,7,3,0,0,9,4,"4",2,1.33333333333333 +"Dav",-0.3866587637,0.750534239,-0.6284871625,"https://salsa.debian.org/horde-team/php-horde-dav","https://github.com/horde/Dav.git",3872.1194328704,2,9,0,7,2,0,0,8,3,"3",1.81818181818182,1.25 +"Db",-0.2646821748,1.3792981818,-0.615400448,"https://salsa.debian.org/horde-team/php-horde-db","https://github.com/horde/Db.git",5458.1645833333,6,19,0,14,13,0,0,23,4,"4",1.76,1.56521739130435 +"Editor",-0.2234265847,1.3429870434,-0.6059411864,"https://salsa.debian.org/horde-team/php-horde-editor","https://github.com/horde/Editor.git",5432.4430208333,0,10,0,4,0,0,0,4,4,"4",2,1 +"Form",0.1425278965,2.5646449602,-0.5503801228,"https://salsa.debian.org/horde-team/php-horde-form","https://github.com/horde/Form.git",5422.4999189815,3,17,0,11,2,0,0,13,4,"4",1.85,1.15384615384615 +"gollem",-0.1716189866,2.8981752591,-0.8667773936,"https://salsa.debian.org/horde-team/php-horde-gollem","https://github.com/horde/gollem.git",3924.770474537,2,13,0,7,0,0,0,7,3,"3",1.86666666666667,1 +"groupware",-0.8795755727,1.9558886765,-1.5950928322,"https://salsa.debian.org/horde-team/php-horde-groupware","https://github.com/horde/groupware.git",2932.5787731482,1,6,0,5,0,0,0,5,2,"2",1.85714285714286,1 +"Icalendar",0.411178925,3.9130953916,-0.5130418157,"https://salsa.debian.org/horde-team/php-horde-icalendar","https://github.com/horde/Icalendar.git",5159.3724305556,2,18,0,9,3,0,0,10,4,"4",1.9,1.3 +"Image",0.8616256223,3.8466113515,-0.1929764669,"https://salsa.debian.org/horde-team/php-horde-image","https://github.com/horde/Image.git",5265.7997569445,5,20,0,14,5,0,0,15,4,"4",1.8,1.33333333333333 +"Imap_Client",0.0159896159,2.4567285756,-0.5941860898,"https://salsa.debian.org/horde-team/php-horde-imap-client","https://github.com/horde/Imap_Client.git",5506.4812615741,14,23,0,22,21,0,0,34,4,"4",1.62162162162162,1.61764705882353 +"imp",-0.3872646541,1.289223631,-0.8571466277,"https://salsa.debian.org/horde-team/php-horde-imp","https://github.com/horde/imp.git",5305.9052546296,15,26,0,24,15,0,0,29,4,"4",1.63414634146341,1.51724137931034 +"ingo",-0.7382910403,0.4431034944,-0.9475741714,"https://salsa.debian.org/horde-team/php-horde-ingo","https://github.com/horde/ingo.git",4403.5670833333,10,21,0,17,4,0,0,19,3,"3",1.67741935483871,1.21052631578947 +"JavascriptMinify_Jsmin",-1.3153334642,2.2921605757,-2.4364015778,"https://salsa.debian.org/horde-team/php-horde-javascriptminify-jsmin","https://github.com/horde/JavascriptMinify_Jsmin.git",3603.5893634259,2,12,0,6,1,0,0,7,2,"2",1.85714285714286,1.14285714285714 +"kronolith",-0.1662532613,1.8723658314,-0.7951139086,"https://salsa.debian.org/horde-team/php-horde-kronolith","https://github.com/horde/kronolith.git",4413.8611458333,19,29,0,22,6,0,0,24,3,"3",1.60416666666667,1.25 +"ListHeaders",0.4960376568,4.1898452532,-0.5036453419,"https://salsa.debian.org/horde-team/php-horde-listheaders","https://github.com/horde/ListHeaders.git",4255.5799305556,2,10,0,6,1,0,0,7,3,"3",1.83333333333333,1.14285714285714 +"Mail",-0.3639164444,1.1332103907,-0.6269982172,"https://salsa.debian.org/horde-team/php-horde-mail","https://github.com/horde/Mail.git",4915.3072685185,7,13,0,11,9,0,0,17,3,"3",1.65,1.52941176470588 +"Mapi",-0.0661710252,2.5876798045,-0.6185327392,"https://salsa.debian.org/horde-team/php-horde-mapi","https://github.com/horde/Mapi.git",2259.7966087963,1,5,0,5,3,0,0,6,1,"1",1.83333333333333,1.5 +"Memcache",0.004016163,2.7221166702,-0.6028996022,"https://salsa.debian.org/horde-team/php-horde-memcache","https://github.com/horde/Memcache.git",4490.5543634259,3,7,0,6,1,0,0,7,3,"3",1.7,1.14285714285714 +"Mime",0.312598092,3.6199038108,-0.5392920252,"https://salsa.debian.org/horde-team/php-horde-mime","https://github.com/horde/Mime.git",5432.603287037,7,18,0,12,8,0,0,15,4,"4",1.72,1.53333333333333 +"Mime_Viewer",-0.1149494509,1.9424076317,-0.6016432814,"https://salsa.debian.org/horde-team/php-horde-mime-viewer","https://github.com/horde/Mime_Viewer.git",4839.7695138889,2,13,0,7,0,0,0,7,3,"3",1.86666666666667,1 +"mnemo",-0.6207827443,0.9747903027,-0.8920648669,"https://salsa.debian.org/horde-team/php-horde-mnemo","https://github.com/horde/mnemo.git",4989.4455671296,5,17,0,11,4,0,0,12,4,"4",1.77272727272727,1.33333333333333 +"Mongo",0.9167713268,5.4298937243,-0.4793837277,"https://salsa.debian.org/horde-team/php-horde-mongo","https://github.com/horde/Mongo.git",3839.6499652778,0,8,0,5,0,0,0,5,3,"3",2,1 +"Pack",0.2142725625,3.1945332925,-0.549560368,"https://salsa.debian.org/horde-team/php-horde-pack","https://github.com/horde/Pack.git",3648.4273842593,1,11,0,5,0,0,0,5,2,"2",1.91666666666667,1 +"passwd",-0.9612115226,1.4732179071,-1.6779013899,"https://salsa.debian.org/horde-team/php-horde-passwd","https://github.com/horde/passwd.git",4947.6389583333,4,19,0,12,5,0,0,13,3,"3",1.82608695652174,1.38461538461538 +"Role",-0.4479418321,1.1729020603,-0.7670302689,"https://salsa.debian.org/horde-team/php-horde-role","https://github.com/horde/Role.git",4810.1311111111,0,8,0,5,0,0,0,5,3,"3",2,1 +"sesha",-1.1621564014,1.5450444492,-1.9921994089,"https://salsa.debian.org/horde-team/php-horde-sesha","https://github.com/horde/sesha.git",2802.3719791667,3,8,0,7,1,0,0,8,2,"2",1.72727272727273,1.125 +"Test",-0.238823004,1.8788404924,-0.6415143522,"https://salsa.debian.org/horde-team/php-horde-test","https://github.com/horde/Test.git",5359.615,2,15,0,7,3,0,0,8,4,"4",1.88235294117647,1.375 +"Text_Filter",-0.1437145474,1.0768696744,-0.5555850141,"https://salsa.debian.org/horde-team/php-horde-text-filter","https://github.com/horde/Text_Filter.git",5251.3064930556,3,17,0,9,6,0,0,13,4,"4",1.85,1.46153846153846 +"Text_Filter_Jsmin",-1.3124045178,2.1222615389,-2.421955358,"https://salsa.debian.org/horde-team/php-horde-text-filter-jsmin","https://github.com/horde/Text_Filter_Jsmin.git",2314.7323726852,0,4,0,5,1,0,0,6,1,"1",2,1.16666666666667 +"trean",-0.3058682727,1.9780246873,-0.8789295788,"https://salsa.debian.org/horde-team/php-horde-trean","https://github.com/horde/trean.git",3562.8353472222,2,9,0,7,2,0,0,7,2,"2",1.81818181818182,1.28571428571429 +"turba",-0.4579650553,1.3117889624,-0.8859304773,"https://salsa.debian.org/horde-team/php-horde-turba","https://github.com/horde/turba.git",4857.3907407407,15,22,0,21,16,0,0,32,3,"3",1.59459459459459,1.5 +"webmail",-0.4053353634,1.7962363637,-1.0122255509,"https://salsa.debian.org/horde-team/php-horde-webmail","https://github.com/horde/webmail.git",2950.8800810185,2,6,0,6,2,0,0,6,2,"2",1.75,1.33333333333333 +"whups",-1.0654230845,1.9993317897,-1.8956270843,"https://salsa.debian.org/horde-team/php-horde-whups","https://github.com/horde/whups.git",3431.4867013889,4,18,0,11,0,0,0,11,2,"2",1.81818181818182,1 +"wicked",-1.0749433837,1.994516371,-1.8921752454,"https://salsa.debian.org/horde-team/php-horde-wicked","https://github.com/horde/wicked.git",4893.9981712963,5,14,0,9,5,0,0,11,3,"3",1.73684210526316,1.45454545454545 +"php-invoker",-0.2905127861,1.9595946138,-0.8899334149,"https://salsa.debian.org/php-team/pear/php-invoker","https://github.com/sebastianbergmann/php-invoker",4657.8966203704,2,7,0,5,14,0,0,14,3,"3",1.77777777777778,2 +"Mail_Mime",0.0757330813,0.6687496969,-0.1249911134,"https://salsa.debian.org/php-team/pear/php-mail-mime","https://github.com/pear/Mail_Mime.git",5740.767650463,4,21,0,21,26,0,0,35,4,"4",1.84,1.74285714285714 +"Net_LDAP2",0.6398853183,2.49018646,-0.0984745451,"https://salsa.debian.org/php-team/pear/php-net-ldap2","https://github.com/pear/Net_LDAP2.git",3594.4854166667,3,10,0,6,8,0,0,9,2,"2",1.76923076923077,1.88888888888889 +"Net_Sieve",0.5286086799,2.5513325545,-0.1071035548,"https://salsa.debian.org/php-team/pear/php-net-sieve","https://github.com/pear/Net_Sieve.git",4982.018912037,1,17,0,14,13,0,0,17,3,"3",1.94444444444444,1.76470588235294 +"Net_SMTP",0.6124793985,2.4835695922,0.0048970818,"https://salsa.debian.org/php-team/pear/php-net-smtp","https://github.com/pear/Net_SMTP.git",5742.5019097222,6,20,0,18,56,0,0,58,4,"4",1.76923076923077,1.96551724137931 +"Net_Socket",0.9079949967,3.0405813906,0.1178195629,"https://salsa.debian.org/php-team/pear/php-net-socket","https://github.com/pear/Net_Socket.git",3345.4632523148,1,15,0,13,12,0,0,15,2,"2",1.9375,1.8 +"manifest",0.0385459705,2.4455307258,-0.417874197,"https://salsa.debian.org/php-team/pear/php-phar-io-manifest","https://github.com/phar-io/manifest.git",2379.9058680556,3,9,0,9,17,0,0,18,1,"1",1.75,1.94444444444444 +"ReflectionCommon",0.0165590904,2.2866863971,-0.4124357108,"https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-common","https://github.com/phpDocumentor/ReflectionCommon",2836.5084606482,10,9,0,12,17,0,0,17,2,"2",1.47368421052632,2 +"proxy-manager-lts",-0.4696575625,1.7442933083,-0.9000807342,"https://salsa.debian.org/php-team/pear/php-proxy-manager","https://github.com/FriendsOfPHP/proxy-manager-lts.git",3717.8990509259,21,47,0,55,26,0,0,78,2,"2",1.69117647058824,1.33333333333333 +"cache",0.9447656661,4.1692291038,-0.0612099304,"https://salsa.debian.org/php-team/pear/php-psr-cache","https://github.com/php-fig/cache.git",2530.1591435185,8,10,0,14,1,0,0,15,1,"1",1.55555555555556,1.06666666666667 +"http-message",-0.068042639,3.3445895377,-1.0312499156,"https://salsa.debian.org/php-team/pear/php-psr-http-message","https://github.com/php-fig/http-message",3219.4525347222,3,24,0,21,3,0,0,22,2,"2",1.88888888888889,1.13636363636364 +"Base",-0.0522904132,2.7525381131,-0.9743381106,"https://salsa.debian.org/php-team/pear/php-zeta-base","https://github.com/zetacomponents/Base.git",5395.1748726852,0,15,0,9,11,0,0,15,4,"4",2,1.73333333333333 +"ConsoleTools",-0.0924800072,2.7387441567,-0.9975723832,"https://salsa.debian.org/php-team/pear/php-zeta-console-tools","https://github.com/zetacomponents/ConsoleTools",5321.8501851852,2,14,0,12,14,0,0,17,4,"4",1.875,1.82352941176471 +"motranslator",0.3875308077,2.8677316161,-0.26542951,"https://salsa.debian.org/phpmyadmin-team/motranslator","https://github.com/phpmyadmin/motranslator",2762.9628356482,6,14,2,15,27,0,0,27,2,"2",1.7,2 +"global-state",0.247922925,2.3733235469,-0.3166378665,"https://salsa.debian.org/php-team/pear/phpunit-global-state","https://github.com/sebastianbergmann/global-state",3396.3039351852,9,7,0,12,28,0,0,28,2,"2",1.4375,2 +"object-enumerator",0.2543254206,2.979551806,-0.3372246914,"https://salsa.debian.org/php-team/pear/phpunit-object-enumerator","https://github.com/sebastianbergmann/object-enumerator",2872.2632523148,6,4,0,8,11,0,0,11,2,"2",1.4,2 +"pkg-pick",0.1551657364,3.388789847,-0.7551152625,"https://github.com/eavgerinos/pkg-pick","https://github.com/eavgerinos/pkg-pick",1591.7380671296,0,2,0,1,0,0,0,1,1,"1",2,1 +"pickleshare",0.3717500472,2.4243139962,-0.0927808249,"https://salsa.debian.org/python-team/packages/pickleshare","https://github.com/pickleshare/pickleshare",3583.9321875,1,14,0,11,33,0,0,33,2,"2",1.93333333333333,2 +"picocom",0.7162187737,2.5722054768,0.0257322882,"https://salsa.debian.org/debian/picocom","https://github.com/npat-efault/picocom",2876.49875,2,13,0,11,34,0,0,35,2,"2",1.86666666666667,1.97142857142857 +"plexus-interactivity",0.2831519667,2.3330540176,-0.1739153338,"https://salsa.debian.org/java-team/plexus-interactivity-api","https://github.com/codehaus-plexus/plexus-interactivity.git",2997.8996759259,5,11,0,10,10,0,0,12,2,"2",1.6875,1.83333333333333 +"plotnetcfg",-1.0220271784,1.3223739863,-1.4560802079,"https://salsa.debian.org/debian/plotnetcfg","https://github.com/jbenc/plotnetcfg.git",2530.945150463,2,3,0,3,11,0,0,13,1,"1",1.6,1.84615384615385 +"pmailq",-0.3444018612,2.2693637638,-1.1367799542,"https://salsa.debian.org/kolter/pmailq","https://github.com/k0lter/pmailq",3215.8993634259,0,2,0,1,0,0,0,1,2,"2",2,1 +"pmemkv",-2.5666563504,-0.1874336633,-3.0132308585,"https://github.com/kilobyte/pmemkv/tree/debian","https://github.com/kilobyte/pmemkv",2071.5010185185,11,29,0,21,1,0,0,22,1,"1",1.725,1.04545454545455 +"pnscan",0.0474645485,1.175913765,-0.3376962015,"https://salsa.debian.org/pkg-security-team/pnscan","https://github.com/ptrrkssn/pnscan",1864.9276967593,1,4,0,2,6,0,0,6,1,"1",1.8,2 +"podcastparser",0.1102473664,2.4024478231,-0.3412380946,"https://salsa.debian.org/debian/podcastparser","https://github.com/gpodder/podcastparser.git",3885.4088657408,6,16,0,18,26,0,0,26,3,"3",1.72727272727273,2 +"podget",0.0442858046,1.2592098163,-0.4584578402,"https://salsa.debian.org/debian/podget","https://github.com/dvehrs/podget.git",2945.994837963,1,10,0,8,35,0,1,38,2,"2",1.90909090909091,1.92105263157895 +"policyd-rate-limit",-1.5483891938,0.8603109839,-1.9855824959,"https://salsa.debian.org/python-team/packages/policyd-rate-limit","https://github.com/nitmir/policyd-rate-limit.git",2604.4654513889,1,4,0,4,24,0,0,24,1,"1",1.8,2 +"pps-tools",0.7472487963,4.4814305955,-0.4374778463,"https://github.com/bzed/pps-tools","https://github.com/bzed/pps-tools",3767.0434143519,3,10,0,5,2,0,0,7,2,"2",1.76923076923077,1.28571428571429 +"prads",0.259994197,3.8326314267,-1.0339454478,"https://salsa.debian.org/debian/prads","https://github.com/gamelinux/prads.git",4237.0082638889,2,39,0,11,30,0,2,33,3,"3",1.95121951219512,1.90909090909091 +"prefix",-1.1387443889,1.4705314302,-2.0097706447,"https://github.com/dimitri/prefix","https://github.com/dimitri/prefix",5681.2066782408,1,10,0,7,23,0,0,23,4,"4",1.90909090909091,2 +"preggy",-2.9228555263,-1.0464425405,-3.3186736503,"https://salsa.debian.org/python-team/packages/preggy","https://github.com/heynemann/preggy",3206.0471759259,1,12,2,8,14,0,0,16,2,"2",1.92307692307692,1.875 +"preprepare",-2.2210905897,-0.5977303937,-2.5998570115,"https://github.com/dimitri/preprepare","https://github.com/dimitri/preprepare",5242.6337615741,0,4,0,2,5,0,0,5,4,"4",2,2 +"primus_vk",-0.4212908417,2.921882742,-1.2334752443,"https://salsa.debian.org/nvidia-team/primus-vk","https://github.com/felixdoerre/primus_vk",1911.529537037,4,7,0,9,59,0,0,61,1,"1",1.63636363636364,1.9672131147541 +"princeprocessor",-1.2692837532,1.0737092479,-1.7210172993,"https://salsa.debian.org/pkg-security-team/princeprocessor","https://github.com/hashcat/princeprocessor.git",3216.9043981482,0,10,0,6,22,0,0,22,2,"2",2,2 +"proftpd-mod_case",-1.4646475873,0.7662724504,-2.0254092437,"https://salsa.debian.org/debian-proftpd-team/proftpd-mod-case","https://github.com/Castaglia/proftpd-mod_case.git",4180.9304050926,0,4,0,1,5,0,0,5,3,"3",2,2 +"mod_clamav",-0.5199500157,1.6804203805,-1.2969019371,"https://salsa.debian.org/debian-proftpd-team/proftpd-mod-clamav","https://github.com/jbenden/mod_clamav.git",3704.0200810185,2,4,0,5,16,0,0,17,2,"2",1.66666666666667,1.94117647058824 +"proftpd-mod_counter",-3.9091957799,-1.6311020735,-4.3444753088,"https://salsa.debian.org/debian-proftpd-team/proftpd-mod-counter","https://github.com/Castaglia/proftpd-mod_counter",4182.156412037,0,3,0,1,3,0,0,3,3,"3",2,2 +"proftpd-mod_msg",-1.7610775956,0.1821621492,-2.2899965266,"https://salsa.debian.org/debian-proftpd-team/proftpd-mod-msg","https://github.com/Castaglia/proftpd-mod_msg",1530.1719212963,0,2,0,1,1,0,0,1,1,"1",2,2 +"proftpd-mod_tar",-1.0180464333,1.4128864786,-1.7353120048,"https://salsa.debian.org/debian-proftpd-team/proftpd-mod-tar","https://github.com/Castaglia/proftpd-mod_tar.git",4180.9053935185,0,2,0,1,3,0,0,3,3,"3",2,2 +"proftpd-mod_vroot",1.5988542337,4.0231527893,0.5685130663,"https://salsa.debian.org/debian-proftpd-team/proftpd-mod-vroot","https://github.com/Castaglia/proftpd-mod_vroot.git",3875.2868518519,0,5,0,3,23,0,0,23,3,"3",2,2 +"bind_exporter",-1.219120384,0.70031567,-1.6696173791,"https://salsa.debian.org/go-team/packages/prometheus-bind-exporter","https://github.com/prometheus-community/bind_exporter",2946.8200115741,21,14,0,25,30,0,1,51,2,"2",1.4,1.58823529411765 +"mailexporter",-1.4619262945,0.8353265582,-1.9708877275,"https://salsa.debian.org/go-team/packages/prometheus-mailexporter","https://github.com/cherti/mailexporter",2367.3820486111,4,4,1,6,16,0,0,16,1,"1",1.5,2 +"pspg",-0.3610506999,2.0130078842,-0.820706513,"https://salsa.debian.org/postgresql/pspg","https://github.com/okbob/pspg",2316.4040509259,13,25,0,29,14,0,0,39,1,"1",1.65789473684211,1.35897435897436 +"Psychtoolbox-3",0.2033527556,1.6529232576,-0.3714926285,"https://github.com/neurodebian/Psychtoolbox-3/tree/debian","https://github.com/neurodebian/Psychtoolbox-3",5782.8479166667,14,56,0,38,2,0,0,39,4,"4",1.8,1.05128205128205 +"pt2-clone",-0.3668249418,2.0442471334,-0.8709375553,"https://salsa.debian.org/multimedia-team/pt2-clone","https://github.com/8bitbubsy/pt2-clone",1458.0896180556,2,4,0,4,7,0,0,10,1,"1",1.66666666666667,1.7 +"PTable",-0.4977567219,1.9029777422,-1.0355607788,"https://salsa.debian.org/python-team/packages/ptable","https://github.com/kxxoling/PTable",3352.2971990741,2,16,0,9,45,0,0,45,2,"2",1.88888888888889,2 +"printer-driver-ptouch",2.9461393952,6.8234280435,1.5185561181,"https://salsa.debian.org/printing-team/ptouch-driver","https://github.com/philpem/printer-driver-ptouch.git",1342.5621990741,5,13,0,9,42,0,1,45,1,"1",1.72222222222222,1.93333333333333 +"puppetlabs-mysql",-1.0852269476,0.911414697,-1.5945594785,"https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-mysql","https://github.com/puppetlabs/puppetlabs-mysql",4577.2790046296,89,362,0,277,0,0,0,277,3,"3",1.80266075388027,1 +"puppetlabs-xinetd",-1.728520912,0.7618236366,-2.2296657543,"https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-xinetd","https://github.com/puppetlabs/puppetlabs-xinetd",4771.0705671296,11,67,0,44,13,0,0,53,3,"3",1.85897435897436,1.24528301886792 +"purl",-1.3403902917,0.9095061718,-1.8075410282,"https://salsa.debian.org/python-team/packages/purl","https://github.com/codeinthehole/purl",3937.9855092593,4,18,0,13,36,0,0,36,3,"3",1.81818181818182,2 +"pwgen",1.3539562516,2.2914753933,0.7855817259,"https://github.com/tytso/pwgen","https://github.com/tytso/pwgen",1771.0365509259,6,3,0,5,16,0,0,18,1,"1",1.33333333333333,1.88888888888889 +"project--perl-webget",-0.4530628758,1.9572713675,-1.0628915119,"https://salsa.debian.org/debian/pwget","https://github.com/jaalto/project--perl-webget",3883.3964236111,0,1,0,1,0,0,0,1,3,"3",2,1 +"pydl",-0.4956083654,0.3240229847,-0.642218824,"https://salsa.debian.org/debian-astro-team/pydl","https://github.com/weaverba137/pydl",4774.0527777778,1,11,1,10,23,0,0,26,3,"3",1.91666666666667,1.88461538461538 +"pyepr",-0.9391839973,0.1389487685,-1.21878767,"https://salsa.debian.org/debian-gis-team/pyepr","https://github.com/avalentino/pyepr.git",4620.4665856482,0,3,0,1,7,0,0,7,3,"3",2,2 +"pyfribidi",-1.3111437363,-0.4469862862,-1.5898484292,"https://salsa.debian.org/python-team/packages/pyfribidi","https://github.com/pediapress/pyfribidi.git",2842.4984953704,1,5,0,3,14,0,0,14,2,"2",1.83333333333333,2 +"PyGnuplot",-0.3092811424,1.9971008368,-0.816765548,"https://salsa.debian.org/python-team/packages/pygnuplot","https://github.com/benschneider/PyGnuplot",2586.3193055556,0,7,0,3,14,0,0,14,1,"1",2,2 +"PyGreSQL",0.6546350335,1.713004741,0.0882104427,"https://salsa.debian.org/debian/pygresql","https://github.com/PyGreSQL/PyGreSQL",5390.1054513889,4,4,4,8,32,0,0,36,4,"4",1.5,1.88888888888889 +"pygtail",-0.539020119,3.1329292561,-1.6179088283,"https://salsa.debian.org/python-team/packages/pygtail","https://github.com/bgreenlee/pygtail",4147.3947800926,7,19,0,17,74,0,0,75,3,"3",1.73076923076923,1.98666666666667 +"pygtkspellcheck",0.7257355054,2.6166114148,0.0292934832,"https://salsa.debian.org/python-team/packages/pygtkspellcheck","https://github.com/koehlma/pygtkspellcheck",4478.3301851852,2,11,1,6,23,0,0,23,3,"3",1.84615384615385,2 +"python-pass",-0.8847004821,1.9218976351,-1.6206835515,"https://salsa.debian.org/python-team/packages/pypass","https://github.com/ReAzem/python-pass.git",1834.5500810185,3,11,0,9,16,0,1,17,1,"1",1.78571428571429,1.94117647058824 +"pypdf",0.3363136294,1.8784846763,-0.1155181855,"https://salsa.debian.org/debian/pypdf","https://github.com/py-pdf/pypdf",4367.5921759259,137,91,3,200,0,0,0,200,3,"3",1.39912280701754,1 +"python-pypeg2-debian",0.0855915399,2.2545524529,-0.3458051782,"https://github.com/fiete201/python-pypeg2-debian","https://github.com/fiete201/python-pypeg2-debian",825.4394097222,0,2,0,1,1,0,0,2,1,"1",2,1.5 +"Pyphen",-0.5188951039,1.8020010624,-0.9777786823,"https://salsa.debian.org/python-team/packages/pyphen","https://github.com/Kozea/Pyphen",3769.9223263889,0,13,0,5,56,0,0,57,3,"3",2,1.98245614035088 +"pyqso",-0.3070953036,2.5075014452,-0.9777672312,"https://salsa.debian.org/debian-hamradio-team/pyqso","https://github.com/ctjacobs/pyqso",2213.7885648148,2,9,5,5,25,0,0,25,1,"1",1.81818181818182,2 +"PyQwt3D",-0.3970590115,0.7440597483,-0.9451413135,"https://salsa.debian.org/python-team/packages/pyqwt3d","https://github.com/GauiStori/PyQwt3D",1540.4164930556,0,3,0,1,1,0,0,2,1,"1",2,1.5 +"pyRFC3339",0.2375193564,1.6166813486,-0.0819212234,"https://salsa.debian.org/python-team/packages/pyrfc3339","https://github.com/kurtraschke/pyRFC3339",3552.2014583333,1,7,0,7,14,0,0,14,2,"2",1.875,2 +"pysmi",0.2393270185,2.2118303467,-0.1841478946,"https://salsa.debian.org/python-team/packages/pysmi","https://github.com/etingof/pysmi",1806.3306018519,5,7,0,9,59,0,0,60,1,"1",1.58333333333333,1.98333333333333 +"pytest-runner",0.4615736429,3.294817871,-0.4721455985,"https://salsa.debian.org/python-team/packages/pytest-runner","https://github.com/pytest-dev/pytest-runner.git",4387.1189699074,16,10,0,24,56,0,0,67,3,"3",1.38461538461538,1.83582089552239 +"pytest-tornado",-1.6610342646,0.2346703329,-2.0594120368,"https://salsa.debian.org/python-team/packages/pytest-tornado","https://github.com/eugeniy/pytest-tornado",2043.2375578704,2,15,0,12,44,0,0,44,1,"1",1.88235294117647,2 +"activipy",-2.4231132595,-0.8156429792,-2.7787913771,"https://salsa.debian.org/python-team/packages/python-activipy","https://github.com/w3c-social/activipy",294.9819907407,0,1,0,1,9,0,0,9,1,"1",2,2 +"python-admesh",-0.1275889532,1.1910011407,-0.48238652,"https://salsa.debian.org/science-team/python-admesh","https://github.com/admesh/python-admesh",1607.8702662037,1,1,0,2,9,0,0,9,1,"1",1.5,2 +"alignlib",-4.6393972307,-1.9112598753,-5.3987487651,"https://salsa.debian.org/med-team/python-alignlib","https://github.com/marcelm/alignlib.git",1738.8239930556,1,3,0,2,2,0,0,2,1,"1",1.75,2 +"altgraph",-0.1776641612,2.0796554317,-0.6175630942,"https://salsa.debian.org/python-team/packages/python-altgraph","https://github.com/ronaldoussoren/altgraph",5013.4008912037,1,6,0,4,5,0,0,7,4,"4",1.85714285714286,1.71428571428571 +"arpy",-0.7545902864,2.54869808,-1.7298420281,"https://salsa.debian.org/python-team/packages/python-arpy","https://github.com/viraptor/arpy.git",4328.1231134259,1,9,0,8,14,0,0,17,3,"3",1.9,1.82352941176471 +"asttokens",0.3340810363,3.0114183655,-0.2887013264,"https://salsa.debian.org/python-team/packages/python-asttokens","https://github.com/gristlabs/asttokens.git",2518.9855439815,9,8,0,14,30,0,0,33,1,"1",1.47058823529412,1.90909090909091 +"python-caja",0.0214160855,0.7395995669,-0.2085070184,"https://salsa.debian.org/debian-mate-team/python-caja","https://github.com/mate-desktop/python-caja.git",4326.7211342593,10,21,0,18,39,0,0,45,3,"3",1.67741935483871,1.86666666666667 +"python-driver",-0.8062754247,1.604168392,-1.7480948985,"https://salsa.debian.org/python-team/packages/python-cassandra-driver","https://github.com/datastax/python-driver.git",3941.7978935185,43,186,0,129,3,0,0,130,3,"3",1.81222707423581,1.02307692307692 +"changelog",-1.7044805447,-0.290367733,-2.0502430594,"https://salsa.debian.org/python-team/packages/python-changelog","https://github.com/sqlalchemyorg/changelog",3951.4740509259,6,7,0,5,7,0,0,8,3,"3",1.53846153846154,1.875 +"cheroot",0.2184766626,2.5790389703,-0.2566344453,"https://salsa.debian.org/python-team/packages/python-cheroot","https://github.com/cherrypy/cheroot.git",5771.2991898148,32,151,0,116,6,0,0,117,4,"4",1.82513661202186,1.05128205128205 +"click-plugins",0.1835966503,2.5094374551,-0.2993391913,"https://salsa.debian.org/debian-gis-team/python-click-plugins/","https://github.com/click-contrib/click-plugins.git",1359.2907638889,1,8,0,5,25,0,0,25,1,"1",1.88888888888889,2 +"cligj",0.0110381728,2.5995508465,-0.499940708,"https://salsa.debian.org/debian-gis-team/python-cligj","https://github.com/mapbox/cligj.git",2777.8914699074,2,10,0,5,17,0,0,18,2,"2",1.83333333333333,1.94444444444444 +"python-debianbts",0.5135384712,1.0251605893,0.2314442315,"https://github.com/venthur/python-debianbts","https://github.com/venthur/python-debianbts",5257.8413310185,2,16,0,12,20,0,0,22,4,"4",1.88888888888889,1.90909090909091 +"deeptools_intervals",-2.8771627651,-0.6096159473,-3.3226496791,"https://salsa.debian.org/med-team/python-deeptoolsintervals","https://github.com/deeptools/deeptools_intervals",1246.0450694445,0,4,0,1,4,0,0,4,1,"1",2,2 +"demjson",-0.2370389615,1.8179175852,-0.8013751143,"https://salsa.debian.org/python-team/packages/python-demjson","https://github.com/dmeranda/demjson",1291.8414699074,0,1,0,1,3,0,2,5,1,"1",2,1.6 +"deprecated",0.1196653299,2.2597788252,-0.3084855603,"https://salsa.debian.org/debian-gis-team/python-deprecated","https://github.com/tantale/deprecated.git",2057.2850694445,18,4,0,17,55,0,0,55,1,"1",1.18181818181818,2 +"diaspy",-2.1745867988,0.053506734,-2.6165608868,"https://salsa.debian.org/python-team/packages/python-diaspy","https://github.com/marekjm/diaspy",3779.1691319445,4,18,0,10,31,0,0,31,3,"3",1.81818181818182,2 +"diff-match-patch",0.5846033815,3.0986556298,-0.1184020196,"https://salsa.debian.org/debian/python-diff-match-patch","https://github.com/diff-match-patch-python/diff-match-patch",1729.8804282407,3,2,0,3,3,0,0,5,1,"1",1.4,1.6 +"django-contact-form",-1.1097333705,0.6281218172,-1.6435972974,"https://salsa.debian.org/python-team/packages/python-django-contact-form","https://github.com/ubernostrum/django-contact-form",5539.2370717593,2,14,0,13,45,0,0,45,4,"4",1.875,2 +"django-etcd-settings",-0.9896632674,2.2575790822,-1.9919766953,"https://salsa.debian.org/python-team/packages/python-django-etcd-settings","https://github.com/kpn-digital/django-etcd-settings",2402.9784375,6,17,0,10,16,0,0,17,1,"1",1.73913043478261,1.94117647058824 +"django-gravatar",-0.663578474,1.1679046767,-1.1279388031,"https://salsa.debian.org/python-team/packages/python-django-gravatar2","https://github.com/twaddington/django-gravatar",3121.6933101852,1,16,0,12,30,0,0,30,2,"2",1.94117647058824,2 +"django-jsonfield",-1.0714207355,-0.0546197296,-1.3093579612,"https://salsa.debian.org/python-team/modules/python-django-jsonfield","https://github.com/adamchainz/django-jsonfield",3841.3997222222,3,25,0,23,14,0,0,33,3,"3",1.89285714285714,1.42424242424242 +"django-libsass",-4.8173196894,-2.3911675188,-5.4384155483,"https://salsa.debian.org/python-team/packages/python-django-libsass","https://github.com/torchbox/django-libsass.git",3571.0059490741,10,9,0,14,47,0,1,52,2,"2",1.47368421052632,1.90384615384615 +"python-ecdsa",0.1427395231,1.7301290558,-0.1550589722,"https://salsa.debian.org/python-team/packages/python-ecdsa","https://github.com/warner/python-ecdsa.git",4921.8631134259,21,34,0,44,13,0,0,51,3,"3",1.61818181818182,1.25490196078431 +"python-epc",-0.6679338747,1.8418923245,-1.2097561588,"https://salsa.debian.org/python-team/packages/python-epc","https://github.com/tkf/python-epc",2413.0286574074,1,4,0,3,7,0,0,7,1,"1",1.8,2 +"esmre",-2.0064156677,0.202087282,-2.4755780824,"https://salsa.debian.org/debian/python-esmre","https://github.com/wharris/esmre.git",5681.6213078704,0,3,0,1,15,0,0,15,4,"4",2,2 +"python-ethtool",0.2749622306,1.8273292709,-0.3035215573,"https://salsa.debian.org/python-team/packages/python-ethtool","https://github.com/fedora-python/python-ethtool/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"python-fastimport",0.1052775184,1.7457116755,-0.2624270625,"https://salsa.debian.org/python-team/packages/python-fastimport","https://github.com/jelmer/python-fastimport",5680.5950578704,13,39,0,27,14,0,0,34,4,"4",1.75,1.41176470588235 +"fisx",-0.0903144328,1.779732029,-0.5983249377,"https://salsa.debian.org/python-team/packages/python-fisx","https://github.com/vasole/fisx",3592.9752777778,0,12,0,5,12,0,1,13,2,"2",2,1.92307692307692 +"fluids",-0.4421216281,2.7506775199,-1.3660582858,"https://salsa.debian.org/science-team/python-fluids","https://github.com/CalebBell/fluids/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"python-frozendict",0.1906884697,2.6355499741,-0.3237980302,"https://salsa.debian.org/openstack-team/python/python-frozendict","https://github.com/slezica/python-frozendict.git",1398.6479861111,1,9,0,6,48,0,0,48,1,"1",1.9,2 +"hiredis-py",-0.3124185118,1.2752110833,-0.6377697773,"https://salsa.debian.org/python-team/packages/python-hiredis","https://github.com/redis/hiredis-py.git",4704.1113541667,26,23,0,38,10,0,0,46,3,"3",1.46938775510204,1.21739130434783 +"python-hl7",-0.7626378243,0.9988106393,-1.372928154,"https://salsa.debian.org/med-team/python-hl7","https://github.com/johnpaulett/python-hl7.git",5098.8429398148,5,6,0,7,54,0,0,54,4,"4",1.54545454545455,2 +"hupper",-0.4811484079,1.3299311475,-0.8419038999,"https://salsa.debian.org/python-team/packages/python-hupper","https://github.com/Pylons/hupper",2605.9951273148,4,15,0,12,35,0,0,38,1,"1",1.78947368421053,1.92105263157895 +"imagesize_py",0.7812671799,3.7438976125,-0.0426186257,"https://salsa.debian.org/python-team/packages/python-imagesize","https://github.com/shibukawa/imagesize_py",2343.1267013889,9,9,0,15,45,0,0,45,1,"1",1.5,2 +"python-Levenshtein",0.4783401273,1.9718349997,-0.0580315974,"https://salsa.debian.org/python-team/packages/python-levenshtein","https://github.com/maxbachmann/python-Levenshtein",378.9515509259,1,2,0,1,9,0,0,9,1,"1",1.66666666666667,2 +"python-libdiscid",0.0391061082,1.6124132852,-0.2458440286,"https://salsa.debian.org/multimedia-team/python-libdiscid","https://github.com/sebastinas/python-libdiscid.git",3900.1796643519,3,5,0,6,8,0,0,8,3,"3",1.625,2 +"python-librtmp-debian",0.1316033854,2.9370114855,-0.6388179337,"https://github.com/breunigs/python-librtmp-debian","https://github.com/breunigs/python-librtmp-debian",409.9315625,0,1,0,1,0,0,0,1,1,"1",2,1 +"python-louvain",-2.2685779365,1.4962495682,-3.4339761137,"https://salsa.debian.org/python-team/packages/python-louvain","https://github.com/taynaud/python-louvain/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"lti",-1.9083591935,0.6995479122,-2.570199413,"https://salsa.debian.org/python-team/packages/python-lti","https://github.com/pylti/lti.git",2862.783125,11,19,0,21,32,0,0,42,2,"2",1.63333333333333,1.76190476190476 +"macholib",-0.2065761669,2.1953061241,-0.6422011034,"https://salsa.debian.org/python-team/packages/python-macholib","https://github.com/ronaldoussoren/macholib",5321.569525463,1,18,0,12,8,0,0,17,4,"4",1.94736842105263,1.47058823529412 +"py-magcode-core",-0.7794988336,2.2254089124,-1.7093223217,"https://github.com/grantma/py-magcode-core","https://github.com/grantma/py-magcode-core",2649.7967939815,0,2,0,1,0,0,0,1,1,"1",2,1 +"markdown",-0.0672775301,0.0633658209,-0.1115484973,"https://salsa.debian.org/python-team/packages/python-markdown","https://github.com/Python-Markdown/markdown",5779.5951967593,101,82,0,147,24,0,96,260,4,"4",1.44808743169399,1.09230769230769 +"multipletau",-0.6987933509,0.5806821661,-0.9526942305,"https://salsa.debian.org/python-team/packages/python-multipletau","https://github.com/FCS-analysis/multipletau",3692.0178935185,2,10,0,4,7,0,0,7,2,"2",1.83333333333333,2 +"murmurhash",-0.581276748,1.7599072349,-1.1918965779,"https://salsa.debian.org/python-team/packages/python-murmurhash","https://github.com/explosion/murmurhash",3382.167962963,3,8,0,7,24,0,0,25,2,"2",1.72727272727273,1.96 +"netaddr",0.0168867873,0.3272246191,-0.1009353472,"https://salsa.debian.org/python-team/packages/python-netaddr","https://github.com/netaddr/netaddr/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"python-netfilter",-1.0831097652,1.3819658705,-1.6354879803,"https://salsa.debian.org/python-team/modules/python-netfilter","https://github.com/jlaine/python-netfilter.git",1238.4928935185,0,1,0,1,5,0,0,5,1,"1",2,2 +"python-netsyslog",-3.0699282944,-0.7408374792,-3.6931507709,"https://github.com/dpocock/python-netsyslog","https://github.com/dpocock/python-netsyslog",1856.5705092593,0,2,0,2,0,0,0,2,1,"1",2,1 +"nine",-0.8784732907,1.5749400058,-1.435685821,"https://salsa.debian.org/python-team/packages/python-nine","https://github.com/nandoflorestan/nine",2401.4576273148,0,3,0,2,5,0,0,5,1,"1",2,2 +"noise",-3.7225843383,-1.0965675709,-4.3183675373,"https://salsa.debian.org/python-team/packages/python-noise","https://github.com/caseman/noise.git",2101.5036111111,1,8,0,6,49,0,0,49,1,"1",1.88888888888889,2 +"nose-random",-2.0063531384,0.3270712054,-2.4723359773,"https://salsa.debian.org/science-team/python-nose-random","https://github.com/fzumstein/nose-random",352.6133101852,0,1,0,1,3,0,0,4,1,"1",2,1.75 +"numpysane",-0.4267537204,1.9973501717,-0.9903343511,"https://salsa.debian.org/python-team/packages/python-numpysane","https://github.com/dkogan/numpysane",2696.1738194445,0,2,0,1,3,0,0,3,1,"1",2,2 +"padme",-0.8073688582,2.1816485148,-1.677229387,"https://salsa.debian.org/python-team/packages/python-padme","https://github.com/zyga/padme",2875.0020023148,1,3,1,1,3,0,0,3,2,"2",1.75,2 +"pkgconfig",0.1589137832,2.4301443545,-0.3239570925,"https://salsa.debian.org/python-team/packages/python-pkgconfig","https://github.com/matze/pkgconfig",2902.384537037,4,12,0,14,42,0,0,42,2,"2",1.75,2 +"plaster",-0.2804648853,2.1267152731,-0.8306048313,"https://salsa.debian.org/python-team/packages/python-plaster","https://github.com/pylons/plaster",2744.1181365741,7,5,0,7,13,0,0,13,1,"1",1.41666666666667,2 +"plaster_pastedeploy",-0.2975329299,2.1673923637,-0.8381262743,"https://salsa.debian.org/python-team/packages/python-plaster-pastedeploy","https://github.com/Pylons/plaster_pastedeploy.git",2741.5056365741,4,5,0,7,13,0,0,14,1,"1",1.55555555555556,1.92857142857143 +"pluginbase",-0.2812881057,2.0590234382,-0.7551622974,"https://salsa.debian.org/python-team/packages/python-pluginbase","https://github.com/mitsuhiko/pluginbase.git",2511.8068518519,1,9,0,7,38,0,1,40,1,"1",1.9,1.95 +"python-popcon",-0.2335331727,2.0183447681,-1.1098924395,"https://github.com/venthur/python-popcon","https://github.com/venthur/python-popcon",4753.6013657408,3,5,0,5,7,0,0,9,3,"3",1.625,1.77777777777778 +"python-poppler-qt5",0.1202276082,2.3680686792,-0.3076713871,"https://salsa.debian.org/python-team/packages/python-poppler-qt5","https://github.com/frescobaldi/python-poppler-qt5",3161.7950231482,7,7,1,11,89,0,1,90,2,"2",1.5,1.98888888888889 +"python_portpicker",-0.8378084904,1.8598481156,-1.5521700439,"https://salsa.debian.org/debian/python-portpicker","https://github.com/google/python_portpicker",3069.1269212963,11,7,0,10,15,0,0,15,2,"2",1.38888888888889,2 +"pure-python-otr",-0.0437206443,2.0655225856,-0.6499675642,"https://salsa.debian.org/python-team/packages/python-potr","https://github.com/python-otr/pure-python-otr",3956.9618634259,0,15,3,8,52,0,2,54,3,"3",2,1.96296296296296 +"pretend",-0.7061164562,2.3197823691,-1.5465608612,"https://salsa.debian.org/python-team/packages/python-pretend","https://github.com/alex/pretend",3941.0314351852,2,9,0,9,19,0,0,19,3,"3",1.81818181818182,2 +"python-progressbar",0.3759281126,2.2892745816,-0.1083290674,"https://salsa.debian.org/python-team/packages/python-progressbar","https://github.com/niltonvolpato/python-progressbar",3503.7755555556,3,12,0,8,61,0,0,63,2,"2",1.8,1.96825396825397 +"python-protobix",-3.1476883564,-0.7372721621,-3.7253868496,"https://salsa.debian.org/python-team/packages/python-protobix","https://github.com/jbfavre/python-protobix",3133.4746064815,0,14,1,0,16,0,0,16,2,"2",2,2 +"pulp",0.1825004112,2.2768415582,-0.3249522323,"https://salsa.debian.org/math-team/python-pulp","https://github.com/coin-or/pulp/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"Pweave",0.1974177671,3.6215699256,-0.8175147018,"https://salsa.debian.org/science-team/python-pweave","https://github.com/mpastell/Pweave/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"pybadges",-3.4188935767,0.0271868396,-4.2767006556,"https://salsa.debian.org/python-team/packages/python-pybadges","https://github.com/google/pybadges.git",1932.0270833333,2,14,0,12,29,0,0,29,1,"1",1.875,2 +"pyqrencode",0.0034268604,1.6950809833,-0.4794074089,"https://salsa.debian.org/debian/python-qrencode","https://github.com/Arachnid/pyqrencode.git",3791.5353703704,0,6,0,5,22,0,0,22,3,"3",2,2 +"ratelimiter",-0.1714954577,2.6072632937,-0.9266913485,"https://salsa.debian.org/python-team/packages/python-ratelimiter","https://github.com/RazerM/ratelimiter",1781.4938425926,1,5,0,3,29,0,0,30,1,"1",1.83333333333333,1.96666666666667 +"rebulk",-0.1999574426,2.0907811548,-0.82792677,"https://salsa.debian.org/python-team/packages/python-rebulk","https://github.com/Toilal/rebulk",3019.4120833333,1,7,2,4,15,0,0,16,2,"2",1.875,1.9375 +"rencode",0.3723707617,3.0060692556,-0.2039050857,"https://salsa.debian.org/debian/python-rencode","https://github.com/aresch/rencode.git",4103.1734490741,4,4,0,5,18,0,0,18,3,"3",1.5,2 +"repoze.sphinx.autointerface",-1.3367767902,1.5129207319,-2.1830695792,"https://salsa.debian.org/python-team/packages/python-repoze.sphinx.autointerface","https://github.com/repoze/repoze.sphinx.autointerface/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"repoze.tm2",-0.795011466,1.8758832556,-1.600218467,"https://salsa.debian.org/python-team/packages/python-repoze.tm2","https://github.com/repoze/repoze.tm2.git",5299.0136921296,0,6,0,3,8,0,0,8,4,"4",2,2 +"roman",0.4266969046,1.9457667884,-0.0044298123,"https://salsa.debian.org/python-team/packages/python-roman","https://github.com/zopefoundation/roman",5054.6666666667,3,8,0,8,15,0,0,19,4,"4",1.72727272727273,1.78947368421053 +"python-signedjson",-0.4972041941,1.1352937233,-0.7813605442,"https://salsa.debian.org/matrix-team/python-signedjson","https://github.com/matrix-org/python-signedjson.git",2409.117025463,5,10,0,10,14,0,0,14,1,"1",1.66666666666667,2 +"python-slip",0.6771552086,2.9650065243,-0.0680375927,"https://salsa.debian.org/debian/python-slip","https://github.com/nphilipp/python-slip.git",4760.8424189815,5,3,0,4,10,0,0,11,3,"3",1.375,1.90909090909091 +"smmap",0.0842345215,1.8862167897,-0.302978642,"https://salsa.debian.org/python-team/packages/python-smmap","https://github.com/gitpython-developers/smmap",4570.872037037,4,18,0,16,38,0,0,38,3,"3",1.81818181818182,2 +"snuggs",-0.4089829703,1.0919909019,-0.6715786054,"https://salsa.debian.org/debian-gis-team/python-snuggs","https://github.com/mapbox/snuggs.git",1698.5099305556,2,7,0,5,16,0,0,16,1,"1",1.77777777777778,2 +"socketpool",-0.433473063,1.9120698535,-1.1349538282,"https://salsa.debian.org/python-team/packages/python-socketpool","https://github.com/benoitc/socketpool",2141.4605208333,0,17,0,11,31,0,0,32,1,"1",2,1.96875 +"PySocksipyChain",-0.0678442589,2.0576051001,-0.7593283222,"https://salsa.debian.org/freedombox-team/python-socksipychain","https://github.com/pagekite/PySocksipyChain.git",3262.1183564815,1,7,0,4,12,0,0,12,2,"2",1.875,2 +"pysrp",-0.2655598789,2.0901350297,-0.982879077,"https://salsa.debian.org/python-team/packages/python-srp","https://github.com/cocagne/pysrp",4536.7902777778,2,26,0,14,45,0,0,45,3,"3",1.92857142857143,2 +"python-ssdeep",-1.6753783276,-0.7457424439,-1.8662568075,"https://salsa.debian.org/python-team/packages/python-ssdeep","https://github.com/DinoTools/python-ssdeep/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"static3",-2.1484350509,0.7824659551,-2.9204988941,"https://salsa.debian.org/debian/python-static3","https://github.com/rmohr/static3",1017.1397800926,0,5,0,4,21,0,0,21,1,"1",2,2 +"stopit",-1.4382358759,1.0640373111,-2.3707053284,"https://salsa.debian.org/python-team/packages/python-stopit","https://github.com/glenfant/stopit",2025.0025810185,3,4,0,7,38,0,0,38,1,"1",1.57142857142857,2 +"python-subprocess32",0.809721279,3.7269442727,-0.0005664334,"https://salsa.debian.org/python-team/modules/python-subprocess32","https://github.com/google/python-subprocess32",2769.8086226852,4,6,0,6,75,0,0,75,2,"2",1.6,2 +"python-sunlight",-0.4386787931,3.6650119727,-1.7599151869,"https://salsa.debian.org/python-team/modules/python-sunlight","https://github.com/sunlightlabs/python-sunlight",1218.8703009259,0,11,0,8,23,0,0,25,1,"1",2,1.92 +"python-tblib",-0.7353049539,0.9990220369,-1.1483402151,"https://salsa.debian.org/python-team/packages/python-tblib","https://github.com/ionelmc/python-tblib",3634.6597453704,5,11,0,12,50,0,0,51,2,"2",1.6875,1.98039215686275 +"urlobject",-1.4032067102,1.0645121312,-1.9682182483,"https://salsa.debian.org/python-team/packages/python-urlobject","https://github.com/zacharyvoase/urlobject",3098.5456481482,4,10,0,8,31,0,0,31,2,"2",1.71428571428571,2 +"urwidtrees",0.4916470757,4.0558334655,-0.5275660918,"https://salsa.debian.org/python-team/packages/python-urwidtrees","https://github.com/pazz/urwidtrees/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"python-sdk",-2.1064074455,0.1631136587,-2.60808327,"https://salsa.debian.org/pkg-security-team/python-vulndb","https://github.com/vulndb/python-sdk",1623.0260300926,0,3,0,2,5,0,0,5,1,"1",2,2 +"word_cloud",-2.3533134617,-0.117333833,-2.7862995006,"https://salsa.debian.org/python-team/packages/python-wordcloud","https://github.com/amueller/word_cloud",4051.6273842593,33,54,0,65,30,0,1,89,3,"3",1.62068965517241,1.33707865168539 +"wsproto",0.0162269703,2.3090059731,-0.4249971154,"https://salsa.debian.org/python-team/packages/python-wsproto","https://github.com/python-hyper/wsproto/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"python3-xapp",0.4966659567,2.7934932391,-0.0692386084,"https://salsa.debian.org/cinnamon-team/python-xapp","https://github.com/linuxmint/python3-xapp.git",2312.6997685185,5,4,0,7,13,0,0,13,1,"1",1.44444444444444,2 +"python-xeddsa",-1.1633252234,1.3819292376,-1.7395228535,"https://salsa.debian.org/python-team/packages/python-xeddsa","https://github.com/Syndace/python-xeddsa",1709.0088425926,1,4,0,1,2,0,0,2,1,"1",1.8,2 +"xlrd3",0.2419722546,1.6921113748,-0.1509001314,"https://salsa.debian.org/python-team/packages/python-xlrd","https://github.com/Dragon2fly/xlrd3.git",4601.1105092593,9,44,0,35,8,0,0,42,3,"3",1.83018867924528,1.19047619047619 +"xmltodict",0.5981063759,3.2438940023,-0.1054526563,"https://salsa.debian.org/debian/python-xmltodict","https://github.com/martinblech/xmltodict.git",3981.1987152778,26,29,0,41,54,0,1,89,3,"3",1.52727272727273,1.60674157303371 +"xopen",-0.3435053785,1.7701848391,-0.7787807244,"https://salsa.debian.org/python-team/packages/python-xopen","https://github.com/marcelm/xopen/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"pyzor",0.91715325,1.9335464362,0.3494382533,"https://salsa.debian.org/python-team/packages/pyzor","https://github.com/SpamExperts/pyzor",5279.2096064815,6,19,1,17,10,0,0,24,4,"4",1.76,1.41666666666667 +"q2templates",-5.0482247015,-2.7964556336,-5.4769511928,"https://salsa.debian.org/med-team/q2templates","https://github.com/qiime2/q2templates.git",2619.2390393519,9,8,0,13,13,0,0,15,1,"1",1.47058823529412,1.86666666666667 +"q4wine-debian",-0.1511094825,0.0770464397,-0.2120059522,"https://github.com/tehnick/q4wine-debian","https://github.com/tehnick/q4wine-debian",4144.3286111111,0,1,0,1,0,0,0,1,3,"3",2,1 +"qconf",-0.3811268622,1.6595217121,-0.7762847478,"https://salsa.debian.org/qt-kde-team/extras/qconf","https://github.com/psi-im/qconf.git",5624.6740740741,1,15,0,7,13,0,0,13,4,"4",1.9375,2 +"qdacco",-1.6662726628,-0.4610104246,-2.0217074624,"https://salsa.debian.org/debian/qdacco","https://github.com/cpina/qdacco.git",5691.2413541667,1,6,0,1,5,0,0,5,4,"4",1.85714285714286,2 +"qemuctl",1.3474122059,3.3653108214,0.3818068479,"https://github.com/operatornormal/qemuctl","https://github.com/operatornormal/qemuctl",627.1595486111,3,2,0,1,0,0,0,1,1,"1",1.4,1 +"qjoypad",0.8529794114,3.2612636032,-0.0822850011,"https://github.com/kilobyte/qjoypad/tree/debian","https://github.com/kilobyte/qjoypad",4422.6630092593,2,12,0,10,1,0,0,11,3,"3",1.85714285714286,1.09090909090909 +"qmenu",0.2416596829,3.6062250713,-0.9305566725,"https://github.com/teopost/qmenu","https://github.com/teopost/qmenu",3121.65625,0,12,2,5,5,0,0,6,2,"2",2,1.83333333333333 +"qmidiarp",0.1060884453,2.4093772481,-0.4462133548,"https://salsa.debian.org/multimedia-team/qmidiarp","https://github.com/emuse/qmidiarp.git",5041.9955208333,2,10,0,5,12,0,0,16,4,"4",1.83333333333333,1.75 +"qmidinet",0.3987634563,2.3272584853,-0.2919992565,"https://salsa.debian.org/multimedia-team/qmidinet","https://github.com/rncbc/qmidinet.git",4992.0509143519,1,11,0,4,10,0,0,11,4,"4",1.91666666666667,1.90909090909091 +"qsampler",0.22306551,2.8539174302,-0.5046019625,"https://salsa.debian.org/multimedia-team/qsampler","https://github.com/rncbc/qsampler.git",5737.9962847222,3,14,0,5,5,0,0,7,4,"4",1.82352941176471,1.71428571428571 +"qsynth",0.1425312579,0.7343171417,-0.1064510745,"https://salsa.debian.org/multimedia-team/qsynth","https://github.com/rncbc/qsynth.git",5674.9236458333,3,19,0,7,24,0,0,25,4,"4",1.86363636363636,1.96 +"qtads",0.5108490252,2.4840737536,-0.3393338609,"https://salsa.debian.org/games-team/qtads","https://github.com/realnc/qtads.git",4788.6839583333,5,7,0,10,20,0,0,22,3,"3",1.58333333333333,1.90909090909091 +"qterm",-0.9155978148,-0.4024112301,-1.1525455527,"https://salsa.debian.org/chinese-team/qterm","https://github.com/qterm/qterm",4614.8412384259,1,8,0,4,17,0,1,18,3,"3",1.88888888888889,1.94444444444444 +"ChemmineR",-4.9478723057,-2.463477009,-5.4701350553,"https://salsa.debian.org/r-pkg-team/r-bioc-chemminer","https://github.com/girke-lab/ChemmineR.git",5502.0317476852,2,22,0,10,19,0,0,26,4,"4",1.91666666666667,1.73076923076923 +"GenomicAlignments",-0.0620075073,2.2952168072,-0.6079488331,"https://salsa.debian.org/r-pkg-team/r-bioc-genomicalignments","https://github.com/Bioconductor/GenomicAlignments.git",3637.7668287037,1,21,0,13,35,0,0,39,2,"2",1.95454545454545,1.8974358974359 +"GenomicRanges",-0.3216038801,1.2623780689,-0.6013624703,"https://salsa.debian.org/r-pkg-team/r-bioc-genomicranges","https://github.com/Bioconductor/GenomicRanges.git",4977.821712963,4,35,0,17,53,0,0,59,3,"3",1.8974358974359,1.89830508474576 +"IRanges",-0.2732928737,0.9495069035,-0.572231786,"https://salsa.debian.org/r-pkg-team/r-bioc-iranges","https://github.com/Bioconductor/IRanges.git",5556.7386458333,4,26,0,13,28,0,0,34,4,"4",1.86666666666667,1.82352941176471 +"preprocessCore",-0.5732675432,1.6147898925,-1.0092066733,"https://salsa.debian.org/r-pkg-team/r-bioc-preprocesscore","https://github.com/bmbolstad/preprocessCore.git",2983.7131828704,0,24,0,9,24,0,0,29,2,"2",2,1.82758620689655 +"Rsamtools",-0.2310113342,1.6900769525,-0.6158536063,"https://salsa.debian.org/r-pkg-team/r-bioc-rsamtools","https://github.com/Bioconductor/Rsamtools.git",5200.0497569445,3,23,0,13,61,0,1,68,4,"4",1.88461538461538,1.89705882352941 +"S4Vectors",-0.0375813239,2.2525487662,-0.5982212588,"https://salsa.debian.org/r-pkg-team/r-bioc-s4vectors","https://github.com/Bioconductor/S4Vectors/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"XVector",-0.1488435412,2.1308487448,-0.5902275914,"https://salsa.debian.org/r-pkg-team/r-bioc-xvector","https://github.com/Bioconductor/XVector.git",3819.2003935185,0,10,0,5,3,0,0,7,3,"3",2,1.42857142857143 +"animation",-0.3515983765,2.1779345723,-0.9193080299,"https://salsa.debian.org/r-pkg-team/r-cran-animation","https://github.com/yihui/animation/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"arm",-0.2157734257,1.5269652897,-0.5053279666,"https://salsa.debian.org/r-pkg-team/r-cran-arm","https://github.com/suyusung/arm.git",2199.2741898148,0,4,0,2,20,0,0,20,1,"1",2,2 +"av",-3.30692254,-1.0664029566,-3.7499442887,"https://salsa.debian.org/r-pkg-team/r-cran-av","https://github.com/ropensci/av.git",1927.0685763889,2,3,0,3,37,0,0,37,1,"1",1.6,2 +"BBmisc",-0.0791867315,2.2103067426,-0.5239193282,"https://salsa.debian.org/r-pkg-team/r-cran-bbmisc","https://github.com/berndbischl/BBmisc/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"R-bitops",0.1812196348,2.5081885743,-0.2636167197,"https://salsa.debian.org/r-pkg-team/r-cran-bitops","https://github.com/mmaechler/R-bitops/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"bold",-0.3589941343,1.8830194903,-0.7984155261,"https://salsa.debian.org/r-pkg-team/r-cran-bold","https://github.com/ropensci/bold/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"crayon",0.2585448991,2.4711889525,-0.1898457145,"https://salsa.debian.org/r-pkg-team/r-cran-crayon","https://github.com/r-lib/crayon/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"data.table",0.2136711627,2.3818673171,-0.2205863845,"https://salsa.debian.org/r-pkg-team/r-cran-data.table","https://github.com/Rdatatable/data.table/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"lwgeom",0.0058180918,2.4188629892,-0.7327945006,"https://salsa.debian.org/r-pkg-team/r-cran-lwgeom","https://github.com/r-spatial/lwgeom/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"matrixcalc",0.635479198,4.3464268954,-0.3463558892,"https://salsa.debian.org/r-pkg-team/r-cran-matrixcalc","https://github.com/TomKellyGenetics/matrixcalc/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"mcmc",0.1542552699,2.7368602124,-0.4513098316,"https://salsa.debian.org/r-pkg-team/r-cran-mcmc","https://github.com/cjgeyer/mcmc/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"mice",-1.1703228936,1.1700115105,-1.5897791054,"https://salsa.debian.org/r-pkg-team/r-cran-mice","https://github.com/amices/mice/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"MNP",-0.0051235593,2.1439929564,-0.4400210306,"https://salsa.debian.org/r-pkg-team/r-cran-mnp","https://github.com/kosukeimai/MNP/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"nozzle",-2.8854861587,-0.5978017889,-3.3250463837,"https://salsa.debian.org/r-pkg-team/r-cran-nozzle.r1","https://github.com/parklab/nozzle.git",926.0286111111,0,1,0,1,13,0,0,13,1,"1",2,2 +"r-optparse",-0.2070927617,2.0241027782,-0.6422022567,"https://salsa.debian.org/r-pkg-team/r-cran-optparse","https://github.com/trevorld/r-optparse.git",3364.6461689815,0,11,0,2,23,0,0,23,2,"2",2,2 +"pbdZMQ",0.1891713681,3.4926433557,-0.7475172495,"https://salsa.debian.org/r-pkg-team/r-cran-pbdzmq","https://github.com/snoweye/pbdZMQ/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"plyr",0.2396916445,2.3397739545,-0.1920061376,"https://salsa.debian.org/r-pkg-team/r-cran-plyr","https://github.com/hadley/plyr/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ps",0.1035877787,2.5492783444,-0.3466845119,"https://salsa.debian.org/r-pkg-team/r-cran-ps","https://github.com/r-lib/ps/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"pscl",0.7428074668,3.4473876545,-0.1554350642,"https://salsa.debian.org/r-pkg-team/r-cran-pscl","https://github.com/atahk/pscl/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rcmdcheck",0.2146726991,2.6895020277,-0.3988188518,"https://salsa.debian.org/r-pkg-team/r-cran-rcmdcheck","https://github.com/r-Lib/rcmdcheck/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rgenoud",-0.3488800713,2.0874491929,-0.9117194293,"https://salsa.debian.org/r-pkg-team/r-cran-rgenoud","https://github.com/JasjeetSekhon/rgenoud/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ritis",-0.2993761764,1.9534734206,-0.7980064599,"https://salsa.debian.org/r-pkg-team/r-cran-ritis","https://github.com/ropensci/ritis.git",3983.0266666667,1,4,0,3,12,0,0,12,3,"3",1.8,2 +"rncl",-0.3371319454,1.9103735604,-0.7874553216,"https://salsa.debian.org/r-pkg-team/r-cran-rncl","https://github.com/fmichonneau/rncl/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"RPostgreSQL",0.1055240035,2.6128418992,-0.4853871285,"https://salsa.debian.org/r-pkg-team/r-cran-rpostgresql","https://github.com/tomoakin/RPostgreSQL/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rprotobuf",-0.6366352318,1.6233621016,-1.07827539,"https://salsa.debian.org/r-pkg-team/r-cran-rprotobuf","https://github.com/eddelbuettel/rprotobuf/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rredlist",-0.2938584635,2.0226834023,-0.7943140683,"https://salsa.debian.org/r-pkg-team/r-cran-rredlist","https://github.com/ropensci/rredlist/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"truncnorm",-0.0250364198,2.0343035584,-0.4668055836,"https://salsa.debian.org/r-pkg-team/r-cran-truncnorm","https://github.com/olafmersmann/truncnorm/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"r-utf8",0.4292727883,3.0821382028,-0.1776413564,"https://salsa.debian.org/r-pkg-team/r-cran-utf8","https://github.com/patperry/r-utf8/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"vcdExtra",-0.1359675027,2.0732853363,-0.5645165568,"https://salsa.debian.org/r-pkg-team/r-cran-vcdextra","https://github.com/friendly/vcdExtra.git",5383.4657523148,0,9,0,3,12,0,0,12,4,"4",2,2 +"vioplot",-0.5117688173,1.754135969,-0.9412408999,"https://salsa.debian.org/r-pkg-team/r-cran-vioplot","https://github.com/TomKellyGenetics/vioplot",2457.8733912037,2,6,0,3,10,0,0,11,1,"1",1.75,1.90909090909091 +"worrms",-0.5997090341,1.1419114747,-0.9334770127,"https://salsa.debian.org/r-pkg-team/r-cran-worrms","https://github.com/ropensci/worrms/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"Zelig",0.7234179385,3.5136261784,-0.1954309797,"https://salsa.debian.org/r-pkg-team/r-cran-zelig","https://github.com/IQSS/Zelig/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"radare2",-0.001835483,0.290941294,-0.1737536018,"https://salsa.debian.org/pkg-security-team/radare2","https://github.com/radareorg/radare2/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"radcli",0.8077891464,3.0284268528,0.04850184,"https://salsa.debian.org/debian/radcli","https://github.com/radcli/radcli",0.0082986111,10,25,0,19,27,0,0,35,1,"1",1.71428571428571,1.77142857142857 +"radium_compressor",0.1355972195,2.8572373451,-0.7243626073,"https://salsa.debian.org/multimedia-team/radium-compressor","https://github.com/kmatheussen/radium_compressor.git",2426.0817361111,0,1,0,1,4,0,0,4,1,"1",2,2 +"rainbow",-2.2315150038,-0.9649972127,-2.481288314,"https://salsa.debian.org/js-team/rainbow.js","https://github.com/ccampbell/rainbow/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rake-compiler",-0.1765905828,1.968096231,-0.8991055528,"https://salsa.debian.org/ruby-team/rake-compiler","https://github.com/rake-compiler/rake-compiler/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rapache",-1.9452855915,-0.2626388012,-2.421875321,"https://salsa.debian.org/r-pkg-team/rapache","https://github.com/jeffreyhorner/rapache.git",4155.5934953704,1,13,0,6,35,0,0,35,3,"3",1.92857142857143,2 +"raphael",0.6406275138,3.7045765255,-0.2507834388,"https://salsa.debian.org/debian/raphael","https://github.com/DmitryBaranovskiy/raphael/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"redmine_local_avatars",-1.4572727561,1.4827307788,-2.2601628352,"https://salsa.debian.org/debian/redmine-plugin-local-avatars","https://github.com/ncoders/redmine_local_avatars",3991.5587615741,3,11,0,9,47,0,0,48,3,"3",1.78571428571429,1.97916666666667 +"ree",0.455206434,2.7126650543,-0.2943021607,"https://salsa.debian.org/debian/ree","https://github.com/alexmyczko/ree",1112.0390740741,3,1,0,2,2,0,0,3,1,"1",1.25,1.66666666666667 +"remaster-iso",-2.0473516929,0.1202211372,-2.4770101415,"https://github.com/unixabg/remaster-iso","https://github.com/unixabg/remaster-iso",251.8044791667,1,3,0,3,5,0,0,5,1,"1",1.75,2 +"python-requests-aws",-0.7617204879,2.8252172293,-1.7279435269,"https://salsa.debian.org/python-team/packages/requests-aws","https://github.com/tax/python-requests-aws",1319.2575,2,12,1,8,18,0,0,18,1,"1",1.85714285714286,2 +"rerun",-0.4314612854,3.3152754481,-1.4987677111,"https://salsa.debian.org/ruby-team/rerun","https://github.com/alexch/rerun/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"resvg",-0.8706965662,2.5429179421,-1.7032916571,"https://salsa.debian.org/debian/resvg","https://github.com/RazrFalcon/resvg.git",2182.7898726852,46,8,0,47,30,0,0,65,1,"1",1.14814814814815,1.46153846153846 +"rexical",-1.8414750192,0.9895052788,-2.7520386326,"https://salsa.debian.org/ruby-team/rexical","https://github.com/tenderlove/rexical",5447.083912037,2,10,0,9,23,0,2,29,4,"4",1.83333333333333,1.79310344827586 +"ripe-atlas-cousteau",-0.9764944882,1.3924863314,-1.4702991314,"https://salsa.debian.org/python-team/packages/ripe-atlas-cousteau","https://github.com/RIPE-NCC/ripe-atlas-cousteau.git",3286.9945949074,5,15,0,13,37,0,0,39,2,"2",1.75,1.94871794871795 +"robocut",-0.2824151439,2.3754574352,-1.0923195505,"https://github.com/alpharesearch/robocut","https://github.com/alpharesearch/robocut",831.4363194444,0,6,0,3,0,0,0,3,1,"1",2,1 +"robotfindskitten-pkg-debian",0.0179376982,1.3078276454,-0.485626997,"https://github.com/rfinnie/robotfindskitten-pkg-debian","https://github.com/rfinnie/robotfindskitten-pkg-debian",1629.5291319445,3,1,0,3,0,0,0,3,1,"1",1.25,1 +"rolo",-0.0498132259,2.1330027792,-0.8216828066,"https://salsa.debian.org/debian/rolo","https://github.com/libvc/rolo",1738.2993634259,2,2,0,2,2,0,0,2,1,"1",1.5,2 +"rospack",-0.2414662592,1.0688853941,-0.5553517117,"https://salsa.debian.org/science-team/ros-rospack","https://github.com/ros/rospack.git",3438.9073958333,20,26,0,26,22,0,0,42,2,"2",1.56521739130435,1.52380952380952 +"rospkg",-0.0548646672,1.8580305855,-0.5008277906,"https://salsa.debian.org/science-team/ros-rospkg","https://github.com/ros-infrastructure/rospkg.git",4295.6529861111,33,59,0,64,29,0,0,79,3,"3",1.64130434782609,1.36708860759494 +"std_msgs",-0.0206690342,2.386166873,-0.5747059717,"https://salsa.debian.org/science-team/ros-std-msgs","https://github.com/ros/std_msgs.git",3274.7244560185,3,17,0,9,19,0,0,20,2,"2",1.85,1.95 +"rsh-redone",0.2434579926,2.4765843324,-0.7125516261,"https://salsa.debian.org/debian/rsh-redone","https://github.com/gsliepen/rsh-redone",3762.4461458333,1,2,0,2,0,0,0,2,2,"2",1.66666666666667,1 +"rt-extension-repeatticket",-1.2713455525,2.448057755,-2.2206005858,"https://salsa.debian.org/request-tracker-team/rt-extension-repeatticket","https://github.com/bestpractical/rt-extension-repeatticket",4204.3307407408,0,5,0,4,3,0,0,7,3,"3",2,1.42857142857143 +"rtkit",1.5914934939,3.4753341698,0.6818583583,"https://salsa.debian.org/multimedia-team/rtkit","https://github.com/heftig/rtkit",3958.7431828704,18,3,0,13,43,0,0,51,3,"3",1.14285714285714,1.84313725490196 +"actionpack-action_caching",-0.0195395793,2.0209197518,-0.4608551365,"https://salsa.debian.org/ruby-team/ruby-actionpack-action-caching","https://github.com/rails/actionpack-action_caching/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"actionpack-page_caching",-2.0979772282,1.0629868716,-2.9170878445,"https://salsa.debian.org/ruby-team/ruby-actionpack-page-caching","https://github.com/rails/actionpack-page_caching/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"bacon",-1.4997697176,0.69875474,-2.0358441625,"https://salsa.debian.org/ruby-team/ruby-bacon","https://github.com/leahneukirchen/bacon",5364.0763657407,3,17,0,13,38,0,0,42,4,"4",1.85,1.9047619047619 +"base62",-3.2007890763,-0.5710294937,-3.7408477417,"https://salsa.debian.org/ruby-team/ruby-base62","https://github.com/jtzemp/base62.git",1973.6897222222,1,5,0,3,13,0,1,15,1,"1",1.83333333333333,1.86666666666667 +"batch-loader",-1.39118114,1.051907531,-1.9658421191,"https://salsa.debian.org/ruby-team/ruby-batch-loader","https://github.com/exAspArk/batch-loader/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"bcrypt-ruby",-0.1670366207,2.5485813659,-0.7840534303,"https://salsa.debian.org/ruby-team/ruby-bcrypt","https://github.com/bcrypt-ruby/bcrypt-ruby/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby-beautify",-1.8179395924,0.5723544617,-2.4288221334,"https://salsa.debian.org/ruby-team/ruby-beautify.git","https://github.com/erniebrodeur/ruby-beautify",2708.0809837963,1,19,0,16,45,0,0,50,1,"1",1.95,1.9 +"bogus",-2.97011868,-1.1536023268,-3.3242631007,"https://salsa.debian.org/ruby-team/ruby-bogus","https://github.com/psyho/bogus/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"bootsnap",0.4969446581,4.0467699375,-0.4453655481,"https://salsa.debian.org/ruby-team/ruby-bootsnap","https://github.com/Shopify/bootsnap/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"mongo-ruby-driver",-0.4876456206,1.8841260262,-1.1170056726,"https://salsa.debian.org/ruby-team/ruby-bson","https://github.com/mongodb/mongo-ruby-driver/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"buff-config",-2.0406131429,-0.5802367653,-2.3469509456,"https://salsa.debian.org/ruby-team/ruby-buff-config","https://github.com/berkshelf/buff-config/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"buff-extensions",-1.7001314331,0.6961340583,-2.1479955125,"https://salsa.debian.org/ruby-team/ruby-buff-extensions","https://github.com/RiotGames/buff-extensions",1162.5226851852,0,5,0,3,12,0,0,12,1,"1",2,2 +"builder",0.2891790514,2.0567550581,-0.1483490017,"https://salsa.debian.org/ruby-team/ruby-builder","https://github.com/tenderlove/builder/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"byebug",0.1180553967,2.3001711673,-0.3220977863,"https://salsa.debian.org/ruby-team/ruby-byebug","https://github.com/deivid-rodriguez/byebug/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"capture-output",-2.8922262934,-0.7342713061,-3.3221878931,"https://salsa.debian.org/ruby-team/ruby-capture-output","https://github.com/jpastuszek/capture-output",0.0173611111,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"capybara",0.2496990629,2.4303429017,-0.4282559769,"https://salsa.debian.org/ruby-team/ruby-capybara","https://github.com/teamcapybara/capybara/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"cassiopee",-1.5851518029,1.3271244261,-2.3664077484,"https://salsa.debian.org/ruby-team/ruby-cassiopee","https://github.com/osallou/cassiopee/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"celluloid",0.0913806587,1.1865611887,-0.2892192569,"https://salsa.debian.org/ruby-team/ruby-celluloid","https://github.com/celluloid/celluloid/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"certificate_authority",-2.001867048,0.4618631999,-2.7039312007,"https://salsa.debian.org/ruby-team/ruby-certificate-authority","https://github.com/cchandler/certificate_authority/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"cmdparse",0.6782564731,4.5071204079,-0.416431913,"https://salsa.debian.org/ruby-team/ruby-cmdparse","https://github.com/gettalong/cmdparse/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"color",-1.6594930763,0.7881397104,-2.2203703357,"https://salsa.debian.org/ruby-team/ruby-color","https://github.com/halostatue/color",4994.1460185185,1,11,1,4,30,0,0,30,4,"4",1.91666666666667,2 +"colorator",0.17562997,2.3024347781,-0.2637255242,"https://salsa.debian.org/ruby-team/ruby-colorator","https://github.com/octopress/colorator/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"combustion",-2.7077626864,-0.5070219842,-3.2814670287,"https://salsa.debian.org/ruby-team/ruby-combustion","https://github.com/pat/combustion/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"commander",-0.3544313341,2.5524463745,-1.091065268,"https://salsa.debian.org/ruby-team/ruby-commander","https://github.com/commander-rb/commander/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"connection_pool",-0.107782789,2.7608316302,-0.9083898684,"https://salsa.debian.org/ruby-team/ruby-connection-pool","https://github.com/mperham/connection_pool/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"coveralls-ruby",-1.0639842925,0.6886883657,-1.6214631931,"https://salsa.debian.org/ruby-team/ruby-coveralls","https://github.com/lemurheavy/coveralls-ruby/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"crb-blast",-0.6967501476,1.5636879643,-1.4854285145,"https://salsa.debian.org/ruby-team/ruby-crb-blast","https://github.com/cboursnell/crb-blast",1070.1020717593,0,5,0,2,15,0,0,15,1,"1",2,2 +"css_parser",0.4702988432,3.0731837512,-0.226276662,"https://salsa.debian.org/ruby-team/ruby-css-parser","https://github.com/premailer/css_parser/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"curb",-0.9519936286,0.5852000443,-1.3702997899,"https://salsa.debian.org/ruby-team/ruby-curb","https://github.com/taf2/curb/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"dalli",-0.7493522151,1.7345835465,-1.4848953309,"https://salsa.debian.org/ruby-team/ruby-dalli","https://github.com/petergoldstein/dalli/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"eim_xml",-0.7146782347,2.4094998812,-1.5508131873,"https://salsa.debian.org/ruby-team/ruby-eim-xml","https://github.com/hirakuro/eim_xml/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"em-http-request",-0.182257018,2.1432197933,-1.011053135,"https://salsa.debian.org/ruby-team/ruby-em-http-request","https://github.com/igrigorik/em-http-request/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"em-redis",-2.4322275314,0.3220252422,-3.2383595542,"https://salsa.debian.org/ruby-team/ruby-em-redis","https://github.com/libc/em-redis",3058.3058101852,3,10,0,6,7,0,0,10,2,"2",1.76923076923077,1.7 +"encryptor",0.4811221705,4.0560529867,-0.7455390491,"https://salsa.debian.org/ruby-team/ruby-encryptor","https://github.com/attr-encrypted/encryptor",2635.9583564815,1,9,0,5,53,0,0,54,1,"1",1.9,1.98148148148148 +"entypo-rails",0.5391017786,4.3530001784,-0.5148206393,"https://salsa.debian.org/ruby-team/ruby-entypo-rails","https://github.com/lwe/entypo-rails",1757.4358333333,1,10,0,7,20,0,0,20,1,"1",1.90909090909091,2 +"enumerize",-3.5842960195,-1.0600757701,-4.2631150762,"https://salsa.debian.org/ruby-team/ruby-enumerize","https://github.com/brainspec/enumerize/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"escape_utils",-0.3520723582,1.3204538371,-0.8030228346,"https://salsa.debian.org/ruby-team/ruby-escape-utils","https://github.com/brianmario/escape_utils.git",4731.6076041667,5,24,0,25,33,0,0,45,3,"3",1.82758620689655,1.73333333333333 +"espeak-ruby",-0.7286751247,2.0352078637,-1.4874218872,"https://salsa.debian.org/ruby-team/ruby-espeak","https://github.com/dejan/espeak-ruby/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ethon",-0.0042860534,2.2301309151,-0.5633876951,"https://salsa.debian.org/ruby-team/ruby-ethon","https://github.com/typhoeus/ethon/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"excon",0.3241647951,2.1161660144,-0.1827284225,"https://salsa.debian.org/ruby-team/ruby-excon","https://github.com/excon/excon/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"execjs",0.8128959283,3.6876363054,-0.0541606598,"https://salsa.debian.org/ruby-team/ruby-execjs","https://github.com/rails/execjs/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"factory_bot",-2.8031110385,-0.7539374887,-3.2965562449,"https://salsa.debian.org/ruby-team/ruby-factory-bot","https://github.com/thoughtbot/factory_bot/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"factory_bot_rails",-4.3362753842,-1.1849251406,-5.2964482175,"https://salsa.debian.org/ruby-team/ruby-factory-bot-rails","https://github.com/thoughtbot/factory_bot_rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"faker",-2.043268084,0.4558232112,-2.7260545607,"https://salsa.debian.org/ruby-team/ruby-faker","https://github.com/faker-ruby/faker/issues/new",2746.3319791667,2,17,0,0,0,0,0,881,2,"2",1.89473684210526,1 +"ruby-fcgi-ng",0.3005043747,2.2153527182,-0.3456056618,"https://salsa.debian.org/ruby-team/ruby-fcgi","https://github.com/alphallc/ruby-fcgi-ng",3559.9222685185,1,6,0,5,7,0,0,7,2,"2",1.85714285714286,2 +"ferret",-1.152482197,0.9802706874,-1.8377454457,"https://salsa.debian.org/ruby-team/ruby-ferret","https://github.com/dbalmain/ferret/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ffaker",-2.5489714355,0.5028353652,-3.5038139593,"https://salsa.debian.org/ruby-team/ruby-ffaker","https://github.com/ffaker/ffaker/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ffi",0.7507411929,2.0786767636,0.1677842861,"https://salsa.debian.org/ruby-team/ruby-ffi","https://github.com/ffi/ffi/wiki/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ffi-rzmq",-1.7723964358,0.1072926119,-2.431946797,"https://salsa.debian.org/ruby-team/ruby-ffi-rzmq","https://github.com/chuckremes/ffi-rzmq",3424.7133912037,1,37,0,26,23,0,0,39,2,"2",1.97368421052632,1.58974358974359 +"filepath",-2.3053481268,0.1409903961,-2.9510491569,"https://salsa.debian.org/ruby-team/ruby-filepath","https://github.com/gioele/filepath/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"fission",-1.6562095743,0.8388115306,-2.2192481171,"https://salsa.debian.org/ruby-team/ruby-fission","https://github.com/thbishop/fission",876.3192708333,0,10,0,7,20,0,0,20,1,"1",2,2 +"flexmock",-0.3454878367,2.571112926,-1.0719182939,"https://salsa.debian.org/ruby-team/ruby-flexmock","https://github.com/doudou/flexmock/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"fog-core",0.6091506734,3.4479009172,-0.153332088,"https://salsa.debian.org/ruby-team/ruby-fog-core","https://github.com/fog/fog-core/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"fog-local",-0.5604968871,1.9424075855,-1.1725410205,"https://salsa.debian.org/ruby-team/ruby-fog-local","https://github.com/fog/fog-local",5023.4471759259,4,29,0,20,20,0,0,31,4,"4",1.87878787878788,1.64516129032258 +"graffiti",-1.4846935384,1.5503379929,-2.3930105658,"https://salsa.debian.org/ruby-team/ruby-graffiti","https://github.com/angdraug/graffiti",3536.2679166667,0,3,0,1,2,0,0,2,2,"2",2,2 +"grape",-0.4350415295,1.4006419917,-1.070629589,"https://salsa.debian.org/ruby-team/ruby-grape","https://github.com/ruby-grape/grape/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"Ruby-Graphviz",-0.281553724,2.1524260723,-1.1267460692,"https://salsa.debian.org/ruby-team/ruby-graphviz","https://github.com/glejeune/Ruby-Graphviz/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rb-gsl",-0.3230766707,0.701457517,-0.7464638333,"https://salsa.debian.org/ruby-team/ruby-gsl","https://github.com/SciRuby/rb-gsl/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"haml",-0.2288560111,0.7789985582,-0.5585413968,"https://salsa.debian.org/ruby-team/ruby-haml","https://github.com/haml/haml/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"haml-rails",-1.7986736177,0.2769400484,-2.4010715421,"https://salsa.debian.org/ruby-team/ruby-haml-rails","https://github.com/haml/haml-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"hamster",0.1910108771,2.6568022387,-0.3608024404,"https://salsa.debian.org/ruby-team/ruby-hamster","https://github.com/hamstergem/hamster/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"hangouts-chat",-1.2144339097,0.4818108524,-1.5637566918,"https://salsa.debian.org/ruby-team/ruby-hangouts-chat","https://github.com/enzinia/hangouts-chat",1065.9778472222,3,4,0,3,4,0,0,4,1,"1",1.57142857142857,2 +"hashie",0.5722550457,3.4085323574,-0.2355411618,"https://salsa.debian.org/ruby-team/ruby-hashie","https://github.com/hashie/hashie/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"highline",0.2453167047,2.4988399297,-0.2235846904,"https://salsa.debian.org/ruby-team/ruby-highline","https://github.com/JEG2/highline/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"hitimes",0.1068100876,2.6613098357,-0.447701455,"https://salsa.debian.org/ruby-team/ruby-hitimes","https://github.com/copiousfreetime/hitimes/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"html-pipeline",-0.3782141806,2.4999259043,-1.1470246908,"https://salsa.debian.org/ruby-team/ruby-html-pipeline","https://github.com/jch/html-pipeline",4034.7769328704,33,88,0,93,41,0,0,110,3,"3",1.72727272727273,1.37272727272727 +"html2haml",-0.284722491,1.1708771552,-0.6449129827,"https://salsa.debian.org/ruby-team/ruby-html2haml","https://github.com/haml/html2haml/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"httparty",-0.2296319294,1.8101133693,-0.8217200797,"https://salsa.debian.org/ruby-team/ruby-httparty","https://github.com/jnunemaker/httparty/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"i18n",0.8152415757,2.7696084069,0.1031413415,"https://salsa.debian.org/ruby-team/ruby-i18n","https://github.com/ruby-i18n/i18n/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"i18n-inflector-rails",-3.6101910392,-1.2035908486,-4.2660614395,"https://salsa.debian.org/ruby-team/ruby-i18n-inflector-rails","https://github.com/siefca/i18n-inflector-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"icalendar",-0.9967703811,1.7616614381,-1.7133045592,"https://salsa.debian.org/ruby-team/ruby-icalendar","https://github.com/icalendar/icalendar/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ice_cube",-2.9447850831,0.3245689035,-3.696715811,"https://salsa.debian.org/ruby-team/ruby-ice-cube","http://seejohnrun.github.com/ice_cube/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"image_science",-0.6109855428,1.3356911263,-1.2647438358,"https://salsa.debian.org/ruby-team/ruby-image-science","https://github.com/seattlerb/image_science/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"influxdb-ruby",0.0573197432,3.227120433,-0.9690594839,"https://salsa.debian.org/ruby-team/ruby-influxdb","https://github.com/InfluxCommunity/influxdb-ruby/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"inherited_resources",-4.4805244395,-1.6125821355,-5.323696982,"https://salsa.debian.org/ruby-team/ruby-inherited-resources","https://github.com/activeadmin/inherited_resources/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rubyinline",-0.5488463078,1.586460929,-1.1539952628,"https://salsa.debian.org/ruby-team/ruby-inline","https://github.com/seattlerb/rubyinline.git",5600.4261805556,0,4,0,3,40,0,0,40,4,"4",2,2 +"innertube",-0.8869903201,1.6021467977,-1.6544158523,"https://salsa.debian.org/ruby-team/ruby-innertube","https://github.com/basho/innertube.git",1008.2290162037,0,4,0,4,8,0,0,8,1,"1",2,2 +"ipaddress",0.3785874101,3.1933979431,-0.2196161692,"https://salsa.debian.org/ruby-team/ruby-ipaddress","https://github.com/bluemonk/ipaddress/issues/new",2746.3319791667,2,17,0,0,0,0,0,56,2,"2",1.89473684210526,1 +"jar-dependencies",0.0460603946,2.8173117768,-0.7407876075,"https://salsa.debian.org/ruby-team/ruby-jar-dependencies","https://github.com/mkristian/jar-dependencies",3114.2440277778,4,15,0,15,42,0,1,45,2,"2",1.78947368421053,1.93333333333333 +"jekyll-commonmark",-3.9057611496,-1.6518132292,-4.3433705046,"https://salsa.debian.org/ruby-team/ruby-jekyll-commonmark","https://github.com/jekyll/jekyll-commonmark/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"jekyll-feed",0.1675771135,2.2494684672,-0.2627259539,"https://salsa.debian.org/ruby-team/ruby-jekyll-feed","https://github.com/jekyll/jekyll-feed/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"joiner",-0.899573388,2.1329741465,-1.7030771732,"https://salsa.debian.org/ruby-team/ruby-joiner","https://github.com/pat/joiner/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"jquery-atwho-rails",-0.7423375517,1.4980767196,-1.2841911773,"https://salsa.debian.org/ruby-team/ruby-jquery-atwho-rails","https://github.com/ichord/jquery-atwho-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"locale",0.3803802231,1.524276319,-0.0365821889,"https://salsa.debian.org/ruby-team/ruby-locale","https://github.com/ruby-gettext/locale/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"magic",-0.136206368,2.210685595,-0.7957036211,"https://salsa.debian.org/ruby-team/ruby-magic","https://github.com/qoobaa/magic",2808.4621990741,0,9,0,5,8,0,0,8,2,"2",2,2 +"mail-gpg",-0.9409015952,1.9853520354,-1.675246259,"https://salsa.debian.org/ruby-team/ruby-mail-gpg","https://github.com/jkraemer/mail-gpg",4267.9559722222,18,136,0,11,30,0,0,30,3,"3",1.88311688311688,2 +"markdown-it-html5-embed",-2.8648647448,0.5943602868,-3.688121554,"https://salsa.debian.org/ruby-team/ruby-markdown-it-html5-embed","https://github.com/cmrd-senya/markdown-it-html5-embed",2489.0705555556,3,10,0,7,15,0,0,15,1,"1",1.76923076923077,2 +"maxitest",-2.3507463091,0.2011168043,-2.9821664947,"https://salsa.debian.org/ruby-team/ruby-maxitest","https://github.com/grosser/maxitest",3302.3780092593,0,10,0,6,20,0,0,20,2,"2",2,2 +"method_source",0.3967690887,3.2318024051,-0.2913605087,"https://salsa.debian.org/ruby-team/ruby-method-source","https://github.com/banister/method_source",3988.6090393519,4,19,0,20,55,0,0,56,3,"3",1.82608695652174,1.98214285714286 +"ruby-mime-types",0.3717629365,2.6878654539,-0.1300864966,"https://salsa.debian.org/ruby-team/ruby-mime-types","https://github.com/mime-types/ruby-mime-types/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"minimagick",-1.0439670842,0.2157840612,-1.3997145193,"https://salsa.debian.org/ruby-team/ruby-mini-magick","https://github.com/minimagick/minimagick/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"minitar",-0.0660695838,1.7554167483,-0.5639163741,"https://salsa.debian.org/ruby-team/ruby-minitar","https://github.com/halostatue/minitar",5658.6576851852,8,6,1,8,33,0,0,33,4,"4",1.42857142857143,2 +"minitest",0.6291543197,3.2530425688,0.0059259645,"https://salsa.debian.org/ruby-team/ruby-minitest","https://github.com/seattlerb/minitest/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"minitest-around",-1.7698068776,0.7510788114,-2.5114054563,"https://salsa.debian.org/ruby-team/ruby-minitest-around","https://github.com/splattael/minitest-around",2552.4467708333,2,14,0,7,17,0,0,17,1,"1",1.875,2 +"minitest-shared_description",-3.2057434289,-0.7536793446,-3.735520243,"https://salsa.debian.org/ruby-team/ruby-minitest-shared-description","https://github.com/jeremyevans/minitest-shared_description",2605.2266666667,0,2,0,2,2,0,0,2,1,"1",2,2 +"mixlib-install",-0.6385298321,2.1889207953,-1.4847448361,"https://salsa.debian.org/ruby-team/ruby-mixlib-install","https://github.com/chef/mixlib-install/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"mocha",-0.0854006271,1.5328416557,-0.5865753787,"https://salsa.debian.org/ruby-team/ruby-mocha","https://github.com/freerange/mocha/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"mousetrap-rails",-0.5414473391,2.2995115053,-1.3022888739,"https://salsa.debian.org/ruby-team/ruby-mousetrap-rails","https://github.com/kugaevsky/mousetrap-rails",2627.8625810185,0,4,0,3,14,0,2,16,1,"1",2,1.875 +"mustache",0.3863898236,2.9819707709,-0.4052274614,"https://salsa.debian.org/ruby-team/ruby-mustache","https://github.com/defunkt/mustache",4729.4908680556,23,58,1,62,26,0,0,84,3,"3",1.71604938271605,1.30952380952381 +"mysql2",0.3134512975,1.4731032493,-0.1330082155,"https://salsa.debian.org/ruby-team/ruby-mysql2","https://github.com/brianmario/mysql2",4877.8413194445,60,107,4,128,39,0,0,163,3,"3",1.64071856287425,1.23926380368098 +"net-sftp",0.512822573,2.6427692706,-0.1200757583,"https://salsa.debian.org/ruby-team/ruby-net-sftp","https://github.com/net-ssh/net-sftp/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"net-ssh",0.3423712483,1.5708505632,-0.0962002825,"https://salsa.debian.org/ruby-team/ruby-net-ssh","https://github.com/net-ssh/net-ssh/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"net-ssh-gateway",0.0949247841,2.4061879488,-0.3883582933,"https://salsa.debian.org/ruby-team/ruby-net-ssh-gateway","https://github.com/net-ssh/net-ssh-gateway/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"netrc",0.6689404268,3.5600163117,-0.1237597689,"https://salsa.debian.org/ruby-team/ruby-netrc","https://github.com/heroku/netrc",3633.5661342593,0,30,0,18,43,0,0,45,2,"2",2,1.95555555555556 +"nokogiri",0.0984970577,0.7468154749,-0.1063244283,"https://salsa.debian.org/ruby-team/ruby-nokogiri","https://github.com/sparklemotion/nokogiri/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rubyntlm",-0.0624150923,2.5862392951,-0.7205122229,"https://salsa.debian.org/ruby-team/ruby-ntlm","https://github.com/winrb/rubyntlm/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"oauth-ruby",0.0832778896,2.8453147176,-0.5926012173,"https://salsa.debian.org/ruby-team/ruby-oauth","https://github.com/oauth-xx/oauth-ruby",5341.0796643519,47,77,3,86,0,0,0,86,4,"4",1.62096774193548,1 +"oauth2",-0.165607622,2.3195911932,-0.9005135088,"https://salsa.debian.org/ruby-team/ruby-oauth2","https://github.com/intridea/oauth2",4856.2432986111,41,112,2,108,0,0,0,108,3,"3",1.73202614379085,1 +"oily_png",0.1453183816,3.1507405338,-0.7131154739,"https://salsa.debian.org/ruby-team/ruby-oily-png","https://github.com/wvanbergen/oily_png/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"oj",0.2009601344,1.5648205522,-0.1380338639,"https://salsa.debian.org/ruby-team/ruby-oj","https://github.com/ohler55/oj/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby-ole",-0.6621692167,1.4303576538,-1.3055179465,"https://salsa.debian.org/ruby-team/ruby-ole","https://github.com/aquasync/ruby-ole/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"omniauth-cas3",-0.5952547028,1.8217576227,-1.2467001517,"https://salsa.debian.org/ruby-team/ruby-omniauth-cas3","https://github.com/tduehr/omniauth-cas3",3904.2384027778,7,20,0,16,5,0,0,17,3,"3",1.74074074074074,1.29411764705882 +"omniauth_crowd",-0.5393910023,2.0196041023,-1.2327402235,"https://salsa.debian.org/ruby-team/ruby-omniauth-crowd","https://github.com/robdimarco/omniauth_crowd",3405.9749189815,0,18,0,7,22,0,1,23,2,"2",2,1.95652173913043 +"pdf-core",0.4904301487,3.0385774309,-0.1720936555,"https://salsa.debian.org/ruby-team/ruby-pdf-core","https://github.com/prawnpdf/pdf-core",3635.7233912037,6,16,0,15,46,0,0,47,2,"2",1.72727272727273,1.97872340425532 +"ruby-pgplot",-2.6363964332,-2.1680994385,-2.777770353,"https://salsa.debian.org/ruby-team/ruby-pgplot","https://github.com/masa16/ruby-pgplot",1430.3931597222,0,3,0,2,0,0,0,2,1,"1",2,1 +"pkg-config",0.3988956635,1.8385888168,-0.0542821557,"https://salsa.debian.org/ruby-team/ruby-pkg-config","https://github.com/ruby-gnome/pkg-config/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"powerpack",-0.1934084944,2.1339641007,-0.895456645,"https://salsa.debian.org/ruby-team/ruby-powerpack","https://github.com/bbatsov/powerpack.git",2684.7776041667,4,14,0,13,29,0,0,29,1,"1",1.77777777777778,2 +"premailer",-0.5173304375,2.1881663412,-1.1678917683,"https://salsa.debian.org/ruby-team/ruby-premailer","https://github.com/premailer/premailer",5001.0799884259,26,100,0,91,2,0,19,111,4,"4",1.79365079365079,1.01801801801802 +"ruby-progressbar",0.8495085041,3.8284313345,-0.1583697084,"https://salsa.debian.org/ruby-team/ruby-progressbar","https://github.com/jfelchner/ruby-progressbar/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"psych",0.1356905572,2.4813899471,-0.6287647557,"https://salsa.debian.org/ruby-team/ruby-psych","https://github.com/ruby/psych/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"puppet-syntax",-1.4274929514,0.597721473,-2.0050274993,"https://salsa.debian.org/ruby-team/ruby-puppet-syntax","https://github.com/voxpupuli/puppet-syntax/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"puppetlabs_spec_helper",-1.7074456885,0.8017468129,-2.3846811973,"https://salsa.debian.org/ruby-team/ruby-puppetlabs-spec-helper","https://github.com/puppetlabs/puppetlabs_spec_helper/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rabl-rails",-0.911642608,0.5957511596,-1.2777176183,"https://salsa.debian.org/ruby-team/ruby-rabl-rails","https://github.com/ccocchi/rabl-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rack-google-analytics",-2.1861215386,0.6392727132,-2.9350136773,"https://salsa.debian.org/ruby-team/ruby-rack-google-analytics","https://github.com/kangguru/rack-google-analytics",1720.5543634259,2,20,0,17,54,0,0,56,1,"1",1.90909090909091,1.96428571428571 +"rack-oauth2",-0.4998111729,2.3524970457,-1.2089369245,"https://salsa.debian.org/ruby-team/ruby-rack-oauth2","https://github.com/nov/rack-oauth2/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rack-test",0.1859803919,2.3863075108,-0.2515547357,"https://salsa.debian.org/ruby-team/ruby-rack-test","https://github.com/rack/rack-test/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"highlightjs",-1.776057653,0.676887867,-2.5692038823,"https://salsa.debian.org/ruby-team/ruby-rails-assets-highlightjs","https://github.com/components/highlightjs",2389.9739467593,1,13,0,13,40,0,0,41,1,"1",1.92857142857143,1.97560975609756 +"jquery.fullscreen",-0.3069663717,3.425973806,-1.5023904978,"https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery-fullscreen-plugin","https://github.com/private-face/jquery.fullscreen",928.6241898148,0,10,3,5,39,0,0,39,1,"1",2,2 +"rails-deprecated_sanitizer",0.511323457,3.2709347629,-0.2232233125,"https://salsa.debian.org/ruby-team/ruby-rails-deprecated-sanitizer","https://github.com/rails/rails-deprecated_sanitizer/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"retryable",-0.6091419167,3.2470945934,-1.7468533882,"https://salsa.debian.org/ruby-team/ruby-retryable","https://github.com/nfedyashev/retryable/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"riddle",-0.2213568731,2.8190792528,-1.302253646,"https://salsa.debian.org/ruby-team/ruby-riddle","https://github.com/pat/riddle/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"riot",-2.0988502373,0.6683400663,-2.9186141778,"https://salsa.debian.org/ruby-team/ruby-riot","https://github.com/thumblemonks/riot.git",3321.7834953704,13,21,0,20,33,0,7,43,2,"2",1.61764705882353,1.76744186046512 +"rmagick",1.1027033423,3.178542172,0.1881853373,"https://salsa.debian.org/ruby-team/ruby-rmagick","https://github.com/rmagick/rmagick/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"roadie",-0.1961366614,1.239631746,-0.5682337388,"https://salsa.debian.org/ruby-team/ruby-roadie","https://github.com/Mange/roadie/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"roadie-rails",0.2474719144,3.1899002451,-0.5277315026,"https://salsa.debian.org/ruby-team/ruby-roadie-rails","https://github.com/Mange/roadie-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"roxml",-2.5839472744,-1.4732125607,-2.7933760266,"https://salsa.debian.org/ruby-team/ruby-roxml","https://github.com/Empact/roxml/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rr",-1.121241691,1.6540401602,-1.8988612605,"https://salsa.debian.org/ruby-team/ruby-rr","https://github.com/rr/rr/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rspec-its",0.3171416756,3.0292623369,-0.3872674482,"https://salsa.debian.org/ruby-team/ruby-rspec-its","https://github.com/rspec/rspec-its/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rspec-puppet",-1.5750551856,-0.1277944687,-2.1032613755,"https://salsa.debian.org/ruby-team/ruby-rspec-puppet","https://github.com/rodjek/rspec-puppet/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rspec-rails",-1.5844038432,-0.1606831019,-1.9538760382,"https://salsa.debian.org/ruby-team/ruby-rspec-rails","https://github.com/rspec/rspec-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rspec-retry",-2.3142070783,-0.3616680713,-2.7725056817,"https://salsa.debian.org/ruby-team/ruby-rspec-retry","https://github.com/NoRedInk/rspec-retry/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby2ruby",-1.2632583004,0.5122103892,-1.7609454819,"https://salsa.debian.org/ruby-team/ruby-ruby2ruby","https://github.com/seattlerb/ruby2ruby.git",5438.8588773148,0,3,0,3,34,0,0,35,4,"4",2,1.97142857142857 +"rmail",0.7637470574,3.3946799515,-0.0798110938,"https://salsa.debian.org/ruby-team/ruby-rubymail","https://github.com/terceiro/rmail/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rufus-scheduler",-0.6929292609,1.2502062176,-1.0955436307,"https://salsa.debian.org/ruby-team/ruby-rufus-scheduler","https://github.com/jmettraux/rufus-scheduler/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rugged",0.1738858881,1.9747468959,-0.302862283,"https://salsa.debian.org/ruby-team/ruby-rugged","https://github.com/libgit2/rugged/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"safe_yaml",0.4923372454,2.4380212188,-0.0762986291,"https://salsa.debian.org/ruby-team/ruby-safe-yaml","https://github.com/dtao/safe_yaml/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby-saml",-0.6292373352,1.4888690533,-1.2152677939,"https://salsa.debian.org/ruby-team/ruby-saml","https://github.com/onelogin/ruby-saml/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sanitize",0.1142111133,2.7598362726,-0.6767036115,"https://salsa.debian.org/ruby-team/ruby-sanitize","https://github.com/rgrove/sanitize/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sassc-rails",-1.8895893476,0.6543031358,-2.5458693661,"https://salsa.debian.org/ruby-team/ruby-sassc-rails","https://github.com/sass/sassc-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sdoc",0.2066194576,2.5352625368,-0.2819990512,"https://salsa.debian.org/ruby-team/ruby-sdoc","https://github.com/zzak/sdoc.git",5126.572337963,22,57,0,56,0,0,0,56,4,"4",1.72151898734177,1 +"seamless_database_pool",-2.1643107675,0.2260298985,-2.6118947494,"https://salsa.debian.org/ruby-team/ruby-seamless-database-pool","https://github.com/bdurand/seamless_database_pool/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"selenium",-0.2089568629,1.5489405973,-0.5373754091,"https://salsa.debian.org/ruby-team/ruby-selenium-webdriver","https://github.com/SeleniumHQ/selenium/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"semantic_puppet",-0.6229814617,0.8563700058,-0.9765203623,"https://salsa.debian.org/puppet-team/ruby-semantic-puppet","https://github.com/puppetlabs/semantic_puppet/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sequel_pg",0.6191087607,3.8061270046,-0.2981530837,"https://salsa.debian.org/ruby-team/ruby-sequel-pg","https://github.com/jeremyevans/sequel_pg.git",4773.6626388889,4,7,0,9,45,0,0,47,3,"3",1.63636363636364,1.95744680851064 +"sexp_processor",0.2542094629,3.0388178614,-0.4829633288,"https://salsa.debian.org/ruby-team/ruby-sexp-processor","https://github.com/seattlerb/sexp_processor",5341.4177430556,0,2,0,1,26,0,0,26,4,"4",2,2 +"ruby-shadow",0.216126739,1.4890131453,-0.1154816196,"https://salsa.debian.org/ruby-team/ruby-shadow","https://github.com/apalmblad/ruby-shadow/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sham_rack",-2.1608189217,0.0182643744,-2.8608854622,"https://salsa.debian.org/ruby-team/ruby-sham-rack","https://github.com/mdub/sham_rack",3267.7854166667,2,5,0,3,12,0,0,12,2,"2",1.71428571428571,2 +"simplecov",-0.3160772042,2.2007214999,-1.0026344512,"https://salsa.debian.org/ruby-team/ruby-simplecov","https://github.com/simplecov-ruby/simplecov/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"slim",-0.3918087088,1.09130624,-0.8384953408,"https://salsa.debian.org/ruby-team/ruby-slim","http://github.com/slim-template/slim//issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"soap4r-noeticpenguin",0.4756744398,2.1003291699,-0.0796726268,"https://salsa.debian.org/ruby-team/ruby-soap4r","https://github.com/noeticpenguin/soap4r-noeticpenguin/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"spring",0.1889684319,2.2582459747,-0.2755388783,"https://salsa.debian.org/ruby-team/ruby-spring","https://github.com/rails/spring/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sprockets-rails",0.6272839018,2.9396554619,-0.1070486043,"https://salsa.debian.org/ruby-team/ruby-sprockets-rails","https://github.com/rails/sprockets-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"tins",-0.0184774495,2.3442756527,-0.4994282993,"https://salsa.debian.org/ruby-team/ruby-tins","https://github.com/flori/tins.git",5186.4477893519,2,5,0,6,19,0,0,19,4,"4",1.71428571428571,2 +"toml",0.5450450103,3.0277601672,-0.1659943286,"https://salsa.debian.org/ruby-team/ruby-toml","https://github.com/jm/toml",3202.4776736111,3,24,1,21,69,0,0,69,2,"2",1.88888888888889,2 +"treetop",0.2325856151,1.7246039787,-0.1675338127,"https://salsa.debian.org/ruby-team/ruby-treetop","https://github.com/cjheath/treetop/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"truncato",-0.892450421,1.0747849229,-1.3078720915,"https://salsa.debian.org/ruby-team/ruby-truncato","https://github.com/jorgemanrubia/truncato",3523.9293634259,2,13,0,10,27,0,0,28,2,"2",1.86666666666667,1.96428571428571 +"twitter",-0.6682623901,1.3259076585,-1.147074381,"https://salsa.debian.org/ruby-team/ruby-twitter","https://github.com/sferik/twitter",5668.765474537,66,150,0,172,52,0,171,383,4,"4",1.69444444444444,1.13577023498695 +"twitter-stream",-0.4992291188,2.3271486963,-1.2824567535,"https://salsa.debian.org/ruby-team/ruby-twitter-stream","http://github.com/voloko/twitter-stream/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"typed-array",-0.7061785139,1.6402446003,-1.1445021258,"https://salsa.debian.org/ruby-team/ruby-typed-array","https://github.com/yaauie/typed-array",63.5884953704,0,2,0,2,2,0,0,2,1,"1",2,2 +"typhoeus",-0.1128851981,2.3506320669,-0.7362615291,"https://salsa.debian.org/ruby-team/ruby-typhoeus","https://github.com/typhoeus/typhoeus/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"issues",-0.1835463152,-0.1043691104,-0.2043071695,"https://salsa.debian.org/ruby-team/ruby-tzinfo","https://tzinfo.github.io/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"url_safe_base64",-1.0899769047,2.7888654476,-2.2202803102,"https://salsa.debian.org/ruby-team/ruby-url-safe-base64","https://github.com/joenoon/url_safe_base64",1866.2862384259,0,2,0,2,2,0,0,2,1,"1",2,2 +"uuid",-0.141865508,3.1821978286,-1.059582524,"https://salsa.debian.org/ruby-team/ruby-uuid","https://github.com/assaf/uuid",4250.514537037,5,18,0,13,78,0,1,81,3,"3",1.78260869565217,1.96296296296296 +"uuidtools",0.0082132863,1.7860368385,-0.3798291083,"https://salsa.debian.org/ruby-team/ruby-uuidtools","https://github.com/sporkmonger/uuidtools",4302.5516087963,4,20,0,12,66,0,3,70,3,"3",1.83333333333333,1.94285714285714 +"validates_email",-1.5781922437,0.7480299974,-2.1834264358,"https://salsa.debian.org/ruby-team/ruby-validate-email","https://github.com/perfectline/validates_email.git",4596.2118865741,2,8,0,4,9,0,0,9,3,"3",1.8,2 +"validates_hostname",-1.2415295122,1.2211165969,-1.7510919236,"https://salsa.debian.org/ruby-team/ruby-validates-hostname","https://github.com/KimNorgaard/validates_hostname",4293.8459722222,0,12,0,5,18,0,0,18,3,"3",2,2 +"varia_model",-1.8678804974,-0.0930481582,-2.2356906543,"https://salsa.debian.org/ruby-team/ruby-varia-model","https://github.com/berkshelf/varia_model/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"version_sorter",-0.8955692286,1.3134248845,-1.3333811894,"https://salsa.debian.org/ruby-team/ruby-version-sorter","https://github.com/github/version_sorter",5346.8123032407,4,15,0,12,21,0,0,23,4,"4",1.78947368421053,1.91304347826087 +"versionomy",-1.9875633378,1.0365445382,-2.7207117207,"https://salsa.debian.org/ruby-team/ruby-versionomy","https://github.com/dazuma/versionomy/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"Voight-Kampff",-3.6122138418,-1.1841868732,-4.2747449932,"https://salsa.debian.org/ruby-team/ruby-voight-kampff","https://github.com/biola/Voight-Kampff/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"web-console",0.1404315345,2.5211217633,-0.3233556237,"https://salsa.debian.org/ruby-team/ruby-web-console","https://github.com/rails/web-console/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"webmock",-0.8722996031,1.4227793478,-1.5805653267,"https://salsa.debian.org/ruby-team/ruby-webmock","https://github.com/bblimke/webmock/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"websocket-ruby",-2.0302234955,1.0763961168,-2.8933706474,"https://salsa.debian.org/ruby-team/ruby-websocket","https://github.com/imanel/websocket-ruby.git",4172.1994328704,3,14,0,15,38,0,0,39,3,"3",1.82352941176471,1.97435897435897 +"xml-simple",0.2810527115,2.941255221,-0.5650827802,"https://salsa.debian.org/ruby-team/ruby-xml-simple","https://github.com/maik/xml-simple",3655.0192476852,4,12,0,12,31,0,0,31,2,"2",1.75,2 +"scalpel",1.9235574134,5.7889102705,0.6091390984,"https://salsa.debian.org/pkg-security-team/scalpel","https://github.com/sleuthkit/scalpel.git",2828.8538888889,1,11,0,5,69,0,0,69,2,"2",1.91666666666667,2 +"scanlogd",1.0265172022,3.3179170915,-0.0529925024,"https://salsa.debian.org/debian/scanlogd/","https://github.com/openwall/scanlogd.git",3573.3593287037,0,2,0,1,4,0,0,4,2,"2",2,2 +"scapy",0.8574558824,1.870596003,0.3040325575,"https://salsa.debian.org/pkg-security-team/scapy","https://github.com/secdev/scapy/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"maeparser",-0.1240254936,2.1383222642,-0.7555796895,"https://salsa.debian.org/debichem-team/schroedinger-maeparser","https://github.com/schrodinger/maeparser.git",2087.1343287037,12,14,0,15,15,0,0,16,1,"1",1.53846153846154,1.9375 +"science.js",-1.5791662472,1.653426766,-2.4733135985,"https://salsa.debian.org/js-team/science.js/","https://github.com/jasondavies/science.js.git",2725.1817592593,1,8,0,6,30,0,0,30,1,"1",1.88888888888889,2 +"scim",1.8800598007,2.6066941269,1.3618783859,"https://github.com/leggewie-DM/scim","https://github.com/leggewie-DM/scim",3009.7372800926,4,5,0,6,2,0,0,7,2,"2",1.55555555555556,1.28571428571429 +"scim-anthy",0.002293794,1.4287101867,-0.6578723431,"https://github.com/leggewie-DM/scim-anthy","https://github.com/leggewie-DM/scim-anthy",1414.2472685185,5,3,0,5,1,0,0,6,1,"1",1.375,1.16666666666667 +"scim-chewing",1.4542811691,3.3715479543,0.5061771978,"https://salsa.debian.org/debian/scim-chewing","https://github.com/chewing/scim-chewing.git",2973.6130092593,0,11,0,4,6,0,0,6,2,"2",2,2 +"scim-pinyin",1.3124715757,3.3775777533,0.2280732409,"https://salsa.debian.org/input-method-team/scim-pinyin","https://github.com/scim-im/scim-pinyin/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"scim-tables",0.9359530215,2.2487851526,0.2559891027,"https://github.com/leggewie-DM/scim-tables","https://github.com/leggewie-DM/scim-tables",793.6947685185,3,3,0,3,1,0,0,4,1,"1",1.5,1.25 +"sct-deb",0.114819976,2.8309553504,-0.5908234474,"https://github.com/Tookmund/sct-deb","https://github.com/Tookmund/sct-deb",125.8640393519,0,1,0,1,0,0,0,1,1,"1",2,1 +"setuptools_scm",0.0218119153,1.0762900197,-0.3060730181,"https://salsa.debian.org/python-team/packages/setuptools-scm","https://github.com/pypa/setuptools_scm/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"setuptools_scm_git_archive",-1.1288748526,1.4309706158,-1.7245251246,"https://salsa.debian.org/python-team/packages/setuptools-scm-git-archive","https://github.com/Changaco/setuptools_scm_git_archive",2852.8371759259,5,5,0,7,22,0,0,22,2,"2",1.5,2 +"sexplib",-1.5719893405,-0.308694773,-1.9907588838,"https://salsa.debian.org/ocaml-team/sexplib310","https://github.com/janestreet/sexplib.git",3950.7644444445,1,18,0,12,43,0,0,48,3,"3",1.94736842105263,1.89583333333333 +"sgabios-debian",0.6248433625,3.3447922772,-0.1006393146,"https://github.com/ymc/sgabios-debian","https://github.com/ymc/sgabios-debian",1409.8465509259,1,3,0,3,2,0,0,3,1,"1",1.75,1.66666666666667 +"shine",0.5449317214,2.5585883378,0.0206552894,"https://salsa.debian.org/multimedia-team/shine","https://github.com/savonet/shine/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"showq",0.4980241305,2.6384494868,-0.2994881583,"https://salsa.debian.org/multimedia-team/showq","https://github.com/evandelisle/showq.git",4589.6974189815,2,9,0,4,11,0,1,12,3,"3",1.81818181818182,1.91666666666667 +"shutdown-qapps",0.083229246,2.5754574312,-0.646790907,"https://github.com/hakaishi/shutdown-qapps","https://github.com/hakaishi/shutdown-qapps",4242.5183217593,1,5,0,2,4,0,0,4,3,"3",1.83333333333333,2 +"sidedoor",-1.2070083599,0.905385237,-1.6442775708,"https://github.com/daradib/sidedoor","https://github.com/daradib/sidedoor",1283.144525463,0,2,0,2,5,0,0,6,1,"1",2,1.83333333333333 +"siege",0.97547978,2.0335300671,0.3603230005,"https://salsa.debian.org/debian/siege","https://github.com/JoeDog/siege/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sight",-2.4142300337,-1.1923515267,-2.6246960575,"https://salsa.debian.org/med-team/sight","https://github.com/IRCAD/sight",5195.7820833333,18,189,0,40,13,0,0,45,4,"4",1.91304347826087,1.28888888888889 +"signify",-0.42914773,1.9932487279,-0.9002655171,"https://salsa.debian.org/debian/signify-openbsd","https://github.com/aperezdc/signify.git",3467.3640972222,11,5,0,8,28,0,0,30,2,"2",1.3125,1.93333333333333 +"sigscheme",0.0095840913,0.5411815775,-0.1766561408,"https://salsa.debian.org/debian/sigscheme","https://github.com/uim/sigscheme.git",4570.4844212963,0,12,0,4,6,0,0,8,3,"3",2,1.75 +"silver-platter",-2.1237439075,-0.8804783102,-2.3543625093,"https://salsa.debian.org/jelmer/silver-platter","https://github.com/jelmer/silver-platter/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"timeline",0.4007687558,3.0154567789,-0.4849247131,"https://salsa.debian.org/js-team/simile-timeline","https://github.com/simile-widgets/timeline/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"simple-image-reducer",0.1736790136,2.6063762202,-0.6423729726,"https://salsa.debian.org/python-team/packages/simple-image-reducer","https://github.com/henrythasler/simple-image-reducer",3392.7195833333,3,5,0,5,11,0,0,11,2,"2",1.625,2 +"sklearn-pandas",-0.1846814273,2.4060352331,-0.9752323305,"https://salsa.debian.org/debian/sklearn-pandas","https://github.com/scikit-learn-contrib/sklearn-pandas/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"SkyPat",-3.6622190091,-1.2552465603,-4.2901929758,"https://salsa.debian.org/debian/skypat","https://github.com/skymizer/SkyPat",1330.0854513889,4,12,0,7,15,0,1,18,1,"1",1.75,1.83333333333333 +"slick-greeter",0.230041088,2.4883516609,-0.403804259,"https://github.com/UbuntuBudgie/slick-greeter/tree/debian","https://github.com/UbuntuBudgie/slick-greeter",2438.3149768519,27,9,0,9,3,0,0,10,1,"1",1.25,1.3 +"smarty-gettext",-0.1172764021,0.9213265959,-0.4308872423,"https://salsa.debian.org/debian/smarty-gettext/","https://github.com/smarty-gettext/smarty-gettext.git",3367.1055439815,3,7,0,6,31,0,0,31,2,"2",1.7,2 +"smarty-lexer",-2.1771173058,0.8224220515,-2.9339605005,"https://salsa.debian.org/debian/smarty-lexer/","https://github.com/smarty-php/smarty-lexer.git",2967.1062731482,1,5,0,2,3,0,0,4,2,"2",1.83333333333333,1.75 +"smash",-1.6021448383,1.016931715,-2.2070553084,"https://salsa.debian.org/js-team/smash","https://github.com/mbostock/smash.git",1268.6711921296,0,6,0,5,23,0,4,27,1,"1",2,1.85185185185185 +"smbldap-tools",4.0992169923,6.2973766162,2.977896731,"https://salsa.debian.org/debian/smbldap-tools","https://github.com/fumiyas/smbldap-tools",3527.4513194445,0,4,0,1,2,0,0,3,2,"2",2,1.66666666666667 +"snake4.debian",0.095148698,1.3696917472,-0.4120560031,"https://github.com/alexdantas/snake4.debian","https://github.com/alexdantas/snake4.debian",10.4776388889,5,4,0,0,2,0,0,2,1,"1",1.44444444444444,2 +"sndfile-tools",0.7443837151,2.9271900432,0.0039892841,"https://salsa.debian.org/multimedia-team/sndfile-tools","https://github.com/libsndfile/sndfile-tools.git",5283.239212963,10,6,0,14,26,0,0,26,4,"4",1.375,2 +"debian-snetz",-0.1935171339,3.2904821975,-1.2264363982,"https://github.com/paniagua-gustavo/debian-snetz","https://github.com/paniagua-gustavo/debian-snetz",0.188125,0,2,0,1,0,0,0,1,1,"1",2,1 +"sord",0.6196290047,2.4503028479,0.0661140316,"https://salsa.debian.org/multimedia-team/sord","https://github.com/drobilla/sord.git",4651.0402893519,0,1,0,1,9,0,0,9,3,"3",2,2 +"python-sortedcollections",0.0282138035,2.5630571401,-0.4563520078,"https://salsa.debian.org/python-team/packages/sortedcollections","https://github.com/grantjenks/python-sortedcollections",2101.4924884259,2,4,0,4,19,0,0,19,1,"1",1.66666666666667,2 +"sosi2osm",-0.0665032677,2.7414888103,-0.7399578074,"https://salsa.debian.org/debian-gis-team/sosi2osm","https://github.com/Gnonthgol/sosi2osm.git",3689.8328125,3,10,0,6,9,0,0,11,2,"2",1.76923076923077,1.81818181818182 +"soundconverter",0.4540740816,1.0143004971,0.117664665,"https://salsa.debian.org/multimedia-team/soundconverter","https://github.com/kassoulet/soundconverter/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"spacefm",0.0215364285,0.7019135888,-0.2802976133,"https://github.com/mati75/spacefm.git","https://github.com/mati75/spacefm.git",3876.4630671296,0,4,0,2,1,0,0,2,3,"3",2,1.5 +"SparkleShare",0.9167518699,2.534959747,0.0535700536,"https://salsa.debian.org/debian/sparkleshare","https://github.com/hbons/SparkleShare",4856.867974537,90,134,3,141,8,0,73,221,3,"3",1.59821428571429,1.03619909502262 +"speechd-up",-1.2789607706,1.2929705527,-2.0775310838,"https://salsa.debian.org/a11y-team/speechd-up","https://github.com/williamh/speechd-up.git",1059.3273726852,1,4,0,2,3,0,0,5,1,"1",1.8,1.6 +"speedpad-debian",-0.3911902301,0.972185266,-0.6939336088,"https://github.com/ltworf/speedpad-debian","https://github.com/ltworf/speedpad-debian",829.1033101852,0,2,0,1,0,0,0,1,1,"1",2,1 +"sphinx-argparse",-0.7549373494,1.0088944933,-1.2169968655,"https://salsa.debian.org/python-team/packages/sphinx-argparse","https://github.com/ribozz/sphinx-argparse",2938.5171412037,2,31,0,22,35,0,0,46,2,"2",1.93939393939394,1.76086956521739 +"sphinx-astropy",-1.4271235012,-0.7867770371,-1.5421845699,"https://salsa.debian.org/debian-astro-team/sphinx-astropy","https://github.com/astropy/sphinx-astropy",4334.9151736111,3,25,1,17,25,0,1,31,3,"3",1.89285714285714,1.80645161290323 +"sphinx-autorun",-1.0917758526,1.7268550032,-1.8045400627,"https://salsa.debian.org/python-team/packages/sphinx-autorun","https://github.com/hobarrera/sphinx-autorun",4960.1845949074,3,8,0,6,17,0,0,20,3,"3",1.72727272727273,1.85 +"sphinx_celery",-1.2937827686,0.4938075079,-1.9951471611,"https://salsa.debian.org/python-team/packages/sphinx-celery","https://github.com/celery/sphinx_celery",2803.725,12,7,1,15,21,0,0,21,2,"2",1.36842105263158,2 +"sphinx-paramlinks",-1.1682253235,0.3868734443,-1.5684932781,"https://salsa.debian.org/python-team/packages/sphinx-paramlinks","https://github.com/sqlalchemyorg/sphinx-paramlinks",3511.5527777778,5,5,0,7,18,0,0,19,2,"2",1.5,1.94736842105263 +"autoprogram",-1.4560452615,-0.2596772946,-1.6612142206,"https://salsa.debian.org/python-team/packages/sphinxcontrib-autoprogram","https://github.com/sphinx-contrib/autoprogram.git",3291.9937962963,8,16,0,20,46,0,0,53,2,"2",1.66666666666667,1.86792452830189 +"sratom",0.5401649761,2.8512138953,0.0136305168,"https://salsa.debian.org/multimedia-team/sratom","https://github.com/lv2/sratom.git",4263.558912037,3,1,0,4,5,0,0,6,3,"3",1.25,1.83333333333333 +"python-sshpubkeys",-1.9121140748,-0.1894818509,-2.3312629201,"https://salsa.debian.org/python-team/packages/sshpubkeys","https://github.com/ojarva/python-sshpubkeys.git",3267.3521759259,3,17,0,14,29,0,0,36,2,"2",1.85,1.80555555555556 +"sslsniff",0.7229167902,2.7591250777,-0.184867548,"https://salsa.debian.org/pkg-security-team/sslsniff","https://github.com/moxie0/sslsniff.git",177.084849537,0,2,0,1,0,0,1,2,1,"1",2,1 +"st",-1.7905650767,0.6769505545,-2.3325670973,"https://salsa.debian.org/debian/st-console","https://github.com/nferraz/st",3551.6255439815,0,6,0,4,35,0,0,36,2,"2",2,1.97222222222222 +"starfighter",1.1315056363,2.4483606179,0.4071420536,"https://salsa.debian.org/fmneto-guest/starfighter","https://github.com/pr-starfighter/starfighter",4492.0575231482,7,18,0,11,15,0,0,17,3,"3",1.72,1.88235294117647 +"starjava",-0.5484854258,1.0238215507,-0.8398906165,"https://salsa.debian.org/debian-astro-team/starjava-topcat","https://github.com/Starlink/starjava/issues/new",2746.3319791667,2,17,0,0,0,0,0,29,2,"2",1.89473684210526,1 +"starjava",-0.6975561907,0.0612089874,-0.8309402362,"https://salsa.debian.org/debian-astro-team/starjava-ttools","https://github.com/Starlink/starjava/issues/new",2746.3319791667,2,17,0,0,0,0,0,29,2,"2",1.89473684210526,1 +"starjava",-0.5724217622,0.5167921554,-0.7890780686,"https://salsa.debian.org/debian-astro-team/starjava-util","https://github.com/Starlink/starjava",5785.0740046296,2,26,0,10,26,0,0,29,4,"4",1.92857142857143,1.89655172413793 +"Starman",-0.4167370479,0.4887372311,-0.5755472783,"https://salsa.debian.org/perl-team/modules/packages/starman","https://github.com/miyagawa/Starman/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"staticsite",-0.4550445168,2.6259534139,-1.4004015176,"https://salsa.debian.org/enrico/staticsite","https://github.com/spanezz/staticsite",2745.0971527778,0,7,1,5,10,0,0,11,1,"1",2,1.90909090909091 +"stex",-4.0668315454,-2.4954928101,-4.3496245401,"https://salsa.debian.org/debian/stex","https://github.com/dybvig/stex",1828.8861226852,1,7,0,3,5,0,0,6,1,"1",1.875,1.83333333333333 +"stlink",0.2330578642,3.0498837848,-0.4676802192,"https://github.com/bluca/stlink","https://github.com/bluca/stlink",4380.0284722222,78,192,0,121,3,0,0,124,3,"3",1.71111111111111,1.0241935483871 +"stress",0.7791794941,3.5368026661,-0.027963401,"https://salsa.debian.org/debian/stress","https://github.com/resurrecting-open-source-projects/stress",489.8052893519,0,3,0,2,7,0,0,7,1,"1",2,2 +"subdownloader",0.2576738138,1.416208065,-0.2677955961,"https://salsa.debian.org/python-team/packages/subdownloader","https://github.com/subdownloader/subdownloader",4731.6769560185,4,22,3,10,23,0,0,27,3,"3",1.84615384615385,1.85185185185185 +"subtitleeditor",0.4715189003,1.2173077891,0.045958129,"https://salsa.debian.org/debian/subtitleeditor","https://github.com/kitone/subtitleeditor",5679.7465856482,2,6,0,6,54,0,1,55,4,"4",1.75,1.98181818181818 +"pkg-subtle",-0.1057456347,2.6291844345,-1.1261393388,"http://github.com/formorer/pkg-subtle","http://github.com/formorer/pkg-subtle",305.3167708333,0,1,0,0,0,0,0,0,1,"1",2,NA +"subvertpy",-0.0856463379,0.9174986859,-0.5281506467,"https://salsa.debian.org/python-team/packages/subvertpy","https://github.com/jelmer/subvertpy",3827.0174421296,14,36,0,29,16,0,0,41,3,"3",1.72,1.39024390243902 +"suil",0.6666244731,2.9498824035,0.0198598554,"https://salsa.debian.org/multimedia-team/suil","https://github.com/lv2/suil.git",4625.665625,6,1,0,7,14,0,0,15,3,"3",1.14285714285714,1.93333333333333 +"sway",-0.0003144281,1.8211497146,-0.4602739815,"https://salsa.debian.org/swaywm-team/sway","https://github.com/swaywm/sway/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"lv2",0.0271485834,2.3196893623,-0.405826923,"https://salsa.debian.org/multimedia-team/swh-lv2","https://github.com/swh/lv2",4769.9272800926,1,14,0,7,17,0,1,19,3,"3",1.93333333333333,1.89473684210526 +"ladspa",0.7083949622,1.4520571608,0.2842081476,"https://salsa.debian.org/multimedia-team/swh-plugins","https://github.com/swh/ladspa.git",5572.5839930556,1,25,0,15,58,0,0,58,4,"4",1.96153846153846,2 +"swift-bench",-3.6971618893,-0.9738891515,-4.3114902928,"https://salsa.debian.org/openstack-team/services/swift-bench","https://github.com/openstack/swift-bench.git",4746.0268287037,8,47,0,37,2,0,0,39,3,"3",1.85454545454545,1.05128205128205 +"swupdate",-4.1380420208,-0.3765046535,-5.2410349606,"https://salsa.debian.org/debian/swupdate","https://github.com/sbabic/swupdate",3657.1083217593,179,6,0,128,0,0,1,129,2,"2",1.03243243243243,1 +"sxid",0.3383169662,2.494076504,-0.6427792124,"https://salsa.debian.org/debian/sxid","https://github.com/taem/sxid",1429.0293865741,0,1,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"synthv1",0.0241434868,1.3740935149,-0.399365925,"https://salsa.debian.org/multimedia-team/synthv1","https://github.com/rncbc/synthv1.git",4117.1360763889,0,14,0,3,15,0,0,15,3,"3",2,2 +"syrep",-0.3840410127,1.5663799383,-1.1500496799,"https://github.com/JonathonReinhart/syrep","https://github.com/JonathonReinhart/syrep",0.0023611111,1,1,0,1,2,0,0,3,1,"1",1.5,1.66666666666667 +"sysfsutils",1.4604939319,2.5043938068,0.8202891312,"https://git.hadrons.org/cgit/debian/pkgs/sysfsutils.git","https://github.com/linux-ras/sysfsutils/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"syslog-ng-debian",0.3360880552,0.5117634173,0.1859714072,"https://github.com/gcsideal/syslog-ng-debian","https://github.com/gcsideal/syslog-ng-debian",4178.4473842593,0,12,0,6,7,0,0,8,3,"3",2,1.875 +"ocaml-syslog",-0.9966573409,1.2541731317,-1.7322570063,"https://salsa.debian.org/ocaml-team/syslog-ocaml","https://github.com/geneanet/ocaml-syslog.git",690.8139351852,1,3,0,2,3,0,0,3,1,"1",1.75,2 +"system-config-printer",2.3553472865,3.3297611296,1.7170434503,"https://salsa.debian.org/gnome-team/system-config-printer","https://github.com/OpenPrinting/system-config-printer/commits/master",5185.326875,55,11,0,0,0,0,0,0,4,"4",1.16666666666667,NA +"systemd-bootchart",0.0589352376,2.4948219717,-0.5217369948,"https://salsa.debian.org/systemd-team/systemd-bootchart","https://github.com/systemd/systemd-bootchart",2813.8079282408,13,11,0,15,41,0,0,41,2,"2",1.45833333333333,2 +"systemd-cron",0.2435713073,1.0673184216,-0.1917909328,"https://salsa.debian.org/systemd-team/systemd-cron","https://github.com/systemd-cron/systemd-cron.git",3852.6322916667,2,17,0,15,36,0,0,42,3,"3",1.89473684210526,1.85714285714286 +"systemfixtures",-2.6293231508,-0.9364247044,-3.0058243691,"https://salsa.debian.org/python-team/modules/systemfixtures","https://github.com/testing-cabal/systemfixtures.git",2181.1332638889,4,4,0,5,9,0,0,9,1,"1",1.5,2 +"systray-mdstat",-0.4934338937,2.3728697502,-1.2391690443,"https://github.com/xtaran/systray-mdstat","https://github.com/xtaran/systray-mdstat",1731.2023611111,1,1,0,2,1,0,0,2,1,"1",1.5,1.5 +"systune",-0.2655422679,0.9388013102,-0.7018488457,"https://github.com/sudipm-mukherjee/systune.git","https://github.com/sudipm-mukherjee/systune.git",176.0601736111,1,4,0,2,3,0,0,3,1,"1",1.8,2 +"sysvinit",1.5203549982,1.687243769,1.3661977311,"https://salsa.debian.org/debian/sysvinit","https://github.com/slicer69/sysvinit",5198.3006944445,2,8,0,4,17,0,0,19,4,"4",1.8,1.89473684210526 +"PEGTL",-2.2004802085,0.2251806172,-2.7633878882,"https://salsa.debian.org/birger/tao-pegtl","https://github.com/taocpp/PEGTL/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"tap-plugins",0.09238064,1.3104592411,-0.1802167379,"https://salsa.debian.org/multimedia-team/tap-plugins","https://github.com/tomszilagyi/tap-plugins.git",5078.9168287037,3,8,0,0,2,0,0,2,4,"4",1.72727272727273,2 +"tclsignal",0.119740533,2.2371868408,-0.3075114676,"https://salsa.debian.org/tcltk-team/tcl-signal","https://github.com/wjoye/tclsignal",2449.858275463,1,4,0,3,4,0,0,4,1,"1",1.8,2 +"terminaltables",0.4124929606,3.3980129071,-0.3182990743,"https://git.progress-linux.org/users/daniel.baumann/debian/packages/terminaltables","https://github.com/matthewdeanmartin/terminaltables",2707.668125,1,11,0,9,4,0,0,12,1,"1",1.91666666666667,1.33333333333333 +"termrec",-0.546232522,1.7238998812,-0.9959233042,"https://github.com/kilobyte/termrec/tree/debian","https://github.com/kilobyte/termrec",5312.9533564815,0,2,0,1,8,0,0,8,4,"4",2,2 +"tesseract-lang-debian",0.323928139,1.2279995331,-0.0238272916,"https://github.com/AlexanderP/tesseract-lang-debian","https://github.com/AlexanderP/tesseract-lang-debian",1566.6614814815,0,5,0,3,2,0,0,3,1,"1",2,1.66666666666667 +"test-kitchen",-0.9210414384,1.3276246051,-1.6015563224,"https://salsa.debian.org/ruby-team/test-kitchen","https://github.com/test-kitchen/test-kitchen/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"testpath",0.178377175,1.4251577183,-0.1467982799,"https://salsa.debian.org/python-team/packages/testpath","https://github.com/jupyter/testpath.git",2578.9209490741,1,9,0,7,23,0,0,23,1,"1",1.9,2 +"brev-cls",-0.9042148426,0.8986607838,-1.4914577347,"https://salsa.debian.org/debian/tetex-brev","https://github.com/asgeirn/brev-cls.git",3127.5767708333,2,4,0,3,3,0,0,3,2,"2",1.66666666666667,2 +"tex-common",0.1512318896,0.2576765609,0.0745875585,"https://github.com/debian-tex/tex-common","https://github.com/debian-tex/tex-common",5410.6258333333,2,8,0,3,1,0,0,3,4,"4",1.8,1.33333333333333 +"tex-gyre",1.3108709384,3.2134416841,0.4567270817,"https://github.com/debian-tex/tex-gyre","https://github.com/debian-tex/tex-gyre",5218.6495833333,2,7,0,3,2,0,0,3,4,"4",1.77777777777778,1.66666666666667 +"texext",-0.4966012771,2.4692944946,-1.3814646844,"https://salsa.debian.org/python-team/packages/texext","https://github.com/matthew-brett/texext.git",2951.8081134259,0,5,0,4,11,0,0,11,2,"2",2,2 +"texinfo",1.2380835186,1.5944121073,0.9657638025,"https://github.com/debian-tex/texinfo","https://github.com/debian-tex/texinfo",5779.8813425926,3,9,0,5,6,0,0,6,4,"4",1.75,2 +"texlive-nonbin",1.1567962942,1.3629616108,0.9821522688,"https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-base","https://github.com/debian-tex/texlive-nonbin",4319.3633101852,4,9,0,6,2,0,0,6,3,"3",1.69230769230769,1.33333333333333 +"texlive-bin",0.977654239,1.2601203851,0.7506196709,"https://github.com/debian-tex/texlive-bin","https://github.com/debian-tex/texlive-bin",4308.437662037,3,11,0,5,3,0,0,5,3,"3",1.78571428571429,1.6 +"texlive-nonbin",0.8703298986,1.0658084365,0.7081177712,"https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-extra","https://github.com/debian-tex/texlive-nonbin",4319.3633101852,4,9,0,6,2,0,0,6,3,"3",1.69230769230769,1.33333333333333 +"texlive-nonbin",0.7296144256,1.0788261732,0.4593754059,"https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-lang","https://github.com/debian-tex/texlive-nonbin",4319.3633101852,4,9,0,6,2,0,0,6,3,"3",1.69230769230769,1.33333333333333 +"texworks",0.3457955776,1.3076412249,-0.0653044306,"https://github.com/debian-tex/texworks","https://github.com/debian-tex/texworks",4991.6789583333,1,9,0,5,2,0,0,5,4,"4",1.9,1.4 +"texworks-manual",0.1987398847,2.5940035152,-0.3212280071,"https://github.com/debian-tex/texworks-manual","https://github.com/debian-tex/texworks-manual",1933.1899652778,2,5,0,3,1,0,0,3,1,"1",1.71428571428571,1.33333333333333 +"thaixfonts",0.1281624612,0.8719218593,-0.2256916476,"https://salsa.debian.org/debian/thaixfonts","https://github.com/tlwg/thaixfonts/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"three.js",0.1158900848,1.6807050834,-0.3114096336,"https://salsa.debian.org/js-team/three.js","https://github.com/mrdoob/three.js/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"thunar-dropbox",0.1154555368,2.1832206667,-0.4180527247,"https://salsa.debian.org/xfce-extras-team/thunar-dropbox-plugin","https://github.com/jeinzi/thunar-dropbox.git",3052.1741319445,2,6,0,4,6,0,0,9,2,"2",1.75,1.66666666666667 +"timbl",-0.4012992985,1.3917222421,-0.9206654469,"https://salsa.debian.org/science-team/timbl","https://github.com/LanguageMachines/timbl.git",2913.2087384259,0,8,0,2,8,0,0,8,2,"2",2,2 +"tinyssh",-1.473292065,0.8649169728,-1.916526544,"https://salsa.debian.org/debian/tinyssh","https://github.com/janmojzis/tinyssh.git",3264.9232175926,1,18,0,10,66,0,0,67,2,"2",1.94736842105263,1.98507462686567 +"tp_smapi",0.8443233686,2.0576796454,0.2538706265,"https://salsa.debian.org/debian/tp-smapi","https://github.com/linux-thinkpad/tp_smapi",4476.6966550926,6,7,0,5,90,0,2,92,3,"3",1.53846153846154,1.97826086956522 +"tpm2-initramfs-tool",-1.4035912508,1.8041112115,-2.1934256167,"https://github.com/timchen119/tpm2-initramfs-tool","https://github.com/timchen119/tpm2-initramfs-tool",486.0112962963,0,2,0,0,6,0,0,6,1,"1",2,2 +"trace-cmd",0.0998974637,1.3978799562,-0.3546480844,"https://github.com/sudipm-mukherjee/trace-cmd.git","https://github.com/sudipm-mukherjee/trace-cmd.git",1314.92875,139,17,0,90,1,0,0,90,1,"1",1.10897435897436,1.01111111111111 +"trackballs",0.2450481241,1.0347559155,-0.1842061844,"https://salsa.debian.org/games-team/trackballs","https://github.com/trackballs/trackballs.git",2063.1770717593,6,7,0,7,20,0,0,20,1,"1",1.53846153846154,2 +"tran",-0.5507488829,1.9378847892,-1.0913812007,"https://github.com/kilobyte/tran/tree/debian","https://github.com/kilobyte/tran",4999.4501736111,0,1,0,1,3,0,0,3,4,"4",2,2 +"trayer-srg",0.7960935453,2.2360852153,0.1224095274,"https://salsa.debian.org/skangas/trayer","https://github.com/sargon/trayer-srg/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"triangle",-0.1711886516,3.1308185907,-1.215472085,"https://salsa.debian.org/science-team/triangle","https://github.com/libigl/triangle.git",2528.1501736111,2,7,0,5,8,0,0,8,1,"1",1.77777777777778,2 +"triggerhappy",1.5982884158,4.4832077788,0.3890624079,"https://github.com/wertarbyte/triggerhappy","https://github.com/wertarbyte/triggerhappy",2171.0642708333,5,5,0,7,41,0,0,44,1,"1",1.5,1.93181818181818 +"Trimage",1.2553852758,3.9585208411,0.1886888721,"https://salsa.debian.org/debian-phototools-team/trimage","https://github.com/Kilian/Trimage",4077.9117708333,2,17,0,9,64,0,0,66,3,"3",1.89473684210526,1.96969696969697 +"trinityrnaseq",-0.3652446175,1.4159966432,-0.9745313296,"https://salsa.debian.org/med-team/trinityrnaseq","https://github.com/trinityrnaseq/trinityrnaseq/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"trivial-features",0.2637949915,3.2767480587,-0.566814757,"https://salsa.debian.org/common-lisp-team/trivial-features","https://github.com/trivial-features/trivial-features",5548.6738657407,11,9,0,15,24,0,0,24,4,"4",1.45,2 +"trivial-gray-streams",-0.0499196075,1.9477808571,-0.5052595662,"https://salsa.debian.org/common-lisp-team/trivial-gray-streams","https://github.com/trivial-gray-streams/trivial-gray-streams/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"trocla",-1.1282943752,1.854915092,-2.1296966635,"https://salsa.debian.org/ruby-team/trocla","https://github.com/duritong/trocla",4222.9344444445,2,25,0,16,33,0,0,34,3,"3",1.92592592592593,1.97058823529412 +"trollsift",-2.0282713827,0.319975344,-2.4783042686,"https://salsa.debian.org/debian-gis-team/trollsift","https://github.com/pytroll/trollsift",3470.9592824074,4,15,0,12,21,0,0,22,2,"2",1.78947368421053,1.95454545454545 +"tslib-debian",0.1336789289,0.9994750001,-0.093473923,"https://github.com/merge/tslib-debian","https://github.com/merge/tslib-debian",1295.9506018519,2,3,0,1,1,0,0,1,1,"1",1.6,2 +"tty-clock",-0.284505417,0.4575702587,-0.4967187932,"https://github.com/anarcat/tty-clock/tree/debian","https://github.com/anarcat/tty-clock",3142.1821759259,0,24,0,13,1,0,0,14,2,"2",2,1.07142857142857 +"tweepy",0.3014929332,2.3332026362,-0.5274701476,"https://salsa.debian.org/python-team/packages/tweepy","https://github.com/tweepy/tweepy.git",5164.9313194445,72,189,0,197,21,0,0,215,4,"4",1.72413793103448,1.09767441860465 +"Twiggy",0.3100508018,4.0880000737,-0.8527826044,"https://salsa.debian.org/perl-team/modules/packages/twiggy","https://github.com/miyagawa/Twiggy/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"twms",-0.5922081551,1.2383570594,-1.1972199961,"https://salsa.debian.org/debian/twms","https://github.com/Komzpa/twms.git",2177.2821875,3,11,0,4,5,0,0,5,1,"1",1.78571428571429,2 +"uhub-debian",-0.2796838226,3.5742395891,-1.580799445,"https://github.com/tehnick/uhub-debian","https://github.com/tehnick/uhub-debian",4037.2023148148,0,1,0,1,1,0,0,2,3,"3",2,1.5 +"uim-chewing",-2.5213043929,-0.416096965,-2.9868668,"https://salsa.debian.org/debian/uim-chewing","https://github.com/uim/uim-chewing",1095.7200231482,0,1,0,0,0,0,0,0,1,"1",2,NA +"ukui-biometric-auth",-1.2310843043,0.7537049181,-1.6740612047,"https://github.com/ukui/ukui-biometric-auth","https://github.com/ukui/ukui-biometric-auth",1260.5815625,5,11,0,8,6,0,0,10,1,"1",1.6875,1.6 +"ukui-control-center",-2.2036628317,0.0511944606,-2.8931977038,"https://github.com/ukui/ukui-control-center","https://github.com/ukui/ukui-control-center",1921.8410069445,76,81,0,41,13,0,0,52,1,"1",1.51592356687898,1.25 +"ukui-indicators",-1.377804594,1.2157849638,-2.1158896015,"https://github.com/ukui/ukui-indicators","https://github.com/ukui/ukui-indicators",1239.8214814815,3,9,0,5,4,0,0,5,1,"1",1.75,1.8 +"ukui-power-manager",-0.3190978856,2.9128539736,-1.1219811752,"https://github.com/ukui/ukui-power-manager","https://github.com/ukui/ukui-power-manager",1544.224537037,3,19,0,9,9,0,0,14,1,"1",1.86363636363636,1.64285714285714 +"ukui-settings-daemon",0.1219875774,3.2976507371,-0.6818364877,"https://github.com/ukui/ukui-settings-daemon","https://github.com/ukui/ukui-settings-daemon",1595.2230439815,10,31,0,10,21,0,0,26,1,"1",1.75609756097561,1.80769230769231 +"ukui-themes",-0.5826962952,2.2384569095,-1.2986461297,"https://github.com/ukui/ukui-themes","https://github.com/ukui/ukui-themes",1509.1822916667,6,9,0,8,12,0,0,13,1,"1",1.6,1.92307692307692 +"umoci",-1.5049797774,0.5808986769,-2.0306653344,"https://salsa.debian.org/go-team/packages/umoci","https://github.com/opencontainers/umoci/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"unburden-home-dir",-0.501169023,0.195057165,-0.7613384703,"https://github.com/xtaran/unburden-home-dir","https://github.com/xtaran/unburden-home-dir",4201.5461342593,1,10,2,6,17,0,0,17,3,"3",1.90909090909091,2 +"underscore",0.5577202877,2.1670034109,0.0619794849,"https://salsa.debian.org/js-team/underscore","https://github.com/jashkenas/underscore.git",5084.8093171296,25,336,0,261,27,0,52,334,4,"4",1.93074792243767,1.08083832335329 +"Unhide",1.7061388819,3.8742874975,0.7376306506,"https://salsa.debian.org/pkg-security-team/unhide","https://github.com/YJesus/Unhide.git",991.7221296296,2,5,0,5,6,0,0,8,1,"1",1.71428571428571,1.75 +"unorm",-1.3130104406,0.8981282809,-1.8444156842,"https://salsa.debian.org/js-team/unorm.js","https://github.com/walling/unorm/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"unrar-nonfree",1.8473265605,3.1989063054,1.0595588445,"https://github.com/debian-calibre/unrar-nonfree","https://github.com/debian-calibre/unrar-nonfree",1876.6905902778,7,5,0,5,3,0,0,5,1,"1",1.41666666666667,1.6 +"unrardll",-0.7960021888,0.5888362105,-1.105938125,"https://github.com/debian-calibre/unrardll","https://github.com/debian-calibre/unrardll",1864.0022916667,0,4,0,3,1,0,0,3,1,"1",2,1.33333333333333 +"vagalume",-1.4511274237,-0.9732880608,-1.5424132302,"https://salsa.debian.org/berto/vagalume","https://github.com/bertogg/vagalume",2090.3450578704,26,3,0,19,0,0,0,19,1,"1",1.10344827586207,1 +"vagrant",0.2299619618,0.6284669987,0.0013114431,"https://salsa.debian.org/ruby-team/vagrant","https://github.com/hashicorp/vagrant/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"valabind",-1.2435397352,-0.3428907439,-1.6087950787,"https://salsa.debian.org/debian/valabind","https://github.com/radare/valabind",4839.9819560185,6,19,0,15,41,0,0,42,3,"3",1.76,1.97619047619048 +"valinor",-2.9368505692,-1.1020102649,-3.3193721608,"https://salsa.debian.org/python-team/packages/valinor","https://github.com/ARMmbed/valinor.git",1839.1786805556,3,12,0,9,17,0,0,17,1,"1",1.8,2 +"variantslib",-2.0986968646,0.447590858,-2.6103147834,"https://salsa.debian.org/ocaml-team/variantslib","https://github.com/janestreet/variantslib.git",3865.5561921296,0,7,0,5,3,0,0,8,3,"3",2,1.375 +"vcversioner",0.242716431,2.8314661474,-0.3332608567,"https://salsa.debian.org/python-team/packages/vcversioner","https://github.com/habnabit/vcversioner",1010.4509143519,0,4,0,2,18,0,0,18,1,"1",2,2 +"vfu-deb",0.7502192139,2.4194817119,-0.0549697238,"https://github.com/bbonev/vfu-deb","https://github.com/bbonev/vfu-deb",1063.877025463,0,1,0,1,0,0,0,1,1,"1",2,1 +"vim-autopep8",0.2098655728,3.1531229671,-0.5592658877,"https://salsa.debian.org/python-team/packages/vim-autopep8","https://github.com/tell-k/vim-autopep8.git",1821.7416782407,1,10,0,7,52,0,0,52,1,"1",1.90909090909091,2 +"command-t",-0.281217187,1.711936341,-0.8034960415,"https://github.com/yrro/command-t","https://github.com/yrro/command-t",4589.5430092593,66,14,0,60,1,0,0,61,3,"3",1.175,1.01639344262295 +"volumeicon-debian",0.5582239179,2.4117054016,-0.1176545428,"https://github.com/mati75/volumeicon-debian.git","https://github.com/mati75/volumeicon-debian.git",4377.0106597222,0,5,0,3,1,0,0,3,3,"3",2,1.33333333333333 +"csg",-1.3015984703,-0.1291946736,-1.7236921975,"https://salsa.debian.org/debichem-team/votca-csg","https://github.com/votca/csg/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"vowpal_wabbit",1.6051587851,4.7879705553,0.3258945817,"http://github.com/yarikoptic/vowpal_wabbit","http://github.com/yarikoptic/vowpal_wabbit",3692.4062037037,66,280,0,0,0,0,0,0,2,"2",1.80924855491329,NA +"vows",-1.3939497745,0.3324247114,-1.7950844541,"https://salsa.debian.org/js-team/vows","https://github.com/cloudhead/vows/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"vpcs",0.5719602774,3.99052142,-0.2987031963,"https://github.com/dlintott/vpcs","https://github.com/dlintott/vpcs",302.5271875,0,2,0,2,1,0,0,2,1,"1",2,1.5 +"vpnc",0.7552132496,1.2426452707,0.4176316467,"https://salsa.debian.org/debian/vpnc","https://github.com/streambinder/vpnc",5629.8413888889,11,17,0,19,26,0,0,30,4,"4",1.60714285714286,1.86666666666667 +"vue-router",-2.7239892069,-0.137337361,-3.3068761493,"https://salsa.debian.org/js-team/vue-router.js","https://github.com/vuejs/vue-router/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"vue",-1.0931356092,1.0186682685,-1.5343339016,"https://salsa.debian.org/js-team/vue.js","https://github.com/vuejs/vue/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"link-checker",1.0779084142,3.0562972028,0.1151150994,"https://salsa.debian.org/perl-team/modules/packages/w3c-linkchecker","https://github.com/w3c/link-checker/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"emacs-w3m",-0.0316215167,0.794577588,-0.429835318,"https://salsa.debian.org/debian/w3m-el-snapshot","https://github.com/emacs-w3m/emacs-w3m",5732.8756134259,8,17,0,19,38,0,2,46,4,"4",1.68,1.82608695652174 +"wadc",-1.3114197782,1.1488153676,-1.8942921561,"https://github.com/jmtd/wadc","https://github.com/jmtd/wadc",2669.3253125,2,7,0,3,5,0,0,5,1,"1",1.77777777777778,2 +"wajig",-0.2563640933,-0.2041280932,-0.289877151,"https://github.com/gjwgit/wajig/wajig","https://github.com/gjwgit/wajig",4746.4752546296,1,8,0,5,1,0,0,5,3,"3",1.88888888888889,1.2 +"wakeonlan",0.5347762299,2.3981769483,-0.0392961396,"https://salsa.debian.org/debian/wakeonlan","https://github.com/jpoliv/wakeonlan/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"wavbreaker",-0.3043692646,1.3080197333,-0.6434518402,"https://salsa.debian.org/multimedia-team/wavbreaker","https://github.com/thp/wavbreaker.git",5680.2477546296,3,6,0,9,15,12,0,28,4,"4",1.66666666666667,1.53571428571429 +"wbar",0.7206963622,2.6363178504,-0.1640676109,"https://salsa.debian.org/debian/wbar","https://github.com/rodolf0/wbar",1881.7045949074,0,2,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"wcc",-2.4281741601,-0.9182887345,-2.9205469788,"https://salsa.debian.org/pkg-security-team/wcc","https://github.com/endrazine/wcc.git",2370.6538888889,7,12,0,16,41,0,4,45,1,"1",1.63157894736842,1.91111111111111 +"whysynth",1.6273877466,4.7945023636,0.3840495858,"https://salsa.debian.org/multimedia-team/whysynth","https://github.com/smbolton/whysynth.git",2132.1219444445,2,3,0,3,12,0,0,12,1,"1",1.6,2 +"wifite2",0.0691397747,1.3596647886,-0.2821965899,"https://salsa.debian.org/pkg-security-team/wifite","https://github.com/kimocoder/wifite2.git",3100.7875578704,19,31,0,35,28,0,0,57,2,"2",1.62,1.49122807017544 +"wiki2beamer",0.1072484039,2.9680033901,-0.7874436627,"https://salsa.debian.org/debian/wiki2beamer","https://github.com/wiki2beamer/wiki2beamer/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"wildmidi",1.1220449003,2.8689328624,0.3931106893,"https://salsa.debian.org/games-team/WildMIDI","https://github.com/psi29a/wildmidi.git",5284.7473726852,7,25,0,19,8,0,2,25,4,"4",1.78125,1.32 +"Willow",-0.3050026421,2.6837460292,-1.2006814281,"https://salsa.debian.org/python-team/packages/willow","https://github.com/torchbox/Willow/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"win-iconv",-0.1253180043,3.3611034506,-1.2784857777,"https://salsa.debian.org/debian/win-iconv","https://github.com/win-iconv/win-iconv",2428.4399189815,1,14,0,10,21,0,0,25,1,"1",1.93333333333333,1.84 +"winregfs",0.1505432946,2.5663630742,-0.3792554253,"https://salsa.debian.org/pkg-security-team/winregfs","https://github.com/jbruchon/winregfs",3358.8025694445,0,4,0,1,4,0,0,4,2,"2",2,2 +"wipe",0.0654274281,0.5099289571,-0.121010634,"https://salsa.debian.org/pkg-security-team/wipe","https://github.com/berke/wipe",5088.8252430556,3,5,0,3,11,0,0,12,4,"4",1.625,1.91666666666667 +"wiimms-iso-tools",-0.0137410528,2.2594017696,-0.6295812818,"https://salsa.debian.org/debian/wit","https://github.com/Wiimm/wiimms-iso-tools",764.4320717593,0,4,0,1,29,0,0,29,1,"1",2,2 +"with-simulated-input",-1.6136419534,0.6542791635,-2.0643984034,"https://salsa.debian.org/emacsen-team/with-simulated-input-el","https://github.com/DarwinAwardWinner/with-simulated-input.git",1593.3461921296,0,2,0,2,10,0,0,10,1,"1",2,2 +"wmaker",3.0318169815,3.5049705647,2.6333575748,"https://salsa.debian.org/wmaker-team/wmaker","https://github.com/window-maker/wmaker/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"wmbubble",0.3313340448,2.0551511806,-0.5004056988,"https://salsa.debian.org/wmaker-team/wmbubble","https://github.com/rnjacobs/wmbubble.git",3203.1598148148,0,5,0,2,5,0,0,5,2,"2",2,2 +"wmcoincoin",-1.1120470309,0.9428298773,-1.8126592182,"https://salsa.debian.org/wmaker-team/wmcoincoin","https://github.com/seeschloss/wmcoincoin/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"wmfrog",-0.6195008592,0.7362802602,-1.1251650057,"https://salsa.debian.org/wmaker-team/wmfrog","https://github.com/tcolar/wmfrog",4191.3952777778,0,7,0,2,2,0,0,2,3,"3",2,2 +"dockapps",0.2210226862,1.7529658495,-0.3718627509,"https://salsa.debian.org/wmaker-team/wmhdplop","https://github.com/window-maker/dockapps/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"wmpinboard",0.329930821,2.2481564254,-0.5833982398,"https://salsa.debian.org/wmaker-team/wmpinboard","https://github.com/bbidulock/wmpinboard.git",274.6021412037,0,3,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"wmsysmon",3.6819786619,6.9497194781,2.2222684502,"https://salsa.debian.org/wmaker-team/wmsysmon","https://github.com/voyageur/wmsysmon.git",1940.3190625,0,3,0,2,3,0,0,3,1,"1",2,2 +"wokkel",-0.7494414246,1.5960211892,-1.3587677327,"https://salsa.debian.org/python-team/packages/wokkel","https://github.com/ralphm/wokkel.git",4842.8803125,0,5,0,5,26,0,0,27,3,"3",2,1.96296296296296 +"wondershaper",2.1493592104,4.1791752632,1.0723154812,"https://github.com/leggewie-DM/wondershaper","https://github.com/leggewie-DM/wondershaper",3187.6698263889,2,1,0,2,2,0,0,4,2,"2",1.33333333333333,1.5 +"wreport",-0.1794776423,1.6143054556,-0.8172719944,"https://github.com/ARPA-SIMC/wreport","https://github.com/ARPA-SIMC/wreport",4700.94625,2,14,0,5,11,0,0,11,3,"3",1.875,2 +"wslay",-0.3233505839,2.0096579304,-1.031639712,"https://salsa.debian.org/debian/wslay","https://github.com/tatsuhiro-t/wslay",2229.7935185185,3,18,1,17,70,0,0,71,1,"1",1.85714285714286,1.98591549295775 +"wtf-peewee",-1.1933920451,1.3018762525,-1.741694338,"https://salsa.debian.org/python-team/packages/wtf-peewee","https://github.com/coleifer/wtf-peewee",4437.0799652778,3,18,0,15,46,0,0,46,3,"3",1.85714285714286,2 +"wxAstroCapture",0.3727354069,3.1734912044,-0.4080125191,"https://salsa.debian.org/science-team/wxastrocapture","https://github.com/wxAstro/wxAstroCapture",45.0595833333,0,3,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"wxGlade",-0.2335267372,0.1233893747,-0.4233597056,"https://salsa.debian.org/georgesk/wxglade","https://github.com/wxGlade/wxGlade/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"x11-touchscreen-calibrator",-0.1154983302,2.6722200137,-0.7875374212,"https://github.com/fourdollars/x11-touchscreen-calibrator","https://github.com/fourdollars/x11-touchscreen-calibrator",2225.1995717593,0,4,0,2,5,0,0,6,1,"1",2,1.83333333333333 +"x42-plugins",-0.1526190502,0.5990375172,-0.384890654,"https://salsa.debian.org/multimedia-team/x42-plugins","https://github.com/x42/x42-plugins",3642.2395023148,0,1,0,1,0,0,0,1,2,"2",2,1 +"xandikos",-1.700889354,-1.3947312282,-1.7687283402,"https://salsa.debian.org/jelmer/xandikos","https://github.com/jelmer/xandikos/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"xbomb.debian",2.5167931875,5.6510697336,1.1667397783,"https://github.com/alexdantas/xbomb.debian","https://github.com/alexdantas/xbomb.debian",472.1825347222,1,2,0,0,3,0,0,3,1,"1",1.66666666666667,2 +"xindy",0.1823763954,0.8822842515,-0.1274514217,"https://github.com/debian-tex/xindy","https://github.com/debian-tex/xindy",2719.8550694445,2,6,0,4,1,0,0,4,1,"1",1.75,1.25 +"xlsx2csv",0.199802941,2.3048255107,-0.3946294711,"https://salsa.debian.org/science-team/xlsx2csv","https://github.com/dilshod/xlsx2csv/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"xml-light",-0.3592724135,1.1896469114,-0.7772314943,"https://salsa.debian.org/ocaml-team/xml-light","https://github.com/ncannasse/xml-light.git",3963.0315046296,3,8,0,8,13,0,0,15,3,"3",1.72727272727273,1.86666666666667 +"xmountains",-0.6473598122,-0.4080618043,-0.6985149403,"https://salsa.debian.org/debian/xmountains","https://github.com/spbooth/xmountains/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"xnec2c",-0.2433745776,0.7919844064,-0.4889064627,"https://salsa.debian.org/debian-hamradio-team/xnec2c","https://github.com/KJ7LNW/xnec2c.git",5761.7881944445,5,7,0,8,22,0,0,22,4,"4",1.58333333333333,2 +"xplc",0.065119078,1.5804093595,-0.5441876363,"https://salsa.debian.org/debian/xplc","https://github.com/xplc/xplc/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"pkg-xppaut",0.480332333,2.5873961644,-0.4615269769,"https://github.com/neurodebian/pkg-xppaut","https://github.com/neurodebian/pkg-xppaut",171.362349537,6,2,0,3,0,0,0,3,1,"1",1.25,1 +"xprintidle",-0.1422188392,0.6249787453,-0.3518989739,"https://salsa.debian.org/debian/xprintidle","https://github.com/g0hl1n/xprintidle",3448.9179861111,2,6,2,2,15,0,0,15,2,"2",1.75,2 +"xsecurelock",-0.4681598236,2.8900823642,-1.3517451123,"https://github.com/google/xsecurelock/tree/debian","https://github.com/google/xsecurelock",3375.8872453704,17,12,2,18,50,0,0,63,2,"2",1.41379310344828,1.79365079365079 +"xtermcontrol",-0.0117403008,1.5858545623,-0.4569548478,"https://salsa.debian.org/debian/xtermcontrol","https://github.com/JessThrysoee/xtermcontrol.git",3429.399525463,0,2,0,1,17,0,0,17,2,"2",2,2 +"xtl",-4.7040789559,-1.5856206073,-5.4305613286,"https://github.com/quantstack-debian/xtl","https://github.com/quantstack-debian/xtl",1473.7952662037,0,3,0,2,1,0,0,3,1,"1",2,1.33333333333333 +"xttitle",0.8939077507,4.2706568139,-0.3819440692,"https://salsa.debian.org/debian/xttitle","https://github.com/mojotx/xttitle",2181.5912731482,2,3,0,2,2,0,0,2,1,"1",1.6,2 +"xwax",-0.5636629334,0.7271414205,-0.9498118303,"https://salsa.debian.org/multimedia-team/xwax","https://github.com/xwax/xwax.git",5550.8656712963,5,3,0,3,9,0,0,11,4,"4",1.375,1.81818181818182 +"xxdiff",0.9061004175,1.6510647261,0.4413690153,"https://salsa.debian.org/debian/xxdiff","https://github.com/blais/xxdiff.git",5451.0281134259,4,11,0,8,19,0,0,21,4,"4",1.73333333333333,1.9047619047619 +"xylib",0.6962815791,3.868426766,-0.2796991398,"https://salsa.debian.org/science-team/xylib","https://github.com/wojdyr/xylib",5291.0453703704,4,4,0,3,17,0,0,17,4,"4",1.5,2 +"yafc",-0.0272314962,0.4916391321,-0.3253666512,"https://salsa.debian.org/debian/yafc","https://github.com/sebastinas/yafc.git",4536.1716550926,4,14,0,13,27,0,0,28,3,"3",1.77777777777778,1.96428571428571 +"yagf-debian",1.2564818045,3.6319506109,0.2577483716,"https://github.com/tehnick/yagf-debian","https://github.com/tehnick/yagf-debian",2966.796875,2,1,0,2,3,0,0,3,2,"2",1.33333333333333,2 +"yagv",-0.2493109691,1.6805451528,-0.758268769,"https://salsa.debian.org/3dprinting-team/yagv","https://github.com/jonathanwin/yagv.git",1848.8749421296,0,6,0,2,24,0,0,24,1,"1",2,2 +"yajl",0.1436910943,0.8155419647,-0.0099540163,"https://github.com/jstamp/yajl","https://github.com/jstamp/yajl",5069.733125,7,28,0,22,4,0,0,23,4,"4",1.8,1.17391304347826 +"yubikey-personalization-gui-dpkg",1.0660214443,4.6214252569,-0.0477907414,"https://github.com/Yubico/yubikey-personalization-gui-dpkg","https://github.com/Yubico/yubikey-personalization-gui-dpkg",1527.8557986111,0,2,0,2,5,0,0,6,1,"1",2,1.83333333333333 +"yubikey-val-dpkg",-1.5796758821,0.5230579445,-2.2238855851,"https://github.com/Yubico/yubikey-val-dpkg","https://github.com/Yubico/yubikey-val-dpkg",2518.4995601852,1,7,0,6,3,0,0,6,1,"1",1.875,1.5 +"jay-yydebug",-2.4807565791,0.0572661247,-3.0016851771,"https://salsa.debian.org/java-team/yydebug","https://github.com/jruby/jay-yydebug",0.0429513889,0,1,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"zc.lockfile",-0.0210256384,1.5379599647,-0.4550360225,"https://salsa.debian.org/python-team/packages/zc-lockfile","https://github.com/zopefoundation/zc.lockfile",5245.5974305556,1,13,0,10,19,0,0,22,4,"4",1.92857142857143,1.86363636363636 +"zed",-0.7636785221,-0.0586954945,-1.0152692364,"https://salsa.debian.org/ocaml-team/zed","https://github.com/ocaml-community/zed.git",4544.7564699074,9,14,0,17,38,0,0,40,3,"3",1.60869565217391,1.95 +"ice-debian-packaging",-0.2246270386,-0.0796274635,-0.3178149444,"https://github.com/zeroc-ice/ice-debian-packaging.git","https://github.com/zeroc-ice/ice-debian-packaging.git",2730.2990046296,3,11,0,8,6,0,0,13,1,"1",1.78571428571429,1.46153846153846 +"0install-debian",-0.1790173309,0.2373414985,-0.3531189648,"https://github.com/0install/0install-debian","https://github.com/0install/0install-debian",5324.6795949074,19,12,0,3,0,0,0,3,4,"4",1.38709677419355,1 +"zfSnap",0.4772336214,3.1494825406,-0.4433726935,"https://github.com/jgoerzen/zfSnap","https://github.com/jgoerzen/zfSnap",4429.3288888889,1,13,0,2,1,0,0,3,3,"3",1.92857142857143,1.33333333333333 +"zktop",-1.6834481359,1.4483848388,-2.5079762953,"https://salsa.debian.org/python-team/packages/zktop","https://github.com/phunt/zktop.git",4096.6100115741,1,12,0,7,20,0,0,20,3,"3",1.92307692307692,2 +"zope.deprecation",-0.4002923161,1.2950694538,-0.80228492,"https://salsa.debian.org/python-team/packages/zope.deprecation","https://github.com/zopefoundation/zope.deprecation.git",5564.8963541667,6,19,0,22,15,0,0,26,4,"4",1.76,1.57692307692308 +"zope.event",0.48012603,2.4451618465,-0.0440353103,"https://salsa.debian.org/debian/zope.event","https://github.com/zopefoundation/zope.event",5503.5143634259,6,21,0,23,14,0,0,26,4,"4",1.77777777777778,1.53846153846154 +"zope.i18nmessageid",-0.5047792742,1.175715823,-1.0038159767,"https://salsa.debian.org/detiste-guest/zope.i18nmessageid","https://github.com/zopefoundation/zope.i18nmessageid",5530.7271759259,3,23,0,23,15,0,0,30,4,"4",1.88461538461538,1.5 +"zope.schema",-0.6711277163,0.5898602563,-1.0326400015,"https://salsa.debian.org/python-team/packages/zope.schema","https://github.com/zopefoundation/zope.schema",5503.5836458333,8,46,0,42,30,0,0,56,4,"4",1.85185185185185,1.53571428571429 +"zope.testing",-0.8046398038,0.1932317872,-1.1600868609,"https://salsa.debian.org/python-team/packages/zope.testing","https://github.com/zopefoundation/zope.testing",5685.8682638889,3,42,0,37,13,0,0,40,4,"4",1.93333333333333,1.325 +"zope.testrunner",-1.5178214231,-0.9479425765,-1.6556150569,"https://salsa.debian.org/python-team/packages/zope.testrunner","https://github.com/zopefoundation/zope.testrunner",4988.3216666667,11,30,0,30,32,0,0,40,4,"4",1.73170731707317,1.8 +"zpb-ttf",-0.5400082597,2.49952862,-1.5901447095,"https://salsa.debian.org/debian/zpb-ttf","https://github.com/xach/zpb-ttf",4273.1460416667,0,6,0,4,14,0,0,14,3,"3",2,2 +"7kaa",0.8733439141,3.7651893226,-0.0927531106,"https://salsa.debian.org/games-team/7kaa","https://github.com/the3dfxdude/7kaa",5126.7096643519,24,23,0,27,66,0,0,78,4,"4",1.48936170212766,1.84615384615385 +"acmetool",0.6219434866,2.6875450321,-0.2336905662,"https://salsa.debian.org/go-team/packages/acmetool","https://github.com/hlandau/acmetool",2727.716875,7,20,1,21,258,0,5,263,1,"1",1.74074074074074,1.98098859315589 +"actiona",0.2685921276,2.3898449586,-0.5658267823,"https://salsa.debian.org/debian/actiona","https://github.com/Jmgr/actiona",4932.3205439815,3,17,0,3,94,0,0,95,3,"3",1.85,1.98947368421053 +"activemq",-0.707743979,-0.252194711,-0.929017814,"https://salsa.debian.org/java-team/activemq","https://github.com/apache/activemq",5739.1228356482,56,141,2,130,160,0,0,217,4,"4",1.71573604060914,1.73732718894009 +"allegro5",-0.4762686219,-0.2153924343,-0.5311269802,"https://salsa.debian.org/games-team/allegro5","https://github.com/liballeg/allegro5.git",5772.8158680556,110,47,0,79,223,0,5,242,4,"4",1.29936305732484,1.92148760330579 +"ariba",-0.7249708667,0.7497238838,-1.1789923052,"https://salsa.debian.org/med-team/ariba","https://github.com/sanger-pathogens/ariba",3026.1963541667,10,22,0,16,112,0,8,122,2,"2",1.6875,1.91803278688525 +"asn1crypto",0.9740729842,4.1853024005,0.0865816737,"https://salsa.debian.org/python-team/packages/asn1crypto","https://github.com/wbond/asn1crypto.git",3074.7355092593,14,27,0,32,181,0,0,181,2,"2",1.65853658536585,2 +"asymptote",0.2396900664,0.5861261584,0.0399132445,"https://github.com/debian-tex/asymptote","https://github.com/debian-tex/asymptote",4223.6715162037,6,28,0,5,4,0,0,6,3,"3",1.82352941176471,1.66666666666667 +"aranym800-debian",0.2438262875,1.4111848908,-0.3223074512,"https://github.com/bobek/aranym800-debian","https://github.com/bobek/aranym800-debian",4083.2988773148,1,3,0,2,2,0,0,2,3,"3",1.75,2 +"atril",0.5207732379,1.2869272543,0.1522121334,"https://salsa.debian.org/debian-mate-team/atril","https://github.com/mate-desktop/atril.git",4392.8799768519,62,42,0,70,244,0,0,278,3,"3",1.40384615384615,1.87769784172662 +"audacity",2.0595760921,2.587904003,1.6528933115,"https://salsa.debian.org/multimedia-team/audacity","https://github.com/audacity/audacity.git",5069.8878125,215,104,0,197,438,0,8,538,4,"4",1.32601880877743,1.81412639405204 +"audioread",0.4790726237,2.8379723664,-0.2363043324,"https://salsa.debian.org/python-team/packages/audioread","https://github.com/sampsyo/audioread.git",4407.0006944445,7,21,0,23,126,0,0,127,3,"3",1.75,1.99212598425197 +"autorandr",-0.3527152165,0.3171262846,-0.518389331,"https://salsa.debian.org/debian/autorandr","https://github.com/phillipberndt/autorandr.git",4779.7076736111,55,58,0,90,351,0,0,363,3,"3",1.51327433628319,1.96694214876033 +"autosuspend",-1.9250458428,0.6278109958,-2.4672708111,"https://salsa.debian.org/python-team/packages/autosuspend","https://github.com/languitar/autosuspend.git",3337.5962847222,6,9,0,13,40,0,0,46,2,"2",1.6,1.8695652173913 +"backuppc",0.439136868,0.738905733,0.2133448427,"https://salsa.debian.org/debian/backuppc","https://github.com/backuppc/backuppc",4883.1674305556,21,39,0,40,225,0,31,267,3,"3",1.65,1.84269662921348 +"rsync-bpc",-2.9537265247,0.2336355318,-3.706230506,"https://salsa.debian.org/debian/backuppc-rsync","https://github.com/backuppc/rsync-bpc",2751.3212037037,2,9,0,6,43,0,0,43,2,"2",1.81818181818182,2 +"bambam",0.3070932851,2.5075958172,-0.3413586452,"https://github.com/porridge/bambam","https://github.com/porridge/bambam",5711.2973958333,24,13,0,23,24,0,1,35,4,"4",1.35135135135135,1.68571428571429 +"barclay",0.1851801588,3.0141581768,-0.6020424346,"https://salsa.debian.org/java-team/barclay","https://github.com/broadinstitute/barclay.git",2356.7614351852,7,7,0,8,27,0,1,28,1,"1",1.5,1.96428571428571 +"bart",-0.177815138,2.1254373642,-0.6372145565,"https://salsa.debian.org/med-team/bart","https://github.com/mrirecon/bart",3390.8110185185,61,30,0,41,83,0,0,89,2,"2",1.32967032967033,1.93258426966292 +"bd",-0.5709314067,1.7639710855,-1.0717735964,"https://salsa.debian.org/debian/bd","https://github.com/vigneshwaranr/bd.git",3272.7792476852,3,12,0,10,56,0,0,57,2,"2",1.8,1.98245614035088 +"Bear",-0.3900185941,0.5954929997,-0.59709973,"https://salsa.debian.org/sramacher/bear","https://github.com/rizsotto/Bear",3987.655787037,44,19,0,53,142,0,2,183,3,"3",1.3015873015873,1.77595628415301 +"beginend",-0.9812054474,1.1475644093,-1.4790757004,"https://salsa.debian.org/emacsen-team/beginend-el","https://github.com/DamienCassou/beginend.git",3077.3105208333,8,12,0,15,21,0,0,21,2,"2",1.6,2 +"benchmark",-0.4007419552,1.9221150293,-1.2040622803,"https://salsa.debian.org/science-team/benchmark","https://github.com/google/benchmark",3640.5849537037,257,68,3,283,68,0,0,319,2,"2",1.20923076923077,1.21316614420063 +"abc",-0.0691799173,1.1526418635,-0.3926880632,"https://salsa.debian.org/science-team/berkeley-abc","https://github.com/berkeley-abc/abc.git",5782.9116666667,8,47,0,40,75,0,0,104,4,"4",1.85454545454545,1.72115384615385 +"bernhard",-3.8249138229,-1.4329465737,-4.33451812,"https://salsa.debian.org/python-team/packages/bernhard","https://github.com/b20n/bernhard.git",2059.4699652778,0,14,0,11,32,0,0,32,1,"1",2,2 +"betamax",-2.6186759503,-1.7111544465,-2.7929647164,"https://salsa.debian.org/python-team/packages/betamax","https://github.com/sigmavirus24/betamax",3448.4558796296,7,33,2,31,93,0,0,97,2,"2",1.825,1.95876288659794 +"bfs",-1.1164889975,-0.5498955731,-1.1990984125,"https://salsa.debian.org/lamby/pkg-bfs","https://github.com/tavianator/bfs.git",2311.7626273148,11,10,0,19,35,0,0,42,1,"1",1.47619047619048,1.83333333333333 +"birdfont",0.1539215818,1.5207071994,-0.3971310294,"https://salsa.debian.org/fonts-team/birdfont","https://github.com/johanmattssonm/birdfont.git",4158.8272222222,6,15,0,15,135,0,0,138,3,"3",1.71428571428571,1.97826086956522 +"bitlbee",0.610414917,1.1334179745,0.2390336103,"https://github.com/bitlbee/bitlbee","https://github.com/bitlbee/bitlbee",5775.5242824074,54,55,0,72,85,0,0,108,4,"4",1.5045871559633,1.78703703703704 +"black",-0.2598583165,0.6526555806,-0.4835804983,"https://salsa.debian.org/python-team/packages/black","https://github.com/psf/black.git",2098.4397453704,441,11,0,416,699,0,0,1009,1,"1",1.02433628318584,1.69276511397423 +"BOSSA",0.0893999446,1.6612263593,-0.4163524525,"https://salsa.debian.org/science-team/bossa","https://github.com/shumatech/BOSSA.git",3233.4649537037,7,26,0,19,214,0,0,214,2,"2",1.78787878787879,2 +"bowtie2",-0.4173214178,-0.233072452,-0.4693075159,"https://salsa.debian.org/med-team/bowtie2","https://github.com/BenLangmead/bowtie2",4656.6302777778,6,51,0,28,425,0,1,427,3,"3",1.89473684210526,1.99531615925059 +"boxbackup",-0.8371100115,0.0115481538,-1.3264648158,"https://salsa.debian.org/debian/boxbackup","https://github.com/boxbackup/boxbackup.git",5737.3015625,2,18,0,6,16,0,3,21,4,"4",1.9,1.76190476190476 +"breathe",-0.9912135008,-0.8309389737,-1.0391354827,"https://salsa.debian.org/python-team/packages/breathe","https://github.com/michaeljones/breathe.git",5375.5645949074,34,85,0,91,286,0,0,313,4,"4",1.71428571428571,1.91373801916933 +"brewtarget",0.484432121,2.8570200814,-0.426583819,"https://salsa.debian.org/debian/brewtarget","https://github.com/Brewtarget/brewtarget.git",5451.574212963,13,84,0,55,134,0,15,163,4,"4",1.8659793814433,1.82208588957055 +"brise",-0.3080442577,1.0357450106,-0.6873683492,"https://salsa.debian.org/debian/brise","https://github.com/rime/brise",2544.8862615741,5,23,0,12,45,0,0,45,1,"1",1.82142857142857,2 +"brlaser",0.4072432263,2.1541552875,-0.0102827943,"https://salsa.debian.org/printing-team/brlaser","https://github.com/pdewacht/brlaser",3342.2059837963,4,11,0,13,27,0,3,40,2,"2",1.73333333333333,1.675 +"brotli",0.1260775007,0.5454426052,-0.0083599615,"https://salsa.debian.org/debian/brotli","https://github.com/google/brotli",3713.0230555556,77,45,0,97,42,0,5,134,2,"2",1.36885245901639,1.3134328358209 +"bruteforce-luks",0.4506857269,3.9309060924,-0.3441057365,"https://salsa.debian.org/pkg-security-team/bruteforce-luks","https://github.com/glv2/bruteforce-luks",1977.6153125,2,8,0,3,38,0,0,39,1,"1",1.8,1.97435897435897 +"brutespray",-0.0085744737,2.0622651196,-0.445603786,"https://salsa.debian.org/pkg-security-team/brutespray","https://github.com/x90skysn3k/brutespray",2174.873599537,7,10,0,8,19,0,0,21,1,"1",1.58823529411765,1.9047619047619 +"bump2version",-0.6601711919,1.365143433,-1.1463637777,"https://salsa.debian.org/debian/bumpversion","https://github.com/c4urself/bump2version",3866.5811574074,20,43,3,48,254,0,0,265,3,"3",1.68253968253968,1.95849056603774 +"bundler",0.575011715,1.5392481898,0.1010337669,"https://salsa.debian.org/ruby-team/bundler","https://github.com/carlhuda/bundler",4417.961099537,292,766,15,370,17,0,0,383,3,"3",1.72400756143667,1.0443864229765 +"bzflag",0.8319129626,1.4300701689,0.417821043,"https://salsa.debian.org/games-team/bzflag","https://github.com/BZFlag-Dev/bzflag.git",5782.5434259259,11,63,0,19,30,0,4,39,4,"4",1.85135135135135,1.76923076923077 +"c-ares",0.3441298781,1.1916406284,0.0308943148,"https://salsa.debian.org/debian/c-ares","https://github.com/c-ares/c-ares.git",5778.6172222222,133,22,0,136,66,0,0,177,4,"4",1.14193548387097,1.3728813559322 +"caja",1.057062654,1.8090309876,0.5578935766,"https://salsa.debian.org/debian-mate-team/caja","https://github.com/mate-desktop/caja.git",4392.0400925926,58,63,0,86,70,0,0,143,3,"3",1.52066115702479,1.48951048951049 +"caja-actions",0.1964661335,2.0196315905,-0.3640114639,"https://salsa.debian.org/debian-mate-team/caja-actions","https://github.com/mate-desktop/caja-actions",4195.368599537,3,13,0,7,3,0,0,8,3,"3",1.8125,1.375 +"caja-admin",0.3402863165,2.9173444791,-0.2366884449,"https://salsa.debian.org/debian-mate-team/caja-admin","https://github.com/infirit/caja-admin",2910.0051851852,15,12,0,17,15,0,0,24,2,"2",1.44444444444444,1.625 +"caja-dropbox",1.4193798685,4.6529613875,0.2366380339,"https://salsa.debian.org/debian-mate-team/caja-dropbox","https://github.com/mate-desktop/caja-dropbox.git",4038.0196990741,13,26,0,25,33,0,0,46,3,"3",1.66666666666667,1.71739130434783 +"caja-extensions",0.9911860003,3.1294289964,0.1496506623,"https://salsa.debian.org/debian-mate-team/caja-extensions","https://github.com/mate-desktop/caja-extensions.git",3680.0453125,11,27,0,20,70,0,0,72,2,"2",1.71052631578947,1.97222222222222 +"caja-mediainfo-tab",-0.6346427686,1.4919485733,-1.2169751217,"https://salsa.debian.org/debian-mate-team/caja-mediainfo","https://github.com/linux-man/caja-mediainfo-tab",1186.6267013889,1,3,0,1,4,0,0,4,1,"1",1.75,2 +"caja-rename",0.3395336681,2.9850659825,-0.2433789434,"https://salsa.debian.org/debian-mate-team/caja-rename","https://github.com/tari01/caja-rename",1145.7519328704,25,4,0,19,9,0,0,26,1,"1",1.13793103448276,1.34615384615385 +"camlp4",0.1711187334,1.4277083804,-0.1545568318,"https://salsa.debian.org/ocaml-team/camlp4","https://github.com/ocaml/camlp4.git",5404.4002199074,6,40,0,37,92,0,7,112,4,"4",1.8695652173913,1.82142857142857 +"Camomile",-0.1749647414,0.504631672,-0.4116548857,"https://salsa.debian.org/ocaml-team/camomile","https://github.com/yoriyuki/Camomile.git",3699.9040972222,2,16,0,11,42,0,0,43,2,"2",1.88888888888889,1.97674418604651 +"camp",-0.0635736976,2.2422646477,-0.8678185189,"https://salsa.debian.org/med-team/camp","https://github.com/IRCAD/camp.git",3917.821412037,2,16,0,8,2,0,0,9,3,"3",1.88888888888889,1.22222222222222 +"can-utils",-0.3151818427,1.0524810842,-0.6128426897,"https://salsa.debian.org/debian/can-utils","https://github.com/linux-can/can-utils.git",5750.4572916667,42,46,0,66,298,0,0,305,4,"4",1.52272727272727,1.97704918032787 +"cftime",-0.053984567,2.1351568503,-0.4726880086,"https://salsa.debian.org/debian-gis-team/cftime/","https://github.com/Unidata/cftime",5698.2503472222,7,40,1,25,111,0,0,112,4,"4",1.85106382978723,1.99107142857143 +"Charm",-0.4441384118,1.2230812043,-0.8796829957,"https://salsa.debian.org/qt-kde-team/extras/charmtimetracker","https://github.com/KDAB/Charm",5169.2869097222,10,73,1,44,89,0,0,100,4,"4",1.87951807228916,1.89 +"chaussette",-2.3973132585,0.1079287529,-3.3352905378,"https://github.com/circus-tent/chaussette","https://github.com/circus-tent/chaussette",1782.6774768519,1,42,0,30,80,0,0,81,1,"1",1.97674418604651,1.98765432098765 +"selinux",-0.0767985152,0.1858102911,-0.1733620099,"https://salsa.debian.org/selinux-team/checkpolicy","https://github.com/SELinuxProject/selinux",5592.8363425926,179,30,0,124,83,0,12,182,4,"4",1.14354066985646,1.45604395604396 +"CheeseCutter",-0.8909922436,1.8346147461,-1.5014964432,"https://salsa.debian.org/multimedia-team/cheesecutter","https://github.com/theyamo/CheeseCutter",2936.8167824074,4,11,0,7,20,0,0,21,2,"2",1.73333333333333,1.95238095238095 +"cheetah3",0.2580754956,1.2098434945,-0.0894485619,"https://salsa.debian.org/python-team/packages/cheetah","https://github.com/CheetahTemplate3/cheetah3.git",5732.7751157407,17,23,0,34,45,0,0,61,4,"4",1.575,1.73770491803279 +"chemical-mime",0.9334467969,3.3064633303,0.1037865392,"https://salsa.debian.org/debichem-team/chemical-mime-data","https://github.com/dleidert/chemical-mime",3567.6745833333,0,2,0,1,4,0,0,5,2,"2",2,1.8 +"CheMPS2",-1.0331384848,-0.1979810762,-1.3111906152,"https://salsa.debian.org/debichem-team/chemps2","https://github.com/SebWouters/CheMPS2",3010.6861342593,0,9,0,4,35,0,0,35,2,"2",2,2 +"chromaprint",0.3600324626,1.3936683063,0.0316097075,"https://salsa.debian.org/multimedia-team/chromaprint","https://github.com/acoustid/chromaprint",4607.495162037,12,19,3,25,78,0,3,89,3,"3",1.61290322580645,1.87640449438202 +"chuck",1.0629400647,3.5097730621,-0.0355368923,"https://salsa.debian.org/debian/chuck","https://github.com/ccrma/chuck",4777.8660300926,19,55,0,45,92,0,1,108,3,"3",1.74324324324324,1.85185185185185 +"CiderWebmail",-0.6952594282,1.439044732,-1.4225189003,"https://salsa.debian.org/perl-team/modules/packages/ciderwebmail","https://github.com/CiderWebmail/CiderWebmail.git",5148.9571990741,1,13,0,5,11,0,0,12,4,"4",1.92857142857143,1.91666666666667 +"CiftiLib",-2.2337114106,-0.584429453,-2.6009802633,"https://salsa.debian.org/med-team/ciftilib","https://github.com/Washington-University/CiftiLib",3498.0756944445,2,7,0,5,8,0,0,8,2,"2",1.77777777777778,2 +"CImg",-0.3086549748,0.4682516606,-0.6897965127,"https://salsa.debian.org/science-team/cimg","https://github.com/GreycLab/CImg.git",3104.3731481482,1,34,0,11,150,0,2,161,2,"2",1.97142857142857,1.93167701863354 +"cinnamon-session",0.2019726211,0.7003204043,-0.0198993963,"https://salsa.debian.org/cinnamon-team/cinnamon-session","https://github.com/linuxmint/cinnamon-session.git",3830.8484259259,16,29,0,34,77,0,0,77,3,"3",1.64444444444444,2 +"citeproc-py",0.2650734109,3.200403032,-0.5379993649,"https://salsa.debian.org/python-team/packages/citeproc-py","https://github.com/brechtm/citeproc-py",4168.381087963,3,13,0,14,52,0,0,53,3,"3",1.8125,1.9811320754717 +"cJSON",-0.6378303304,1.1377366916,-1.0824295673,"https://salsa.debian.org/debian/cjson","https://github.com/DaveGamble/cJSON.git",4334.9435300926,37,63,0,76,105,0,0,162,3,"3",1.63,1.64814814814815 +"clasp",-0.3006037836,-0.1147250554,-0.3428180636,"https://salsa.debian.org/science-team/clasp","https://github.com/potassco/clasp",3296.9262847222,3,6,0,2,37,0,0,37,2,"2",1.66666666666667,2 +"classified-ads",-2.2983699343,-0.0320591619,-2.7796278861,"https://github.com/operatornormal/classified-ads","https://github.com/operatornormal/classified-ads",3053.9196180556,5,9,0,8,10,0,0,12,2,"2",1.64285714285714,1.83333333333333 +"cld2",0.6043981268,3.0399456446,-0.1481790802,"https://salsa.debian.org/debian/cld2","https://github.com/CLD2Owners/cld2",808.2021875,0,8,0,2,41,0,1,42,1,"1",2,1.97619047619048 +"clinfo",0.3372645422,1.6891188178,-0.1400560842,"https://salsa.debian.org/opencl-team/clinfo","https://github.com/Oblomov/clinfo",3809.3789236111,7,13,0,14,92,0,0,93,3,"3",1.65,1.98924731182796 +"ClipIt",1.4937392865,3.438028355,0.6071495445,"https://salsa.debian.org/debian/clipit","https://github.com/CristianHenzel/ClipIt.git",3780.8276736111,15,24,0,21,246,0,0,247,3,"3",1.61538461538462,1.99595141700405 +"cloc",0.3407193618,2.1059135948,-0.1842658951,"https://salsa.debian.org/debian/cloc","https://github.com/AlDanial/cloc.git",3014.5104282408,24,101,0,108,550,0,2,569,2,"2",1.808,1.96660808435852 +"cm-super",0.5096098115,1.5619464554,0.0498213871,"https://github.com/debian-tex/cm-super","https://github.com/debian-tex/cm-super",5018.3687962963,2,6,0,3,1,0,0,3,4,"4",1.75,1.33333333333333 +"cmatrix",1.2823687579,3.3153936495,0.3805014383,"https://salsa.debian.org/debian/cmatrix","https://github.com/abishekvashok/cmatrix.git",2359.866400463,20,18,0,32,137,0,2,148,1,"1",1.47368421052632,1.92567567567568 +"colmap",-0.7206786583,0.6412726598,-1.2145608955,"https://salsa.debian.org/tar/colmap","https://github.com/colmap/colmap",2802.2067824074,103,16,0,103,432,0,0,503,2,"2",1.1344537815126,1.85884691848907 +"comitup",-1.522007504,0.0892141487,-1.9480210845,"https://github.com/davesteele/comitup","https://github.com/davesteele/comitup",2830.0050115741,9,13,0,8,73,0,1,78,2,"2",1.59090909090909,1.93589743589744 +"cool-retro-term",-0.1638065917,2.2338371828,-0.670026222,"https://salsa.debian.org/tar/cool-retro-term","https://github.com/Swordfish90/cool-retro-term",3050.8032175926,23,53,0,57,1087,0,26,1115,2,"2",1.69736842105263,1.97488789237668 +"coq",1.0112440064,1.8992232667,0.4540481704,"https://salsa.debian.org/ocaml-team/coq","https://github.com/coq/coq",5785.2775347222,56,228,4,231,16,0,362,596,4,"4",1.80281690140845,1.02684563758389 +"CppAD",-0.3030038415,2.0775944536,-0.851490117,"https://salsa.debian.org/science-team/cppad","https://github.com/coin-or/CppAD",5756.9988773148,3,15,0,12,46,0,0,50,4,"4",1.83333333333333,1.92 +"cppo",-1.4562480515,0.6841532188,-1.9614183142,"https://salsa.debian.org/ocaml-team/cppo","https://github.com/mjambon/cppo.git",1459.7919444445,3,28,0,18,53,0,0,53,1,"1",1.90322580645161,2 +"cppreference-doc-debian",0.7174863837,3.9751588838,-0.3114715055,"https://github.com/p12tic/cppreference-doc-debian","https://github.com/p12tic/cppreference-doc-debian",3405.6815740741,2,6,0,5,7,0,0,8,2,"2",1.75,1.875 +"CPU-X",-0.1831351513,2.2662774746,-0.7177695187,"https://salsa.debian.org/debian/cpu-x","https://github.com/X0rg/CPU-X.git",2770.4909606482,196,13,0,145,32,0,3,177,2,"2",1.0622009569378,1.18079096045198 +"cqrlib",-0.1411361724,1.4544569834,-0.4267040837,"https://salsa.debian.org/science-team/cqrlib","https://github.com/yayahjb/cqrlib.git",2926.9641203704,0,1,0,1,3,0,0,3,2,"2",2,2 +"critcl",0.1685050423,4.7425882465,-1.273547806,"https://salsa.debian.org/tcltk-team/critcl","https://github.com/andreas-kupries/critcl",5635.5840046296,1,15,2,12,40,0,0,43,4,"4",1.9375,1.93023255813953 +"CsoundQt",-0.414726718,0.4957472098,-0.6101873218,"https://salsa.debian.org/multimedia-team/csoundqt","https://github.com/CsoundQt/CsoundQt",5612.1172222222,7,49,3,16,87,0,7,97,4,"4",1.875,1.89690721649485 +"ctemplate",0.2254790855,1.2754696215,-0.1533076819,"https://salsa.debian.org/qt-kde-team/3rdparty/ctemplate","https://github.com/OlafvdSpek/ctemplate.git",5604.6906481482,3,11,0,8,43,0,0,44,4,"4",1.78571428571429,1.97727272727273 +"CubicSDR",0.1018461625,2.3388993412,-0.4986845369,"https://salsa.debian.org/debian-hamradio-team/cubicsdr","https://github.com/cjcliffe/CubicSDR.git",3287.5204976852,11,22,0,0,330,0,18,348,2,"2",1.66666666666667,1.94827586206897 +"custodia",-1.6751213621,-0.0779781476,-2.2266335422,"https://salsa.debian.org/freeipa-team/custodia","https://github.com/latchset/custodia.git",2105.2031134259,10,5,0,11,30,0,0,30,1,"1",1.33333333333333,2 +"cvxopt",0.2544257296,0.9059783526,-0.0500804801,"https://salsa.debian.org/science-team/cvxopt","https://github.com/cvxopt/cvxopt",3827.9446875,7,5,0,7,228,0,0,228,3,"3",1.41666666666667,2 +"cyrus-sasl",1.1677078747,1.456798419,0.9287245609,"https://salsa.debian.org/debian/cyrus-sasl2","https://github.com/cyrusimap/cyrus-sasl.git",5510.1634606482,61,36,0,68,147,0,0,171,4,"4",1.37113402061856,1.85964912280702 +"dashel",-0.5070603207,1.8556035661,-1.0587894431,"https://salsa.debian.org/science-team/dashel.git","https://github.com/aseba-community/dashel.git",4686.2267708333,3,17,0,11,13,0,0,15,3,"3",1.85,1.86666666666667 +"dbab",-1.9903650996,-0.4617475154,-2.5099356053,"https://salsa.debian.org/debian/dbab","https://github.com/suntong/dbab.git",3490.7212037037,1,6,0,4,7,0,1,10,2,"2",1.85714285714286,1.7 +"dcfldd",0.243299676,1.5128715597,-0.1742035117,"https://salsa.debian.org/debian/dcfldd","https://github.com/resurrecting-open-source-projects/dcfldd",1555.0382175926,1,5,0,4,11,0,0,11,1,"1",1.83333333333333,2 +"dcmstack",-0.2179064003,2.3843724616,-1.1543074519,"https://salsa.debian.org/med-team/dcmstack","https://github.com/moloney/dcmstack.git",4236.057650463,2,11,0,8,50,0,0,51,3,"3",1.84615384615385,1.98039215686275 +"ddccontrol-db",0.5375899278,3.040666398,-0.2040495598,"https://salsa.debian.org/debian/ddccontrol-db","https://github.com/ddccontrol/ddccontrol-db",5706.4213541667,83,21,0,89,218,0,0,220,4,"4",1.20192307692308,1.99090909090909 +"ddclient",2.2300979217,3.0092386237,1.6657756531,"https://salsa.debian.org/debian/ddclient","https://github.com/ddclient/ddclient.git",5769.1157986111,45,69,0,89,144,0,7,199,4,"4",1.60526315789474,1.72361809045226 +"debiman",-2.0205023232,-0.3691368262,-2.3529854163,"https://salsa.debian.org/go-team/packages/debiman","https://github.com/Debian/debiman.git",2469.6214583333,11,3,0,12,58,0,0,61,1,"1",1.21428571428571,1.95081967213115 +"deepdiff",-0.60032076,1.9943773022,-1.1853796171,"https://salsa.debian.org/python-team/packages/deepdiff","https://github.com/seperman/deepdiff.git",3349.8121875,21,67,0,59,387,0,0,390,2,"2",1.76136363636364,1.99230769230769 +"dehydrated-hook-ddns-tsig",-1.1498688177,0.3234067787,-1.4723938378,"https://salsa.debian.org/letsencrypt-team/dehydrated-hook-ddns-tsig","https://github.com/eferdman/dehydrated-hook-ddns-tsig.git",613.6095601852,3,7,0,5,13,0,0,13,1,"1",1.7,2 +"deken",-0.1773993382,1.8798950337,-0.6127948533,"https://salsa.debian.org/multimedia-team/pd/deken","https://github.com/pure-data/deken",3169.7776041667,5,17,1,9,50,0,0,50,2,"2",1.77272727272727,2 +"derpconf",-2.1632661335,-0.2479529966,-2.7160545081,"https://salsa.debian.org/python-team/packages/derpconf","https://github.com/globocom/derpconf",4088.1859490741,0,19,0,10,21,0,0,23,3,"3",2,1.91304347826087 +"detachtty",0.7286668661,3.7996202071,-0.4663424257,"https://salsa.debian.org/debian/detachtty","https://github.com/cosmos72/detachtty.git",5063.0382175926,2,3,0,4,4,0,0,5,4,"4",1.6,1.8 +"detox",0.0760137719,1.2444609771,-0.236573077,"https://salsa.debian.org/debian/detox","https://github.com/dharple/detox",2472.5849305556,3,6,0,5,44,0,0,44,1,"1",1.66666666666667,2 +"devtodo",-0.0964373601,0.5231337283,-0.4667575617,"https://salsa.debian.org/debian/devtodo","https://github.com/alecthomas/devtodo",4517.7004398148,2,2,0,1,5,0,0,5,3,"3",1.5,2 +"dfc",0.6249482733,2.6923246378,-0.1060154397,"https://salsa.debian.org/debian/dfc","https://github.com/rolinh/dfc",3944.7026157408,10,7,0,15,23,0,0,28,3,"3",1.41176470588235,1.82142857142857 +"dhcpcd-dbus",0.116885126,3.4089949811,-0.7932984933,"https://salsa.debian.org/debian/dhcpcd-dbus","https://github.com/kobolabs/dhcpcd-dbus.git",4098.2566550926,2,6,0,3,0,0,0,3,3,"3",1.75,1 +"dhcpcd-ui",-0.0122872414,2.5695283858,-0.8367345755,"https://salsa.debian.org/debian/dhcpcd-ui","https://github.com/NetworkConfiguration/dhcpcd-ui",5203.8271875,4,2,0,5,0,0,0,5,4,"4",1.33333333333333,1 +"dhcpcd",0.6815852227,1.5374108,0.1969854249,"https://salsa.debian.org/debian/dhcpcd","https://github.com/NetworkConfiguration/dhcpcd.git",5784.3856944445,64,17,0,56,18,0,0,59,4,"4",1.20987654320988,1.30508474576271 +"dhcpdump",1.4490750412,4.1456331911,0.3872406438,"https://github.com/bbonev/dhcpdump","https://github.com/bbonev/dhcpdump",112.9948032407,0,3,0,2,3,0,0,3,1,"1",2,2 +"DHCPig",-0.9872435316,1.3324162128,-1.5205038766,"https://salsa.debian.org/pkg-security-team/dhcpig","https://github.com/kamorin/DHCPig",1930.9329398148,0,7,0,7,22,0,0,24,1,"1",2,1.91666666666667 +"dhewm3",-0.2903203144,1.9161738096,-0.7863581959,"https://salsa.debian.org/games-team/dhewm3","https://github.com/dhewm/dhewm3.git",4378.332974537,36,21,0,41,120,0,7,144,3,"3",1.36842105263158,1.83333333333333 +"diffuse",0.6569991928,3.1825265926,-0.1258422859,"https://salsa.debian.org/debian/diffuse","https://github.com/MightyCreak/diffuse.git",2779.0936226852,15,12,0,21,61,0,0,61,2,"2",1.44444444444444,2 +"dill",-0.0692957122,2.3594211277,-0.5014890362,"https://salsa.debian.org/python-team/packages/dill","https://github.com/uqfoundation/dill",5216.8620486111,22,27,2,41,513,0,0,513,4,"4",1.55102040816327,2 +"direwolf",-0.1430216901,1.3707430635,-0.6200279656,"https://salsa.debian.org/debian-hamradio-team/direwolf","https://github.com/wb2osz/direwolf",2351.9412615741,7,18,1,0,251,0,1,252,1,"1",1.72,1.99603174603175 +"django-auth-ldap",-0.7351113605,0.589742959,-1.162005947,"https://salsa.debian.org/python-team/packages/django-auth-ldap","https://github.com/django-auth-ldap/django-auth-ldap.git",5095.4516550926,18,22,0,24,215,0,0,223,4,"4",1.55,1.96412556053812 +"django-classy-tags",-0.7401841635,0.9848619547,-1.3980531867,"https://salsa.debian.org/python-team/packages/django-classy-tags","https://github.com/django-cms/django-classy-tags",4877.1677893519,15,16,2,22,70,0,0,70,3,"3",1.51612903225806,2 +"django-countries",-0.5347084486,1.3547470964,-1.2788572175,"https://salsa.debian.org/python-team/packages/django-countries","https://github.com/SmileyChris/django-countries",4972.680625,16,45,0,50,303,0,0,314,3,"3",1.73770491803279,1.96496815286624 +"django-fsm",-1.2455924049,1.7684823777,-1.9508426508,"https://salsa.debian.org/python-team/packages/django-fsm","https://github.com/viewflow/django-fsm",4622.1760763889,28,45,0,58,257,0,0,258,3,"3",1.61643835616438,1.99612403100775 +"django-haystack",-0.3668845966,1.4515254842,-0.931809609,"https://salsa.debian.org/python-team/packages/django-haystack","https://github.com/django-haystack/django-haystack",5440.2651388889,100,135,5,183,156,0,0,323,4,"4",1.57446808510638,1.48297213622291 +"pkg-django-hijack",-2.1622270176,0.0257030995,-2.8657585957,"https://github.com/Linaro/pkg-django-hijack.git","https://github.com/Linaro/pkg-django-hijack.git",1013.9897106482,0,2,0,1,0,0,0,1,1,"1",2,1 +"django-housekeeping",-0.869454572,1.948090224,-1.6153462575,"https://salsa.debian.org/python-team/packages/django-housekeeping","https://github.com/spanezz/django-housekeeping.git",2311.2066087963,0,4,0,3,4,0,0,5,1,"1",2,1.8 +"django-ipware",-0.186701027,3.4775277787,-1.1364140371,"https://salsa.debian.org/python-team/packages/django-ipware","https://github.com/un33k/django-ipware",3876.7555324074,23,8,0,26,86,0,1,87,3,"3",1.25806451612903,1.98850574712644 +"django-modeltranslation",-1.5133383269,0.6332844289,-2.2136337591,"https://salsa.debian.org/python-team/packages/django-modeltranslation","https://github.com/deschler/django-modeltranslation.git",5393.628900463,39,78,0,93,559,0,1,562,4,"4",1.66666666666667,1.99466192170819 +"django-polymorphic",-0.9862725279,0.7261077657,-1.6214857875,"https://salsa.debian.org/python-team/packages/django-polymorphic","https://github.com/django-polymorphic/django-polymorphic",5078.6096990741,41,80,1,100,253,0,0,305,4,"4",1.66115702479339,1.82950819672131 +"django-prometheus",-2.2603160573,-0.4381341974,-2.7422527304,"https://salsa.debian.org/python-team/packages/django-prometheus","https://github.com/korfuri/django-prometheus",3173.3548148148,32,30,0,50,294,0,0,294,2,"2",1.48387096774194,2 +"django-python3-ldap",-1.220695241,0.9816108419,-1.7104148484,"https://salsa.debian.org/python-team/packages/django-python3-ldap","https://github.com/etianen/django-python3-ldap",3090.7084259259,4,28,0,25,204,0,0,208,2,"2",1.875,1.98076923076923 +"django-sitetree",-1.1970109861,0.3805270522,-1.67880198,"https://salsa.debian.org/python-team/packages/django-sitetree","https://github.com/idlesign/django-sitetree",4549.666712963,6,42,0,36,185,0,0,185,3,"3",1.875,2 +"django-sortedm2m",-2.3457198242,-0.0825384392,-2.7865717155,"https://salsa.debian.org/python-team/packages/django-sortedm2m","https://github.com/jazzband/django-sortedm2m.git",4988.0868287037,13,51,0,48,177,0,0,178,4,"4",1.796875,1.99438202247191 +"dma",0.9255897857,2.1311120692,0.2618365609,"https://salsa.debian.org/debian/dma","https://github.com/corecode/dma.git",4350.2836574074,26,18,0,30,98,0,0,99,3,"3",1.40909090909091,1.98989898989899 +"dmrconfig",-4.4180298219,-0.9106394342,-5.3737002754,"https://salsa.debian.org/debian-hamradio-team/dmrconfig","https://github.com/OpenRTX/dmrconfig.git",1907.596412037,5,9,0,11,74,0,2,76,1,"1",1.64285714285714,1.97368421052632 +"dnspython",1.1275058498,2.6742605707,0.4158531709,"https://salsa.debian.org/python-team/packages/dnspython","https://github.com/rthalley/dnspython.git",5665.3041087963,41,93,0,107,427,0,2,460,4,"4",1.69402985074627,1.92826086956522 +"dnsruby",-0.234176424,1.5390828902,-0.6784148131,"https://salsa.debian.org/ruby-team/ruby-dnsruby","https://github.com/alexdalitz/dnsruby.git",5594.1314467593,4,31,0,23,77,0,3,82,4,"4",1.88571428571429,1.9390243902439 +"Doris",-3.2514630416,-2.7560514844,-3.3329815998,"https://salsa.debian.org/debian-gis-team/doris","https://github.com/TUDelftGeodesy/Doris",371.9438888889,0,6,0,3,31,0,0,33,1,"1",2,1.93939393939394 +"dosage",-0.7866623156,0.1614581475,-1.1313932158,"https://salsa.debian.org/debian/dosage","https://github.com/webcomics/dosage",4186.6960185185,22,40,1,51,112,0,0,122,3,"3",1.64516129032258,1.91803278688525 +"dosfstools",0.9576699829,1.4464254542,0.6170237773,"https://salsa.debian.org/debian/dosfstools","https://github.com/dosfstools/dosfstools.git",3911.4083101852,49,15,0,39,137,0,0,155,3,"3",1.234375,1.88387096774194 +"dpmb",-0.6691898306,1.5148767963,-1.1659559787,"https://github.com/dpmb/dpmb","https://github.com/dpmb/dpmb",3025.1458101852,5,11,1,7,14,0,0,15,2,"2",1.6875,1.93333333333333 +"dq",-0.1834293154,2.1580450192,-0.7499592676,"https://salsa.debian.org/debian/dq","https://github.com/janmojzis/dq.git",2922.0256712963,0,7,0,1,3,0,0,3,2,"2",2,2 +"drf-extensions",-1.5711074271,0.582669346,-2.2334265763,"https://salsa.debian.org/python-team/packages/drf-extensions","https://github.com/chibisov/drf-extensions.git",3758.3081018519,37,33,0,52,293,0,0,293,2,"2",1.47142857142857,2 +"drf-generators",-1.0791841561,1.9108535938,-1.8015507649,"https://salsa.debian.org/python-team/packages/drf-generators","https://github.com/brobin/drf-generators",1981.457962963,4,10,0,9,39,0,0,39,1,"1",1.71428571428571,2 +"driftnet",-0.3021441377,0.4582796981,-0.6160981524,"https://github.com/deiv/driftnet","https://github.com/deiv/driftnet",3936.0659722222,4,6,0,5,58,0,0,58,3,"3",1.6,2 +"drmaa-python",-0.9229869282,0.8943517279,-1.5388923357,"https://salsa.debian.org/med-team/drmaa","https://github.com/pygridtools/drmaa-python",3564.105462963,9,12,0,13,58,0,4,63,2,"2",1.57142857142857,1.92063492063492 +"drmips",-0.9190476493,1.6685906624,-1.6412123268,"https://github.com/brunonova/drmips/tree/debian","https://github.com/brunonova/drmips",3165.66125,3,3,0,4,0,0,0,4,2,"2",1.5,1 +"dropbear",0.4812175514,0.9754576643,0.1540354658,"https://salsa.debian.org/debian/dropbear","https://github.com/mkj/dropbear",5772.037037037,39,54,0,67,213,0,0,225,4,"4",1.58064516129032,1.94666666666667 +"dropwatch",-1.1991262604,1.5250708737,-1.8285406941,"https://salsa.debian.org/debian/dropwatch","https://github.com/nhorman/dropwatch",5326.1496296296,3,24,0,17,70,0,0,72,4,"4",1.88888888888889,1.97222222222222 +"dunst",0.3669983163,1.1637822615,0.0070676604,"https://salsa.debian.org/debian/dunst","https://github.com/dunst-project/dunst",4447.0045601852,43,111,1,126,562,0,26,653,3,"3",1.72077922077922,1.86064318529862 +"DustRacing2D",0.1730330143,3.1219082568,-0.6411485316,"https://salsa.debian.org/pino/dustrac","https://github.com/juzzlin/DustRacing2D.git",4428.4226851852,8,9,0,11,36,0,1,37,3,"3",1.52941176470588,1.97297297297297 +"e2guardian",-0.4962046033,0.8559279449,-0.8848150366,"https://salsa.debian.org/debian-edu-pkg-team/e2guardian","https://github.com/e2guardian/e2guardian",3743.8510416667,10,60,4,20,68,0,4,84,2,"2",1.85714285714286,1.80952380952381 +"editorconfig-core-c",1.5887281662,4.6075180153,0.4803432984,"https://salsa.debian.org/debian/editorconfig-core","https://github.com/editorconfig/editorconfig-core-c.git",4345.1404861111,23,19,0,32,52,0,2,54,3,"3",1.45238095238095,1.96296296296296 +"editra",-0.2633359349,1.1859959258,-0.7394398489,"https://github.com/mogaal/editra","https://github.com/mogaal/editra",1762.9254398148,0,2,0,1,2,0,0,3,1,"1",2,1.66666666666667 +"efivar",1.2395472847,3.1409084649,0.4366490781,"https://salsa.debian.org/efi-team/efivar","https://github.com/rhinstaller/efivar.git",3854.9068634259,62,9,0,62,181,0,0,184,3,"3",1.12676056338028,1.98369565217391 +"eggdrop-debian",0.690268777,1.6966766009,0.0747126473,"https://github.com/yastupin/eggdrop-debian","https://github.com/yastupin/eggdrop-debian",1023.9554166667,0,1,0,1,2,0,0,2,1,"1",2,2 +"egl-wayland",0.0316178932,1.8159648449,-0.3538526989,"https://salsa.debian.org/debian/egl-wayland","https://github.com/NVIDIA/egl-wayland.git",2464.5272800926,13,9,0,14,170,0,0,172,1,"1",1.40909090909091,1.98837209302326 +"eiciel",-0.3913934912,0.2845531206,-0.6225036497,"https://salsa.debian.org/debian/eiciel","https://github.com/rofirrim/eiciel",4391.8161689815,58,10,0,42,13,0,0,46,3,"3",1.14705882352941,1.28260869565217 +"eiskaltdcpp-debian",0.4505650107,2.0973490193,-0.2886793088,"https://github.com/eiskaltdcpp/eiskaltdcpp-debian","https://github.com/eiskaltdcpp/eiskaltdcpp-debian",3513.9242361111,0,2,0,2,3,0,0,3,2,"2",2,2 +"eja",-2.7925237394,1.0154047624,-3.9912920842,"https://github.com/ubaldus/eja","https://github.com/ubaldus/eja",3036.7696296296,0,5,0,3,3,0,0,4,2,"2",2,1.75 +"elastalert",-2.7490522153,-1.0382477163,-3.253107753,"https://salsa.debian.org/debian/elastalert","https://github.com/Yelp/elastalert.git",2822.0809490741,46,241,0,181,234,0,4,371,2,"2",1.8397212543554,1.63072776280323 +"emacs-git-messenger",-0.7394110957,1.3440255665,-1.1759453412,"https://salsa.debian.org/emacsen-team/emacs-git-messenger","https://github.com/syohex/emacs-git-messenger.git",3062.6,2,8,0,7,23,0,0,23,2,"2",1.8,2 +"git-modes",-0.5095691095,1.8818747091,-0.9450708252,"https://salsa.debian.org/emacsen-team/emacs-git-modes","https://github.com/magit/git-modes.git",4898.4598032408,8,34,0,39,64,0,0,75,3,"3",1.80952380952381,1.85333333333333 +"emacs-jedi",-0.5925564326,1.6685968963,-1.0626804159,"https://salsa.debian.org/emacsen-team/emacs-jedi","https://github.com/tkf/emacs-jedi.git",3462.8411458333,5,28,0,30,288,0,2,290,2,"2",1.84848484848485,1.99310344827586 +"emacspeak",-0.3098123339,0.154967146,-0.6063949443,"https://salsa.debian.org/a11y-team/emacspeak","https://github.com/tvraman/emacspeak.git",5784.5154976852,1,16,0,7,53,0,0,53,4,"4",1.94117647058824,2 +"enchant",0.4671232701,2.6138489169,-0.0641062097,"https://salsa.debian.org/gnome-team/enchant-2/","https://github.com/AbiWord/enchant.git",5773.2183333333,7,27,0,26,105,0,1,112,4,"4",1.79411764705882,1.9375 +"engrampa",0.3364707225,1.2009801373,-0.0018104828,"https://salsa.debian.org/debian-mate-team/engrampa","https://github.com/mate-desktop/engrampa.git",4345.1016319445,27,39,0,38,189,0,0,191,3,"3",1.59090909090909,1.98952879581152 +"erlware_commons",-1.8744095819,0.8786023846,-2.6652549432,"https://salsa.debian.org/erlang-team/packages/erlang-erlware-commons","https://github.com/erlware/erlware_commons.git",4657.9532060185,8,37,0,28,72,0,0,72,3,"3",1.82222222222222,2 +"folsom",-1.800386042,0.5181389354,-2.3318647887,"https://salsa.debian.org/erlang-team/packages/erlang-folsom","https://github.com/boundary/folsom.git",1470.0027777778,3,37,0,30,72,0,0,75,1,"1",1.925,1.96 +"jiffy",0.1668501203,2.4255381931,-0.3758394191,"https://salsa.debian.org/erlang-team/packages/erlang-jiffy","https://github.com/davisp/jiffy.git",3978.8049884259,23,14,0,27,227,0,0,227,3,"3",1.37837837837838,2 +"erlang-jose",-0.0923635531,2.3327857993,-0.5705493125,"https://salsa.debian.org/ejabberd-packaging-team/erlang-jose","https://github.com/potatosalad/erlang-jose.git",3054.6266782407,10,30,0,29,125,0,0,125,2,"2",1.75,2 +"lager",0.1330257958,2.1705993041,-0.3821435959,"https://salsa.debian.org/ejabberd-packaging-team/erlang-lager","https://github.com/erlang-lager/lager.git",4513.8316435185,17,130,0,101,372,0,1,377,3,"3",1.8843537414966,1.9867374005305 +"meck",-1.7847622485,-0.6288022984,-2.0590391976,"https://salsa.debian.org/erlang-team/packages/erlang-meck","https://github.com/eproxus/meck.git",4901.9858333333,34,45,0,52,158,0,9,176,3,"3",1.56962025316456,1.89772727272727 +"fast_tls",-0.157152573,1.1095215195,-0.4106607165,"https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-tls","https://github.com/processone/fast_tls.git",3904.2279282408,5,26,0,18,52,0,0,56,3,"3",1.83870967741935,1.92857142857143 +"eredis",-0.9857886966,1.2120613864,-1.431244437,"https://salsa.debian.org/ejabberd-packaging-team/erlang-redis-client","https://github.com/wooga/eredis.git",2851.9773842593,2,48,0,34,122,0,0,123,2,"2",1.96,1.99186991869919 +"eshell-git-prompt",-0.9609411721,1.6959194934,-1.5424020682,"https://salsa.debian.org/emacsen-team/eshell-git-prompt","https://github.com/xuchunyang/eshell-git-prompt.git",2545.7433564815,1,11,0,6,11,0,0,11,1,"1",1.91666666666667,2 +"espeakup",-0.5060781696,0.017914626,-0.7493763311,"https://salsa.debian.org/a11y-team/espeakup","https://github.com/williamh/espeakup",4725.7581134259,2,6,0,4,0,0,0,4,3,"3",1.75,1 +"ettercap",0.3516997318,0.9604770242,0.005454292,"https://salsa.debian.org/pkg-security-team/ettercap","https://github.com/Ettercap/ettercap.git",4364.9420717593,13,80,0,48,36,0,12,84,3,"3",1.86021505376344,1.42857142857143 +"evilwm",0.1058350749,1.7709141502,-0.5887613795,"https://github.com/mati75/evilwm.git","https://github.com/mati75/evilwm.git",3558.3624189815,0,7,0,4,4,0,0,5,2,"2",2,1.8 +"evqueue-core",-3.8008904307,0.0055401804,-5.0310894983,"https://github.com/coldsource/evqueue-core","https://github.com/coldsource/evqueue-core",3176.9503935185,0,23,0,4,7,0,1,9,2,"2",2,1.77777777777778 +"exabgp",-0.5661496323,0.4143666278,-0.9529715,"https://github.com/Exa-Networks/exabgp/tree/debian/sid","https://github.com/Exa-Networks/exabgp",5211.7322222222,28,135,5,103,93,0,40,211,4,"4",1.82822085889571,1.44075829383886 +"f3",0.2679415625,2.6534869606,-0.2923376765,"https://salsa.debian.org/debian/f3","https://github.com/AltraMayor/f3.git",4281.9233912037,11,29,0,36,202,0,0,206,3,"3",1.725,1.98058252427184 +"fabric",0.2361201884,1.1224452265,-0.2395604756,"https://salsa.debian.org/python-team/packages/fabric","https://github.com/fabric/fabric.git",5703.0252199074,79,121,0,17,660,0,0,672,4,"4",1.605,1.98214285714286 +"fastkml",-1.1512391887,1.6385429324,-1.936594667,"https://salsa.debian.org/python-team/packages/fastkml","https://github.com/cleder/fastkml",4190.9523148148,13,36,2,36,109,0,0,110,3,"3",1.73469387755102,1.99090909090909 +"fceux",3.1366942055,8.4703461382,1.4758017291,"https://salsa.debian.org/games-team/fceux","https://github.com/TASEmulators/fceux.git",5697.8923611111,20,74,0,39,179,0,0,185,4,"4",1.78723404255319,1.96756756756757 +"fence-agents",-0.0526755775,0.7306960785,-0.3413654082,"https://salsa.debian.org/ha-team/fence-agents","https://github.com/ClusterLabs/fence-agents",5742.9759722222,67,106,0,112,160,0,0,195,4,"4",1.61271676300578,1.82051282051282 +"pkg-ferm",1.1755791706,1.9154949013,0.6944760141,"https://github.com/formorer/pkg-ferm","https://github.com/formorer/pkg-ferm",1766.1921643519,3,2,0,3,7,0,0,9,1,"1",1.4,1.77777777777778 +"ffindex",-0.3841947458,0.7848746806,-0.7256317717,"https://salsa.debian.org/med-team/ffindex","https://github.com/ahcm/ffindex.git",4107.5377777778,1,9,0,2,4,0,1,6,3,"3",1.9,1.66666666666667 +"ffmpegthumbnailer",0.6218339,1.7026039531,0.1299334729,"https://salsa.debian.org/multimedia-team/ffmpegthumbnailer","https://github.com/dirkvdb/ffmpegthumbnailer",5750.9852893519,2,26,0,21,32,0,0,49,4,"4",1.92857142857143,1.6530612244898 +"fftw3",0.5606957848,1.057025995,0.2642840796,"https://salsa.debian.org/science-team/fftw3","https://github.com/FFTW/fftw3.git",5716.0486458333,17,23,0,31,333,0,2,338,4,"4",1.575,1.98520710059172 +"FileTea",-1.4880291168,-0.5976104943,-1.6869426547,"https://salsa.debian.org/berto/filetea","https://github.com/elima/FileTea",2414.4586111111,4,1,0,2,17,0,0,18,1,"1",1.2,1.94444444444444 +"filtergen",-1.4900593021,-0.2527170414,-2.0161816495,"https://github.com/jaqx0r/filtergen/tree/debian","https://github.com/jaqx0r/filtergen",4988.9503125,3,6,0,2,5,0,0,5,4,"4",1.66666666666667,2 +"findimagedupes",0.1571397257,1.014130714,-0.2428383842,"https://salsa.debian.org/science-team/findimagedupes","https://github.com/jhnc/findimagedupes.git",5609.2984837963,0,1,0,0,16,0,0,16,4,"4",2,2 +"Fiona",-0.4518295489,0.0316996689,-0.548290247,"https://salsa.debian.org/debian-gis-team/fiona","https://github.com/Toblerity/Fiona.git",2732.0256712963,42,33,0,64,34,0,1,91,1,"1",1.44,1.37362637362637 +"firehol",0.2337473723,0.6567606394,-0.0568826659,"https://salsa.debian.org/debian/firehol","https://github.com/firehol/firehol",5475.3480324074,8,33,1,24,278,0,16,297,4,"4",1.80487804878049,1.93602693602694 +"flask-mongoengine",-1.2847143273,1.6755709624,-2.0678485801,"https://salsa.debian.org/python-team/packages/flask-mongoengine","https://github.com/mongoengine/flask-mongoengine",4513.2838078704,18,81,5,71,356,0,0,361,3,"3",1.81818181818182,1.98614958448753 +"flask-openid",0.228453383,2.6597609885,-0.3213084888,"https://salsa.debian.org/python-team/packages/flask-openid","https://github.com/mitsuhiko/flask-openid.git",4219.2356481482,6,12,0,12,96,0,0,97,3,"3",1.66666666666667,1.98969072164948 +"flask-restful",0.34791132,1.6712629803,-0.0854278525,"https://salsa.debian.org/python-team/packages/flask-restful","https://github.com/flask-restful/flask-restful",3867.9860763889,52,124,0,135,573,0,0,611,3,"3",1.70454545454545,1.93780687397709 +"flatbuffers",-1.160445057,0.9112660212,-1.581988532,"https://salsa.debian.org/debian/flatbuffers","https://github.com/google/flatbuffers.git",3592.7395138889,597,121,0,431,19,0,6,452,2,"2",1.16852367688022,1.04203539823009 +"flim",0.7666961285,1.9591073504,0.1611787583,"https://salsa.debian.org/debian/flim","https://github.com/wanderlust/flim",5370.129212963,4,13,0,8,10,0,0,12,4,"4",1.76470588235294,1.83333333333333 +"arb",0.2828492531,2.1064015572,-0.2652901459,"https://salsa.debian.org/math-team/flint-arb","https://github.com/fredrik-johansson/arb",4241.2918865741,4,42,0,34,106,0,1,108,3,"3",1.91304347826087,1.98148148148148 +"FlintQS",0.8705325607,4.2184408876,-0.1229863815,"https://salsa.debian.org/science-team/flintqs","https://github.com/sagemath/FlintQS",2671.3606365741,0,2,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"flite",0.3744081413,0.8157223595,0.1404183728,"https://salsa.debian.org/a11y-team/flite","https://github.com/festvox/flite.git",1668.0555208333,9,16,0,21,106,0,0,106,1,"1",1.64,2 +"fmit",1.0288892251,2.9965682542,0.1345537728,"https://salsa.debian.org/debian/fmit","https://github.com/gillesdegottex/fmit.git",2966.0915162037,22,10,0,21,45,0,0,56,2,"2",1.3125,1.80357142857143 +"fntsample",-1.2332590184,-0.5969756101,-1.356176006,"https://salsa.debian.org/debian/fntsample","https://github.com/eugmes/fntsample.git",4121.0789467593,2,4,0,4,10,0,0,10,3,"3",1.66666666666667,2 +"master",0.5018954955,1.5987261482,0.0085779359,"https://salsa.debian.org/fonts-team/font-manager","https://github.com/FontManager/master",5185.326875,55,11,1,48,170,0,0,191,4,"4",1.16666666666667,1.89005235602094 +"Hack",0.3465705045,2.2081920487,-0.0730912243,"https://salsa.debian.org/fonts-team/fonts-hack","https://github.com/source-foundry/Hack",1976.7616666667,7,26,5,23,227,0,0,243,1,"1",1.78787878787879,1.93415637860082 +"amiri",0.0448942076,0.9201808842,-0.1302579721,"https://salsa.debian.org/fonts-team/fonts-hosny-amiri","https://github.com/alif-type/amiri.git",5474.3578935185,5,10,0,8,97,0,0,98,4,"4",1.66666666666667,1.98979591836735 +"inter",0.0129835005,2.785802699,-0.6565554603,"https://salsa.debian.org/fonts-team/fonts-inter","https://github.com/rsms/inter",2281.2912847222,23,7,3,20,124,0,0,141,1,"1",1.23333333333333,1.87943262411348 +"frogatto",0.2316946335,1.7654688811,-0.3927779946,"https://salsa.debian.org/games-team/frogatto","https://github.com/frogatto/frogatto.git",5646.0325115741,6,89,0,29,83,0,17,104,4,"4",1.93684210526316,1.79807692307692 +"Frozen-Flask",-1.5052476806,0.5681861838,-1.9677533136,"https://github.com/SimonSapin/Frozen-Flask/","https://github.com/SimonSapin/Frozen-Flask",4711.306712963,2,29,0,26,105,0,1,106,3,"3",1.93548387096774,1.99056603773585 +"fsvs",-0.0088293976,2.3566933183,-1.0467726594,"https://salsa.debian.org/debian/fsvs","https://github.com/phmarek/fsvs.git",2690.6840972222,8,4,0,3,6,0,0,7,1,"1",1.33333333333333,1.85714285714286 +"fswatch",0.0801114642,1.6766491485,-0.5710250772,"https://salsa.debian.org/debian/fswatch","https://github.com/emcrisostomo/fswatch.git",4816.5607060185,6,27,0,22,362,0,6,368,3,"3",1.81818181818182,1.98369565217391 +"ftgl",1.2143599406,2.1964355506,0.6199512905,"https://salsa.debian.org/ftgl-team/ftgl","https://github.com/frankheckenbach/ftgl",5371.3004976852,3,17,0,10,18,0,0,23,4,"4",1.85,1.78260869565217 +"funcoeszz",1.014177301,3.1202339314,0.1028457996,"https://salsa.debian.org/debian/funcoeszz","https://github.com//funcoeszz/funcoeszz",5372.2990972222,4,52,0,0,0,0,6,6,4,"4",1.92857142857143,1 +"fusioninventory-agent",0.4127421594,1.2756692416,0.0042753938,"https://salsa.debian.org/perl-team/modules/packages/fusioninventory-agent","https://github.com/fusioninventory/fusioninventory-agent.git",5660.8499537037,88,75,0,69,277,0,0,307,4,"4",1.4601226993865,1.90228013029316 +"fuzzylite",0.0236301475,2.058515685,-0.6491075451,"https://salsa.debian.org/debian/fuzzylite","https://github.com/fuzzylite/fuzzylite",3931.5160648148,3,20,0,8,30,0,0,30,3,"3",1.8695652173913,2 +"fuzzywuzzy",-0.4399858222,1.3206226327,-0.8570537668,"https://salsa.debian.org/python-team/packages/fuzzywuzzy","https://github.com/seatgeek/fuzzywuzzy",3716.0564236111,14,64,0,61,347,0,2,353,2,"2",1.82051282051282,1.98300283286119 +"fvwm2-debian",0.3091526029,0.4698895246,0.1811764904,"https://github.com/somiaj/fvwm2-debian","https://github.com/somiaj/fvwm2-debian",699.9356018519,1,3,0,1,0,0,0,1,1,"1",1.75,1 +"sight",-0.1731785778,1.2619602504,-0.8211865446,"https://salsa.debian.org/med-team/fw4spl","https://github.com/IRCAD/sight",5192.8487268519,18,189,0,40,13,0,0,45,4,"4",1.91304347826087,1.28888888888889 +"fwupdate",-0.0344756086,2.1966931571,-0.4710643437,"https://salsa.debian.org/efi-team/fwupdate","https://github.com/rhinstaller/fwupdate.git",2299.0056365741,21,5,0,15,40,0,3,49,1,"1",1.19230769230769,1.81632653061224 +"fzy",-0.3762088336,1.9399715065,-0.8640459444,"https://salsa.debian.org/debian/fzy","https://github.com/jhawthorn/fzy",2752.1003125,14,25,0,30,165,0,3,168,2,"2",1.64102564102564,1.98214285714286 +"g810-led",-0.8841874287,0.5790349373,-1.1503333071,"https://salsa.debian.org/debian/g810-led","https://github.com/MatMoul/g810-led.git",2361.9422453704,17,31,0,31,369,0,2,376,1,"1",1.64583333333333,1.9813829787234 +"monitor-core",1.9418594289,3.110187068,1.2272175248,"https://salsa.debian.org/debian/ganglia","https://github.com/ganglia/monitor-core.git",5029.4003703704,5,128,0,60,190,0,20,215,4,"4",1.96240601503759,1.88372093023256 +"ganglia-web",2.9867677001,5.9425493751,1.6513889403,"https://salsa.debian.org/debian/ganglia-web","https://github.com/ganglia/ganglia-web",3989.7465162037,9,91,0,54,144,0,10,160,3,"3",1.91,1.9 +"garglk",0.3494600276,1.5754786967,-0.2152021362,"https://salsa.debian.org/games-team/gargoyle-free","https://github.com/garglk/garglk.git",5517.4756134259,6,35,0,30,137,0,4,145,4,"4",1.85365853658537,1.9448275862069 +"gaupol",0.4507268429,1.4194389083,0.0001075777,"https://salsa.debian.org/python-team/packages/gaupol","https://github.com/otsaloma/gaupol",5574.4414699074,17,10,0,13,96,0,0,102,4,"4",1.37037037037037,1.94117647058824 +"geographiclib",-0.2708682617,0.4210044305,-0.5188380677,"https://salsa.debian.org/debian-gis-team/geographiclib","https://github.com/geographiclib/geographiclib.git",5589.1283333333,0,17,0,9,0,0,0,9,4,"4",2,1 +"geoipupdate",0.0025717488,1.6500054943,-0.358124043,"https://salsa.debian.org/debian/geoipupdate","https://github.com/maxmind/geoipupdate",3751.8112615741,25,42,0,34,57,0,0,77,2,"2",1.62686567164179,1.74025974025974 +"geolinks",-0.181262941,2.4550244029,-0.7445474906,"https://salsa.debian.org/debian-gis-team/geolinks","https://github.com/geopython/geolinks.git",3405.8642361111,2,3,0,4,8,0,0,8,2,"2",1.6,2 +"geophar",-0.941493032,-0.2177195536,-1.1312469677,"https://salsa.debian.org/georgesk/geophar","https://github.com/wxgeo/geophar",4439.4260185185,0,6,0,3,5,0,0,7,3,"3",2,1.71428571428571 +"geopy",-0.1987709641,1.3312828211,-0.5312977883,"https://salsa.debian.org/python-team/packages/geopy","https://github.com/geopy/geopy",5485.118125,94,49,3,101,381,0,0,395,4,"4",1.34265734265734,1.96455696202532 +"gerbv",0.7065741787,1.742115916,0.1740178886,"https://salsa.debian.org/electronics-team/gerbv","https://github.com/gerbv/gerbv.git",5724.3901851852,29,11,0,24,49,0,0,64,4,"4",1.275,1.765625 +"ghp-import",-0.4929741774,2.5133796067,-1.274122331,"https://salsa.debian.org/python-team/packages/ghp-import","https://github.com/c-w/ghp-import.git",4494.8705092593,15,11,0,21,78,0,0,84,3,"3",1.42307692307692,1.92857142857143 +"git-big-picture",0.3518387907,3.3166834133,-0.4853412989,"https://salsa.debian.org/python-team/packages/git-big-picture","https://github.com/git-big-picture/git-big-picture.git",5024.3069097222,14,10,0,14,46,0,0,48,4,"4",1.41666666666667,1.95833333333333 +"git-ftp",-0.1788027121,1.7435604018,-0.6973926208,"https://salsa.debian.org/debian/git-ftp","https://github.com/git-ftp/git-ftp",4532.203599537,24,92,3,82,432,0,0,479,3,"3",1.79310344827586,1.90187891440501 +"gitinspector",-0.5400481096,0.210511756,-0.7012239295,"https://salsa.debian.org/python-team/packages/gitinspector","https://github.com/ejwa/gitinspector",3089.9889236111,14,6,3,18,213,0,0,217,2,"2",1.3,1.9815668202765 +"gitsome",-1.5867602711,-1.1930128544,-1.6624023004,"https://salsa.debian.org/debian/gitsome","https://github.com/donnemartin/gitsome",1294.2226388889,14,16,0,27,199,0,0,199,1,"1",1.53333333333333,2 +"givaro",0.5117865646,1.6258650747,-0.0135088131,"https://salsa.debian.org/math-team/givaro","https://github.com/linbox-team/givaro",5710.7340740741,9,44,0,21,43,0,0,44,4,"4",1.83018867924528,1.97727272727273 +"lieer",-1.7520281461,0.654977795,-2.4063141302,"https://salsa.debian.org/debian/lieer","https://github.com/gauteh/lieer",2464.2436689815,23,14,0,29,147,0,7,154,1,"1",1.37837837837838,1.95454545454545 +"gmrender-resurrect",-0.6885555604,0.4388812357,-0.9886243591,"https://salsa.debian.org/debian/gmrender-resurrect","https://github.com/hzeller/gmrender-resurrect.git",3933.2407407407,9,14,0,17,244,0,41,286,3,"3",1.60869565217391,1.85314685314685 +"gnome-gmail",0.1152563841,1.2377514132,-0.3137068328,"https://github.com/davesteele/gnome-gmail/tree/debian","https://github.com/davesteele/gnome-gmail",5107.0565740741,6,30,0,8,52,0,0,53,4,"4",1.83333333333333,1.9811320754717 +"gnome-hwp-support",-0.1527039415,2.6330164164,-0.8636063871,"https://salsa.debian.org/l10n-korean-team/gnome-hwp-support","https://github.com/changwoo/gnome-hwp-support.git",4275.4146296296,1,2,0,1,2,0,0,2,3,"3",1.66666666666667,2 +"gnome-keysign",-0.6319731543,0.8678564413,-0.9085456046,"https://salsa.debian.org/debian/gnome-keysign","https://github.com/gnome-keysign/gnome-keysign",3520.8003356482,42,26,0,52,24,0,0,62,2,"2",1.38235294117647,1.38709677419355 +"gnome-mastermind",0.1896631142,2.1249915571,-0.4064733165,"https://salsa.debian.org/debian/gnome-mastermind","https://github.com/fargiolas/gnome-mastermind",5420.9395486111,1,6,0,3,2,0,0,3,4,"4",1.85714285714286,1.66666666666667 +"googler",-0.3686431402,0.6283580924,-0.5542725364,"https://salsa.debian.org/debian/googler","https://github.com/jarun/googler.git",4778.9107060185,15,26,0,29,68,0,6,94,3,"3",1.63414634146341,1.72340425531915 +"GPaste",-0.3060429164,-0.2513668941,-0.3230260451,"https://salsa.debian.org/debian/gpaste","https://github.com/Keruspe/GPaste",4709.6430092593,65,21,2,60,352,0,0,376,3,"3",1.24418604651163,1.93617021276596 +"gpick",0.3287244142,1.9268349477,-0.1661653459,"https://salsa.debian.org/elias/gpick","https://github.com/thezbyg/gpick.git",5237.0590625,5,6,0,8,64,0,1,67,4,"4",1.54545454545455,1.95522388059702 +"grabserial",-0.534268649,2.390246914,-1.2967244647,"https://salsa.debian.org/debian/grabserial","https://github.com/tbird20d/grabserial",3634.0012152778,11,19,0,17,53,0,1,55,2,"2",1.63333333333333,1.96363636363636 +"grantlee",0.8850917122,2.9819943474,0.1506454305,"https://salsa.debian.org/qt-kde-team/extras/grantlee","https://github.com/steveire/grantlee.git",4939.9756481482,29,11,0,23,19,0,1,37,3,"3",1.275,1.51351351351351 +"graphite",0.3733807726,1.1779395242,0.0796158429,"https://salsa.debian.org/libreoffice-team/graphite2","https://github.com/silnrsi/graphite.git",4797.7791319445,6,20,0,12,63,0,0,66,3,"3",1.76923076923077,1.95454545454545 +"gravit",0.6045580957,3.2029078171,-0.2991692425,"https://salsa.debian.org/debian-astro-team/gravit","https://github.com/gak/gravit",4467.9773263889,1,15,2,3,13,0,0,13,3,"3",1.9375,2 +"grcompiler",-0.2033731514,1.6514805751,-0.9604435457,"https://salsa.debian.org/fonts-team/grcompiler","https://github.com/silnrsi/grcompiler.git",4870.0000925926,3,20,0,10,14,0,0,15,3,"3",1.8695652173913,1.93333333333333 +"gsa",0.417412477,2.9619681562,-0.4656797598,"https://salsa.debian.org/pkg-security-team/greenbone-security-assistant","https://github.com/greenbone/gsa",5193.7357407407,22,54,0,37,36,0,0,62,4,"4",1.71052631578947,1.58064516129032 +"grepcidr-pkg-debian",-0.000512138,1.8231074226,-0.4693331824,"https://github.com/rfinnie/grepcidr-pkg-debian","https://github.com/rfinnie/grepcidr-pkg-debian",3175.8474652778,0,1,0,1,0,0,0,1,2,"2",2,1 +"grok",0.7555036124,3.2549577139,-0.2949948657,"https://salsa.debian.org/debian/grok","https://github.com/jordansissel/grok",2851.8223263889,0,12,0,5,47,0,0,47,2,"2",2,2 +"gromit-mpx",-0.1368392632,2.3961082606,-0.7236856316,"https://salsa.debian.org/debian/gromit-mpx","https://github.com/bk138/gromit-mpx.git",5287.5376388889,14,15,0,22,52,0,0,63,4,"4",1.51724137931034,1.82539682539683 +"grun",3.4314737452,6.9914396992,1.9512456029,"https://salsa.debian.org/debian/grun","https://github.com/lrgc/grun.git",1780.0517708333,1,4,0,2,2,0,0,3,1,"1",1.8,1.66666666666667 +"textfsm",-1.959276856,0.4998119958,-2.4671799826,"https://salsa.debian.org/python-team/packages/gtextfsm","https://github.com/google/textfsm.git",4331.1065625,11,7,0,12,114,0,11,125,3,"3",1.38888888888889,1.912 +"gtimelog",-0.3131503011,0.4195928542,-0.6469396999,"https://salsa.debian.org/python-team/packages/gtimelog","https://github.com/gtimelog/gtimelog",5699.091412037,18,41,2,31,102,0,0,108,4,"4",1.69491525423729,1.94444444444444 +"gtkhash",-0.0470549768,0.3813091669,-0.1959531443,"https://salsa.debian.org/debian/gtkhash","https://github.com/tristanheaven/gtkhash",4558.9808449074,79,10,0,62,43,0,0,96,3,"3",1.1123595505618,1.44791666666667 +"guessit",0.5092433942,2.4339696308,-0.2792039187,"https://salsa.debian.org/python-team/packages/guessit","https://github.com/guessit-io/guessit.git",2993.2388078704,14,29,0,17,232,0,0,242,2,"2",1.67441860465116,1.95867768595041 +"guidata",0.226943724,2.7660796551,-0.444547265,"https://salsa.debian.org/science-team/guidata","https://github.com/Codra-Ingenierie-Informatique/guidata",4839.0752893519,0,24,0,9,22,0,0,27,3,"3",2,1.81481481481481 +"guile-json",-0.447679014,2.3175980112,-1.1284049069,"https://salsa.debian.org/debian/guile-json","https://github.com/aconchillo/guile-json.git",3764.8305324074,3,17,0,14,43,0,0,45,2,"2",1.85,1.95555555555556 +"harminv",-0.2633327682,0.7959993879,-0.5621576388,"https://salsa.debian.org/alteholz/harminv","https://github.com/NanoComp/harminv",2906.4731712963,1,5,0,4,15,0,0,15,2,"2",1.83333333333333,2 +"harvid",0.172456355,1.3037883065,-0.1734116499,"https://salsa.debian.org/multimedia-team/harvid","https://github.com/x42/harvid.git",3621.9749189815,0,4,0,4,14,0,0,14,2,"2",2,2 +"hashcat",0.6568099259,2.9193273288,-0.0688683154,"https://salsa.debian.org/pkg-security-team/hashcat","https://github.com/hashcat/hashcat.git",2915.0251851852,48,153,0,135,297,0,0,392,2,"2",1.76119402985075,1.75765306122449 +"haveged",0.9608769092,1.929900484,0.4239904529,"https://salsa.debian.org/debian/haveged","https://github.com/jirka-h/haveged",1886.382650463,9,23,0,22,68,0,1,73,1,"1",1.71875,1.93150684931507 +"haxe-debian",-0.5201211998,0.2916566292,-0.8543651007,"https://github.com/HaxeFoundation/haxe-debian","https://github.com/HaxeFoundation/haxe-debian",5039.1597916667,3,5,0,5,4,0,0,7,4,"4",1.625,1.57142857142857 +"hcxdumptool",0.1119022392,3.6410156171,-0.7455348999,"https://salsa.debian.org/pkg-security-team/hcxdumptool","https://github.com/ZerBea/hcxdumptool",2117.0106134259,10,18,0,22,84,0,7,102,1,"1",1.64285714285714,1.82352941176471 +"hdapsd",0.6538996291,2.6942351149,-0.1231193096,"https://salsa.debian.org/debian/hdapsd","https://github.com/evgeni/hdapsd.git",2619.5010416667,2,5,0,5,12,0,0,13,1,"1",1.71428571428571,1.92307692307692 +"HDMI2USB-mode-switch",-0.1979989796,2.8942330744,-1.0013410785,"https://salsa.debian.org/debian/hdmi2usb-mode-switch","https://github.com/timvideos/HDMI2USB-mode-switch.git",1539.4512152778,3,11,0,8,15,0,0,15,1,"1",1.78571428571429,2 +"hesiod",1.3520798772,2.882041099,0.5698299795,"https://github.com/achernya/hesiod","https://github.com/achernya/hesiod",2444.8183564815,0,5,0,6,15,0,0,17,1,"1",2,1.88235294117647 +"hexchat",0.4113463635,1.0763225756,0.0766285755,"https://salsa.debian.org/debian/hexchat","https://github.com/hexchat/hexchat",4968.6586458333,146,71,1,160,5,0,0,162,3,"3",1.32718894009217,1.03086419753086 +"hg-git",0.321128458,1.270139629,-0.1895586953,"https://salsa.debian.org/python-team/packages/hg-git","https://github.com/schacon/hg-git.git",2615.4964467593,1,76,0,52,117,0,4,163,1,"1",1.98701298701299,1.71779141104294 +"hidapi",0.225542389,1.7475434274,-0.1119105457,"https://salsa.debian.org/debian/hidapi","https://github.com/libusb/hidapi.git",4972.5820717593,120,14,0,103,49,0,4,137,3,"3",1.1044776119403,1.35766423357664 +"hippomocks",-1.8899787337,1.9694566517,-3.0475420799,"https://salsa.debian.org/debian-iot-team/hippomocks","https://github.com/dascandy/hippomocks",3806.1184837963,0,35,0,21,73,0,1,77,3,"3",2,1.94805194805195 +"hitch",-0.5288912788,2.1847591306,-1.4438568394,"https://salsa.debian.org/debian/hitch","https://github.com/varnish/hitch",4466.179224537,30,59,0,59,215,0,20,260,3,"3",1.66292134831461,1.82692307692308 +"hol-light",0.6740208455,3.3227951452,-0.2913969773,"https://salsa.debian.org/ocaml-team/hol-light","https://github.com/jrh13/hol-light.git",2937.7842708333,2,18,0,10,39,0,0,39,2,"2",1.9,2 +"htmldoc",0.7571165722,1.6423946949,0.2768464827,"https://salsa.debian.org/haava/htmldoc","https://github.com/michaelrsweet/htmldoc.git",5679.7610416667,3,12,0,7,61,0,0,65,4,"4",1.8,1.93846153846154 +"htmlmin",0.3749839326,3.8009648796,-0.4061989629,"https://salsa.debian.org/python-team/packages/htmlmin","https://github.com/mankyd/htmlmin",1758.1454050926,0,22,0,16,60,0,0,60,1,"1",2,2 +"htpdate",-0.4445412636,1.6194045516,-0.91888023,"https://salsa.debian.org/debian/htpdate","https://github.com/twekkel/htpdate",706.8257407407,6,5,0,5,17,0,0,17,1,"1",1.45454545454545,2 +"hubicfuse",-0.6743910684,0.4155398958,-0.9708496832,"https://salsa.debian.org/debian/hubicfuse","https://github.com/TurboGit/hubicfuse",4598.8082291667,5,42,0,32,165,0,1,182,3,"3",1.8936170212766,1.90659340659341 +"hunspell-kk",0.1699792789,2.5686056687,-0.3539934531,"http://github.com/taem/hunspell-kk/tree/master","http://github.com/taem/hunspell-kk",1009.2540509259,0,1,0,0,0,0,0,0,1,"1",2,NA +"hw-probe",-0.2705391309,2.1366348662,-0.8036350878,"https://salsa.debian.org/debian/hw-probe","https://github.com/linuxhw/hw-probe",2812.8207638889,5,13,0,14,115,0,0,116,2,"2",1.72222222222222,1.99137931034483 +"hwdata",0.2497218136,0.8673309736,-0.0033926663,"https://salsa.debian.org/pino/hwdata","https://github.com/vcrhonek/hwdata.git",5761.1231481482,4,18,0,12,14,0,0,19,4,"4",1.81818181818182,1.73684210526316 +"hwinfo",1.0352583411,1.8703572076,0.5288235361,"https://salsa.debian.org/debian/hwinfo","https://github.com/openSUSE/hwinfo",5630.0100347222,11,25,0,19,74,0,0,77,4,"4",1.69444444444444,1.96103896103896 +"hwloc",0.034853164,0.3073992793,-0.0657896516,"https://salsa.debian.org/debian/hwloc","https://github.com/open-mpi/hwloc.git",5420.947349537,40,25,0,39,173,0,7,189,4,"4",1.38461538461538,1.91534391534392 +"hyperlink",0.844118141,3.90404712,0.0109391917,"https://salsa.debian.org/python-team/packages/hyperlink","https://github.com/python-hyper/hyperlink",1636.1480324074,8,24,0,21,47,0,0,49,1,"1",1.75,1.95918367346939 +"hyperscan",-0.1939906796,1.1323195527,-0.5069001368,"https://salsa.debian.org/debian/hyperscan","https://github.com/intel/hyperscan.git",2738.472962963,25,11,0,26,361,0,0,365,1,"1",1.30555555555556,1.98904109589041 +"ibus-libpinyin",0.0745339719,1.4965685521,-0.4552149234,"https://salsa.debian.org/debian/ibus-libpinyin","https://github.com/libpinyin/ibus-libpinyin",5637.8364236111,33,12,0,32,417,0,2,432,4,"4",1.26666666666667,1.96527777777778 +"icdiff",-0.1438152922,1.9369823287,-0.574052024,"https://salsa.debian.org/debian/icdiff","https://github.com/jeffkaufman/icdiff.git",4767.043599537,37,19,0,47,225,0,0,225,3,"3",1.33928571428571,2 +"icecream",0.3064642839,1.1295017582,-0.1573898799,"https://salsa.debian.org/qt-kde-team/extras/icecc","https://github.com/icecc/icecream",5413.4717939815,34,86,1,89,308,0,0,324,4,"4",1.71666666666667,1.95061728395062 +"ifcplusplus",-4.714020503,-1.546680493,-5.4430250217,"https://salsa.debian.org/science-team/ifcplusplus","https://github.com/ifcquery/ifcplusplus",3159.9779050926,3,29,0,17,119,0,1,120,2,"2",1.90625,1.99166666666667 +"ign-cmake",-0.0672943203,2.4451918145,-0.7211880559,"https://salsa.debian.org/science-team/ignition-cmake","https://github.com/ignitionrobotics/ign-cmake.git",2275.0046990741,21,38,0,34,52,0,0,56,1,"1",1.64406779661017,1.92857142857143 +"imexam",-0.5291204946,0.5693013221,-0.7719216675,"https://salsa.debian.org/debian-astro-team/imexam","https://github.com/spacetelescope/imexam",3485.9386226852,6,15,1,15,95,0,0,95,2,"2",1.71428571428571,2 +"imgp",-0.6548311047,1.5722939063,-1.0887948485,"https://salsa.debian.org/debian/imgp","https://github.com/jarun/imgp.git",2588.4491782407,7,6,0,8,44,0,2,47,1,"1",1.46153846153846,1.93617021276596 +"indicator-sensors",-0.5585654847,1.870631377,-1.1666724793,"https://salsa.debian.org/debian/indicator-sensors","https://github.com/alexmurray/indicator-sensors.git",4448.0518287037,1,8,0,6,33,0,1,36,3,"3",1.88888888888889,1.91666666666667 +"influxdb-python",0.5184399777,1.9994055882,-0.0609733668,"https://salsa.debian.org/python-team/packages/influxdb-python","https://github.com/influxdata/influxdb-python",3542.0853240741,64,90,1,124,596,0,0,618,2,"2",1.58441558441558,1.96440129449838 +"infnoise",-0.8043001603,2.0102163079,-1.7895799595,"https://salsa.debian.org/debian/infnoise","https://github.com/13-37-org/infnoise.git",3061.3638078704,9,32,0,27,33,0,1,52,2,"2",1.78048780487805,1.63461538461538 +"inkscape-open-symbols",0.1399161023,2.3946994301,-0.296432736,"https://salsa.debian.org/felix-guest/inkscape-open-symbols","https://github.com/Xaviju/inkscape-open-symbols",2971.3217939815,9,20,0,20,58,0,2,60,2,"2",1.68965517241379,1.96666666666667 +"compute-runtime",-0.3353488286,2.5434327002,-1.0380631241,"https://salsa.debian.org/opencl-team/intel-compute-runtime","https://github.com/intel/compute-runtime",2183.6453703704,160,87,0,159,86,0,0,220,1,"1",1.35222672064777,1.39090909090909 +"intelhex",-0.7181174872,1.5303194974,-1.1558028433,"https://salsa.debian.org/python-team/packages/intelhex","https://github.com/bialix/intelhex.git",2882.7775578704,4,21,0,12,61,0,0,63,2,"2",1.84,1.96825396825397 +"invesalius3",-0.365553699,0.412659255,-0.6585148784,"https://salsa.debian.org/med-team/invesalius","https://github.com/invesalius/invesalius3.git",5269.8872106482,20,33,0,28,105,0,9,123,4,"4",1.62264150943396,1.85365853658537 +"ioq3",0.2457529541,0.9626997446,-0.0891553792,"https://salsa.debian.org/games-team/ioquake3","https://github.com/ioquake/ioq3",5764.2156828704,42,58,0,65,301,0,0,310,4,"4",1.58,1.97096774193548 +"iortcw",-0.3609137722,1.7540737172,-0.8999552481,"https://salsa.debian.org/games-team/iortcw","https://github.com/iortcw/iortcw.git",3601.8735763889,5,20,0,13,129,0,0,131,2,"2",1.8,1.98473282442748 +"irssi",1.759294185,2.3625896628,1.3052149799,"https://salsa.debian.org/rhonda/irssi","https://github.com/irssi/irssi.git",5749.0144675926,36,142,0,114,230,0,5,301,4,"4",1.79775280898876,1.7641196013289 +"irssi-xmpp",0.6035691601,1.5557972582,0.0980337918,"https://salsa.debian.org/debian/irssi-plugin-xmpp","https://github.com/cdidier/irssi-xmpp",4266.8623958333,7,12,0,12,44,0,0,46,3,"3",1.63157894736842,1.95652173913043 +"irstlm",-0.5699998346,2.5734688359,-1.3621281388,"https://salsa.debian.org/science-team/irstlm","https://github.com/irstlm-team/irstlm.git",1268.8947337963,1,9,0,3,31,0,0,33,1,"1",1.9,1.93939393939394 +"islamic-menus",-0.8360403457,1.8927666646,-1.5208014105,"https://salsa.debian.org/islamic-team/islamic-menus","https://github.com/ojuba-org/islamic-menus",1447.6479050926,0,9,0,5,1,0,0,5,1,"1",2,1.2 +"ismrmrd",-0.4211375034,0.8719718551,-0.792919077,"https://salsa.debian.org/med-team/ismrmrd","https://github.com/ismrmrd/ismrmrd.git",4121.9187384259,23,44,0,33,72,0,1,77,3,"3",1.65671641791045,1.93506493506494 +"flags",1.0476074347,4.844542624,0.0451502018,"https://salsa.debian.org/cinnamon-team/iso-flags-svg","https://github.com/linuxmint/flags.git",563.1795833333,0,2,0,1,0,0,0,1,1,"1",2,1 +"isodate",0.7844107872,3.6859500169,-0.0654948523,"https://salsa.debian.org/python-team/packages/isodate","https://github.com/gweis/isodate",4815.1887152778,2,29,0,18,81,0,0,82,3,"3",1.93548387096774,1.98780487804878 +"ivtools",0.3988011669,1.0923186651,-0.0474693289,"https://salsa.debian.org/debian/ivtools","https://github.com/vectaport/ivtools",4623.9669328704,2,10,0,4,7,0,1,8,3,"3",1.83333333333333,1.875 +"include-what-you-use",0.2936470135,1.7756158607,-0.3256054834,"https://salsa.debian.org/pkg-llvm-team/iwyu","https://github.com/include-what-you-use/include-what-you-use",4692.8704050926,67,17,1,60,285,0,1,306,3,"3",1.20238095238095,1.93137254901961 +"jabberd2",-0.0340967947,0.9124576514,-0.5754415701,"https://salsa.debian.org/xmpp-team/jabberd2","https://github.com/jabberd2/jabberd2",3913.9184490741,17,25,0,26,119,0,5,129,3,"3",1.5952380952381,1.92248062015504 +"jansson",0.1407028183,0.668384438,-0.002779965,"https://salsa.debian.org/debian/jansson","https://github.com/akheron/jansson.git",5159.4155902778,29,84,0,80,127,0,3,188,4,"4",1.74336283185841,1.67553191489362 +"janus-gateway",-1.0533724499,0.8744335289,-1.6790293476,"https://salsa.debian.org/pkg-voip-team/janus","https://github.com/meetecho/janus-gateway",3591.8742708333,192,158,0,273,152,0,0,393,2,"2",1.45142857142857,1.38676844783715 +"jimtcl",0.0276014571,0.4709064501,-0.0432191953,"https://salsa.debian.org/debian/jimtcl","https://github.com/msteveb/jimtcl.git",5640.2291087963,31,13,0,32,66,0,2,79,4,"4",1.29545454545455,1.83544303797468 +"Jool",-2.1435730131,-0.0424378709,-2.6129119375,"https://github.com/NICMx/Jool","https://github.com/NICMx/Jool",4435.2104050926,8,57,3,37,162,0,6,172,3,"3",1.87692307692308,1.94186046511628 +"jopt-simple",-0.2557722008,1.1092730965,-0.5210596763,"https://salsa.debian.org/java-team/joptsimple","https://github.com/jopt-simple/jopt-simple.git",3771.2237962963,2,25,0,24,63,0,0,70,3,"3",1.92592592592593,1.9 +"jpy",-0.2335047706,1.5585712074,-0.6921580176,"https://salsa.debian.org/python-team/packages/jpy","https://github.com/jpy-consortium/jpy",3656.2358564815,16,28,3,25,27,0,0,44,2,"2",1.63636363636364,1.61363636363636 +"jpylyzer",-1.218476643,-0.4298985846,-1.4717139107,"https://salsa.debian.org/python-team/packages/jpylyzer","https://github.com/openpreserve/jpylyzer.git",3586.5846064815,2,28,0,16,31,0,2,37,2,"2",1.93333333333333,1.83783783783784 +"jq",0.9075077567,2.0772581347,0.3378546024,"https://salsa.debian.org/debian/jq","https://github.com/jqlang/jq",4164.9958796296,128,79,5,168,233,0,76,457,3,"3",1.38164251207729,1.50984682713348 +"jquery-i18n-properties",-0.8429862877,1.002530129,-1.1610901473,"https://salsa.debian.org/js-team/jquery-i18n-properties/","https://github.com/jquery-i18n-properties/jquery-i18n-properties.git",2244.4631597222,1,17,0,13,101,0,3,106,1,"1",1.94444444444444,1.95283018867925 +"JSJaC",-0.3265912384,2.0049639122,-1.1507866217,"https://salsa.debian.org/xmpp-team/jsjac","https://github.com/sstrigler/JSJaC.git",3682.6423958333,1,21,0,12,56,0,0,56,2,"2",1.95454545454545,2 +"json-c",0.7000238519,1.5684181486,0.2497560899,"https://salsa.debian.org/debian/json-c","https://github.com/json-c/json-c",5592.2949652778,18,150,0,130,463,0,13,500,4,"4",1.89285714285714,1.926 +"JSON-js",0.6358541009,3.1706913966,-0.0862776907,"https://salsa.debian.org/js-team/json-js","https://github.com/douglascrockford/JSON-js",4556.1964236111,1,4,0,2,14,0,0,15,3,"3",1.8,1.93333333333333 +"jsonlint",0.1283791193,1.6136347642,-0.1615279631,"https://salsa.debian.org/php-team/pear/jsonlint","https://github.com/Seldaek/jsonlint",4166.9388888889,11,28,0,34,62,0,0,62,3,"3",1.71794871794872,2 +"jsonpickle",-0.0589038511,1.6549477485,-0.6288474464,"https://salsa.debian.org/python-team/packages/jsonpickle","https://github.com/jsonpickle/jsonpickle",5737.1075462963,18,67,1,58,346,0,5,359,4,"4",1.78823529411765,1.96378830083565 +"jsusfx",-0.4818415459,1.4674471205,-0.8815812329,"https://salsa.debian.org/multimedia-team/pd/jsusfx","https://github.com/asb2m10/jsusfx.git",2697.3649768519,1,8,0,4,11,0,1,12,1,"1",1.88888888888889,1.91666666666667 +"keepassxc",0.077500136,0.7662262759,-0.1344432376,"https://salsa.debian.org/debian/keepassxc","https://github.com/keepassxreboot/keepassxc.git",4876.4075,354,94,0,352,4,0,6,360,3,"3",1.20982142857143,1.01111111111111 +"keras",0.5999454369,3.4232399441,-0.326875434,"https://salsa.debian.org/science-team/keras","https://github.com/keras-team/keras",3182.8412268519,1036,333,0,411,453,0,19,839,2,"2",1.24324324324324,1.53992848629321 +"klaus",-1.7963750896,-1.1425182339,-1.9244411722,"https://salsa.debian.org/jelmer/klaus","https://github.com/jonashaag/klaus",4576.8670717593,13,28,0,23,110,0,20,131,3,"3",1.68292682926829,1.83969465648855 +"klystrack",-0.5775196532,1.4334446874,-1.0926907229,"https://salsa.debian.org/multimedia-team/klystrack","https://github.com/kometbomb/klystrack",3882.7988194445,10,13,4,10,56,0,1,57,3,"3",1.56521739130435,1.98245614035088 +"pvr.dvbviewer",-0.2612255055,1.7338835217,-0.6785034929,"https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-dvbviewer","https://github.com/kodi-pvr/pvr.dvbviewer.git",4026.1822916667,9,44,0,32,52,0,0,65,3,"3",1.83018867924528,1.8 +"pvr.hdhomerun",0.5662601343,3.972730551,-0.5089735041,"https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-hdhomerun","https://github.com/kodi-pvr/pvr.hdhomerun.git",2925.247337963,9,28,0,19,39,0,0,42,2,"2",1.75675675675676,1.92857142857143 +"pvr.iptvsimple",0.0810763451,2.1337559183,-0.4122427721,"https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-iptvsimple","https://github.com/kodi-pvr/pvr.iptvsimple.git",3805.7589236111,16,66,0,49,379,0,0,389,3,"3",1.80487804878049,1.97429305912596 +"pvr.njoy",-0.3919469766,1.5882858351,-0.7945898934,"https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-njoy","https://github.com/kodi-pvr/pvr.njoy.git",4095.3650578704,9,40,0,28,19,0,0,33,3,"3",1.81632653061224,1.57575757575758 +"pvr.vdr.vnsi",-0.2767088162,1.1621317981,-0.6036919178,"https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-vdr-vnsi","https://github.com/kodi-pvr/pvr.vdr.vnsi.git",4099.2902199074,12,57,0,44,64,0,0,80,3,"3",1.82608695652174,1.8 +"KWStyle",-0.5443680459,1.2886528987,-0.9977067271,"https://salsa.debian.org/eikel/kwstyle","https://github.com/Kitware/KWStyle",2816.187662037,4,44,0,30,32,0,0,49,2,"2",1.91666666666667,1.6530612244898 +"lablgtk",-0.5519683235,1.0254829683,-0.8566505829,"https://salsa.debian.org/ocaml-team/lablgtk3","https://github.com/garrigue/lablgtk.git",5750.3717824074,18,30,0,25,73,0,0,77,4,"4",1.625,1.94805194805195 +"lastpass-cli",-0.0433153425,1.3416622465,-0.5860041677,"https://salsa.debian.org/lamby/pkg-lastpass-cli","https://github.com/lastpass/lastpass-cli",3306.0089351852,30,62,0,67,0,0,1,68,2,"2",1.67391304347826,1 +"python-lazy-object-proxy",0.3043618863,2.7233170407,-0.1702005445,"https://salsa.debian.org/python-team/packages/lazy-object-proxy","https://github.com/ionelmc/python-lazy-object-proxy.git",3850.5882523148,8,10,0,14,87,0,0,89,3,"3",1.55555555555556,1.97752808988764 +"lcdproc",0.0416533252,0.5981870264,-0.2982890351,"https://salsa.debian.org/debian/lcdproc","https://github.com/lcdproc/lcdproc",1977.3798148148,39,20,0,41,113,0,0,115,1,"1",1.33898305084746,1.98260869565217 +"ldap-git-backup",-1.373786898,-0.3569713865,-1.6171841836,"https://github.com/elmar/ldap-git-backup","https://github.com/elmar/ldap-git-backup",3900.9497222222,1,9,0,6,10,0,0,10,3,"3",1.9,2 +"ldap2dns",0.4410660379,3.2730345751,-0.8182558109,"https://salsa.debian.org/debian/ldap2dns","https://github.com/bklang/ldap2dns",1032.2710185185,0,4,0,1,4,0,0,4,1,"1",2,2 +"ldapscripts",0.4789463026,1.4448695661,0.0155611927,"https://github.com/gerasiov/ldapscripts","https://github.com/gerasiov/ldapscripts",4203.2921643519,3,5,0,3,2,0,0,3,3,"3",1.625,1.66666666666667 +"pkg-ledgersmb",-1.9768906241,-1.2384100445,-2.32818406,"https://github.com/ledgersmb/pkg-ledgersmb","https://github.com/ledgersmb/pkg-ledgersmb",5388.1821643519,1,9,0,4,4,0,1,7,4,"4",1.9,1.57142857142857 +"ledmon",-0.0267359746,1.6972099329,-0.5787233435,"https://salsa.debian.org/debian/ledmon","https://github.com/intel/ledmon",4704.5067592593,35,24,0,32,75,0,0,79,3,"3",1.40677966101695,1.9493670886076 +"legit",-1.3724471459,-0.9914117218,-1.4783160816,"https://salsa.debian.org/python-team/packages/legit","https://github.com/frostming/legit",4465.0884027778,8,56,0,47,233,0,2,238,3,"3",1.875,1.97899159663866 +"mod_auth_openidc",0.2336891928,2.1536731239,-0.5343344056,"https://salsa.debian.org/debian/libapache2-mod-auth-openidc","https://github.com/zmartzone/mod_auth_openidc.git",3541.8657638889,12,50,0,46,138,0,41,214,2,"2",1.80645161290323,1.64485981308411 +"libappimage",-0.1632051649,2.0657738619,-0.6650493915,"https://salsa.debian.org/qt-kde-team/3rdparty/libappimage","https://github.com/AppImageCommunity/libappimage.git",1789.5842476852,9,6,0,11,54,0,0,54,1,"1",1.4,2 +"attean",-1.3143281259,1.0491513887,-1.7605023994,"https://salsa.debian.org/perl-team/modules/packages/libattean-perl","https://github.com/kasei/attean.git",3387.9902314815,2,10,0,9,20,0,0,20,2,"2",1.83333333333333,2 +"libcec",0.2382725094,0.9041078801,-0.0486730427,"https://salsa.debian.org/debian/libcec","https://github.com/Pulse-Eight/libcec.git",3960.8179282408,30,52,0,62,729,0,2,741,3,"3",1.63414634146341,1.98380566801619 +"cereal",-1.0094893182,-0.4350648989,-1.165390033,"https://salsa.debian.org/med-team/libcereal","https://github.com/USCiLab/cereal",3631.1027546296,36,60,3,68,151,0,4,201,2,"2",1.625,1.75124378109453 +"CGI--Application--Dispatch",0.204830766,4.1969078733,-0.9847022953,"https://salsa.debian.org/perl-team/modules/packages/libcgi-application-dispatch-perl","https://github.com/markstos/CGI--Application--Dispatch.git",1893.6213773148,0,9,0,8,9,0,0,9,1,"1",2,2 +"CGI-Application-Plugin-Session",-0.4119679947,2.4410793318,-1.1626629958,"https://salsa.debian.org/perl-team/modules/packages/libcgi-application-plugin-session-perl","https://github.com/frioux/CGI-Application-Plugin-Session",1734.1852083333,2,2,0,2,1,0,0,3,1,"1",1.5,1.33333333333333 +"libcgroup",0.8905633465,1.7409188519,0.3692553148,"https://salsa.debian.org/debian/libcgroup","https://github.com/libcgroup/libcgroup",5745.3289930556,43,20,2,31,36,0,0,52,4,"4",1.31746031746032,1.69230769230769 +"libdnet",0.6447638804,1.8645884536,0.1303098815,"https://salsa.debian.org/debian/libdumbnet","https://github.com/ofalk/libdnet",3068.4848032407,6,20,0,16,42,0,0,44,2,"2",1.76923076923077,1.95454545454545 +"libebur128",0.4008800859,2.5097823396,-0.0483144637,"https://salsa.debian.org/multimedia-team/libebur128","https://github.com/jiixyj/libebur128",3690.6439930556,1,22,0,19,70,0,0,71,2,"2",1.95652173913043,1.98591549295775 +"ejml",-1.6145518294,1.0936860376,-2.2108976925,"https://salsa.debian.org/java-team/libejml-java","https://github.com/lessthanoptimal/ejml",5141.1358564815,14,15,0,17,85,0,0,85,4,"4",1.51724137931034,2 +"p5-encode",0.0933708639,1.2559525686,-0.1937815459,"https://salsa.debian.org/perl-team/modules/packages/libencode-perl","https://github.com/dankogai/p5-encode.git",5752.78,4,51,0,42,88,0,0,90,4,"4",1.92727272727273,1.97777777777778 +"libepoxy",0.3100507455,1.1926379346,0.0363222284,"https://salsa.debian.org/xorg-team/lib/libepoxy","https://github.com/anholt/libepoxy.git",3236.6618981482,11,45,0,45,212,0,0,215,2,"2",1.80357142857143,1.98604651162791 +"liberasurecode",-0.4839675188,1.1970872377,-0.8694804348,"https://salsa.debian.org/openstack-team/libs/liberasurecode","https://github.com/openstack/liberasurecode.git",3370.5594560185,7,23,0,19,7,0,0,26,2,"2",1.76666666666667,1.26923076923077 +"perl-error.pm",1.2535323608,3.335171802,0.4397835194,"https://salsa.debian.org/perl-team/modules/packages/liberror-perl","https://github.com/shlomif/perl-error.pm.git",4521.3125694445,0,3,0,2,3,0,0,4,3,"3",2,1.75 +"libesedb",-0.0038540304,1.3424306865,-0.3777859111,"https://salsa.debian.org/pkg-security-team/libesedb","https://github.com/libyal/libesedb",2793.913912037,0,1,0,1,61,0,2,63,2,"2",2,1.96825396825397 +"libesmtp",0.2677621782,0.8388085609,-0.0156401267,"https://github.com/jbouse-debian/libesmtp","https://github.com/jbouse-debian/libesmtp",4730.7607986111,1,4,0,2,1,0,0,2,3,"3",1.8,1.5 +"libestr",0.2583326289,1.2734255517,0.0106705212,"https://salsa.debian.org/debian/libestr","https://github.com/rsyslog/libestr.git",2916.1839236111,6,7,0,9,8,0,0,13,2,"2",1.53846153846154,1.61538461538462 +"libevent",0.7674583301,1.6743727385,0.314106766,"https://salsa.debian.org/debian/libevent","https://github.com/libevent/libevent",5769.2016435185,214,125,1,240,0,0,6,246,4,"4",1.36873156342183,1 +"libgeotiff",0.3969402517,2.1076539482,-0.0842600623,"https://salsa.debian.org/debian-gis-team/libgeotiff","https://github.com/OSGeo/libgeotiff.git",5753.8535763889,6,17,0,21,54,0,0,58,4,"4",1.73913043478261,1.93103448275862 +"libglvnd",0.3742764654,1.2232824361,0.0505144955,"https://salsa.debian.org/xorg-team/lib/libglvnd.git","https://github.com/NVIDIA/libglvnd.git",3760.105162037,9,47,0,41,117,0,0,133,2,"2",1.83928571428571,1.8796992481203 +"libgroove",-0.5717771357,0.9386669616,-0.9657138035,"https://salsa.debian.org/multimedia-team/libgroove","https://github.com/andrewrk/libgroove",3739.9100810185,3,10,1,10,62,0,2,65,2,"2",1.76923076923077,1.95384615384615 +"hdf4",0.7482393831,1.3419798784,0.3704858112,"https://salsa.debian.org/debian-gis-team/hdf4","https://github.com/HDFGroup/hdf4.git",5770.0810416667,9,27,0,20,22,0,2,34,4,"4",1.75,1.64705882352941 +"libheif",0.7756133995,3.7562106714,0.0328408592,"https://salsa.debian.org/multimedia-team/libheif","https://github.com/strukturag/libheif.git",2185.1827314815,30,67,0,79,121,0,1,182,1,"1",1.69072164948454,1.66483516483516 +"hpptools",-2.8766583863,-0.6777605247,-3.3195064784,"https://salsa.debian.org/med-team/libhpptools","https://github.com/mateidavid/hpptools.git",498.7340625,0,2,0,2,3,0,0,3,1,"1",2,2 +"HTML-Clean",-0.1024783024,1.2552104643,-0.471169751,"https://salsa.debian.org/perl-team/modules/packages/libhtml-clean-perl","https://github.com/poizon/HTML-Clean.git",1155.8983796296,1,3,0,2,2,0,0,2,1,"1",1.75,2 +"p5-html-embedded-turtle",-2.1754143328,0.1122982625,-2.6152678827,"https://salsa.debian.org/perl-team/modules/packages/libhtml-embedded-turtle-perl","https://github.com/tobyink/p5-html-embedded-turtle",1183.7536805556,0,1,0,1,0,0,0,1,1,"1",2,1 +"html-formhandler-model-dbic",-1.4203781466,0.7927422874,-1.859585529,"https://salsa.debian.org/perl-team/modules/packages/libhtml-formhandler-model-dbic-perl","http://github.com/gshank/html-formhandler-model-dbic",1856.3547106482,2,11,0,0,0,0,0,0,1,"1",1.84615384615385,NA +"p5-html-html5-entities",-0.3934618041,1.0242081172,-0.6537250647,"https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-entities-perl","https://github.com/tobyink/p5-html-html5-entities.git",1072.6158333333,0,1,0,1,1,0,0,2,1,"1",2,1.5 +"p5-html-html5-parser",0.8137592838,4.383181915,-0.3515590143,"https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-parser-perl","https://github.com/tobyink/p5-html-html5-parser",4302.9721412037,1,7,0,5,9,0,0,10,3,"3",1.875,1.9 +"libhtp",0.266072694,2.5728754227,-0.5638059217,"https://salsa.debian.org/pkg-suricata-team/pkg-libhtp","https://github.com/OISF/libhtp",5122.0736226852,15,26,2,25,31,0,0,43,4,"4",1.63414634146341,1.72093023255814 +"isa-l",-0.6533940488,1.7011237676,-1.0694298788,"https://salsa.debian.org/openstack-team/third-party/libisal","https://github.com/01org/isa-l.git",2846.4837615741,29,18,0,38,96,0,3,119,2,"2",1.38297872340426,1.80672268907563 +"libjpeg-turbo",0.8208594826,1.6678864112,0.3714003986,"https://salsa.debian.org/debian/libjpeg-turbo/","https://github.com/libjpeg-turbo/libjpeg-turbo",5541.3943171296,44,10,2,41,501,0,0,509,4,"4",1.18518518518519,1.98428290766208 +"p5-JSON-WebToken",-0.1644580581,1.9565513103,-0.5873542729,"https://salsa.debian.org/perl-team/modules/packages/libjson-webtoken-perl","https://github.com/xaicron/p5-JSON-WebToken.git",993.7868981481,0,6,0,2,16,0,0,16,1,"1",2,2 +"p5-kavorka",-1.1158599676,1.8699475451,-1.8919945693,"https://salsa.debian.org/perl-team/modules/packages/libkavorka-perl","https://github.com/tobyink/p5-kavorka",2218.7228703704,0,8,0,5,29,0,0,29,1,"1",2,2 +"p5-latex-table",-0.7020862971,0.7997073577,-0.9848467916,"https://salsa.debian.org/perl-team/modules/packages/liblatex-table-perl","https://github.com/lima1/p5-latex-table.git",556.2399421296,0,2,0,1,0,0,0,1,1,"1",2,1 +"liblbfgs",-0.1459606149,2.0255666612,-0.6194709752,"https://salsa.debian.org/science-team/liblbfgs","https://github.com/chokkan/liblbfgs",5534.0610763889,8,10,0,13,32,0,0,32,4,"4",1.55555555555556,2 +"p5-lexical-underscore",-0.1208593875,2.7968625617,-0.887693709,"https://salsa.debian.org/perl-team/modules/packages/liblexical-underscore-perl","https://github.com/tobyink/p5-lexical-underscore",2933.2191203704,0,1,0,1,4,0,0,4,2,"2",2,2 +"liblognorm",0.9012585102,2.3010415095,0.3051975451,"https://salsa.debian.org/debian/liblognorm","https://github.com/rsyslog/liblognorm.git",4686.8326273148,7,31,0,23,111,0,0,111,3,"3",1.81578947368421,2 +"libmateweather",0.1284830495,0.843121277,-0.0753011191,"https://salsa.debian.org/debian-mate-team/libmateweather","https://github.com/mate-desktop/libmateweather.git",4345.3109837963,19,32,0,32,92,0,0,94,3,"3",1.62745098039216,1.97872340425532 +"libmaxminddb",0.5075375731,2.425458321,-0.014814615,"https://salsa.debian.org/debian/libmaxminddb","https://github.com/maxmind/libmaxminddb",3984.2393634259,21,43,0,49,64,0,0,98,3,"3",1.671875,1.6530612244898 +"method-signatures",-1.1413649114,1.1667964397,-1.6439970781,"https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-perl","https://github.com/evalEmpire/method-signatures.git",4206.6153935185,3,21,0,18,41,0,1,42,3,"3",1.875,1.97619047619048 +"miglayout",0.0140581375,1.0961315638,-0.2200314501,"https://salsa.debian.org/java-team/libmiglayout-java","https://github.com/mikaelgrev/miglayout",3114.6859375,4,24,0,17,57,0,0,59,2,"2",1.85714285714286,1.96610169491525 +"libminc",-0.2431199399,0.9558742118,-0.5877175902,"https://salsa.debian.org/med-team/libminc","https://github.com/BIC-MNI/libminc.git",5746.5411342593,3,34,0,18,29,0,0,33,4,"4",1.91891891891892,1.87878787878788 +"libmodbus",0.4081348938,2.0101967387,-0.0931762571,"https://salsa.debian.org/debian/libmodbus","https://github.com/stephane/libmodbus.git",5746.5321180556,58,15,0,55,615,0,25,649,4,"4",1.20547945205479,1.94761171032357 +"moosex-compiletime-traits",-1.5653963424,0.9933122892,-2.1997931366,"https://salsa.debian.org/perl-team/modules/packages/libmoosex-compiletime-traits-perl","https://github.com/nperez/moosex-compiletime-traits.git",0.0730787037,0,1,0,0,0,0,0,0,1,"1",2,NA +"MooseX-MultiInitArg",-1.070754038,1.0835902153,-1.5042988332,"https://salsa.debian.org/perl-team/modules/packages/libmoosex-multiinitarg-perl","https://github.com/frodwith/MooseX-MultiInitArg.git",0.0628703704,0,1,0,1,0,0,0,1,1,"1",2,1 +"p5-moosex-mungehas",-1.7054687669,0.6551084355,-2.1489172119,"https://salsa.debian.org/perl-team/modules/packages/libmoosex-mungehas-perl","https://github.com/tobyink/p5-moosex-mungehas",2044.5397800926,1,6,0,4,6,0,0,6,1,"1",1.85714285714286,2 +"MooseX-Runnable",-1.5770222755,1.133906618,-2.3498416952,"https://salsa.debian.org/perl-team/modules/packages/libmoosex-runnable-perl","https://github.com/moose/MooseX-Runnable",3541.9794097222,1,4,0,4,4,0,0,6,2,"2",1.8,1.66666666666667 +"p5-moosex-xsaccessor",-1.7969930844,0.6221995894,-2.237446435,"https://salsa.debian.org/perl-team/modules/packages/libmoosex-xsaccessor-perl","https://github.com/tobyink/p5-moosex-xsaccessor",3461.6608333333,0,1,0,1,1,0,0,2,2,"2",2,1.5 +"p5-moox-cmd",-1.7714724432,0.7389635101,-2.3287224021,"https://salsa.debian.org/perl-team/modules/packages/libmoox-cmd-perl","https://github.com/Getty/p5-moox-cmd",2141.9085532407,4,4,0,7,9,0,0,11,1,"1",1.5,1.81818181818182 +"p5-moox-struct",1.100399874,4.7268638235,0.0231138942,"https://salsa.debian.org/perl-team/modules/packages/libmoox-struct-perl","https://github.com/tobyink/p5-moox-struct",3679.9237037037,1,2,0,2,4,0,0,4,2,"2",1.66666666666667,2 +"MooX-Types-MooseLike",0.2188487287,2.4276236186,-0.2341829878,"https://salsa.debian.org/perl-team/modules/packages/libmoox-types-mooselike-perl","https://github.com/mateu/MooX-Types-MooseLike.git",1382.0588888889,0,16,0,12,20,0,0,21,1,"1",2,1.95238095238095 +"p5-MouseX-NativeTraits",0.451797092,3.5585079183,-0.2632252957,"https://salsa.debian.org/perl-team/modules/packages/libmousex-nativetraits-perl","https://github.com/gfx/p5-MouseX-NativeTraits.git",1010.1283101852,1,4,0,2,2,0,0,4,1,"1",1.8,1.5 +"p5-mousex-types",-0.9002059228,2.4281097906,-1.6194395424,"https://salsa.debian.org/perl-team/modules/packages/libmousex-types-perl","https://github.com/yappo/p5-mousex-types.git",984.7711226852,0,8,0,2,5,0,0,7,1,"1",2,1.71428571428571 +"libmpdclient",0.2085560362,1.356457434,-0.1176167234,"https://salsa.debian.org/mpd-team/libmpdclient","https://github.com/MusicPlayerDaemon/libmpdclient",5726.394375,18,26,0,31,41,0,0,60,4,"4",1.59090909090909,1.68333333333333 +"libofx",0.2034150256,0.6532722257,-0.0343613081,"https://salsa.debian.org/debian/libofx","https://github.com/libofx/libofx",5174.00625,8,16,0,16,48,0,0,49,4,"4",1.66666666666667,1.97959183673469 +"OpenHMD",0.1127945014,1.854847445,-0.28253551,"https://salsa.debian.org/debian/libopenhmd","https://github.com/OpenHMD/OpenHMD",3515.7873958333,18,41,1,36,258,0,18,277,2,"2",1.69491525423729,1.93140794223827 +"Pandoc-Elements",-1.2178305762,1.3066890827,-1.790496828,"https://salsa.debian.org/perl-team/modules/packages/libpandoc-elements-perl","https://github.com/nichtich/Pandoc-Elements.git",2600.5557175926,2,3,0,3,9,0,2,12,1,"1",1.6,1.75 +"Pandoc-Wrapper",-1.1913578813,0.8972995069,-1.7262399697,"https://salsa.debian.org/perl-team/modules/packages/libpandoc-wrapper-perl","https://github.com/nichtich/Pandoc-Wrapper.git",1879.2412037037,2,4,0,5,16,0,0,17,1,"1",1.66666666666667,1.94117647058824 +"params-callbackrequest",-1.3155087057,0.9970633758,-1.7603650909,"https://salsa.debian.org/perl-team/modules/packages/libparams-callbackrequest-perl","https://github.com/theory/params-callbackrequest.git",1199.2313657407,0,2,0,1,0,0,0,1,1,"1",2,1 +"Params-Util",0.5669557248,2.7095409025,0.0183304165,"https://salsa.debian.org/perl-team/modules/packages/libparams-util-perl","https://github.com/perl5-utils/Params-Util",4635.8917939815,2,6,0,2,5,0,0,5,3,"3",1.75,2 +"parse-cpan-packages",-1.3162623238,0.055729798,-1.5930972954,"https://salsa.debian.org/perl-team/modules/packages/libparse-cpan-packages-perl","https://github.com/wchristian/parse-cpan-packages",2213.1126273148,1,3,0,4,6,0,0,8,1,"1",1.75,1.75 +"Parse-Method-Signatures",-0.3098675421,2.1520892101,-0.7857930491,"https://salsa.debian.org/perl-team/modules/packages/libparse-method-signatures-perl","https://github.com/ashb/Parse-Method-Signatures.git",3028.8479166667,2,10,0,8,5,0,0,10,2,"2",1.83333333333333,1.5 +"perl-Parse-Netstat",-1.2901506305,0.9707747961,-1.7179336241,"https://salsa.debian.org/perl-team/modules/packages/libparse-netstat-perl","https://github.com/perlancar/perl-Parse-Netstat.git",4083.673275463,0,11,0,2,0,0,0,2,3,"3",2,1 +"Parse-RecDescent",-0.0286467306,0.2229895206,-0.1007582655,"https://salsa.debian.org/perl-team/modules/packages/libparse-recdescent-perl","https://github.com/jtbraun/Parse-RecDescent.git",2082.3553240741,1,5,0,2,7,0,0,7,1,"1",1.83333333333333,2 +"perl-pdf-report",-1.1407475711,-0.7317783117,-1.2346814292,"https://salsa.debian.org/perl-team/modules/packages/libpdf-report-perl","https://github.com/hashbangperl/perl-pdf-report.git",159.7184490741,0,1,0,1,2,0,0,2,1,"1",2,2 +"PDL-IO-Matlab",-1.8122896746,0.3558570995,-2.2370761422,"https://salsa.debian.org/perl-team/modules/packages/libpdl-io-matlab-perl","https://github.com/jlapeyre/PDL-IO-Matlab.git",3358.4244907408,1,2,0,2,4,0,0,4,2,"2",1.66666666666667,2 +"perl-Perinci-Sub-Normalize",-2.9327731106,-0.9162267093,-3.3201523401,"https://salsa.debian.org/perl-team/modules/packages/libperinci-sub-normalize-perl","https://github.com/perlancar/perl-Perinci-Sub-Normalize.git",3147.5333564815,0,11,0,2,0,0,0,2,2,"2",2,1 +"p5-perlx-assert",-1.0193446605,1.5425032533,-1.8362395319,"https://salsa.debian.org/perl-team/modules/packages/libperlx-assert-perl","https://github.com/tobyink/p5-perlx-assert",1111.6440162037,0,1,0,1,1,0,0,1,1,"1",2,2 +"p5-perlx-define",-2.1678337344,0.0459215725,-2.6131874891,"https://salsa.debian.org/perl-team/modules/packages/libperlx-define-perl","https://github.com/tobyink/p5-perlx-define",0.0109259259,0,1,0,1,1,0,0,1,1,"1",2,2 +"libplist",0.2890151668,0.7751330361,0.068106781,"https://salsa.debian.org/imobiledevice-team/libplist","https://github.com/libimobiledevice/libplist.git",5614.0678125,41,20,0,42,98,0,0,127,4,"4",1.32786885245902,1.77165354330709 +"libpng",0.1677990695,0.4257948453,0.0473446327,"https://salsa.debian.org/debian/libpng1.6","https://github.com/glennrp/libpng",5354.1097106482,66,26,0,71,29,0,1,92,4,"4",1.28260869565217,1.31521739130435 +"quazip",0.2146838323,0.9284953049,-0.0650262981,"https://salsa.debian.org/debian/libquazip","https://github.com/stachenov/quazip.git",5295.4944097222,19,25,0,36,147,0,0,150,4,"4",1.56818181818182,1.98 +"rabbitmq-c",0.5937450624,2.3238703606,-0.0094513193,"https://salsa.debian.org/debian/librabbitmq","https://github.com/alanxz/rabbitmq-c.git",5294.5360185185,63,49,0,77,513,0,0,520,4,"4",1.4375,1.98653846153846 +"librarian-puppet",-1.4485786469,-0.1256063685,-1.863254572,"https://salsa.debian.org/ruby-team/librarian-puppet","https://github.com/voxpupuli/librarian-puppet.git",4114.1364930556,12,65,0,51,102,0,0,135,3,"3",1.84415584415584,1.75555555555556 +"p5-rdf-trinex-functions",-0.3154319143,2.3378879966,-0.9704018341,"https://salsa.debian.org/perl-team/modules/packages/librdf-trinex-functions-perl","https://github.com/tobyink/p5-rdf-trinex-functions",833.4788657407,0,1,0,1,0,0,0,1,1,"1",2,1 +"p5-rdf-vcard",-1.1506651259,1.2441236911,-1.5912534228,"https://salsa.debian.org/perl-team/modules/packages/librdf-vcard-perl","https://github.com/tobyink/p5-rdf-vcard",1350.944537037,0,1,0,1,3,0,0,3,1,"1",2,2 +"re-engine-RE2",0.0664274847,1.5519335001,-0.198667675,"https://salsa.debian.org/perl-team/modules/packages/libre-engine-re2-perl","https://github.com/dgl/re-engine-RE2.git",4711.6157638889,4,2,0,5,11,0,0,11,3,"3",1.33333333333333,2 +"Regexp-Assemble",0.1956519681,1.1975556345,-0.0657051088,"https://salsa.debian.org/perl-team/modules/packages/libregexp-assemble-perl","https://github.com/ronsavage/Regexp-Assemble.git",3022.0175347222,1,7,0,6,10,0,0,10,2,"2",1.875,2 +"Regexp--Common",0.425402964,2.6846898207,-0.0434398169,"https://salsa.debian.org/perl-team/modules/packages/libregexp-common-perl","https://github.com/Abigail/Regexp--Common.git",2712.1816087963,4,1,0,3,10,0,0,12,1,"1",1.2,1.83333333333333 +"libregf",0.4815110403,3.4273810655,-0.3192521911,"https://salsa.debian.org/pkg-security-team/libregf","https://github.com/libyal/libregf",3351.514375,0,1,0,1,10,0,2,12,2,"2",2,1.83333333333333 +"librelp",0.3314612484,2.0471916806,-0.1848777948,"https://salsa.debian.org/debian/librelp","https://github.com/rsyslog/librelp",5591.5436921296,9,32,1,25,70,0,0,74,4,"4",1.78048780487805,1.94594594594595 +"libreswan",-0.4685289799,0.1790588169,-0.7335988012,"https://salsa.debian.org/debian/libreswan","https://github.com/libreswan/libreswan.git",5780.1473263889,145,62,0,96,291,0,0,336,4,"4",1.29951690821256,1.86607142857143 +"rose",-0.5901790776,0.7613087197,-0.8838877593,"https://salsa.debian.org/perl-team/modules/packages/librose-db-object-perl","https://github.com/siracusa/rose.git",5666.5254166667,1,13,0,5,15,0,1,16,4,"4",1.92857142857143,1.9375 +"librsync",1.0536449912,2.2531278593,0.4172888316,"https://salsa.debian.org/wrar/librsync","https://github.com/librsync/librsync",3224.9778472222,6,27,0,28,97,0,0,99,2,"2",1.81818181818182,1.97979797979798 +"libsamplerate",1.1293768908,2.270076752,0.5189548422,"https://salsa.debian.org/multimedia-team/libsamplerate","https://github.com/libsndfile/libsamplerate",5747.2226851852,38,5,1,34,55,0,0,67,4,"4",1.11627906976744,1.82089552238806 +"libsass-python",-0.2696522517,0.8271709552,-0.6027229138,"https://salsa.debian.org/debian/libsass-python","https://github.com/dahlia/libsass-python.git",4268.9750925926,7,93,0,77,129,0,0,180,3,"3",1.93,1.71666666666667 +"libseccomp",0.1381369347,0.416274215,0.0228352343,"https://salsa.debian.org/debian/libseccomp","https://github.com/seccomp/libseccomp",4323.2139467593,71,4,2,57,206,0,1,215,3,"3",1.05333333333333,1.95813953488372 +"libserial",-1.1010178283,1.6867209629,-1.6981926712,"https://salsa.debian.org/debian/libserial","https://github.com/crayzeewulf/libserial.git",5587.6811226852,3,17,0,12,68,0,2,71,4,"4",1.85,1.95774647887324 +"libsigcplusplus",1.039682316,2.0456143837,0.5117249183,"https://salsa.debian.org/gnome-team/libsigcplusplus","https://github.com/libsigcplusplus/libsigcplusplus.git",5770.9372800926,22,19,0,30,50,0,0,65,4,"4",1.46341463414634,1.76923076923077 +"smali",0.051369828,1.8568435409,-0.3306485602,"https://salsa.debian.org/android-tools-team/libsmali-java","https://github.com/JesusFreke/smali",4709.8444212963,28,24,0,34,365,0,10,381,3,"3",1.46153846153846,1.95800524934383 +"libsoundio",0.7102350676,3.6650448533,-0.2050801471,"https://salsa.debian.org/debian-hamradio-team/libsoundio","https://github.com/andrewrk/libsoundio.git",3080.119837963,16,23,0,26,120,0,4,127,2,"2",1.58974358974359,1.94488188976378 +"libspiro",0.131579132,1.3992780483,-0.1906866674,"https://salsa.debian.org/fonts-team/libspiro","https://github.com/fontforge/libspiro.git",4925.1799537037,1,10,0,7,21,0,0,21,3,"3",1.90909090909091,2 +"spreadsheet-parseexcel",0.0390044504,0.8094712372,-0.1827268471,"https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-parseexcel-perl","https://github.com/runrig/spreadsheet-parseexcel.git",1902.0376851852,1,6,0,6,33,0,0,36,1,"1",1.85714285714286,1.91666666666667 +"spreadsheet-writeexcel",-0.0847103732,0.3100125622,-0.1871342632,"https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-writeexcel-perl","https://github.com/jmcnamara/spreadsheet-writeexcel",5025.7453819445,1,5,0,5,0,0,1,6,4,"4",1.83333333333333,1 +"libssh2",0.4762440748,1.2465942901,0.1442247779,"https://salsa.debian.org/debian/libssh2","https://github.com/libssh2/libssh2",5758.7769328704,166,33,1,147,60,0,1,189,4,"4",1.16582914572864,1.31746031746032 +"libStatGen",-0.975335451,0.4820429389,-1.3209080132,"https://salsa.debian.org/med-team/libstatgen","https://github.com/statgen/libStatGen",3791.9891319445,4,17,0,10,34,0,0,36,3,"3",1.80952380952381,1.94444444444444 +"statistics--basic",-0.339509548,1.3960758717,-0.6303620815,"https://salsa.debian.org/perl-team/modules/packages/libstatistics-basic-perl","https://github.com/jettero/statistics--basic",2331.8967939815,1,4,0,2,4,0,0,5,1,"1",1.8,1.8 +"stb",0.0260953725,0.614834907,-0.1332118971,"https://salsa.debian.org/yangfl-guest/stb","https://github.com/nothings/stb",3489.7656944445,45,185,0,183,533,0,0,592,2,"2",1.80434782608696,1.90033783783784 +"p5-String-Diff",-1.3455951871,1.0906833724,-1.8998963909,"https://salsa.debian.org/perl-team/modules/packages/libstring-diff-perl","https://github.com/yappo/p5-String-Diff.git",2495.2807060185,0,3,0,2,16,0,0,16,1,"1",2,2 +"string-mkpasswd",-0.4901797022,1.4058339509,-0.8573438246,"https://salsa.debian.org/perl-team/modules/packages/libstring-mkpasswd-perl","https://github.com/sirhc/string-mkpasswd.git",1997.6768055556,0,4,0,2,7,0,0,7,1,"1",2,2 +"Switch",1.122027291,3.2876087875,0.2909942207,"https://salsa.debian.org/perl-team/modules/packages/libswitch-perl","https://github.com/chorny/Switch.git",4065.2442592593,3,4,0,4,3,0,0,6,3,"3",1.57142857142857,1.5 +"Sys-Filesystem",-1.1120417075,0.3703683235,-1.5493480129,"https://salsa.debian.org/perl-team/modules/packages/libsys-filesystem-perl","https://github.com/rehsack/Sys-Filesystem",4021.0829050926,2,3,0,2,3,0,0,3,3,"3",1.6,2 +"CPAN-Sys-Info-Base",-1.1657354635,0.2469375973,-1.4547896136,"https://salsa.debian.org/perl-team/modules/packages/libsys-info-base-perl","https://github.com/burak/CPAN-Sys-Info-Base.git",4472.8146643519,0,2,0,1,2,0,0,2,3,"3",2,2 +"tabixpp",-0.5609418279,1.5681864899,-0.9903141087,"https://salsa.debian.org/med-team/libtabixpp","https://github.com/ekg/tabixpp.git",4263.7660069445,1,12,0,9,27,0,0,27,3,"3",1.92307692307692,2 +"libteam",0.3146115396,1.3119743537,0.0101461881,"https://salsa.debian.org/debian/libteam","https://github.com/jpirko/libteam",4358.8268634259,40,5,0,31,78,0,3,102,3,"3",1.11111111111111,1.76470588235294 +"TermReadKey",0.6441757313,1.6725134495,0.1757431378,"https://salsa.debian.org/perl-team/modules/packages/libterm-readkey-perl","https://github.com/jonathanstowe/TermReadKey.git",4734.9570717593,8,17,0,18,40,0,0,42,3,"3",1.68,1.95238095238095 +"Term-Table",-0.9505327372,1.4037764096,-1.390637121,"https://salsa.debian.org/perl-team/modules/packages/libterm-table-perl","https://github.com/exodist/Term-Table.git",2498.9135185185,1,5,0,5,16,0,0,16,1,"1",1.83333333333333,2 +"Test-Harness",-1.5063742807,-0.2541479391,-1.8715013961,"https://salsa.debian.org/perl-team/modules/packages/libtest-harness-perl","https://github.com/Perl-Toolchain-Gang/Test-Harness.git",5734.1103356482,27,47,0,51,97,0,2,113,4,"4",1.63513513513514,1.85840707964602 +"URI",0.1589529919,0.4832194601,0.0298109637,"https://salsa.debian.org/perl-team/modules/packages/liburi-perl","https://github.com/libwww-perl/URI.git",5620.9042939815,27,14,0,37,89,0,1,98,4,"4",1.34146341463415,1.90816326530612 +"libusbmuxd",0.7289206284,2.7086807014,0.1072945241,"https://salsa.debian.org/imobiledevice-team/libusbmuxd","https://github.com/libimobiledevice/libusbmuxd.git",3636.013275463,9,9,0,14,171,0,0,173,2,"2",1.5,1.98843930635838 +"libvslvm",0.4972132182,3.5752748687,-0.3065187033,"https://salsa.debian.org/pkg-security-team/libvslvm","https://github.com/libyal/libvslvm",3338.937025463,0,1,0,1,10,0,2,12,2,"2",2,1.83333333333333 +"p5-web-id",-1.7090564746,0.8941936847,-2.3119612886,"https://salsa.debian.org/perl-team/modules/packages/libweb-id-perl","https://github.com/tobyink/p5-web-id",743.3495023148,0,1,0,1,1,0,0,1,1,"1",2,2 +"libwfut",-0.3722932827,1.182465359,-1.0373316516,"https://salsa.debian.org/games-team/libwfut","https://github.com/worldforge/libwfut",5568.6978240741,0,9,0,6,3,0,0,6,4,"4",2,1.5 +"libwmf",1.6375319104,2.6900330531,0.986051197,"https://salsa.debian.org/yangfl-guest/libwmf","https://github.com/caolanm/libwmf",1783.8275231482,5,6,0,8,12,0,0,14,1,"1",1.54545454545455,1.85714285714286 +"perl-wfa",-1.3338913453,0.3424607166,-1.6281493484,"https://salsa.debian.org/perl-team/modules/packages/libwww-facebook-api-perl","https://github.com/unobe/perl-wfa.git",3078.4910185185,2,7,0,4,7,0,0,8,2,"2",1.77777777777778,1.875 +"p5-www-finger",-1.969235679,0.3956899207,-2.5687445665,"https://salsa.debian.org/perl-team/modules/packages/libwww-finger-perl","https://github.com/tobyink/p5-www-finger",1316.1418171296,0,1,0,1,0,0,0,1,1,"1",2,1 +"www-google-calculator-perl",-1.995767031,-0.963482599,-2.1565335627,"https://salsa.debian.org/perl-team/modules/packages/libwww-google-calculator-perl","https://github.com/typester/www-google-calculator-perl.git",8.9802893519,0,2,0,1,1,0,0,2,1,"1",2,1.5 +"libx86emu",0.2882621713,2.1510294765,-0.1187700994,"https://salsa.debian.org/debian/libx86emu","https://github.com/wfeldt/libx86emu",5028.2515972222,1,8,0,5,16,0,1,17,4,"4",1.88888888888889,1.94117647058824 +"libxcrypt",0.6294336301,1.8917972899,0.1100717419,"https://salsa.debian.org/md/libxcrypt","https://github.com/besser82/libxcrypt.git",2976.0054050926,9,14,0,21,95,0,0,97,2,"2",1.60869565217391,1.97938144329897 +"libxmlb",0.6508495345,3.3286264453,-0.0130638591,"https://salsa.debian.org/efi-team/libxmlb","https://github.com/hughsie/libxmlb.git",1900.0449074074,20,6,0,18,36,0,0,36,1,"1",1.23076923076923,2 +"libxsmm",-0.2346624326,4.5583780245,-1.7957714951,"https://salsa.debian.org/science-team/libxsmm","https://github.com/libxsmm/libxsmm",2814.5005324074,23,91,3,47,120,0,3,130,2,"2",1.79824561403509,1.92307692307692 +"xstream",0.3400487245,1.4508992999,-0.0600865184,"https://salsa.debian.org/java-team/libxstream-java","https://github.com/x-stream/xstream.git",5706.9961921296,29,7,0,35,375,0,0,383,4,"4",1.19444444444444,1.97911227154047 +"light",0.5032985546,2.4196884631,-0.3115474994,"https://salsa.debian.org/debian/light","https://github.com/haikarainen/light.git",3160.1600115741,4,28,0,25,51,0,0,66,2,"2",1.875,1.77272727272727 +"light-locker",2.0302690876,3.664096529,1.142878255,"https://salsa.debian.org/xfce-extras-team/light-locker","https://github.com/the-cavalry/light-locker",4227.1496643519,82,214,2,128,275,0,0,390,3,"3",1.72297297297297,1.7051282051282 +"lightdm",2.2443975037,2.9446010571,1.7397776964,"https://salsa.debian.org/xfce-extras-team/lightdm","https://github.com/canonical/lightdm.git",4834.5447222222,52,64,0,73,415,0,0,449,3,"3",1.55172413793103,1.92427616926503 +"linux-minidisc",-0.9631872604,1.8387133413,-1.6378120208,"https://github.com/glaubitz/linux-minidisc","https://github.com/glaubitz/linux-minidisc",4847.712349537,36,17,0,20,3,0,0,23,3,"3",1.32075471698113,1.1304347826087 +"linux_logo",3.6168427209,4.8502382947,2.8124057325,"https://salsa.debian.org/debian/linuxlogo","https://github.com/deater/linux_logo.git",3761.5540393519,1,11,0,8,26,0,0,26,2,"2",1.91666666666667,2 +"LiTL",-1.9126650133,-1.5671586884,-1.990034954,"https://salsa.debian.org/debian/litl","https://github.com/trahay/LiTL.git",3099.0093171296,0,7,0,3,1,0,0,3,2,"2",2,1.33333333333333 +"lksctp-tools",0.0452198518,0.3695750173,-0.0618537574,"https://salsa.debian.org/debian/lksctp-tools","https://github.com/sctp/lksctp-tools",5515.8208912037,27,6,1,22,37,0,1,51,4,"4",1.18181818181818,1.72549019607843 +"llgal",-0.3872692626,0.4151216759,-0.6843175914,"https://github.com/bgoglin/llgal","https://github.com/bgoglin/llgal",4534.9444212963,2,4,0,1,11,0,0,11,3,"3",1.66666666666667,2 +"lltag",0.046755981,1.4904215665,-0.4505269549,"https://github.com/bgoglin/lltag","https://github.com/bgoglin/lltag",4379.0269328704,3,3,0,2,9,0,0,9,3,"3",1.5,2 +"lmodern",0.1884866384,0.5510456421,0.0188158223,"https://github.com/debian-tex/lmodern","https://github.com/debian-tex/lmodern",5129.2031828704,1,7,0,2,1,0,0,3,4,"4",1.875,1.33333333333333 +"lnav",0.5353667256,1.9342081999,-0.0323395042,"https://salsa.debian.org/carnil/lnav","https://github.com/tstack/lnav",5194.1560648148,17,59,0,51,384,0,4,404,4,"4",1.77631578947368,1.95049504950495 +"logging-log4cxx",0.4346363558,1.6002502027,-0.0917843487,"https://salsa.debian.org/debian/log4cxx","https://github.com/apache/logging-log4cxx.git",3632.7022222222,22,27,0,28,7,0,0,31,2,"2",1.55102040816327,1.2258064516129 +"logbook",-0.4896324695,1.3303979826,-1.0513067414,"https://salsa.debian.org/debian/logbook","https://github.com/getlogbook/logbook.git",4893.8917824074,11,77,0,65,189,0,0,192,3,"3",1.875,1.984375 +"logging_tree",-1.6414264559,0.7777898237,-2.2813478865,"https://salsa.debian.org/debian/python-logging-tree","https://github.com/brandon-rhodes/logging_tree.git",3349.1260532407,5,7,0,10,25,0,0,25,2,"2",1.58333333333333,2 +"redis-lua",-0.3995562839,2.3401321656,-1.0679040964,"https://salsa.debian.org/lua-team/lua-redis","https://github.com/nrk/redis-lua",2064.0116898148,2,10,0,8,80,0,0,80,1,"1",1.83333333333333,2 +"lxctl",1.456465586,5.0051312044,0.180488606,"https://salsa.debian.org/debian/lxctl","https://github.com/lxctl/lxctl",2540.4811342593,0,29,1,12,21,0,5,28,1,"1",2,1.75 +"lxde-icon-theme",0.3420036946,2.5520871,-0.0935522829,"https://salsa.debian.org/lxde-team/lxde-icon-theme","https://github.com/lxde/lxde-icon-theme",1739.474375,0,4,0,3,0,0,0,3,1,"1",2,1 +"lxhotkey",1.1410291912,4.8144910554,0.0876782474,"https://salsa.debian.org/lxde-team/lxhotkey","https://github.com/lxde/lxhotkey.git",2759.3632291667,8,4,0,8,27,0,0,32,2,"2",1.33333333333333,1.84375 +"lxinput",0.7555106667,3.0338681034,0.062981082,"https://salsa.debian.org/lxde-team/lxinput","https://github.com/lxde/lxinput.git",5254.8770717593,78,26,0,55,0,0,0,55,4,"4",1.25,1 +"lxqt-globalkeys",0.2347991986,1.8204555607,-0.1421664419,"https://salsa.debian.org/lxqt-team/lxqt-globalkeys","https://github.com/lxqt/lxqt-globalkeys.git",4146.0372916667,56,46,0,78,0,0,0,78,3,"3",1.45098039215686,1 +"lxqt-openssh-askpass",0.2639701586,2.0558849821,-0.1403263445,"https://salsa.debian.org/lxqt-team/lxqt-openssh-askpass","https://github.com/lxqt/lxqt-openssh-askpass.git",4154.121712963,34,30,0,50,29,0,0,59,3,"3",1.46875,1.49152542372881 +"lz4",0.2140600439,0.6954425453,0.0384684269,"https://salsa.debian.org/debian/lz4","https://github.com/lz4/lz4",3549.3137037037,30,172,0,147,393,0,5,456,2,"2",1.85148514851485,1.86184210526316 +"mako",0.9607195824,2.3152903989,0.3300125847,"https://salsa.debian.org/python-team/packages/mako","https://github.com/sqlalchemy/mako",5744.8817476852,23,45,7,53,64,0,6,98,4,"4",1.66176470588235,1.6530612244898 +"variant",0.159782488,3.7315023577,-0.6830233266,"https://salsa.debian.org/debian-gis-team/mapbox-variant/","https://github.com/mapbox/variant.git",2484.9211689815,4,25,0,18,52,0,1,55,1,"1",1.86206896551724,1.94545454545455 +"mapcache",-0.6849497052,1.4775793478,-1.119704947,"https://salsa.debian.org/debian-gis-team/mapcache","https://github.com/mapserver/mapcache.git",4429.8413773148,24,38,0,33,160,0,2,163,3,"3",1.61290322580645,1.98159509202454 +"mate-common",0.2236781765,1.5441453615,-0.2936941102,"https://salsa.debian.org/debian-mate-team/mate-common","https://github.com/mate-desktop/mate-common.git",4289.5348032407,4,19,0,14,26,0,0,28,3,"3",1.82608695652174,1.92857142857143 +"mate-control-center",0.442807422,1.1267913622,0.085872745,"https://salsa.debian.org/debian-mate-team/mate-control-center","https://github.com/mate-desktop/mate-control-center.git",4382.2688194445,31,51,0,48,319,0,0,321,3,"3",1.6219512195122,1.99376947040498 +"mate-desktop",1.4429678874,2.800379976,0.7048624548,"https://salsa.debian.org/debian-mate-team/mate-desktop","https://github.com/mate-desktop/mate-desktop.git",4339.3214814815,30,45,0,44,57,0,0,90,3,"3",1.6,1.63333333333333 +"dock-applet",0.3881982435,2.2401761238,-0.1688322569,"https://salsa.debian.org/debian-mate-team/mate-dock-applet","https://github.com/robint99/dock-applet.git",2711.5333680556,9,12,0,13,168,0,0,169,1,"1",1.57142857142857,1.99408284023669 +"mate-icon-theme",0.4087889597,2.4988457726,-0.055212655,"https://salsa.debian.org/debian-mate-team/mate-icon-theme","https://github.com/mate-desktop/mate-icon-theme.git",3997.7458217593,7,25,0,19,36,0,0,38,3,"3",1.78125,1.94736842105263 +"mate-icon-theme-faenza",0.5142431191,2.3829279771,-0.0287099151,"https://salsa.debian.org/debian-mate-team/mate-icon-theme-faenza","https://github.com/mate-desktop/mate-icon-theme-faenza.git",2081.9641898148,2,15,0,10,19,0,0,20,1,"1",1.88235294117647,1.95 +"mate-netbook",-0.1990739498,0.92545311,-0.5547977915,"https://salsa.debian.org/debian-mate-team/mate-netbook","https://github.com/mate-desktop/mate-netbook.git",4033.4643981482,4,20,0,14,35,0,0,37,3,"3",1.83333333333333,1.94594594594595 +"mate-notification-daemon",0.294431484,1.2443680719,-0.0375475363,"https://salsa.debian.org/debian-mate-team/mate-notification-daemon","https://github.com/mate-desktop/mate-notification-daemon.git",4376.8075462963,19,34,0,34,136,0,0,140,3,"3",1.64150943396226,1.97142857142857 +"mate-polkit",0.0844204987,0.7139928108,-0.078912062,"https://salsa.debian.org/debian-mate-team/mate-polkit","https://github.com/mate-desktop/mate-polkit.git",4293.1045717593,9,23,0,18,42,0,0,47,3,"3",1.71875,1.8936170212766 +"mate-settings-daemon",0.1815646983,0.7203109893,-0.0328315734,"https://salsa.debian.org/debian-mate-team/mate-settings-daemon","https://github.com/mate-desktop/mate-settings-daemon.git",4342.2338425926,28,45,0,46,189,0,0,200,3,"3",1.61643835616438,1.945 +"selinux",-1.9181882041,-0.1416609992,-2.339014847,"https://salsa.debian.org/selinux-team/mcstrans","https://github.com/SELinuxProject/selinux.git",5593.8026157407,179,30,0,124,83,0,12,182,4,"4",1.14354066985646,1.45604395604396 +"mdbtools",0.6161871039,1.1807658317,0.2302864182,"https://salsa.debian.org/debian/mdbtools","https://github.com/mdbtools/mdbtools",4863.4037152778,30,60,0,60,195,0,0,220,3,"3",1.66666666666667,1.88636363636364 +"mdk4",-0.0590321422,2.244566977,-0.6808566672,"https://salsa.debian.org/pkg-security-team/mdk4","https://github.com/aircrack-ng/mdk4",1545.4045949074,4,9,0,11,96,0,0,97,1,"1",1.69230769230769,1.98969072164948 +"metapixel",1.7970234478,4.4178259899,0.5633223634,"https://salsa.debian.org/debian/metapixel","https://github.com/schani/metapixel.git",3264.7618171296,2,6,0,4,25,0,0,25,2,"2",1.75,2 +"metastore",-0.4597261727,0.6466323956,-0.8107792072,"https://salsa.debian.org/rfrancoise/metastore","https://github.com/przemoc/metastore",5431.9336689815,7,2,1,8,30,0,2,33,4,"4",1.22222222222222,1.90909090909091 +"meteo-qt",0.8698899777,3.6161721459,0.0040074202,"https://salsa.debian.org/lxqt-team/meteo-qt","https://github.com/dglent/meteo-qt.git",3275.9305092593,3,17,0,16,53,0,0,53,2,"2",1.85,2 +"Mew",-0.487761537,-0.3514010061,-0.554001036,"https://salsa.debian.org/debian/mew","https://github.com/kazu-yamamoto/Mew",5007.0253703704,7,24,0,25,45,0,0,46,4,"4",1.7741935483871,1.97826086956522 +"Mew",-0.8388830323,-0.1260459264,-1.0270915103,"https://salsa.debian.org/debian/mew-beta","https://github.com/kazu-yamamoto/Mew",5007.0253703704,7,24,0,25,45,0,0,46,4,"4",1.7741935483871,1.97826086956522 +"mg",0.8626842283,2.0640170714,0.2148718944,"https://salsa.debian.org/debian/mg","https://github.com/hboetes/mg.git",2838.9768518519,3,9,0,3,25,0,0,25,2,"2",1.75,2 +"mhc",-0.8884000458,-0.3595274014,-1.157500378,"https://salsa.debian.org/debian/mhc","https://github.com/yoshinari-nomura/mhc",4808.1619907407,0,12,0,8,12,0,0,12,3,"3",2,2 +"mhwaveedit",-0.0845847669,0.9517864727,-0.4200690155,"https://salsa.debian.org/multimedia-team/mhwaveedit","https://github.com/magnush/mhwaveedit",4171.9324305556,3,7,0,6,15,0,0,16,3,"3",1.7,1.9375 +"micro-httpd",-0.3300074474,1.1160734611,-0.9308283084,"https://github.com/sudipm-mukherjee/micro-httpd.git","https://github.com/sudipm-mukherjee/micro-httpd.git",4120.3943287037,0,4,0,1,1,0,0,2,3,"3",2,1.5 +"MilkyTracker",0.2927952476,1.359126964,-0.1661437741,"https://salsa.debian.org/multimedia-team/milkytracker","https://github.com/milkytracker/MilkyTracker",5764.1453472222,35,32,1,44,68,0,5,92,4,"4",1.47761194029851,1.73913043478261 +"miller",-0.6485962999,1.145337313,-1.0224618063,"https://salsa.debian.org/debian/miller","https://github.com/johnkerl/miller.git",3146.11875,32,28,0,52,128,0,1,155,2,"2",1.46666666666667,1.8258064516129 +"mimetic",-1.0569767141,-0.8952643698,-1.0963723389,"https://git.toastfreeware.priv.at/debian/mimetic.git","https://github.com/tat/mimetic.git",2612.777962963,3,10,0,8,26,0,0,26,1,"1",1.76923076923077,2 +"Minder",-0.4197168251,2.1005562235,-0.9632919414,"https://salsa.debian.org/yangfl-guest/Minder","https://github.com/phase1geo/Minder.git",2148.0431712963,20,27,0,36,96,0,1,112,1,"1",1.57446808510638,1.85714285714286 +"minimodem",-0.3250415773,2.1360118932,-0.8562976169,"https://github.com/kamalmostafa/minimodem","https://github.com/kamalmostafa/minimodem",3742.1687037037,10,6,0,12,71,0,0,76,2,"2",1.375,1.93421052631579 +"mininet",-0.586251107,1.2693023429,-1.2259353746,"https://salsa.debian.org/debian/mininet","https://github.com/mininet/mininet",5029.9877777778,22,77,1,61,58,0,97,202,4,"4",1.77777777777778,1.28712871287129 +"mootools-core",0.7471893128,2.8560605859,0.0458469775,"https://salsa.debian.org/js-team/mootools","https://github.com/mootools/mootools-core.git",2900.1052662037,27,88,0,63,54,0,136,231,2,"2",1.76521739130435,1.23376623376623 +"mopidy-internetarchive",-0.2187337791,2.3088703355,-0.8028100126,"https://salsa.debian.org/mopidy-team/mopidy-internetarchive","https://github.com/tkem/mopidy-internetarchive",2991.6193171296,0,3,1,2,13,0,0,13,2,"2",2,2 +"mopidy-mpris",-0.2110446145,2.461940178,-1.1114345149,"https://salsa.debian.org/mopidy-team/mopidy-mpris","https://github.com/mopidy/mopidy-mpris.git",3543.9779050926,2,7,0,6,34,0,0,35,2,"2",1.77777777777778,1.97142857142857 +"mopidy-podcast",-0.2941570726,1.7690171184,-0.7388669271,"https://salsa.debian.org/mopidy-team/mopidy-podcast","https://github.com/tkem/mopidy-podcast.git",2983.3689236111,2,1,0,3,30,0,0,30,2,"2",1.33333333333333,2 +"mopidy-podcast-itunes",-0.2467767179,2.4591937682,-0.834541946,"https://salsa.debian.org/mopidy-team/mopidy-podcast-itunes","https://github.com/tkem/mopidy-podcast-itunes",2949.6816087963,0,2,0,1,9,0,0,9,2,"2",2,2 +"mopidy-scrobbler",-0.2517299962,2.1335156702,-1.0325443783,"https://salsa.debian.org/mopidy-team/mopidy-scrobbler","https://github.com/mopidy/mopidy-scrobbler.git",3546.3970023148,0,2,0,1,49,0,0,49,2,"2",2,2 +"mopidy-somafm",-0.2746325835,2.1609819918,-0.859324666,"https://salsa.debian.org/mopidy-team/mopidy-somafm","https://github.com/AlexandrePTJ/mopidy-somafm",2714.300787037,0,6,2,4,27,0,0,27,1,"1",2,2 +"mopidy-soundcloud",-0.2546570011,2.1558962885,-0.9457836601,"https://salsa.debian.org/mopidy-team/mopidy-soundcloud","https://github.com/mopidy/mopidy-soundcloud",3733.2794212963,4,17,2,16,160,0,0,161,2,"2",1.80952380952381,1.99378881987578 +"mopidy-tunein",-0.3236002892,2.6224531521,-1.0905202326,"https://salsa.debian.org/mopidy-team/mopidy-tunein","https://github.com/kingosticks/mopidy-tunein",2521.2538657407,2,14,1,8,41,0,0,41,1,"1",1.875,2 +"mp3fs",0.9163678404,4.5727174058,-0.2047299256,"https://salsa.debian.org/multimedia-team/mp3fs","https://github.com/khenriks/mp3fs.git",5444.4987847222,4,13,0,8,77,0,1,80,4,"4",1.76470588235294,1.9625 +"mpDris2",-0.9856715769,-0.7754968336,-1.0277106449,"https://salsa.debian.org/debian/mpdris2","https://github.com/eonpatapon/mpDris2.git",4512.1038657407,12,20,0,28,118,0,0,119,3,"3",1.625,1.99159663865546 +"mpv",0.5363042562,0.8628802276,0.3101358986,"https://salsa.debian.org/multimedia-team/mpv","https://github.com/mpv-player/mpv",5787.7142361111,512,145,0,277,26,0,383,675,4,"4",1.220700152207,1.03851851851852 +"mrboom-libretro",-0.241313948,1.6810544874,-0.7335121433,"https://salsa.debian.org/games-team/mrboom","https://github.com/Javanaise/mrboom-libretro",2489.0620833333,22,22,0,31,43,0,0,54,1,"1",1.5,1.7962962962963 +"msktutil",-0.1662803901,1.2423651932,-0.5841886377,"https://salsa.debian.org/debian/msktutil","https://github.com/msktutil/msktutil",4695.5949305556,8,21,2,11,34,0,1,38,3,"3",1.72413793103448,1.89473684210526 +"mtr",2.0179049728,2.8158196867,1.452557991,"https://salsa.debian.org/debian/mtr","https://github.com/traviscross/mtr",3917.0060648148,16,90,0,75,432,0,0,433,3,"3",1.84905660377358,1.99769053117783 +"mupen64plus-ui-console",0.7264116732,3.6995007165,-0.1670734867,"https://salsa.debian.org/games-team/mupen64plus-ui-console","https://github.com/mupen64plus/mupen64plus-ui-console.git",4990.6788773148,5,31,0,19,34,0,0,39,4,"4",1.86111111111111,1.87179487179487 +"mupen64plus-video-glide64mk2",0.1293389165,2.4637475631,-0.3196538821,"https://salsa.debian.org/games-team/mupen64plus-video-glide64mk2","https://github.com/mupen64plus/mupen64plus-video-glide64mk2.git",4126.6609027778,7,35,0,24,59,0,0,64,3,"3",1.83333333333333,1.921875 +"mupen64plus-video-rice",0.1071841352,2.1766235067,-0.3149398833,"https://salsa.debian.org/games-team/mupen64plus-video-rice","https://github.com/mupen64plus/mupen64plus-video-rice.git",4977.9831481482,5,34,0,21,49,0,0,56,3,"3",1.87179487179487,1.875 +"muse",0.3513323565,0.8924420388,0.0076925385,"https://salsa.debian.org/multimedia-team/muse","https://github.com/muse-sequencer/muse.git",5773.0492476852,5,55,0,31,49,0,5,76,4,"4",1.91666666666667,1.64473684210526 +"python-musicbrainz-ngs",0.5076678121,2.1969185222,-0.005881406,"https://salsa.debian.org/python-team/packages/musicbrainzngs","https://github.com/alastair/python-musicbrainz-ngs",3992.7430092593,1,28,3,24,83,0,3,88,3,"3",1.96551724137931,1.94318181818182 +"mypaint",0.3480815429,1.0170198092,-0.0287146792,"https://salsa.debian.org/python-team/packages/mypaint","https://github.com/mypaint/mypaint",5559.7677199074,333,53,2,235,44,0,30,291,4,"4",1.13730569948187,1.15120274914089 +"mysecureshell",-0.4842069771,1.8606131049,-0.9637054818,"https://github.com/mysecureshell/mysecureshell","https://github.com/mysecureshell/mysecureshell",2575.5671990741,3,14,1,9,102,0,0,104,1,"1",1.82352941176471,1.98076923076923 +"MySQLTuner-perl",1.4500845033,4.4623073775,0.3464758377,"https://salsa.debian.org/debian/mysqltuner","https://github.com/major/MySQLTuner-perl",4651.9533217593,46,119,0,115,371,0,0,407,3,"3",1.72121212121212,1.91154791154791 +"n2n",0.1542450391,2.8427672865,-0.655319557,"https://github.com/leggewie-DM/n2n","https://github.com/leggewie-DM/n2n",3071.9561111111,2,3,0,3,2,0,0,5,2,"2",1.6,1.4 +"nabi",-1.1181697355,0.3411872046,-1.5057188398,"https://salsa.debian.org/l10n-korean-team/nabi","https://github.com/libhangul/nabi.git",5305.1766782407,0,3,0,1,5,0,1,6,4,"4",2,1.83333333333333 +"nadoka",-4.0224516234,-0.7310921121,-5.1260106864,"https://salsa.debian.org/ruby-team/nadoka","https://github.com/nadoka/nadoka",4550.0664351852,0,9,0,8,6,0,4,13,3,"3",2,1.46153846153846 +"nagvis",0.2016649842,1.2173315085,-0.3600392025,"https://salsa.debian.org/nagios-team/nagvis","https://github.com/NagVis/nagvis",5779.6260648148,42,38,0,37,263,0,0,268,4,"4",1.475,1.98134328358209 +"ndppd",-0.5295407302,1.6070155277,-1.0766996059,"https://salsa.debian.org/debian/ndppd","https://github.com/DanielAdolfsson/ndppd",4471.5943171296,7,15,1,11,75,0,0,77,3,"3",1.68181818181818,1.97402597402597 +"netcdf-cxx4",-0.359140508,1.3957561161,-0.7913195086,"https://salsa.debian.org/debian-gis-team/netcdf-cxx","https://github.com/Unidata/netcdf-cxx4.git",4438.9411805556,3,28,0,22,99,0,0,100,3,"3",1.90322580645161,1.99 +"netcdf-fortran",-0.1482258041,0.751301518,-0.2962965499,"https://salsa.debian.org/debian/netcdf-fortran","https://github.com/Unidata/netcdf-fortran.git",4488.0650115741,7,39,0,30,150,0,0,153,3,"3",1.84782608695652,1.98039215686275 +"netdiscover",0.2541652433,1.9765761262,-0.2111939526,"https://salsa.debian.org/debian/netdiscover","https://github.com/netdiscover-scanner/netdiscover",5323.4166087963,1,5,0,3,24,0,0,24,4,"4",1.83333333333333,2 +"netplan",0.0413337826,1.5404784729,-0.3486539272,"https://salsa.debian.org/debian/netplan.io","https://github.com/canonical/netplan/commits/master",5185.326875,55,11,0,0,0,0,0,0,4,"4",1.16666666666667,NA +"debian",0.1730522588,2.4986742151,-0.2783909483,"https://github.com/nm-l2tp/debian.git","https://github.com/nm-l2tp/debian.git",2347.114224537,1,1,0,2,0,0,0,2,1,"1",1.5,1 +"NetworkManager-ssh",-0.0086320792,1.1414433729,-0.2761809158,"https://salsa.debian.org/lhw-guest/network-manager-ssh","https://github.com/danfruehauf/NetworkManager-ssh",3197.1808449074,4,7,0,12,101,0,1,103,2,"2",1.63636363636364,1.98058252427184 +"nixnote2",-0.3647270032,0.4002965512,-0.4904591503,"https://salsa.debian.org/debian/nixnote2","https://github.com/robert7/nixnote2",4104.4428587963,11,48,0,37,124,0,4,152,3,"3",1.8135593220339,1.81578947368421 +"nmrpflash",-3.9117966743,-1.8322545897,-4.343551647,"https://salsa.debian.org/debian/nmrpflash","https://github.com/jclehner/nmrpflash",2833.1074768519,10,8,0,14,32,0,0,45,2,"2",1.44444444444444,1.71111111111111 +"babel-plugin-add-module-exports",-1.4169325387,1.5441837408,-2.1700991878,"https://salsa.debian.org/js-team/node-babel-plugin-add-module-exports","https://github.com/59naga/babel-plugin-add-module-exports",2579.5546180556,2,7,0,4,98,0,0,98,1,"1",1.77777777777778,2 +"base64url",-1.8861246737,0.890181623,-2.5677734916,"https://salsa.debian.org/js-team/node-base64url","https://github.com/brianloveswords/base64url.git",3614.4876388889,6,11,0,12,83,0,0,83,2,"2",1.64705882352941,2 +"node-bindings",-0.3124286212,2.605717497,-1.0137570127,"https://salsa.debian.org/js-team/node-bindings","https://github.com/TooTallNate/node-bindings",2587.1395949074,4,8,0,8,5,0,0,12,1,"1",1.66666666666667,1.41666666666667 +"bluebird",0.0584203533,1.0937802889,-0.1343492494,"https://salsa.debian.org/js-team/node-bluebird","https://github.com/petkaantonov/bluebird.git",3418.3106597222,121,152,0,212,654,0,64,848,2,"2",1.55677655677656,1.77122641509434 +"clean-css",0.1880139003,2.7123268564,-0.4696783378,"https://salsa.debian.org/js-team/node-clean-css","https://github.com/GoalSmashers/clean-css.git",4686.8824537037,63,58,0,89,14,0,9,111,3,"3",1.47933884297521,1.12612612612613 +"co",0.4601096377,2.8630730353,-0.1003269721,"https://salsa.debian.org/js-team/node-co","https://github.com/tj/co",1229.0172106482,17,46,0,49,211,0,49,264,1,"1",1.73015873015873,1.79924242424242 +"code",-4.7551646559,-1.4632937686,-5.4545700188,"https://salsa.debian.org/js-team/node-code","https://github.com/hapijs/code.git",3316.1678125,19,23,0,28,93,0,0,93,2,"2",1.54761904761905,2 +"coffeeify",-1.4017605239,1.4637076784,-2.2159952345,"https://salsa.debian.org/js-team/node-coffeeify","https://github.com/jnordberg/coffeeify.git",1705.9137731482,1,13,0,10,64,0,0,69,1,"1",1.92857142857143,1.92753623188406 +"colormin",-3.5089164725,-0.6840024754,-4.2685005942,"https://salsa.debian.org/js-team/node-colormin","https://github.com/ben-eb/colormin",2228.6048148148,0,6,0,2,15,0,0,15,1,"1",2,2 +"combine-source-map",-2.1067627582,1.451088997,-3.1431542202,"https://salsa.debian.org/js-team/node-combine-source-map","https://github.com/thlorenz/combine-source-map.git",1465.4289583333,4,5,0,8,33,0,0,33,1,"1",1.55555555555556,2 +"concat-stream",0.3435827993,2.8106720089,-0.124130821,"https://salsa.debian.org/js-team/node-concat-stream","https://github.com/maxogden/concat-stream.git",2331.5214583333,5,21,0,18,3,0,0,20,1,"1",1.80769230769231,1.15 +"constants-browserify",-0.11940227,2.8343540596,-0.9198546616,"https://salsa.debian.org/js-team/node-constants-browserify","https://github.com/juliangruber/constants-browserify",3669.6149189815,0,3,0,1,5,0,0,5,2,"2",2,2 +"content-disposition",-0.1498091429,2.3260602113,-0.8520258644,"https://salsa.debian.org/js-team/node-content-disposition","https://github.com/jshttp/content-disposition.git",2639.7443518519,6,2,0,6,32,0,0,32,1,"1",1.25,2 +"convert-source-map",0.0871772545,2.7765163193,-0.5756792774,"https://salsa.debian.org/js-team/node-convert-source-map","https://github.com/thlorenz/convert-source-map",3505.4009953704,16,11,0,22,67,0,0,67,2,"2",1.40740740740741,2 +"node-cookie-signature",0.0990081923,2.8247812735,-0.6845514149,"https://salsa.debian.org/js-team/node-cookie-signature","https://github.com/visionmedia/node-cookie-signature.git",3831.3145486111,2,13,0,7,47,0,0,48,3,"3",1.86666666666667,1.97916666666667 +"core-js",-0.0701104518,1.8860340205,-0.4290715682,"https://salsa.debian.org/js-team/node-core-js","https://github.com/zloirock/core-js.git",3801.3871990741,67,73,0,121,289,0,0,376,3,"3",1.52142857142857,1.7686170212766 +"d3-dsv",-0.6792934342,2.1613351331,-1.3775271458,"https://salsa.debian.org/js-team/node-d3-dsv","https://github.com/d3/d3-dsv",3863.8892013889,14,6,0,17,65,0,0,65,3,"3",1.3,2 +"node-dateformat",-0.01865954,1.6506546912,-0.4323251957,"https://salsa.debian.org/js-team/node-dateformat","https://github.com/felixge/node-dateformat",3995.8592476852,8,37,0,33,231,0,3,235,3,"3",1.82222222222222,1.98297872340426 +"execa",0.7079961346,3.9551483175,-0.0722137493,"https://salsa.debian.org/js-team/node-execa","https://github.com/sindresorhus/execa",2926.6958680556,49,7,0,53,128,0,0,157,2,"2",1.125,1.81528662420382 +"node-expat",-0.4080781453,2.3530029048,-1.5150203534,"https://salsa.debian.org/js-team/node-expat","https://github.com/astro/node-expat",4931.3002893519,7,34,0,29,341,0,1,344,3,"3",1.82926829268293,1.99127906976744 +"node-formidable",-1.0478352411,1.3329643424,-1.6311123883,"https://salsa.debian.org/js-team/node-formidable","https://github.com/felixge/node-formidable.git",4861.6687384259,45,72,0,80,292,0,0,334,3,"3",1.61538461538462,1.87425149700599 +"fuzzaldrin-plus",-0.9739589777,1.136573322,-1.4594019089,"https://salsa.debian.org/js-team/node-fuzzaldrin-plus","https://github.com/jeancroy/fuzzaldrin-plus",751.1080902778,2,6,0,3,29,0,0,29,1,"1",1.75,2 +"grunt-babel",-2.3567896079,-0.2595823007,-2.786480601,"https://salsa.debian.org/js-team/node-grunt-babel","https://github.com/babel/grunt-babel.git",3011.4746296296,8,12,0,13,152,0,0,152,2,"2",1.6,2 +"grunt-cli",1.2110710947,4.4921332971,4.42152270994788e-05,"https://salsa.debian.org/js-team/node-grunt-cli","https://github.com/gruntjs/grunt-cli.git",3126.2931944445,8,16,0,20,171,0,0,171,2,"2",1.66666666666667,2 +"gulp-babel",-1.6753037226,0.7240298055,-2.2929274971,"https://salsa.debian.org/js-team/node-gulp-babel","https://github.com/babel/gulp-babel.git",3018.4431018519,10,21,0,25,301,0,0,304,2,"2",1.67741935483871,1.99013157894737 +"gulp-flatten",-2.894365887,-0.8111009229,-3.321955765,"https://salsa.debian.org/js-team/node-gulp-flatten","https://github.com/armed/gulp-flatten",3247.6037152778,2,7,0,6,17,0,1,18,2,"2",1.77777777777778,1.94444444444444 +"gulp-load-plugins",-1.2725888367,2.2883154102,-2.2151032496,"https://salsa.debian.org/js-team/node-gulp-load-plugins","https://github.com/jackfranklin/gulp-load-plugins",3321.8455787037,10,29,0,26,138,0,0,138,2,"2",1.74358974358974,2 +"node-gyp",0.0377305117,0.6211458053,-0.1173242042,"https://salsa.debian.org/js-team/node-gyp","https://github.com/nodejs/node-gyp.git",4297.5489699074,197,73,0,223,832,0,50,1053,3,"3",1.27037037037037,1.79012345679012 +"has-flag",0.3334743676,2.4592111562,-0.1192014058,"https://salsa.debian.org/js-team/node-has-flag","https://github.com/sindresorhus/has-flag",2203.7011111111,6,2,0,7,17,0,0,17,1,"1",1.25,2 +"inline-source-map",-1.7253778479,0.3256715997,-2.1428170788,"https://salsa.debian.org/js-team/node-inline-source-map","https://github.com/thlorenz/inline-source-map.git",3126.5302314815,5,5,0,9,25,0,0,25,2,"2",1.5,2 +"node-ip",0.5473402205,3.0729874251,-0.1357528421,"https://salsa.debian.org/js-team/node-ip","https://github.com/indutny/node-ip",3990.2488194445,6,20,0,17,172,0,0,173,3,"3",1.76923076923077,1.99421965317919 +"node-is-arrayish",-0.0113184631,2.4802704151,-0.5878636382,"https://salsa.debian.org/js-team/node-is-arrayish","https://github.com/qix-/node-is-arrayish",1162.9688194445,2,9,0,3,10,0,0,10,1,"1",1.81818181818182,2 +"is-glob",0.6638373369,3.8445632106,-0.214727985,"https://salsa.debian.org/js-team/node-is-glob","https://github.com/jonschlinkert/is-glob",2500.3032986111,3,9,0,5,18,0,0,18,1,"1",1.75,2 +"iscroll",0.3236470898,2.6334834534,-0.1547197624,"https://salsa.debian.org/js-team/node-iscroll","https://github.com/cubiq/iscroll",2222.4944791667,9,37,0,11,375,0,5,391,1,"1",1.80434782608696,1.95907928388747 +"jison",-2.8705191059,-0.5904861053,-3.3214497471,"https://salsa.debian.org/js-team/node-jison","https://github.com/zaach/jison",3961.6974305556,7,59,1,40,368,0,51,421,3,"3",1.89393939393939,1.87410926365796 +"jquery-mousewheel",0.2686821158,2.6543019787,-0.1911219866,"https://salsa.debian.org/js-team/node-jquery-mousewheel","https://github.com/jquery/jquery-mousewheel",5390.8646296296,6,15,1,14,292,0,0,293,4,"4",1.71428571428571,1.99658703071672 +"millstone",-1.4457365806,1.0910699973,-2.0387356121,"https://salsa.debian.org/js-team/node-millstone","https://github.com/mapbox/millstone",4176.2971875,3,21,0,13,36,0,0,37,3,"3",1.875,1.97297297297297 +"mqtt-packet",-2.1961592069,0.0425211631,-2.6185433222,"https://salsa.debian.org/js-team/node-mqtt-packet","https://github.com/mqttjs/mqtt-packet",3391.8497337963,19,27,0,34,71,0,0,77,2,"2",1.58695652173913,1.92207792207792 +"on-finished",0.0613223619,2.8531731142,-0.6913305342,"https://salsa.debian.org/js-team/node-on-finished","https://github.com/jshttp/on-finished",3350.0634259259,5,3,0,7,4,0,0,9,2,"2",1.375,1.44444444444444 +"once",-0.1226053888,-0.1171397715,-0.1237821835,"https://salsa.debian.org/js-team/node-once","https://github.com/isaacs/once.git",4074.419212963,2,6,0,6,15,0,0,15,3,"3",1.75,2 +"os-browserify",-0.3268262004,2.3252681953,-0.9671784701,"https://salsa.debian.org/js-team/node-os-browserify","https://github.com/CoderPuppy/os-browserify",1580.0713425926,1,7,0,3,9,0,0,9,1,"1",1.875,2 +"parse-glob",0.6847833884,3.868282575,-0.2490532696,"https://salsa.debian.org/js-team/node-parse-glob","https://github.com/micromatch/parse-glob",1589.2864351852,1,5,0,3,6,0,0,6,1,"1",1.83333333333333,2 +"parseurl",0.275713727,3.6232142368,-0.6473483724,"https://salsa.debian.org/js-team/node-parseurl","https://github.com/expressjs/parseurl.git",3251.1265972222,2,3,0,5,12,0,0,12,2,"2",1.6,2 +"FlashPolicyFileServer",-0.9515002748,1.7831825682,-1.7365256836,"https://salsa.debian.org/js-team/node-policyfile","https://github.com/3rd-Eden/FlashPolicyFileServer",2142.8337037037,0,3,0,3,14,0,0,14,1,"1",2,2 +"react-audio-player",-4.8100583491,-2.4298503474,-5.420558223,"https://salsa.debian.org/js-team/node-react-audio-player","https://github.com/justinmc/react-audio-player.git",2489.7878125,9,20,0,18,119,0,0,119,1,"1",1.68965517241379,2 +"regenerate-unicode-properties",-0.6674866267,0.9618352502,-1.0118784845,"https://salsa.debian.org/js-team/node-regenerate-unicode-properties","https://github.com/mathiasbynens/regenerate-unicode-properties",2664.7656597222,3,2,0,4,7,0,0,7,1,"1",1.4,2 +"regjsparser",-0.7798404163,1.2003365063,-1.1962820592,"https://salsa.debian.org/js-team/node-regjsparser","https://github.com/jviereck/regjsparser.git",3676.996875,2,16,0,12,27,0,0,27,2,"2",1.88888888888889,2 +"node-resolve",0.5575663073,3.2984179044,-0.1407771771,"https://salsa.debian.org/js-team/node-resolve","https://github.com/substack/node-resolve.git",4523.8015162037,39,26,0,50,258,0,0,259,3,"3",1.4,1.996138996139 +"sprintf.js",0.4014290609,3.1578856064,-0.2132993373,"https://salsa.debian.org/js-team/node-sprintf-js","https://github.com/alexei/sprintf.js",3813.8363078704,3,28,0,21,190,0,0,191,3,"3",1.90322580645161,1.99476439790576 +"static-module",-2.9295084562,0.0141965632,-3.6919322552,"https://salsa.debian.org/js-team/node-static-module","https://github.com/substack/static-module.git",3102.503912037,8,14,0,17,66,0,0,66,2,"2",1.63636363636364,2 +"node-stringprep",-1.25858701,1.4295408548,-2.2227266177,"https://salsa.debian.org/js-team/node-stringprep","https://github.com/node-xmpp/node-stringprep",2104.0097800926,2,22,0,18,115,0,1,118,1,"1",1.91666666666667,1.97457627118644 +"tape",-1.3533456222,0.8230887097,-1.8448352117,"https://salsa.debian.org/js-team/node-tape","https://github.com/ljharb/tape.git",4022.1372916667,54,62,0,96,488,0,0,500,3,"3",1.53448275862069,1.976 +"node-tar",0.10092401,1.1554569611,-0.1194951399,"https://salsa.debian.org/js-team/node-tar","https://github.com/npm/node-tar",4544.3033449074,24,18,1,38,142,0,0,162,3,"3",1.42857142857143,1.87654320987654 +"node-temp",-0.8998725735,2.4095798708,-1.9534582368,"https://salsa.debian.org/js-team/node-temp","https://github.com/bruce/node-temp",4595.6285416667,2,39,2,31,105,0,0,109,3,"3",1.95121951219512,1.96330275229358 +"json-document",-4.9532456218,-2.9019375195,-5.4554167334,"https://salsa.debian.org/js-team/node-trust-json-document","https://github.com/anvilresearch/json-document.git",471.8604513889,0,5,0,4,7,0,0,7,1,"1",2,2 +"tunnel-agent",1.1792785071,4.9631632678,0.1110924805,"https://salsa.debian.org/js-team/node-tunnel-agent","https://github.com/mikeal/tunnel-agent",1464.1568634259,0,12,0,9,131,0,0,132,1,"1",2,1.99242424242424 +"type-check",-0.619856367,1.5719870744,-1.0599876067,"https://salsa.debian.org/js-team/node-type-check","https://github.com/gkz/type-check.git",3579.125787037,2,5,0,3,20,0,1,21,2,"2",1.71428571428571,1.95238095238095 +"ultron",-2.7813197419,-0.4758682807,-3.3070168453,"https://salsa.debian.org/js-team/node-ultron","https://github.com/unshiftio/ultron",2972.2796527778,1,7,0,5,13,0,0,13,2,"2",1.875,2 +"node-unicode-data",-2.4986839661,-1.5066066307,-2.7694541364,"https://salsa.debian.org/js-team/node-unicode-data","https://github.com/mathiasbynens/node-unicode-data.git",3658.0537962963,6,3,0,7,29,0,0,29,2,"2",1.33333333333333,2 +"unicode-property-aliases",-2.1224965726,0.5054136483,-2.7508821504,"https://salsa.debian.org/js-team/node-unicode-property-aliases","https://github.com/mathiasbynens/unicode-property-aliases",2644.0663657408,2,1,0,3,4,0,0,4,1,"1",1.33333333333333,2 +"unicode-property-aliases-ecmascript",-0.4930241449,2.1362080223,-1.1371319719,"https://salsa.debian.org/js-team/node-unicode-property-aliases-ecmascript","https://github.com/mathiasbynens/unicode-property-aliases-ecmascript",1978.1429398148,1,2,0,2,3,0,0,3,1,"1",1.66666666666667,2 +"unicode-property-value-aliases",-2.108074165,0.5458957808,-2.7511821006,"https://salsa.debian.org/js-team/node-unicode-property-value-aliases","https://github.com/mathiasbynens/unicode-property-value-aliases.git",2643.9666898148,2,2,0,3,3,0,0,3,1,"1",1.5,2 +"unicode-property-value-aliases-ecmascript",-2.6459525399,-0.0300807748,-3.2844645306,"https://salsa.debian.org/js-team/node-unicode-property-value-aliases-ecmascript","https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript",1977.9928009259,0,1,0,1,0,0,0,1,1,"1",2,1 +"unicode-tr51",-2.8970799304,-0.9087592402,-3.3116008945,"https://salsa.debian.org/js-team/node-unicode-tr51","https://github.com/mathiasbynens/unicode-tr51",1619.1367939815,1,1,0,2,6,0,0,6,1,"1",1.5,2 +"utilities",0.7510248514,4.5416704471,-0.5676243448,"https://salsa.debian.org/js-team/node-utilities","https://github.com/mde/utilities.git",3873.0201388889,1,19,0,12,22,0,0,22,3,"3",1.95,2 +"node-uuid",0.283624179,1.6049599044,-0.0900742762,"https://salsa.debian.org/js-team/node-uuid","https://github.com/kelektiv/node-uuid",4670.2036805556,41,41,2,59,325,0,0,354,3,"3",1.5,1.9180790960452 +"node-v8flags",0.1190291187,2.504747846,-0.5070823362,"https://salsa.debian.org/js-team/node-v8flags","https://github.com/tkellen/node-v8flags.git",1721.1332407407,15,3,0,11,73,0,0,73,1,"1",1.16666666666667,2 +"vhost",-1.6545263406,0.6845370117,-2.2878465779,"https://salsa.debian.org/js-team/node-vhost","https://github.com/expressjs/vhost.git",3246.905150463,1,3,0,2,0,0,0,2,2,"2",1.75,1 +"vue-resource",-1.8045687517,-0.3856069237,-2.0705983161,"https://salsa.debian.org/js-team/node-vue-resource","https://github.com/pagekit/vue-resource",2754.4118518519,8,21,0,22,133,0,6,153,2,"2",1.72413793103448,1.86928104575163 +"webpack-merge",-3.8493072011,-1.380862227,-4.3376760901,"https://salsa.debian.org/js-team/node-webpack-merge","https://github.com/survivejs/webpack-merge.git",3033.8957060185,15,23,0,32,63,0,0,78,2,"2",1.60526315789474,1.80769230769231 +"node-ytdl-core",-0.1246800443,2.4581193839,-0.8183512675,"https://salsa.debian.org/js-team/node-ytdl-core","https://github.com/fent/node-ytdl-core.git",4096.004525463,70,23,0,76,490,0,0,521,3,"3",1.24731182795699,1.9404990403071 +"ntirpc",-0.5951678873,1.6658190607,-1.2552045305,"https://salsa.debian.org/debian/libntirpc","https://github.com/nfs-ganesha/ntirpc.git",4521.189837963,43,88,0,41,65,0,0,76,3,"3",1.67175572519084,1.85526315789474 +"Nuitka",-0.0866725521,0.7058083517,-0.4988086801,"https://github.com/Nuitka/Nuitka","https://github.com/Nuitka/Nuitka",4857.7762847222,166,5,3,152,130,0,0,253,3,"3",1.02923976608187,1.51383399209486 +"nvidia-xconfig",0.9734320248,2.4417272676,0.2943686593,"https://salsa.debian.org/nvidia-team/nvidia-xconfig","https://github.com/NVIDIA/nvidia-xconfig",5775.9081134259,1,3,0,4,2,0,0,6,4,"4",1.75,1.33333333333333 +"nvpy",-0.3144467073,2.8922861575,-1.2852911447,"https://github.com/stefanv/nvpy/tree/debian","https://github.com/stefanv/nvpy",2724.1981134259,2,29,0,16,0,0,0,16,1,"1",1.93548387096774,1 +"O-Saft",-0.0182736193,2.1999044406,-0.4504212317,"https://salsa.debian.org/pkg-security-team/o-saft","https://github.com/OWASP/O-Saft",4011.0202777778,3,10,0,9,40,0,0,40,3,"3",1.76923076923077,2 +"oar",-1.4634945941,-0.6606837191,-1.7817291006,"https://github.com/oar-team/oar","https://github.com/oar-team/oar",5765.8415856482,5,46,5,15,43,0,0,45,4,"4",1.90196078431373,1.95555555555556 +"obconf-debian",0.7475755733,1.7842164637,0.2203904311,"https://github.com/mati75/obconf-debian.git","https://github.com/mati75/obconf-debian.git",3725.6903935185,0,5,0,3,2,0,0,4,2,"2",2,1.5 +"obs-studio",0.1312922919,0.962234072,-0.1232421438,"https://salsa.debian.org/multimedia-team/obs-studio","https://github.com/jp9000/obs-studio.git",3726.9157986111,426,253,0,412,244,0,264,855,2,"2",1.37260677466863,1.28538011695906 +"obus",-3.5252462011,-1.6650389666,-4.1632184213,"https://salsa.debian.org/ocaml-team/obus","https://github.com/ocaml-community/obus",5340.5275115741,3,16,1,12,20,0,0,22,4,"4",1.84210526315789,1.90909090909091 +"ocaml-alsa",-0.6651242782,1.2653797989,-1.038375358,"https://salsa.debian.org/ocaml-team/ocaml-alsa","https://github.com/savonet/ocaml-alsa.git",460.5193634259,2,8,0,5,4,0,0,6,1,"1",1.8,1.66666666666667 +"ocaml-duppy",-1.3054931735,1.4664487385,-2.0959619861,"https://salsa.debian.org/ocaml-team/ocaml-duppy","https://github.com/savonet/ocaml-duppy.git",5432.8347337963,2,8,0,6,6,0,0,8,4,"4",1.8,1.75 +"ocaml-expect",-1.1271032549,2.7923660814,-2.3065192266,"https://salsa.debian.org/ocaml-team/ocaml-expect","https://github.com/gildor478/ocaml-expect.git",3170.2275231482,0,3,0,1,2,0,0,2,2,"2",2,2 +"extunix",-2.1872917146,-0.3028149378,-2.608406683,"https://salsa.debian.org/ocaml-team/ocaml-extunix","https://github.com/ygrek/extunix.git",4849.8496064815,10,12,0,18,30,0,0,33,3,"3",1.54545454545455,1.90909090909091 +"ocaml-ipaddr",-1.0446018994,1.8622042043,-1.7854758695,"https://salsa.debian.org/ocaml-team/ocaml-ipaddr","https://github.com/mirage/ocaml-ipaddr.git",3725.5192476852,9,20,0,22,40,0,0,40,2,"2",1.68965517241379,2 +"ocaml-re",-1.0950401153,1.1685448483,-1.5345632117,"https://salsa.debian.org/ocaml-team/ocaml-re","https://github.com/ocaml/ocaml-re",4365.6594907407,11,42,1,39,72,0,0,79,3,"3",1.79245283018868,1.91139240506329 +"sedlex",-2.795399504,0.6121377346,-3.6635666836,"https://salsa.debian.org/ocaml-team/ocaml-sedlex","https://github.com/ocaml-community/sedlex",5659.0575925926,13,22,0,27,81,0,0,81,4,"4",1.62857142857143,2 +"ocamlbuild",0.83301295,3.604633508,-0.2606702303,"https://salsa.debian.org/ocaml-team/ocamlbuild","https://github.com/ocaml/ocamlbuild.git",5691.866099537,18,45,0,44,121,0,0,131,4,"4",1.71428571428571,1.9236641221374 +"opencubicplayer",0.7353360216,1.8994727767,0.1001948826,"https://salsa.debian.org/multimedia-team/ocp","https://github.com/mywave82/opencubicplayer",4416.0663310185,9,13,0,12,37,0,0,38,3,"3",1.59090909090909,1.97368421052632 +"open-ath9k-htc-firmware",0.7603141973,2.9426626321,-0.0525201094,"https://salsa.debian.org/debian/open-ath9k-htc-firmware","https://github.com/qca/open-ath9k-htc-firmware.git",3892.0404398148,5,21,0,17,37,0,4,51,3,"3",1.80769230769231,1.72549019607843 +"openbox-debian",0.3587708308,0.5696355779,0.2001738591,"https://github.com/mati75/openbox-debian","https://github.com/mati75/openbox-debian",3123.4283217593,2,10,0,8,12,0,0,12,2,"2",1.83333333333333,2 +"openbox-menu",0.6431292738,3.0088710056,-0.1389880185,"https://github.com/mati75/openbox-menu.git","https://github.com/mati75/openbox-menu.git",2669.041875,1,4,0,4,3,0,0,4,1,"1",1.8,1.75 +"OpenCC",0.0219092289,0.4824222963,-0.1611861662,"https://salsa.debian.org/debian/opencc","https://github.com/BYVoid/OpenCC",3838.8327430556,56,72,0,83,474,0,3,480,3,"3",1.5625,1.9875 +"opendht",-1.502253613,-0.1124423197,-1.9255361455,"https://salsa.debian.org/debian/opendht","https://github.com/savoirfairelinux/opendht.git",3308.8721527778,32,40,0,40,23,0,13,63,2,"2",1.55555555555556,1.36507936507937 +"orocos_kinematics_dynamics",-0.4945558152,0.6669109207,-0.7546541561,"https://salsa.debian.org/science-team/orocos-kdl","https://github.com/orocos/orocos_kinematics_dynamics.git",5760.2385532407,20,61,0,49,251,0,0,254,4,"4",1.75308641975309,1.98818897637795 +"osdlyrics",-1.0107652487,2.5410275398,-1.9364271071,"https://salsa.debian.org/debian/osdlyrics","https://github.com/osdlyrics/osdlyrics.git",5185.1183796296,14,35,0,23,0,0,1,24,4,"4",1.71428571428571,1 +"osm-gps-map",0.4852394822,1.6315652979,0.0288716929,"https://salsa.debian.org/debian-gis-team/osm-gps-map","https://github.com/nzjrs/osm-gps-map",5396.5783564815,12,33,1,30,59,0,0,67,4,"4",1.73333333333333,1.88059701492537 +"ossim",0.2194206159,1.4101222421,-0.3093741078,"https://salsa.debian.org/debian-gis-team/ossim","https://github.com/ossimlabs/ossim.git",2917.9942824074,12,49,0,31,11,0,1,36,2,"2",1.80327868852459,1.30555555555556 +"osslsigncode",0.169238484,2.9087642476,-0.725862886,"https://salsa.debian.org/debian/osslsigncode","https://github.com/mtrojnar/osslsigncode.git",3941.3454282407,25,12,0,28,157,0,0,162,3,"3",1.32432432432432,1.96913580246914 +"ostinato",-0.1569756889,1.8345639417,-0.7645775616,"https://salsa.debian.org/debian/ostinato","https://github.com/pstavirs/ostinato",3046.7549884259,4,10,3,11,90,0,2,95,2,"2",1.71428571428571,1.94736842105263 +"othman",-1.2792306,0.9010183816,-1.7193110897,"https://salsa.debian.org/islamic-team/othman","https://github.com/ojuba-org/othman.git",4827.9828240741,2,13,0,8,20,0,0,21,3,"3",1.86666666666667,1.95238095238095 +"ounit",-0.3627412562,0.4497117871,-0.6191203191,"https://salsa.debian.org/ocaml-team/ounit","https://github.com/gildor478/ounit.git",1284.2142476852,12,7,0,14,26,0,0,26,1,"1",1.36842105263158,2 +"outguess",0.1497827549,1.0974956579,-0.226083673,"https://salsa.debian.org/pkg-security-team/outguess","https://github.com/resurrecting-open-source-projects/outguess",1029.0813888889,1,3,0,2,9,0,0,9,1,"1",1.75,2 +"overpass-api-python-wrapper",-0.0322169908,2.6635478479,-0.7275603387,"https://salsa.debian.org/python-team/packages/overpass","https://github.com/mvexel/overpass-api-python-wrapper.git",2968.0383449074,4,26,0,24,100,0,0,102,2,"2",1.86666666666667,1.98039215686275 +"papi",0.1648741367,1.7494996599,-0.3472045276,"https://salsa.debian.org/hpc-team/papi","https://github.com/icl-utk-edu/papi",5785.0656134259,65,102,1,48,33,0,13,73,4,"4",1.61077844311377,1.45205479452055 +"par2cmdline",0.20056085,0.9463023937,-0.114418384,"https://salsa.debian.org/jcfp/par2cmdline","https://github.com/Parchive/par2cmdline.git",4198.3890972222,9,27,0,27,115,0,0,117,3,"3",1.75,1.98290598290598 +"parsedatetime",1.1943669328,3.3711848516,0.3370468439,"https://salsa.debian.org/python-team/packages/parsedatetime","https://github.com/bear/parsedatetime",3739.2471990741,8,57,2,39,150,0,0,150,2,"2",1.87692307692308,2 +"patsy",0.2674917865,1.4192573153,-0.1261483397,"https://salsa.debian.org/med-team/patsy","https://github.com/pydata/patsy",4676.8131944445,3,15,0,17,197,0,0,199,3,"3",1.83333333333333,1.98994974874372 +"pavucontrol-qt",1.2464488625,4.8736917607,0.1529128395,"https://salsa.debian.org/lxqt-team/pavucontrol-qt","https://github.com/lxqt/pavucontrol-qt.git",5699.7374189815,142,57,0,110,74,0,0,152,4,"4",1.28643216080402,1.48684210526316 +"pbcopper",-1.3874159842,-0.0972708879,-1.836455251,"https://salsa.debian.org/med-team/pbcopper","https://github.com/PacificBiosciences/pbcopper.git",2608.9496875,0,25,0,9,5,0,0,11,1,"1",2,1.45454545454545 +"pcapfix",0.0933295762,2.1324165499,-0.3712900504,"https://salsa.debian.org/debian/pcapfix","https://github.com/Rup0rt/pcapfix",3586.925,0,13,0,6,14,0,0,14,2,"2",2,2 +"pcapy",0.0349538125,1.2547992825,-0.3075562935,"https://salsa.debian.org/python-team/packages/pcapy","https://github.com/CoreSecurity/pcapy.git",1937.2327893519,7,20,0,17,91,0,6,99,1,"1",1.74074074074074,1.91919191919192 +"pcl",-0.4344154152,-0.1858665736,-0.5376364213,"https://salsa.debian.org/science-team/pcl","https://github.com/PointCloudLibrary/pcl",4663.6967824074,183,548,3,326,69,0,19,379,3,"3",1.74965800273598,1.1820580474934 +"pcmanfm",0.9104711528,1.3106826431,0.6098723045,"https://salsa.debian.org/lxde-team/pcmanfm","https://github.com/lxde/pcmanfm",5014.9549074074,162,27,0,87,11,0,0,91,4,"4",1.14285714285714,1.12087912087912 +"flext",-0.0850254405,1.799559297,-0.6918728933,"https://salsa.debian.org/multimedia-team/pd/pd-flext","https://github.com/grrrr/flext.git",5601.7882986111,3,10,0,6,23,0,0,23,4,"4",1.76923076923077,2 +"ggee",0.2137381335,2.1051137101,-0.4192763849,"https://salsa.debian.org/multimedia-team/pd/pd-ggee","https://github.com/pd-externals/ggee",5602.6691782407,2,15,0,6,8,0,0,10,4,"4",1.88235294117647,1.8 +"pd-iemmatrix",-0.3267928639,1.4162291626,-0.7027745657,"https://salsa.debian.org/multimedia-team/pd/pd-iemmatrix","https://github.com/iem-projects/pd-iemmatrix",5648.0384606482,0,11,0,2,0,0,0,2,4,"4",2,1 +"pdfminer.six",0.0208023168,1.0139403963,-0.2584702373,"https://salsa.debian.org/python-team/packages/pdfminer","https://github.com/pdfminer/pdfminer.six.git",5691.1447916667,73,66,0,116,635,0,0,663,4,"4",1.47482014388489,1.9577677224736 +"peek",0.2213731786,2.283866536,-0.2790469573,"https://salsa.debian.org/debian/peek","https://github.com/phw/peek.git",2556.2171064815,148,23,0,127,504,0,0,601,1,"1",1.13450292397661,1.83860232945092 +"perftest",-0.25506659,1.1624795547,-0.6480880894,"https://salsa.debian.org/hpc-team/perftest","https://github.com/linux-rdma/perftest.git",5766.2372222222,45,67,0,63,139,0,1,158,4,"4",1.59821428571429,1.87974683544304 +"perl-cross-debian",0.5442661596,4.5107736512,-0.7462109296,"https://github.com/codehelp/perl-cross-debian","https://github.com/codehelp/perl-cross-debian",413.1343634259,0,1,2,1,2,0,1,3,1,"1",2,1.66666666666667 +"project--perl-depends",-0.098094395,2.6971113742,-0.7916189031,"https://salsa.debian.org/perl-team/modules/packages/perl-depends","https://github.com/jaalto/project--perl-depends.git",2417.02125,0,1,0,1,0,0,0,1,1,"1",2,1 +"perl6-readline",0.2335812759,2.6358883052,-0.5015207605,"https://salsa.debian.org/perl6-team/modules/perl6-readline","https://github.com/drforr/perl6-readline.git",1710.4289351852,3,11,0,10,39,0,0,39,1,"1",1.78571428571429,2 +"zef",-0.1589879333,1.6245616073,-0.6015634669,"https://salsa.debian.org/perl6-team/modules/perl6-zef","https://github.com/ugexe/zef.git",3805.8422569445,19,20,0,23,111,0,0,113,3,"3",1.51282051282051,1.98230088495575 +"persp-projectile",-0.639585185,3.286323439,-1.7735281377,"https://salsa.debian.org/emacsen-team/persp-projectile","https://github.com/bbatsov/persp-projectile.git",2006.7800810185,9,2,0,10,40,0,0,40,1,"1",1.18181818181818,2 +"pev",0.3261969594,2.6071816741,-0.2973930728,"https://salsa.debian.org/debian/pev","https://github.com/merces/pev",0.0019791667,1,1,0,1,0,0,0,1,1,"1",1.5,1 +"pexpect",0.8141215364,1.9888952072,0.2667748433,"https://salsa.debian.org/python-team/packages/pexpect","https://github.com/pexpect/pexpect",5767.4715740741,21,92,0,85,558,0,0,562,4,"4",1.8141592920354,1.99288256227758 +"pg_checksums",-1.8213442024,-0.1372969868,-2.2303187848,"https://salsa.debian.org/postgresql/pg-checksums","https://github.com/credativ/pg_checksums.git",1977.03125,1,6,0,4,9,0,0,9,1,"1",1.85714285714286,2 +"pg_fact_loader",-1.8451499975,1.7612439253,-2.8557684329,"https://salsa.debian.org/postgresql/pg-fact-loader","https://github.com/enova/pg_fact_loader.git",1795.1245717593,2,6,0,5,3,0,0,5,1,"1",1.75,1.6 +"pg8000",-0.425873307,2.4793925595,-1.2002236195,"https://salsa.debian.org/python-team/packages/pg8000","https://github.com/mfenniak/pg8000",3962.2166666667,11,25,0,20,142,0,0,145,3,"3",1.69444444444444,1.97931034482759 +"pgbadger",-0.3152167506,1.8941783522,-0.7500435836,"https://salsa.debian.org/postgresql/pgbadger","https://github.com/darold/pgbadger.git",4259.9847222222,12,88,0,68,205,0,7,250,3,"3",1.88,1.82 +"pgsql-ogr-fdw",-1.597217053,1.098990575,-2.2031431994,"https://salsa.debian.org/debian-gis-team/pgsql-ogr-fdw","https://github.com/pramsey/pgsql-ogr-fdw.git",3285.0248958333,8,10,0,9,59,0,0,59,2,"2",1.55555555555556,2 +"semver",0.409271213,2.8658685018,-0.146438012,"https://salsa.debian.org/php-team/pear/php-composer-semver","https://github.com/composer/semver",2969.0927777778,37,21,0,44,78,0,1,97,2,"2",1.36206896551724,1.80412371134021 +"Console_Table",-0.0495487945,1.7830511717,-0.4127695523,"https://salsa.debian.org/php-team/pear/php-console-table","https://github.com/pear/Console_Table.git",2649.3105555556,1,12,0,9,14,0,0,16,1,"1",1.92307692307692,1.875 +"constant_time_encoding",-2.0834505626,2.1057169386,-3.3638483931,"https://salsa.debian.org/php-team/pear/php-constant-time","https://github.com/paragonie/constant_time_encoding",2771.7821296296,7,11,0,13,33,0,0,33,2,"2",1.61111111111111,2 +"Crypt_GPG",0.9210658037,4.3264478549,-0.3696792994,"https://salsa.debian.org/php-team/pear/php-crypt-gpg","https://github.com/pear/Crypt_GPG.git",5743.4965972222,6,19,0,16,21,0,0,22,4,"4",1.76,1.95454545454545 +"DirectoryScanner",-0.4493402088,1.855270065,-0.9050981717,"https://salsa.debian.org/php-team/pear/php-directory-scanner","https://github.com/theseer/DirectoryScanner.git",4264.1542361111,0,7,0,2,12,0,0,12,3,"3",2,2 +"link-util",-0.4425381847,2.4746022946,-1.2653714987,"https://salsa.debian.org/php-team/pear/php-fig-link-util","https://github.com/php-fig/link-util",1680.1398148148,5,2,0,5,11,0,0,12,1,"1",1.28571428571429,1.91666666666667 +"php-file-iterator",0.3114533151,2.1129587477,-0.2420172005,"https://salsa.debian.org/php-team/pear/php-file-iterator","https://github.com/sebastianbergmann/php-file-iterator",5147.3262731482,9,12,0,16,79,0,0,80,4,"4",1.57142857142857,1.9875 +"horde",-0.4754819462,0.1936727976,-0.7289488029,"https://salsa.debian.org/horde-team/php-horde","https://github.com/horde/horde.git",3269.665474537,81,80,0,67,71,0,0,99,2,"2",1.49689440993789,1.71717171717172 +"ActiveSync",-0.0745412838,1.9029925216,-0.5969694129,"https://salsa.debian.org/horde-team/php-horde-activesync","https://github.com/horde/ActiveSync.git",4982.0443055556,9,18,0,13,5,0,0,14,4,"4",1.66666666666667,1.35714285714286 +"html5-php",-0.3208200552,2.1227649729,-0.8298475571,"https://salsa.debian.org/php-team/pear/php-masterminds-html5","https://github.com/Masterminds/html5-php",3846.3884953704,7,39,1,37,85,0,6,98,3,"3",1.84782608695652,1.86734693877551 +"vfsStream",-3.8146826401,-1.3125722962,-4.3356315795,"https://salsa.debian.org/php-team/pear/php-mikey179-vfsstream","https://github.com/bovigo/vfsStream",5683.6370138889,11,48,1,35,196,0,26,222,4,"4",1.8135593220339,1.88288288288288 +"monolog",0.5054135947,3.1708681094,-0.3793108578,"https://salsa.debian.org/php-team/pear/php-monolog","https://github.com/Seldaek/monolog",4676.6184375,183,372,3,397,405,0,63,719,3,"3",1.67027027027027,1.56328233657858 +"TypeResolver",0.0218360214,2.3125319388,-0.4129888352,"https://salsa.debian.org/php-team/pear/php-phpdocumentor-type-resolver","https://github.com/phpDocumentor/TypeResolver",3092.0947569445,18,31,1,40,91,0,0,91,2,"2",1.63265306122449,2 +"phpseclib",0.1530214382,1.601109808,-0.1147352727,"https://salsa.debian.org/php-team/pear/phpseclib","https://github.com/phpseclib/phpseclib.git",5749.2331828704,80,98,0,135,155,0,5,268,4,"4",1.55056179775281,1.57835820895522 +"sql-formatter",-0.407920411,2.2773849827,-1.1530054701,"https://salsa.debian.org/php-team/pear/php-sql-formatter","https://github.com/doctrine/sql-formatter.git",4125.6360300926,10,31,0,25,28,0,0,42,3,"3",1.75609756097561,1.66666666666667 +"contracts",0.6071508908,3.5307618183,-0.1882490235,"https://salsa.debian.org/php-team/pear/php-symfony-contracts","https://github.com/symfony/contracts",1906.8477083333,28,26,0,51,11,0,0,57,1,"1",1.48148148148148,1.19298245614035 +"polyfill",0.5936130532,2.9045150589,-0.1004774059,"https://salsa.debian.org/php-team/pear/php-symfony-polyfill","https://github.com/symfony/polyfill",2902.2220949074,100,47,0,117,227,0,0,263,2,"2",1.31972789115646,1.86311787072243 +"text_password",0.8003864076,3.7354461105,-0.2651582454,"https://salsa.debian.org/php-team/pear/php-text-password","https://github.com/pear/text_password.git",3427.7869097222,0,13,0,7,6,0,0,8,2,"2",2,1.75 +"php-text-template",0.2735156083,2.2577473237,-0.2649626383,"https://salsa.debian.org/php-team/pear/php-text-template","https://github.com/sebastianbergmann/php-text-template",5133.0452083333,0,8,0,5,13,0,0,13,4,"4",2,2 +"CssToInlineStyles",-4.9581043824,-2.5632479534,-5.4701338922,"https://salsa.debian.org/php-team/pear/php-tijsverkoyen-css-to-inline-styles","https://github.com/tijsverkoyen/CssToInlineStyles",4791.6600810185,7,34,0,31,149,0,0,158,3,"3",1.82926829268293,1.94303797468354 +"php-timer",0.0545002782,1.7354029969,-0.3034123852,"https://salsa.debian.org/php-team/pear/php-timer","https://github.com/sebastianbergmann/php-timer",4962.9242824074,4,10,0,11,38,0,0,38,3,"3",1.71428571428571,2 +"php-token-stream",-0.077539845,1.0314574326,-0.3184738926,"https://salsa.debian.org/php-team/pear/php-token-stream","https://github.com/sebastianbergmann/php-token-stream",4281.2169675926,15,15,0,18,77,0,0,77,3,"3",1.5,2 +"phpdox",-1.0964679734,0.6066407752,-1.5664870339,"https://salsa.debian.org/php-team/pear/phpdox","https://github.com/theseer/phpdox",4604.8372800926,11,44,0,36,366,0,0,368,3,"3",1.8,1.9945652173913 +"phpLDAPadmin",0.9538106411,1.6007846261,0.5030751444,"https://salsa.debian.org/php-team/pear/phpldapadmin","https://github.com/leenooks/phpLDAPadmin",5264.4283796296,42,25,0,26,189,0,1,192,4,"4",1.37313432835821,1.984375 +"phploc",-0.6743294156,1.1227196643,-1.1328550897,"https://salsa.debian.org/php-team/pear/phploc","https://github.com/sebastianbergmann/phploc",5362.0425347222,18,31,0,38,226,0,0,226,4,"4",1.63265306122449,2 +"phpseclib",-0.073403609,1.2483282321,-0.3161589858,"https://salsa.debian.org/php-team/pear/phpseclib","https://github.com/phpseclib/phpseclib.git",5749.2331828704,80,98,0,135,155,0,5,268,4,"4",1.55056179775281,1.57835820895522 +"comparator",0.1016908786,2.3398889578,-0.3301518045,"https://salsa.debian.org/php-team/pear/phpunit-comparator","https://github.com/sebastianbergmann/comparator",3686.3957291667,20,9,0,25,105,0,0,105,2,"2",1.31034482758621,2 +"pidcat",-0.2348175331,2.8745190447,-1.069688066,"https://salsa.debian.org/python-team/packages/pidcat","https://github.com/JakeWharton/pidcat.git",3155.524837963,4,40,0,30,259,0,0,261,2,"2",1.90909090909091,1.99233716475096 +"Piexif",-0.8041956898,1.6330932338,-1.3844176603,"https://salsa.debian.org/python-team/packages/piexif","https://github.com/hMatoba/Piexif",3307.7984837963,5,12,0,10,155,0,0,155,2,"2",1.70588235294118,2 +"pipewalker",0.5020627732,3.1638761301,-0.3613058019,"https://salsa.debian.org/debian/pipewalker","https://github.com/artemsen/pipewalker",2088.9552662037,1,4,0,3,6,0,0,6,1,"1",1.8,2 +"pipexec",-0.2552786974,1.5523174274,-0.6883958099,"https://salsa.debian.org/alteholz/pipexec","https://github.com/flonatel/pipexec.git",3308.5569560185,0,11,0,6,12,0,0,13,2,"2",2,1.92307692307692 +"pk4",-1.8075865154,0.2000705346,-2.2307798324,"https://github.com/Debian/pk4","https://github.com/Debian/pk4",1044.0391203704,0,1,0,1,4,0,0,4,1,"1",2,2 +"pkcs11-helper",1.2104032601,4.0753663669,0.2461129198,"https://salsa.debian.org/opensc-team/pkcs11-helper","https://github.com/OpenSC/pkcs11-helper",5754.4088194445,16,2,0,13,58,0,3,61,4,"4",1.11111111111111,1.95081967213115 +"pkgconf",-0.0511523264,0.6206735889,-0.2703346973,"https://salsa.debian.org/debian/pkgconf","https://github.com/pkgconf/pkgconf",4516.657650463,52,29,1,67,201,0,9,219,3,"3",1.35802469135802,1.91780821917808 +"pktstat",2.3338787395,6.0502882403,0.926044188,"https://salsa.debian.org/debian/pktstat","https://github.com/dleonard0/pktstat",2938.7848958333,0,4,0,2,5,0,0,5,2,"2",2,2 +"planetblupi",-0.2798326789,2.3368636861,-0.892136731,"https://salsa.debian.org/games-team/planetblupi","https://github.com/blupi-games/planetblupi",2504.3208449074,5,7,1,9,18,0,0,20,1,"1",1.58333333333333,1.9 +"gmailfeed",-0.9078350467,1.5377434382,-1.4604242885,"https://salsa.debian.org/qt-kde-team/extras/plasma-gmailfeed","https://github.com/anthon38/gmailfeed.git",2727.0607638889,3,4,0,4,17,0,0,17,1,"1",1.57142857142857,2 +"plastex",0.2432695472,2.6132312475,-0.7011641781,"https://salsa.debian.org/python-team/packages/plastex","https://github.com/plastex/plastex",5539.2969907407,17,19,1,19,79,0,1,80,4,"4",1.52777777777778,1.9875 +"pngquant",0.5997315487,2.7135905645,-0.2341425934,"https://salsa.debian.org/debian-phototools-team/pngquant","https://github.com/kornelski/pngquant.git",4325.0383333333,23,38,0,41,383,0,0,386,3,"3",1.62295081967213,1.99222797927461 +"pngquant",0.7530300912,2.4617924213,0.0694002171,"https://salsa.debian.org/debian-phototools-team/pngquant","https://github.com/kornelski/pngquant.git",4325.0383333333,23,38,0,41,383,0,0,386,3,"3",1.62295081967213,1.99222797927461 +"pocketsphinx",-0.1321092966,0.4767106106,-0.3322064688,"https://salsa.debian.org/a11y-team/pocketsphinx","https://github.com/cmusphinx/pocketsphinx",5652.4787847222,5,30,2,19,191,0,5,206,4,"4",1.85714285714286,1.92718446601942 +"pocl",0.0943083762,0.5327681562,-0.1315933389,"https://salsa.debian.org/opencl-team/pocl","https://github.com/pocl/pocl",4689.6507291667,26,119,2,96,172,0,16,235,3,"3",1.82068965517241,1.73191489361702 +"popt",0.8457741179,1.4698340745,0.461614112,"https://salsa.debian.org/debian/popt","https://github.com/rpm-software-management/popt.git",5739.6746643519,38,10,0,43,33,0,0,60,4,"4",1.20833333333333,1.55 +"portalocker",-0.6761775694,1.2289979494,-1.0819015205,"https://salsa.debian.org/python-team/packages/portalocker","https://github.com/WoLpH/portalocker",4590.8550231482,5,21,0,17,76,0,0,76,3,"3",1.80769230769231,2 +"postfixadmin",1.3718594968,2.8225561724,0.562614351,"https://salsa.debian.org/debian/postfixadmin","https://github.com/postfixadmin/postfixadmin",5760.0218055556,53,77,1,94,124,0,0,183,4,"4",1.59230769230769,1.6775956284153 +"postgis-java",-0.2249511782,0.6204972087,-0.4368391732,"https://salsa.debian.org/debian-gis-team/postgis-java","https://github.com/postgis/postgis-java.git",5635.3241319445,8,12,0,15,32,0,1,39,4,"4",1.6,1.82051282051282 +"autodoc",0.4941840875,2.0445546371,-0.1932500455,"https://salsa.debian.org/debian/postgresql-autodoc","https://github.com/cbbrowne/autodoc.git",4575.8853587963,5,13,0,11,24,0,0,24,3,"3",1.72222222222222,2 +"pg_filedump",-0.6115611941,1.2319618721,-1.0974123114,"https://salsa.debian.org/postgresql/postgresql-filedump","https://github.com/df7cb/pg_filedump.git",4622.5029861111,3,6,0,6,19,0,0,21,3,"3",1.66666666666667,1.9047619047619 +"postgresql-hll",-1.5534816636,0.6872065961,-2.2881681018,"https://salsa.debian.org/postgresql/postgresql-hll","https://github.com/citusdata/postgresql-hll.git",3859.4959259259,23,21,0,27,124,0,0,126,3,"3",1.47727272727273,1.98412698412698 +"mysql_fdw",-1.2606174982,0.3226021522,-1.7176084858,"https://salsa.debian.org/postgresql/postgresql-mysql-fdw","https://github.com/EnterpriseDB/mysql_fdw.git",4475.7229861111,5,27,0,22,248,0,0,249,3,"3",1.84375,1.99598393574297 +"postgresql-numeral",-1.5134522364,1.6243431313,-2.293706422,"https://github.com/df7cb/postgresql-numeral","https://github.com/df7cb/postgresql-numeral",2361.1246527778,0,4,0,2,3,0,0,3,1,"1",2,2 +"plsh",-1.6026559782,-0.4185729412,-1.9028536338,"https://salsa.debian.org/postgresql/postgresql-plsh","https://github.com/petere/plsh.git",3969.9145023148,1,1,0,2,23,0,0,23,3,"3",1.5,2 +"postgrey",0.4162125811,0.8007795616,0.16790509,"https://salsa.debian.org/debian/postgrey","https://github.com/schweikert/postgrey.git",5469.9499074074,10,14,0,22,75,0,0,83,4,"4",1.58333333333333,1.90361445783133 +"postsrsd",0.10383995,2.0191274283,-0.4773257062,"https://salsa.debian.org/debian/postsrsd","https://github.com/roehling/postsrsd.git",4014.2085648148,10,17,0,4,30,0,0,33,3,"3",1.62962962962963,1.90909090909091 +"potool",-0.5814294404,0.0587787858,-0.834772415,"https://github.com/porridge/potool/tree/debian","https://github.com/porridge/potool",4430.2149884259,2,3,0,2,1,0,0,3,3,"3",1.6,1.33333333333333 +"povray",0.9584216742,1.6940449747,0.4892724706,"https://salsa.debian.org/debian/povray","https://github.com/POV-Ray/povray",2833.0740740741,8,15,7,14,45,0,2,50,2,"2",1.65217391304348,1.9 +"powa-archivist",-1.3322892717,0.6277535501,-1.7515157782,"https://github.com/powa-team/powa-archivist","https://github.com/powa-team/powa-archivist",3471.9301967593,10,15,2,15,40,0,0,42,2,"2",1.6,1.95238095238095 +"powercap",-0.3284328359,2.6169095108,-1.1283456001,"https://github.com/connorimes/powercap/tree/debian","https://github.com/connorimes/powercap",2525.9958912037,0,4,0,2,2,0,0,3,1,"1",2,1.66666666666667 +"pqiv",-0.1638813895,0.7585584788,-0.4540092183,"https://salsa.debian.org/pberndt-guest/pqiv","https://github.com/phillipberndt/pqiv",5604.8415509259,11,12,0,15,127,0,0,127,4,"4",1.52173913043478,2 +"prboom-plus",0.97864662,1.8842985584,0.4320575143,"https://salsa.debian.org/games-team/prboom-plus","https://github.com/coelckers/prboom-plus",5585.983912037,42,11,1,41,53,0,1,73,4,"4",1.20754716981132,1.72602739726027 +"primus",0.2729569091,1.2481073389,-0.1134531508,"https://salsa.debian.org/nvidia-team/primus","https://github.com/amonakov/primus",937.9013425926,3,6,0,6,216,0,0,216,1,"1",1.66666666666667,2 +"bird_exporter",-3.477178786,-0.0329330544,-4.2892202007,"https://salsa.debian.org/go-team/packages/prometheus-bird-exporter","https://github.com/czerwonk/bird_exporter",2542.4624768519,10,16,6,19,56,0,0,57,1,"1",1.61538461538462,1.98245614035088 +"haproxy_exporter",-3.8607213348,-2.0700503351,-4.3161894613,"https://salsa.debian.org/go-team/packages/prometheus-haproxy-exporter","https://github.com/prometheus/haproxy_exporter",3672.0941203704,21,40,0,41,166,0,0,171,2,"2",1.65573770491803,1.97076023391813 +"postfix_exporter",-2.309018579,-0.0678780093,-2.9354675488,"https://salsa.debian.org/go-team/packages/prometheus-postfix-exporter","https://github.com/kumina/postfix_exporter",2274.256712963,7,24,0,20,129,0,0,130,1,"1",1.7741935483871,1.99230769230769 +"pushgateway",-0.8937395968,2.0265228669,-1.5977918562,"https://salsa.debian.org/go-team/packages/prometheus-pushgateway","https://github.com/prometheus/pushgateway",3606.187337963,18,76,1,58,280,0,0,292,2,"2",1.80851063829787,1.95890410958904 +"proot-debian",1.0920103364,3.4894212371,0.1526188422,"https://github.com/ivoire/proot-debian","https://github.com/ivoire/proot-debian",508.0834837963,0,2,0,1,3,0,0,3,1,"1",2,2 +"prospector",-0.1396414973,2.1237521604,-0.9708127034,"https://salsa.debian.org/python-team/packages/prospector","https://github.com/PyCQA/prospector",3767.6942939815,36,66,2,76,313,0,0,327,2,"2",1.64705882352941,1.95718654434251 +"ps2eps",1.532120796,4.5656897613,0.4495361846,"https://salsa.debian.org/debian/ps2eps","https://github.com/roland-bless/ps2eps.git",0.1197453704,1,2,0,1,1,0,0,2,1,"1",1.66666666666667,1.5 +"psad",-0.1576432836,0.28089801,-0.427371641,"https://salsa.debian.org/debian/psad","https://github.com/mrash/psad/commits/master",5185.326875,55,11,0,0,0,0,0,0,4,"4",1.16666666666667,NA +"pudb",0.5652873271,3.503587652,-0.3825137639,"https://salsa.debian.org/debian/pudb","https://github.com/inducer/pudb.git",5292.8559490741,32,73,0,84,306,0,0,318,4,"4",1.6952380952381,1.9622641509434 +"puppetlabs-ntp",-1.6019329854,0.0840048992,-1.9766118562,"https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-ntp","https://github.com/puppetlabs/puppetlabs-ntp.git",4661.5050231482,40,171,0,118,228,0,0,234,3,"3",1.81042654028436,1.97435897435897 +"py-lmdb",-0.075515578,2.3670377588,-0.9569815252,"https://salsa.debian.org/debian/py-lmdb","https://github.com/jnwatson/py-lmdb",3712.4741898148,18,23,0,26,205,0,0,207,2,"2",1.5609756097561,1.99033816425121 +"fe",0.0569254607,2.238596245,-0.7405534191,"https://salsa.debian.org/python-team/packages/py-postgresql","https://github.com/python-postgres/fe",5231.8056712963,1,11,0,5,69,0,0,69,4,"4",1.91666666666667,2 +"py-radix",-0.2347152131,1.2849195969,-0.668352957,"https://salsa.debian.org/python-team/packages/py-radix","https://github.com/mjschultz/py-radix",1374.4915856482,3,11,0,9,39,0,0,40,1,"1",1.78571428571429,1.975 +"py-ubjson",0.3258683606,2.3051690362,-0.1923435128,"https://salsa.debian.org/python-team/packages/py-ubjson","https://github.com/Iotic-Labs/py-ubjson",2987.1609027778,3,4,0,5,12,0,0,13,2,"2",1.57142857142857,1.92307692307692 +"pycairo",1.8611353266,3.0551049835,1.1479506832,"https://salsa.debian.org/python-team/packages/pycairo","https://github.com/pygobject/pycairo",2389.8532175926,13,23,2,28,234,0,0,236,1,"1",1.63888888888889,1.99152542372881 +"pychm",0.1959778752,1.6504366967,-0.1847897986,"https://salsa.debian.org/python-team/packages/pychm","https://github.com/dottedmag/pychm.git",3381.7747222222,2,4,0,3,19,0,0,19,2,"2",1.66666666666667,2 +"pychromecast",0.0550333172,1.8645058973,-0.3583381658,"https://salsa.debian.org/python-team/packages/pychromecast","https://github.com/home-assistant-libs/pychromecast.git",3717.1753935185,57,30,0,74,318,0,0,345,2,"2",1.3448275862069,1.92173913043478 +"pycoast",-0.9264089102,1.0445653141,-1.3282069805,"https://salsa.debian.org/debian-gis-team/pycoast","https://github.com/pytroll/pycoast",3185.132662037,7,21,0,12,29,0,0,30,2,"2",1.75,1.96666666666667 +"pydenticon",-0.865220641,1.8522581651,-1.5367272325,"https://salsa.debian.org/python-team/packages/pydenticon","https://github.com/azaghal/pydenticon",1376.6938657407,2,1,0,2,13,0,0,13,1,"1",1.33333333333333,2 +"pydicom",0.3543730908,1.939756419,-0.1871292016,"https://salsa.debian.org/med-team/pydicom","https://github.com/pydicom/pydicom.git",5576.1416435185,69,58,0,87,155,0,4,210,4,"4",1.45669291338583,1.73809523809524 +"pydocstyle",0.5531580789,3.8832816133,-0.434312514,"https://salsa.debian.org/python-team/packages/pydocstyle","https://github.com/PyCQA/pydocstyle.git",4295.4277893519,58,44,0,86,381,0,0,394,3,"3",1.43137254901961,1.96700507614213 +"PyHamcrest",0.4770044067,2.0276091701,-0.0667553805,"https://salsa.debian.org/python-team/packages/pyhamcrest","https://github.com/hamcrest/PyHamcrest",5756.5347222222,18,36,0,32,112,0,0,113,4,"4",1.66666666666667,1.99115044247788 +"pylama",-0.1685043243,2.3124561576,-0.8358206635,"https://salsa.debian.org/python-team/packages/pylama","https://github.com/klen/pylama",3643.0438888889,6,46,0,37,127,0,0,134,2,"2",1.88461538461538,1.94776119402985 +"pylast",0.1007769388,2.2899648047,-0.3798195506,"https://salsa.debian.org/python-team/packages/pylast","https://github.com/pylast/pylast",5565.5985532407,8,38,2,32,125,0,0,130,4,"4",1.82608695652174,1.96153846153846 +"pylibtiff",0.0190555879,2.1644424074,-0.7692360791,"https://salsa.debian.org/debian-gis-team/pylibtiff","https://github.com/pearu/pylibtiff.git",3040.1433796296,10,20,0,22,100,0,1,103,2,"2",1.66666666666667,1.97087378640777 +"pymca",-0.4153476895,-0.1437047675,-0.5016872933,"https://salsa.debian.org/science-team/pymca","https://github.com/vasole/pymca",5785.8055439815,7,32,0,17,52,0,0,52,4,"4",1.82051282051282,2 +"pymediainfo",0.3813327313,2.7232285427,-0.3112268398,"https://salsa.debian.org/python-team/packages/pymediainfo","https://github.com/sbraz/pymediainfo",4970.7511111111,10,7,0,12,111,0,0,112,3,"3",1.41176470588235,1.99107142857143 +"pymodbus",0.0732799109,1.8646692265,-0.5844401794,"https://salsa.debian.org/python-team/packages/pymodbus","https://github.com/pymodbus-dev/pymodbus.git",5499.738599537,102,63,0,125,552,0,0,603,4,"4",1.38181818181818,1.91542288557214 +"pyopencl",0.1782677537,0.865226367,-0.1694455174,"https://salsa.debian.org/opencl-team/python-pyopencl","https://github.com/inducer/pyopencl",5374.16875,28,83,0,77,238,0,0,251,4,"4",1.74774774774775,1.94820717131474 +"pyorbital",-0.835136266,1.1503801119,-1.2127768903,"https://salsa.debian.org/debian-gis-team/pyorbital","https://github.com/pytroll/pyorbital.git",4467.5734606482,9,33,0,26,73,0,0,75,3,"3",1.78571428571429,1.97333333333333 +"pypuppetdb",-1.329401636,2.4185219671,-2.4698360721,"https://salsa.debian.org/python-team/packages/pypuppetdb","https://github.com/voxpupuli/pypuppetdb",3781.8189814815,18,46,2,46,103,0,0,106,3,"3",1.71875,1.97169811320755 +"pyqi",-0.6659052808,0.4267300657,-0.9064389106,"https://salsa.debian.org/med-team/pyqi","https://github.com/biocore/pyqi",1051.0106481482,0,13,1,7,17,0,0,17,1,"1",2,2 +"pyquery",0.2533160207,2.1476722718,-0.276904445,"https://salsa.debian.org/python-team/packages/pyquery","https://github.com/gawel/pyquery.git",5354.1741550926,7,50,0,45,213,0,0,222,4,"4",1.87719298245614,1.95945945945946 +"pysodium",-0.9250342629,1.6337160906,-1.6304178321,"https://salsa.debian.org/python-team/packages/pysodium","https://github.com/stef/pysodium.git",3761.6783217593,9,38,0,33,63,0,0,66,2,"2",1.80851063829787,1.95454545454545 +"python-soundfile",-0.4259563033,1.9817809485,-0.87334628,"https://salsa.debian.org/multimedia-team/pysoundfile","https://github.com/bastibe/python-soundfile.git",3757.2281481482,8,31,0,27,287,0,0,287,2,"2",1.7948717948718,2 +"pysph",-0.1957650825,0.8352828367,-0.6085553873,"https://salsa.debian.org/science-team/pysph","https://github.com/pypr/pysph",3944.0042824074,12,53,0,27,60,0,0,66,3,"3",1.81538461538462,1.90909090909091 +"pysrs",-2.5865636963,-0.2466583264,-3.0140171336,"https://salsa.debian.org/python-team/packages/pysrs","https://github.com/sdgathman/pysrs.git",5232.0373842593,2,4,0,2,7,0,0,7,4,"4",1.66666666666667,2 +"pyssim",-1.4493782429,1.5830189811,-2.3198514231,"https://salsa.debian.org/python-team/packages/pyssim","https://github.com/jterrace/pyssim",4069.879375,2,12,0,7,3,0,0,8,3,"3",1.85714285714286,1.375 +"PyStaticConfiguration",-2.0472160299,0.7630493618,-2.7265555606,"https://salsa.debian.org/python-team/packages/pystaticconfiguration","https://github.com/dnephin/PyStaticConfiguration",3745.7102662037,3,26,2,20,44,0,0,45,2,"2",1.89655172413793,1.97777777777778 +"pysubnettree",-0.9461476097,1.2999152117,-1.5398813128,"https://salsa.debian.org/python-team/packages/pysubnettree","https://github.com/zeek/pysubnettree.git",4655.7478587963,1,18,0,11,28,0,0,30,3,"3",1.94736842105263,1.93333333333333 +"pytest-arraydiff",0.1898441175,2.3416228263,-0.2394386956,"https://salsa.debian.org/python-team/packages/pytest-arraydiff","https://github.com/astrofrog/pytest-arraydiff",2688.582349537,5,12,0,11,0,0,0,11,1,"1",1.70588235294118,1 +"pytest-bdd",-3.4287681139,-0.5039458847,-4.2303785564,"https://salsa.debian.org/python-team/packages/pytest-bdd","https://github.com/pytest-dev/pytest-bdd.git",3909.5599768519,26,45,0,50,355,0,0,365,3,"3",1.63380281690141,1.97260273972603 +"pytest-expect",-1.4175585643,1.7604433826,-2.2515689023,"https://salsa.debian.org/python-team/packages/pytest-expect","https://github.com/gsnedders/pytest-expect",1755.9376273148,2,3,0,2,13,0,0,13,1,"1",1.6,2 +"pytest-pylint",-0.8320096401,0.1532890227,-1.1006353608,"https://salsa.debian.org/python-team/packages/pytest-pylint","https://github.com/carsongee/pytest-pylint",3089.6046180556,5,20,0,19,97,0,0,97,2,"2",1.8,2 +"pytest-remotedata",0.030168843,1.6486281266,-0.2466155852,"https://salsa.debian.org/python-team/packages/pytest-remotedata","https://github.com/astropy/pytest-remotedata",4372.8560069445,4,28,1,27,27,0,1,44,3,"3",1.875,1.61363636363636 +"pytest-sugar",-1.9343898664,0.0895529374,-2.5336128329,"https://salsa.debian.org/python-team/packages/pytest-sugar","https://github.com/Teemu/pytest-sugar.git",3774.5057060185,13,48,0,45,191,0,0,199,3,"3",1.78688524590164,1.95979899497487 +"py-amqp",0.4927928639,2.9780373711,-0.1037801308,"https://salsa.debian.org/python-team/packages/python-amqp","https://github.com/celery/py-amqp.git",5725.5644791667,68,43,0,82,220,0,0,249,4,"4",1.38738738738739,1.88353413654618 +"argh",0.2339030674,2.0159100899,-0.2686508718,"https://salsa.debian.org/python-team/packages/python-argh","https://github.com/neithere/argh.git",4744.0471875,5,24,0,22,102,0,0,107,3,"3",1.82758620689655,1.95327102803738 +"asyncssh",-1.1827053689,0.2562433063,-1.6493196582,"https://salsa.debian.org/python-team/packages/python-asyncssh","https://github.com/ronf/asyncssh",3723.8668634259,18,9,0,23,71,0,0,87,2,"2",1.33333333333333,1.81609195402299 +"python-atomicwrites",0.8071747449,3.936888395,-0.0360579534,"https://salsa.debian.org/python-team/packages/python-atomicwrites","https://github.com/untitaker/python-atomicwrites",2718.0744907407,9,8,0,15,53,0,0,53,1,"1",1.47058823529412,2 +"avro",-0.6764070684,0.594195245,-0.9704692662,"https://salsa.debian.org/python-team/packages/python-avro","https://github.com/apache/avro",5362.5630555556,342,76,0,310,0,0,0,310,4,"4",1.18181818181818,1 +"aws-xray-sdk-python",-0.6565672961,2.2186104229,-1.3887187484,"https://salsa.debian.org/science-team/python-aws-xray-sdk","https://github.com/aws/aws-xray-sdk-python",2264.9942939815,64,31,0,69,93,0,0,126,1,"1",1.32631578947368,1.73809523809524 +"azure-python-devtools",-1.8877692262,1.0407212341,-2.6897741774,"https://salsa.debian.org/python-team/packages/python-azure-devtools","https://github.com/Azure/azure-python-devtools",1688.8337962963,6,14,0,12,28,0,0,31,1,"1",1.7,1.90322580645161 +"b2-sdk-python",-2.7091203496,0.0195888217,-3.2985895116,"https://salsa.debian.org/python-team/packages/python-b2sdk","https://github.com/Backblaze/b2-sdk-python.git",2948.6294907407,24,86,0,77,61,0,0,112,2,"2",1.78181818181818,1.54464285714286 +"babel",0.4571086267,1.1252224199,0.1143783436,"https://salsa.debian.org/python-team/packages/python-babel","https://github.com/python-babel/babel",5776.7216782407,75,93,2,137,127,0,0,236,4,"4",1.55357142857143,1.53813559322034 +"base58",-0.6380025418,1.8870432293,-1.1948721512,"https://salsa.debian.org/python-team/packages/python-base58","https://github.com/keis/base58",3504.7240046296,9,12,0,15,37,0,0,38,2,"2",1.57142857142857,1.97368421052632 +"bayespy",-0.4133726859,2.2939543254,-1.2809021253,"https://salsa.debian.org/science-team/python-bayespy","https://github.com/bayespy/bayespy",4227.6050231482,4,9,0,7,68,0,0,68,3,"3",1.69230769230769,2 +"bcrypt",0.720872399,2.4323524124,0.0873154337,"https://salsa.debian.org/python-team/packages/python-bcrypt","https://github.com/pyca/bcrypt.git",3870.0652083333,26,10,0,30,196,0,0,198,3,"3",1.27777777777778,1.98989898989899 +"python-blosc",0.4104792893,2.7209909901,-0.2401314247,"https://salsa.debian.org/python-team/packages/python-blosc","https://github.com/Blosc/python-blosc.git",4736.2912268519,17,36,0,37,120,0,0,121,3,"3",1.67924528301887,1.99173553719008 +"boltons",-0.0997518599,2.672673187,-0.8614154477,"https://salsa.debian.org/python-team/packages/python-boltons","https://github.com/mahmoud/boltons",3938.2483333333,42,55,0,73,206,0,0,206,3,"3",1.56701030927835,2 +"bumps",-0.8935367246,0.0933032097,-1.1605313205,"https://salsa.debian.org/science-team/python-bumps","https://github.com/bumps/bumps",4409.9511574074,1,19,0,10,22,0,0,24,3,"3",1.95,1.91666666666667 +"cachetools",0.5221597712,3.3731185733,-0.2589146292,"https://salsa.debian.org/python-team/packages/python-cachetools","https://github.com/tkem/cachetools",3511.0841203704,2,11,0,11,206,0,0,206,2,"2",1.84615384615385,2 +"certbot",-2.2720142983,0.1157477766,-2.775909363,"https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-dnsimple","https://github.com/certbot/certbot.git",4226.9669907407,268,343,0,391,635,0,143,1074,3,"3",1.56137479541735,1.59124767225326 +"certbot",-0.8998199839,1.9089794558,-1.5782805062,"https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-google","https://github.com/certbot/certbot.git",4226.9669907407,268,343,0,391,635,0,143,1074,3,"3",1.56137479541735,1.59124767225326 +"certbot",-0.2811377468,1.8247084979,-0.7514361439,"https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136","https://github.com/certbot/certbot.git",4226.9669907407,268,343,0,391,635,0,143,1074,3,"3",1.56137479541735,1.59124767225326 +"certbot",-1.1000615706,1.1834717942,-1.6727445902,"https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-route53","https://github.com/certbot/certbot.git",4226.9669907407,268,343,0,391,635,0,143,1074,3,"3",1.56137479541735,1.59124767225326 +"cmarkgfm",-1.3150135933,1.231941831,-1.8951479522,"https://salsa.debian.org/python-team/packages/python-cmarkgfm","https://github.com/theacodes/cmarkgfm",1977.4600578704,18,8,0,20,50,0,0,50,1,"1",1.30769230769231,2 +"colorama",0.7784754841,2.4846627407,0.147974244,"https://salsa.debian.org/python-team/packages/python-colorama","https://github.com/tartley/colorama",3514.6796527778,15,42,0,45,341,0,1,348,2,"2",1.73684210526316,1.97988505747126 +"python-colorlog",0.0760601286,2.176247301,-0.417655582,"https://salsa.debian.org/python-team/packages/python-colorlog","https://github.com/borntyping/python-colorlog.git",4104.9554398148,10,24,0,30,43,0,0,56,3,"3",1.70588235294118,1.76785714285714 +"colormap",-0.8079814337,1.468837378,-1.3890414287,"https://salsa.debian.org/python-team/packages/python-colormap","https://github.com/cokelaer/colormap",3308.9144444445,1,7,0,6,15,0,0,15,2,"2",1.875,2 +"pythonfutures",0.253069403,1.4926901749,-0.0680161382,"https://salsa.debian.org/python-team/modules/python-concurrent.futures","https://github.com/agronholm/pythonfutures.git",4929.1742592593,10,12,0,14,86,0,0,86,3,"3",1.54545454545455,2 +"ConfigArgParse",0.6238780174,3.3511057459,-0.0441913435,"https://salsa.debian.org/python-team/packages/configargparse","https://github.com/bw2/ConfigArgParse",3315.6581828704,8,51,0,44,239,0,1,240,2,"2",1.86440677966102,1.99583333333333 +"css-parser",0.7375204292,3.6525325545,-0.047073823,"https://salsa.debian.org/python-team/packages/python-css-parser","https://github.com/ebook-utils/css-parser",1765.7022685185,2,7,0,7,11,0,0,11,1,"1",1.77777777777778,2 +"cssselect",0.7663890486,3.666235057,-0.0218050513,"https://salsa.debian.org/python-team/packages/python-cssselect","https://github.com/scrapy/cssselect",5713.5145601852,8,23,0,24,65,0,1,68,4,"4",1.74193548387097,1.95588235294118 +"pycups",0.7229281241,2.1065141416,0.1579248085,"https://salsa.debian.org/python-team/packages/python-cups","https://github.com/OpenPrinting/pycups.git",5524.6673842593,4,9,0,9,62,0,1,68,4,"4",1.69230769230769,1.91176470588235 +"curtsies",0.3166501906,2.6067653967,-0.304611589,"https://salsa.debian.org/sramacher/python-curtsies","https://github.com/bpython/curtsies",3799.8890277778,15,32,1,35,70,0,0,73,3,"3",1.68085106382979,1.95890410958904 +"cycler",0.6283830281,2.4968734847,0.0195972629,"https://salsa.debian.org/python-team/packages/python-cycler","https://github.com/matplotlib/cycler",2790.0141087963,6,19,2,21,28,0,0,35,2,"2",1.76,1.8 +"cytoolz",-0.3584848,2.3538098789,-1.0758303941,"https://salsa.debian.org/python-team/packages/python-cytoolz","https://github.com/pytoolz/cytoolz",3395.421412037,2,21,0,16,68,0,0,71,2,"2",1.91304347826087,1.95774647887324 +"python-darkslide",0.9320448351,4.4954117391,-0.2883231751,"https://salsa.debian.org/debian/darkslide","https://github.com/ionelmc/python-darkslide.git",4282.7612268519,4,56,0,42,23,0,0,55,3,"3",1.93333333333333,1.41818181818182 +"DartsPyLRU",-1.8927494334,0.2922334772,-2.3461638638,"https://salsa.debian.org/pkg-security-team/python-darts.lib.utils.lru","https://github.com/deterministic-arts/DartsPyLRU.git",362.9079398148,0,2,0,1,5,0,0,5,1,"1",2,2 +"datrie",-0.50605789,1.3803188391,-0.9784823552,"https://salsa.debian.org/python-team/packages/python-datrie","https://github.com/kmike/datrie.git",2978.6536226852,7,11,0,14,90,0,2,92,2,"2",1.61111111111111,1.97826086956522 +"python-dbusmock",-0.627944788,0.3000038238,-0.8505709773,"https://salsa.debian.org/python-team/packages/python-dbusmock","https://github.com/martinpitt/python-dbusmock",4100.7724189815,32,16,0,31,57,0,0,63,3,"3",1.33333333333333,1.9047619047619 +"decorator",0.4704212561,1.7923957087,0.0135959484,"https://salsa.debian.org/python-team/packages/python-decorator","https://github.com/micheles/decorator.git",5376.3999537037,6,23,0,23,131,0,0,131,4,"4",1.79310344827586,2 +"django-braces",-1.2510273472,0.3406489189,-1.6388153686,"https://salsa.debian.org/python-team/packages/python-django-braces","https://github.com/brack3t/django-braces.git",4108.7193865741,10,79,0,65,196,0,0,196,3,"3",1.8876404494382,2 +"django-cas",-1.1534352121,1.6719173633,-2.0695177654,"https://salsa.debian.org/python-team/packages/python-django-casclient","https://github.com/kstateome/django-cas",2792.0546875,7,19,0,16,53,0,0,54,2,"2",1.73076923076923,1.98148148148148 +"django-extra-views",-1.2587713718,1.08523072,-1.8662212132,"https://salsa.debian.org/python-team/packages/python-django-extra-views","https://github.com/AndrewIngram/django-extra-views",4072.4001041667,12,61,1,51,205,0,0,208,3,"3",1.83561643835616,1.98557692307692 +"django-imagekit",-1.3510241486,0.3749851789,-1.7864034212,"https://salsa.debian.org/python-team/packages/python-django-imagekit","https://github.com/matthewwithanm/django-imagekit.git",5386.1103935185,18,69,0,65,458,0,0,463,4,"4",1.79310344827586,1.98920086393089 +"django-modelcluster",-3.9620317451,-2.0344269896,-4.3414266404,"https://salsa.debian.org/python-team/packages/python-django-modelcluster","https://github.com/wagtail/django-modelcluster.git",3534.2000347222,21,13,0,29,118,0,0,119,2,"2",1.38235294117647,1.99159663865546 +"django-rest-framework-guardian",-3.3209075154,-1.1464196518,-3.751236078,"https://salsa.debian.org/python-team/packages/python-django-rest-framework-guardian","https://github.com/rpkilby/django-rest-framework-guardian.git",626.7550231481,2,4,0,4,14,0,0,14,1,"1",1.66666666666667,2 +"django-rest-hooks",-1.5050875724,1.1869723949,-2.1906025512,"https://salsa.debian.org/python-team/packages/python-django-rest-hooks","https://github.com/zapier/django-rest-hooks",2693.6027777778,12,13,0,20,56,0,0,57,1,"1",1.52,1.98245614035088 +"django-split-settings",-2.7895751152,-0.3987847133,-3.3101515707,"https://salsa.debian.org/python-team/packages/python-django-split-settings","https://github.com/sobolevn/django-split-settings",3860.1584027778,17,13,0,20,39,0,0,46,3,"3",1.43333333333333,1.84782608695652 +"django-storages",-3.1386978641,-0.5967779923,-3.725863839,"https://salsa.debian.org/python-team/packages/python-django-storages","https://github.com/jschneier/django-storages.git",4486.1115740741,175,96,0,225,717,0,2,835,3,"3",1.35424354243542,1.85868263473054 +"django-treebeard",-1.4430134685,-0.7351656258,-1.6842741632,"https://salsa.debian.org/python-team/packages/python-django-treebeard","https://github.com/django-treebeard/django-treebeard.git",5493.911400463,24,59,0,65,267,0,0,278,4,"4",1.71084337349398,1.96043165467626 +"python-dmidecode",0.6965127554,2.3773186195,-0.1244349613,"https://salsa.debian.org/python-team/packages/python-dmidecode","https://github.com/nima/python-dmidecode",5342.5758333333,10,17,0,11,26,0,0,28,4,"4",1.62962962962963,1.92857142857143 +"dnsq",-0.8493777922,1.6513810932,-1.4106021621,"https://salsa.debian.org/python-team/packages/python-dnsq","https://github.com/mailgun/dnsq.git",1028.9045138889,1,6,0,4,14,0,0,15,1,"1",1.85714285714286,1.93333333333333 +"python-dotenv",-0.0646647075,2.8616640278,-0.9758026604,"https://salsa.debian.org/debian/python-dotenv","https://github.com/theskumar/python-dotenv.git",3676.0798726852,81,18,0,84,565,0,1,569,2,"2",1.18181818181818,1.99297012302285 +"dpkt",0.019610667,2.4762696052,-0.5848881328,"https://salsa.debian.org/python-team/packages/python-dpkt","https://github.com/kbandla/dpkt",3886.9183680556,36,43,1,56,220,0,1,222,3,"3",1.54430379746835,1.99099099099099 +"dropbox-sdk-python",-0.1301813578,2.8452134881,-0.8655819935,"https://salsa.debian.org/python-team/packages/python-dropbox","https://github.com/dropbox/dropbox-sdk-python",2984.0770833333,28,31,0,31,49,0,0,71,2,"2",1.52542372881356,1.69014084507042 +"python-dugong",-0.5914713911,0.3761740468,-0.8252986097,"https://salsa.debian.org/python-team/packages/python-dugong","https://github.com/python-dugong/python-dugong.git",3200.2688541667,4,5,0,7,9,0,0,11,2,"2",1.55555555555556,1.81818181818182 +"easydev",-1.0634186539,0.4092421308,-1.417126244,"https://salsa.debian.org/python-team/packages/python-easydev","https://github.com/cokelaer/easydev.git",3717.344375,0,5,0,1,10,0,0,10,2,"2",2,2 +"easywebdav",-0.193448412,1.9590581698,-0.6371910366,"https://salsa.debian.org/python-team/packages/python-easywebdav","https://github.com/amnong/easywebdav",813.3765625,1,13,0,8,75,0,0,75,1,"1",1.92857142857143,2 +"exif-py",0.0156493175,1.0036035588,-0.2489350249,"https://salsa.debian.org/python-team/packages/python-exif","https://github.com/ianare/exif-py",3998.0291898148,34,23,0,51,195,0,0,195,3,"3",1.40350877192982,2 +"fabio",0.0104950221,1.2100758664,-0.4380511126,"https://salsa.debian.org/science-team/python-fabio","https://github.com/silx-kit/fabio.git",5765.1214351852,18,45,0,33,54,0,0,60,4,"4",1.71428571428571,1.9 +"fitsio",-0.4610557174,0.3940574407,-0.637876907,"https://salsa.debian.org/debian-astro-team/python-fitsio","https://github.com/esheldon/fitsio",4439.4105671296,4,32,0,25,107,0,0,108,3,"3",1.88888888888889,1.99074074074074 +"flaky",-0.8238726702,2.0811606782,-1.6526698831,"https://salsa.debian.org/python-team/packages/python-flaky","https://github.com/box/flaky.git",3089.6002083333,11,23,0,21,145,0,0,145,2,"2",1.67647058823529,2 +"fysom",-0.7585603333,1.38289184,-1.1858234109,"https://salsa.debian.org/debian/python-fysom","https://github.com/mriehl/fysom.git",3641.9876967593,3,22,0,13,39,0,0,40,2,"2",1.88,1.975 +"geneimpacts",-1.8069134623,0.4508156575,-2.2387477164,"https://salsa.debian.org/med-team/python-geneimpacts","https://github.com/brentp/geneimpacts/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"genty",-1.5312416046,1.7202436984,-2.3792600782,"https://salsa.debian.org/python-team/packages/python-genty","https://github.com/box/genty.git",701.8032986111,0,10,0,5,15,0,0,15,1,"1",2,2 +"glad",-1.3457272309,1.093467749,-1.9015379081,"https://salsa.debian.org/python-team/packages/glad","https://github.com/Dav1dde/glad.git",3530.1536458333,54,19,0,28,255,0,3,266,2,"2",1.26027397260274,1.95864661654135 +"python-gnupg",0.3458917214,1.220869917,-0.050061794,"https://salsa.debian.org/python-team/packages/python-gnupg","https://github.com/vsajip/python-gnupg.git",3594.9863773148,6,12,0,14,52,0,0,58,2,"2",1.66666666666667,1.89655172413793 +"gnuplotlib",-0.5540723096,1.9911774543,-1.1225767623,"https://salsa.debian.org/python-team/packages/python-gnuplotlib","https://github.com/dkogan/gnuplotlib",3062.559849537,1,2,0,2,29,0,0,29,2,"2",1.66666666666667,2 +"graphviz",-0.2775267395,1.2889253499,-0.6503415057,"https://salsa.debian.org/python-team/packages/python-graphviz","https://github.com/xflr6/graphviz",3612.6320833333,12,12,0,22,48,0,0,60,2,"2",1.5,1.8 +"greenlet",0.8047616843,1.7061049423,0.3070462935,"https://salsa.debian.org/python-team/packages/python-greenlet","https://github.com/python-greenlet/greenlet",5315.6529166667,21,53,1,60,350,0,0,351,4,"4",1.71621621621622,1.997150997151 +"python-gssapi",0.3289179765,2.3550255223,-0.2500485627,"https://salsa.debian.org/python-team/packages/python-gssapi","https://github.com/pythongssapi/python-gssapi",3263.0338078704,18,17,0,25,97,0,0,99,2,"2",1.48571428571429,1.97979797979798 +"h11",0.0628463609,2.5298903305,-0.3966248627,"https://salsa.debian.org/python-team/packages/python-h11","https://github.com/python-hyper/h11.git",2700.4708217593,21,14,0,28,99,0,0,99,1,"1",1.4,2 +"httplib2",0.5220301337,1.5281004855,0.118057713,"https://salsa.debian.org/python-team/packages/python-httplib2","https://github.com/httplib2/httplib2.git",5422.7818402778,50,36,0,58,150,0,9,186,4,"4",1.41860465116279,1.80645161290323 +"httptools",-1.016257232,1.5255190337,-1.6306842731,"https://salsa.debian.org/python-team/packages/python-httptools","https://github.com/MagicStack/httptools.git",2908.9019444445,11,7,0,15,96,0,0,97,2,"2",1.38888888888889,1.98969072164948 +"idna",0.428827323,2.3998733008,0.0023232441,"https://salsa.debian.org/python-team/packages/python-idna","https://github.com/kjd/idna",3836.1993865741,12,16,2,22,107,0,0,107,3,"3",1.57142857142857,2 +"ijson",-0.7882494907,1.6183503032,-1.3435678266,"https://salsa.debian.org/debian/python-ijson","https://github.com/ICRAR/ijson.git",4844.9471180556,7,21,0,19,91,0,0,100,3,"3",1.75,1.91 +"intervaltree-bio",-0.5864931947,1.6648991521,-1.1805901394,"https://salsa.debian.org/med-team/python-intervaltree-bio","https://github.com/konstantint/intervaltree-bio.git",961.9282638889,0,5,0,4,7,0,0,7,1,"1",2,2 +"ipaddr-py",0.6433933144,3.2903739444,-0.0419910302,"https://salsa.debian.org/python-team/modules/python-ipaddr","https://github.com/google/ipaddr-py/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ipaddress",0.6123592223,3.1947690745,-0.0003839016,"https://salsa.debian.org/python-team/modules/python-ipaddress","https://github.com/phihag/ipaddress",2728.476099537,1,7,0,6,56,0,0,56,1,"1",1.875,2 +"python-ipcalc",0.7141016308,3.4398389904,-0.255334424,"https://github.com/craneworks/python-ipcalc","https://github.com/craneworks/python-ipcalc",756.8280324074,1,1,0,0,1,0,0,1,1,"1",1.5,2 +"python-iptables",-1.3768945792,-0.1620145007,-1.5972298957,"https://salsa.debian.org/python-team/packages/python-iptables","https://github.com/ldx/python-iptables",4469.2364236111,3,51,0,40,238,0,0,240,3,"3",1.94444444444444,1.99166666666667 +"python-isc-dhcp-leases",-1.2144164676,1.3723753572,-1.7887539722,"https://salsa.debian.org/python-team/packages/python-isc-dhcp-leases","https://github.com/MartijnBraam/python-isc-dhcp-leases",3184.8126041667,4,9,0,8,31,0,0,31,2,"2",1.69230769230769,2 +"itsdangerous",0.6642302819,3.2169189216,-0.0415160477,"https://salsa.debian.org/python-team/packages/python-itsdangerous","https://github.com/pallets/itsdangerous",4546.9291435185,24,19,0,40,182,0,0,188,3,"3",1.44186046511628,1.96808510638298 +"jellyfish",0.0674101012,2.0051276836,-0.4205869787,"https://salsa.debian.org/python-team/packages/python-jellyfish","https://github.com/jamesturk/jellyfish",4902.3308101852,15,24,0,27,148,0,0,148,3,"3",1.61538461538462,2 +"jira",-0.3980829938,2.423176583,-1.0411208861,"https://salsa.debian.org/python-team/packages/python-jira","https://github.com/pycontribs/jira",4267.40125,111,155,3,195,572,0,0,670,3,"3",1.58270676691729,1.85373134328358 +"jmespath.py",0.3629172949,2.0686645362,-0.1003834425,"https://salsa.debian.org/python-team/packages/python-jmespath","https://github.com/jmespath/jmespath.py",3691.1897222222,12,21,0,28,14,0,1,37,2,"2",1.63636363636364,1.37837837837838 +"josepy",0.3513511179,2.2923963637,-0.0869215969,"https://salsa.debian.org/letsencrypt-team/certbot/josepy","https://github.com/certbot/josepy",4184.7847685185,104,276,0,285,46,0,0,308,3,"3",1.72631578947368,1.14935064935065 +"python-junit-xml",-0.4874384495,3.2461576764,-1.4580304291,"https://salsa.debian.org/python-team/packages/python-junit-xml","https://github.com/kyrus/python-junit-xml.git",2595.0297685185,5,18,0,13,67,0,0,69,1,"1",1.78260869565217,1.97101449275362 +"kajiki",-2.3594950912,-1.2299434314,-2.6159157482,"https://salsa.debian.org/python-team/packages/python-kajiki","https://github.com/jackrosenthal/kajiki",4546.9668518519,3,22,0,18,30,0,0,33,3,"3",1.88,1.90909090909091 +"kaptan",-0.238361389,2.3964025525,-0.8063707104,"https://salsa.debian.org/debian/python-kaptan","https://github.com/emre/kaptan.git",3814.6996064815,6,17,0,16,32,0,0,32,3,"3",1.73913043478261,2 +"python-libarchive-c",0.2084355293,1.8864921166,-0.3011849402,"https://salsa.debian.org/debian/python-libarchive-c","https://github.com/Changaco/python-libarchive-c.git",3365.1853587963,15,18,0,22,69,0,0,71,2,"2",1.54545454545455,1.97183098591549 +"libnacl",-0.5748525142,1.055075496,-0.9944771692,"https://salsa.debian.org/python-team/packages/python-libnacl","https://github.com/saltstack/libnacl.git",3360.8544791667,4,45,0,34,71,0,0,72,2,"2",1.91836734693878,1.98611111111111 +"python-libusb1",0.2265462586,3.5735295241,-0.6911313873,"https://salsa.debian.org/python-team/packages/python-libusb1","https://github.com/vpelletier/python-libusb1.git",5022.3082060185,13,14,0,21,84,0,0,85,4,"4",1.51851851851852,1.98823529411765 +"python-lz4",0.2828189113,1.8016304752,-0.1138420548,"https://salsa.debian.org/python-team/packages/python-lz4","https://github.com/python-lz4/python-lz4.git",3988.215625,8,43,0,37,148,0,0,158,3,"3",1.84313725490196,1.93670886075949 +"python-lzo",0.6457852422,3.6246917685,-0.1788164823,"https://salsa.debian.org/python-team/packages/python-lzo","https://github.com/jd-boyd/python-lzo",4282.0784259259,2,13,0,10,69,0,0,70,3,"3",1.86666666666667,1.98571428571429 +"python-mapnik",-0.22946102,0.3549703224,-0.441137685,"https://salsa.debian.org/debian-gis-team/python-mapnik","https://github.com/mapnik/python-mapnik.git",5494.8782638889,10,101,0,63,101,0,0,150,4,"4",1.90990990990991,1.67333333333333 +"MechanicalSoup",-0.5139427981,1.6546261984,-1.0099675897,"https://salsa.debian.org/python-team/packages/python-mechanicalsoup","https://github.com/hickford/MechanicalSoup",3488.7486574074,39,28,0,46,149,0,0,164,2,"2",1.41791044776119,1.90853658536585 +"mechanize",0.5587118446,1.5296801165,0.1098543172,"https://salsa.debian.org/python-team/packages/python-mechanize","https://github.com/python-mechanize/mechanize.git",5735.6054513889,5,12,0,14,81,0,0,548,4,"4",1.70588235294118,1.1478102189781 +"meld3",1.4808008162,4.1711738218,0.4100529738,"https://salsa.debian.org/python-team/packages/python-meld3","https://github.com/supervisor/meld3.git",4279.117650463,0,8,0,7,27,0,0,27,3,"3",2,2 +"PyMemoize",-1.6877152559,1.1203038488,-2.4079093642,"https://salsa.debian.org/debian/python-memoize","https://github.com/mikeboers/PyMemoize",4629.8626388889,2,6,0,5,18,0,0,19,3,"3",1.75,1.94736842105263 +"memprof",-1.0055408653,0.6195771117,-1.559509906,"https://salsa.debian.org/python-team/packages/python-memprof","https://github.com/jmdana/memprof",2110.1480324074,1,8,0,5,18,0,0,18,1,"1",1.88888888888889,2 +"MIDIUtil",-0.4550519333,2.0970578814,-0.9760105027,"https://salsa.debian.org/multimedia-team/python-midiutil","https://github.com/MarkCWirt/MIDIUtil.git",532.2564583333,2,4,0,2,47,0,0,47,1,"1",1.66666666666667,2 +"python-miio",-2.4535132218,0.0572909827,-2.9975615853,"https://salsa.debian.org/python-team/packages/miio","https://github.com/rytilahti/python-miio.git",2467.2539236111,163,5,0,156,136,0,0,270,1,"1",1.0297619047619,1.5037037037037 +"python-mimeparse",0.635087679,2.3635412747,-0.0635295991,"https://salsa.debian.org/python-team/modules/python-mimeparse","https://github.com/dbtsai/python-mimeparse.git",3368.8721296296,9,11,0,12,20,0,0,23,2,"2",1.55,1.8695652173913 +"motor",-1.6905579654,-0.1116236972,-2.117236641,"https://salsa.debian.org/python-team/packages/python-motor","https://github.com/mongodb/motor",3986.9431365741,28,30,0,47,2,0,0,47,3,"3",1.51724137931034,1.04255319148936 +"pymox",-0.4239911007,2.121473449,-1.1839102652,"https://salsa.debian.org/debian/python-mox","https://github.com/ivancrneto/pymox",3025.5165856482,3,7,0,5,8,0,0,10,2,"2",1.7,1.8 +"python-mpd2",-0.2990738247,0.3266786344,-0.4283928832,"https://salsa.debian.org/mpd-team/python-mpd","https://github.com/Mic92/python-mpd2",5765.5434143519,16,38,0,43,139,0,0,139,4,"4",1.7037037037037,2 +"mplexporter",-0.1464208389,2.3064325181,-0.9188944106,"https://salsa.debian.org/python-team/packages/python-mplexporter","https://github.com/mpld3/mplexporter",3220.5932523148,4,24,0,17,29,0,0,31,2,"2",1.85714285714286,1.93548387096774 +"pynacl",0.3194025143,1.5580852197,-0.0692227421,"https://salsa.debian.org/python-team/packages/python-nacl","https://github.com/pyca/pynacl",3948.360462963,44,26,1,61,44,0,0,91,3,"3",1.37142857142857,1.48351648351648 +"python-nameparser",-2.0123667482,0.1499038072,-2.4759914091,"https://salsa.debian.org/python-team/packages/python-nameparser","https://github.com/derek73/python-nameparser",4612.1091203704,9,18,1,23,121,0,0,123,3,"3",1.66666666666667,1.98373983739837 +"nest_asyncio",-3.3220087743,0.2652013224,-4.2429827404,"https://salsa.debian.org/python-team/packages/python-nest-asyncio","https://github.com/erdewit/nest_asyncio",1907.2440740741,4,10,0,12,92,0,0,92,1,"1",1.71428571428571,2 +"python-networkmanager",-0.3294740738,1.4731534732,-0.9543699399,"https://salsa.debian.org/python-team/packages/python-networkmanager","https://github.com/seveas/python-networkmanager",4090.3196759259,12,3,0,11,104,0,0,104,3,"3",1.2,2 +"oauthlib",0.3884344854,2.2364514825,-0.0809544139,"https://salsa.debian.org/python-team/packages/python-oauthlib","https://github.com/oauthlib/oauthlib",4357.2754050926,51,167,2,168,249,0,0,316,3,"3",1.76605504587156,1.7879746835443 +"odfpy",-0.1752613644,1.26653294,-0.4678571818,"https://salsa.debian.org/python-team/packages/python-odf","https://github.com/eea/odfpy",4744.619375,6,27,0,24,129,0,10,140,3,"3",1.81818181818182,1.92142857142857 +"python-pam",0.7194661619,3.5092607756,-0.0318286678,"https://salsa.debian.org/python-team/packages/python-pampy","https://github.com/FirefighterBlu3/python-pam",2926.9394907408,2,10,0,8,42,0,0,42,2,"2",1.83333333333333,2 +"pandocfilters",0.4325771732,2.9731648905,-0.1436774117,"https://salsa.debian.org/python-team/packages/python-pandocfilters","https://github.com/jgm/pandocfilters",2924.0615740741,12,31,0,34,69,0,0,74,2,"2",1.72093023255814,1.93243243243243 +"parameterized",-0.0852476016,1.7634629159,-0.4735189307,"https://salsa.debian.org/python-team/packages/python-parameterized","https://github.com/wolever/parameterized",4033.873125,6,29,0,26,199,0,0,201,3,"3",1.82857142857143,1.99004975124378 +"parse_type",-0.7766894785,2.2657323306,-1.6027471957,"https://salsa.debian.org/python-team/packages/python-parse-type","https://github.com/jenisys/parse_type",3544.3490162037,0,4,0,1,16,0,0,16,2,"2",2,2 +"periodictable",-1.0615188189,0.0399913751,-1.3403053026,"https://salsa.debian.org/science-team/python-periodictable","https://github.com/pkienzle/periodictable.git",5457.176412037,0,18,0,9,27,0,0,27,4,"4",2,2 +"pex",-0.7476267621,1.4651691422,-1.6685430991,"https://salsa.debian.org/python-team/packages/python-pex","https://github.com/pantsbuild/pex.git",3433.3294212963,95,47,0,104,155,0,0,220,2,"2",1.33098591549296,1.70454545454545 +"python-pgpdump",-0.1879378602,2.3259223777,-0.7707539804,"https://salsa.debian.org/python-team/packages/python-pgpdump","https://github.com/toofishes/python-pgpdump",826.806712963,5,2,0,5,24,0,0,24,1,"1",1.28571428571429,2 +"PGPy",-0.2430201905,2.4059068222,-1.197889114,"https://salsa.debian.org/debian/pgpy","https://github.com/SecurityInnovation/PGPy",3246.9911458333,11,33,2,35,91,0,1,103,2,"2",1.75,1.88349514563107 +"pgspecial",0.3830684523,3.0333672127,-0.3897890378,"https://salsa.debian.org/python-team/packages/python-pgspecial","https://github.com/dbcli/pgspecial",2959.9866319445,21,33,0,38,60,0,0,60,2,"2",1.61111111111111,2 +"phply",-0.0136994366,0.8386196269,-0.2146141125,"https://salsa.debian.org/debian/python-phply","https://github.com/viraptor/phply.git",4545.3284143519,2,13,0,9,35,0,0,37,3,"3",1.86666666666667,1.94594594594595 +"picklable-itertools",-1.9017855155,0.0686564891,-2.3399948958,"https://salsa.debian.org/python-team/packages/python-picklable-itertools","https://github.com/mila-iqia/picklable-itertools",176.1980324074,0,5,0,3,4,0,0,4,1,"1",2,2 +"pika",0.6194442951,2.792024793,-0.1295291186,"https://salsa.debian.org/python-team/packages/python-pika","https://github.com/pika/pika",5099.3438078704,52,181,1,165,190,0,0,319,4,"4",1.77682403433476,1.59561128526646 +"pyftpdlib",-0.1028969973,1.6271806139,-0.7069948318,"https://salsa.debian.org/python-team/packages/python-pyftpdlib","https://github.com/giampaolo/pyftpdlib",5695.2602314815,16,22,1,30,82,0,0,100,4,"4",1.57894736842105,1.82 +"pymeasure",-0.0345798255,2.662684469,-0.7066701418,"https://salsa.debian.org/science-team/python-pymeasure","https://github.com/ralph-group/pymeasure/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"pynvim",0.1793262124,2.0167259674,-0.2014913603,"https://salsa.debian.org/python-team/packages/python-pynvim","https://github.com/neovim/pynvim",3504.5291782407,26,35,0,55,243,0,0,250,2,"2",1.57377049180328,1.972 +"pyotp",-0.1936486463,2.043929727,-0.7744180298,"https://salsa.debian.org/python-team/packages/python-pyotp","https://github.com/pyauth/pyotp.git",4631.6125462963,26,20,0,33,124,0,0,130,3,"3",1.43478260869565,1.95384615384615 +"pyperclip",0.520944025,2.1523556396,-0.0782247035,"https://salsa.debian.org/sramacher/python-pyperclip","https://github.com/asweigart/pyperclip",3772.0925925926,7,31,0,31,330,0,0,330,3,"3",1.81578947368421,2 +"pyproj",-0.1814047386,0.2461708969,-0.2576178377,"https://salsa.debian.org/debian-gis-team/python-pyproj","https://github.com/pyproj4/pyproj.git",5681.2389236111,30,46,0,61,327,0,0,350,4,"4",1.60526315789474,1.93428571428571 +"pypubsub",-1.763743949,-0.068250645,-2.0677092705,"https://salsa.debian.org/python-team/packages/python-pypubsub","https://github.com/schollii/pypubsub",1788.0433680556,4,5,0,6,42,0,0,42,1,"1",1.55555555555556,2 +"pyramid_multiauth",-1.9341240314,0.3100051717,-2.4480383752,"https://github.com/douardda/pyramid_multiauth","https://github.com/douardda/pyramid_multiauth",1636.4991203704,0,10,0,6,0,0,0,6,1,"1",2,1 +"pysnmp",0.6296288884,1.9466089716,0.0848638325,"https://salsa.debian.org/python-team/packages/python-pysnmp4","https://github.com/etingof/pysnmp",4346.8111226852,17,11,0,21,393,0,0,394,3,"3",1.39285714285714,1.99746192893401 +"qtpy",0.3491974082,2.2294676618,-0.1435114165,"https://salsa.debian.org/python-team/packages/python-qtpy","https://github.com/spyder-ide/qtpy",3201.4270949074,20,62,3,59,61,0,1,101,2,"2",1.75609756097561,1.6039603960396 +"python-quantities",-0.0106025798,1.9580121766,-0.690445939,"https://salsa.debian.org/science-team/python-quantities","https://github.com/python-quantities/python-quantities.git",5020.6635069445,7,39,0,28,134,0,0,135,4,"4",1.84782608695652,1.99259259259259 +"PythonQwt",0.5933841457,3.6301488353,-0.4097779828,"https://salsa.debian.org/science-team/python-qwt","https://github.com/PierreRaybaut/PythonQwt.git",1193.9426967593,2,6,0,5,29,0,0,29,1,"1",1.75,2 +"rarfile",0.2024927767,3.0961464994,-0.5861303229,"https://salsa.debian.org/python-team/packages/python-rarfile","https://github.com/markokr/rarfile.git",5495.9042361111,8,13,0,16,102,0,0,103,4,"4",1.61904761904762,1.99029126213592 +"rdflib-jsonld",-0.0904254945,1.6642685449,-0.4956744476,"https://salsa.debian.org/python-team/packages/python-rdflib-jsonld","https://github.com/RDFLib/rdflib-jsonld",3605.0071180556,4,18,0,13,106,0,0,106,2,"2",1.81818181818182,2 +"readme_renderer",-0.1456681528,2.207631483,-0.5831215172,"https://salsa.debian.org/python-team/packages/python-readme-renderer","https://github.com/pypa/readme_renderer",3479.9030902778,12,22,0,30,133,0,0,141,2,"2",1.64705882352941,1.94326241134752 +"restless",-1.933361243,-0.9031369663,-2.2877460686,"https://salsa.debian.org/python-team/packages/python-restless","https://github.com/toastdriven/restless",2872.2400231482,8,30,0,30,106,0,0,106,2,"2",1.78947368421053,2 +"rply",-0.0320431964,1.7010393246,-0.4724323632,"https://salsa.debian.org/python-team/packages/python-rply","https://github.com/alex/rply",3096.8436689815,9,17,0,21,76,0,0,76,2,"2",1.65384615384615,2 +"python-rsa",0.3772367225,1.9634900436,-0.1098199505,"https://salsa.debian.org/python-team/packages/python-rsa","https://github.com/sybrenstuvel/python-rsa",5670.1946296296,33,16,2,36,126,0,0,139,4,"4",1.3265306122449,1.90647482014388 +"rtree",-0.1090383067,2.131754724,-0.531642492,"https://salsa.debian.org/debian-gis-team/python-rtree","https://github.com/Toblerity/rtree.git",5739.5775925926,25,24,0,39,225,0,1,231,4,"4",1.48979591836735,1.97402597402597 +"s3transfer",0.3673618005,2.5341337999,-0.1810184019,"https://salsa.debian.org/python-team/packages/python-s3transfer","https://github.com/boto/s3transfer",2891.8518634259,24,28,0,32,161,0,0,165,2,"2",1.53846153846154,1.97575757575758 +"sabyenc",0.4522797507,3.6365145505,-0.3981014069,"https://salsa.debian.org/python-team/packages/python-sabyenc","https://github.com/sabnzbd/sabyenc.git",2872.8934606482,9,4,0,8,28,0,0,28,2,"2",1.30769230769231,2 +"scandir",0.8273012672,3.7868324648,0.0056074744,"https://salsa.debian.org/python-team/packages/python-scandir","https://github.com/benhoyt/scandir",3760.0535185185,8,20,0,22,123,0,0,123,2,"2",1.71428571428571,2 +"scrapy-djangoitem",-1.8401324548,0.5412820006,-2.4359072724,"https://salsa.debian.org/python-team/packages/python-scrapy-djangoitem","https://github.com/scrapy-plugins/scrapy-djangoitem",2837.1132523148,0,13,0,10,26,0,0,32,2,"2",2,1.8125 +"scruffy",-0.8950842584,1.9677123819,-1.6884452058,"https://salsa.debian.org/python-team/packages/python-scruffy","https://github.com/snare/scruffy",1665.7056828704,2,5,0,4,9,0,1,10,1,"1",1.71428571428571,1.9 +"secretstorage",0.3387544545,2.1308358714,-0.0585012825,"https://salsa.debian.org/python-team/packages/python-secretstorage","https://github.com/mitya57/secretstorage",3916.1693055556,4,7,0,7,50,0,0,50,3,"3",1.63636363636364,2 +"serverfiles",-3.270914062,-0.0867153,-4.1789525946,"https://salsa.debian.org/python-team/packages/python-serverfiles","https://github.com/biolab/serverfiles",2007.9058333333,1,6,0,6,0,0,0,6,1,"1",1.85714285714286,1 +"setoptconf",-0.6718962402,1.1532142556,-1.127131302,"https://salsa.debian.org/python-team/packages/python-setoptconf","https://github.com/jayclassless/setoptconf.git",2788.0056365741,0,3,0,2,3,0,0,3,2,"2",2,2 +"py-setproctitle",1.0838445468,3.2588810317,0.2442150847,"https://salsa.debian.org/python-team/packages/python-setproctitle","https://github.com/dvarrazzo/py-setproctitle",5054.5442361111,9,10,0,12,86,0,0,89,4,"4",1.52631578947368,1.96629213483146 +"python-sfml",-0.3784249777,0.2624085655,-0.5818259297,"https://salsa.debian.org/games-team/python-sfml","https://github.com/intjelic/python-sfml",3326.0384143519,1,21,2,14,97,0,5,107,2,"2",1.95454545454545,1.90654205607477 +"sh",0.0684316621,2.7449205881,-0.5744266283,"https://salsa.debian.org/python-team/packages/python-sh","https://github.com/amoffat/sh",4327.6361689815,29,75,2,77,438,0,0,456,3,"3",1.72115384615385,1.96052631578947 +"python-slugify",-0.1216991783,1.414032002,-0.4325012299,"https://salsa.debian.org/python-team/packages/python-slugify","https://github.com/un33k/python-slugify",4027.6128240741,29,16,0,32,109,0,0,111,3,"3",1.35555555555556,1.98198198198198 +"socketIO-client",0.9390849724,4.9112952662,-0.4668774995,"https://salsa.debian.org/debian/python-socketio-client","https://github.com/invisibleroads/socketIO-client",1970.3003472222,0,39,2,22,294,0,0,294,1,"1",2,2 +"PySocks",1.0550621894,3.7043852987,0.1526077193,"https://salsa.debian.org/python-team/packages/python-socksipy","https://github.com/Anorov/PySocks",2386.177962963,3,31,0,28,172,0,0,173,1,"1",1.91176470588235,1.99421965317919 +"python-systemd",0.186853671,1.4520714492,-0.0787581662,"https://salsa.debian.org/systemd-team/python-systemd","https://github.com/systemd/python-systemd",3925.6328356482,47,10,0,47,124,0,0,134,3,"3",1.17543859649123,1.92537313432836 +"python-tabulate",0.4140804306,2.807860448,-0.2305820053,"https://salsa.debian.org/python-team/packages/python-tabulate","https://github.com/astanin/python-tabulate.git",3791.7183796296,22,72,0,74,329,0,0,365,3,"3",1.76595744680851,1.9013698630137 +"tasklib",0.0418096657,2.4101943872,-0.7381367832,"https://salsa.debian.org/tasktools-team/python-tasklib","https://github.com/GothenburgBitFactory/tasklib.git",3516.4481481482,7,15,0,12,63,0,0,64,2,"2",1.68181818181818,1.984375 +"tesserocr",-0.0713400087,2.5040315407,-0.9645789788,"https://salsa.debian.org/python-team/packages/python-tesserocr","https://github.com/sirfz/tesserocr.git",2852.5099537037,21,18,0,26,295,0,0,297,2,"2",1.46153846153846,1.99326599326599 +"testfixtures",-1.2559497362,1.6255436778,-1.9966424136,"https://salsa.debian.org/python-team/packages/python-testfixtures","https://github.com/Simplistix/testfixtures",5484.404849537,6,35,0,28,106,0,0,106,4,"4",1.85365853658537,2 +"python-textile",0.3424022956,1.7744319252,-0.1804144888,"https://salsa.debian.org/python-team/packages/python-textile","https://github.com/textile/python-textile.git",3971.2575578704,0,25,0,16,50,0,0,57,3,"3",2,1.87719298245614 +"translationstring",-0.284062414,1.4802740524,-0.7286152652,"https://salsa.debian.org/python-team/packages/python-translationstring","https://github.com/Pylons/translationstring.git",3733.753599537,2,15,0,14,26,0,0,27,2,"2",1.88235294117647,1.96296296296296 +"transliterate",-1.5052976672,1.0843261213,-2.1168561972,"https://salsa.debian.org/python-team/packages/python-transliterate","https://github.com/barseghyanartur/transliterate",3701.1602314815,5,13,0,12,48,0,1,49,2,"2",1.72222222222222,1.97959183673469 +"tzlocal",0.2105199468,2.3487549308,-0.2866926628,"https://salsa.debian.org/python-team/packages/python-tzlocal","https://github.com/regebro/tzlocal",4104.7635185185,12,22,0,27,150,0,0,150,3,"3",1.64705882352941,2 +"python-uinput",-0.4895299649,2.0822444703,-1.2154886237,"https://salsa.debian.org/python-team/packages/python-uinput","https://github.com/tuomasjjrasanen/python-uinput",2471.1649768519,3,17,0,9,71,0,0,76,1,"1",1.85,1.93421052631579 +"python-unicodecsv",0.2177173313,2.0742154186,-0.2503122986,"https://salsa.debian.org/python-team/packages/python-unicodecsv","https://github.com/jdunck/python-unicodecsv",1788.5991550926,0,17,0,12,93,0,0,93,1,"1",2,2 +"uritools",0.5665608671,3.6360712032,-0.2250089468,"https://salsa.debian.org/python-team/packages/python-uritools","https://github.com/tkem/uritools",3490.5498032407,0,3,1,3,16,0,0,16,2,"2",2,2 +"venusian",-0.2389886502,1.4708114679,-0.7217668025,"https://salsa.debian.org/python-team/packages/python-venusian","https://github.com/Pylons/venusian",5042.1797800926,6,25,0,24,62,0,0,62,4,"4",1.80645161290323,2 +"werkzeug",0.6469808555,1.6210316055,0.1636782742,"https://salsa.debian.org/python-team/packages/python-werkzeug","https://github.com/pallets/werkzeug",5778.3072453704,256,251,0,409,438,0,0,737,4,"4",1.49506903353057,1.59430122116689 +"WebSocket-for-Python",-0.3061877909,1.5232020738,-1.0477652346,"https://salsa.debian.org/python-team/packages/python-ws4py","https://github.com/Lawouach/WebSocket-for-Python.git",4476.5480902778,6,66,0,48,280,0,0,280,3,"3",1.91666666666667,2 +"xapian-haystack",-1.109004629,0.9965388597,-1.7612034563,"https://salsa.debian.org/python-team/packages/python-xapian-haystack","https://github.com/notanumber/xapian-haystack",5023.7127662037,14,13,1,15,127,0,4,133,4,"4",1.48148148148148,1.95488721804511 +"pytrainer",-0.1492986337,0.6667449272,-0.6246450089,"https://salsa.debian.org/python-team/packages/pytrainer","https://github.com/pytrainer/pytrainer.git",5724.7457175926,2,26,0,20,59,0,3,64,4,"4",1.92857142857143,1.921875 +"pytsk",-0.0170924765,1.3661578979,-0.4069676209,"https://salsa.debian.org/pkg-security-team/pytsk","https://github.com/py4n6/pytsk.git",4730.6620833333,5,8,0,6,36,0,2,38,3,"3",1.61538461538462,1.94736842105263 +"pyuca",-1.879124707,0.4546058772,-2.3447337433,"https://salsa.debian.org/python-team/packages/pyuca","https://github.com/jtauber/pyuca",2863.4539467593,0,6,0,5,24,0,1,26,2,"2",2,1.92307692307692 +"pyudev",0.3052041709,1.5797390647,-0.0988792966,"https://salsa.debian.org/python-team/packages/pyudev","https://github.com/pyudev/pyudev",4959.3462037037,7,18,0,18,85,0,1,90,3,"3",1.72,1.94444444444444 +"pyutilib",-0.2260212517,1.9708399125,-0.6584040073,"https://salsa.debian.org/python-team/packages/pyutilib","https://github.com/pyutilib/pyutilib",3833.6739467593,5,24,4,10,35,0,0,35,3,"3",1.82758620689655,2 +"pyvirtualdisplay",-0.7443150581,1.4769132038,-1.1764950176,"https://salsa.debian.org/python-team/packages/pyvirtualdisplay","https://github.com/ponty/pyvirtualdisplay.git",4649.3207175926,4,15,0,10,24,0,0,30,3,"3",1.78947368421053,1.8 +"PyWebDAV3",-0.4415298354,0.1562199484,-0.5984518002,"https://salsa.debian.org/tryton-team/pywebdav","https://github.com/andrewleech/PyWebDAV3.git",5191.6373958333,7,13,0,13,12,0,0,21,4,"4",1.65,1.57142857142857 +"pywinrm",1.3688605787,4.5307310299,0.2477962041,"https://salsa.debian.org/python-team/packages/python-winrm","https://github.com/diyan/pywinrm.git",3968.3538425926,2,35,0,22,257,0,0,259,3,"3",1.94594594594595,1.99227799227799 +"pywws",-2.0058814842,0.4297872508,-2.5845945208,"https://salsa.debian.org/debian-iot-team/pywws","https://github.com/jim-easterbrook/pywws",5328.5947916667,7,19,0,21,75,0,0,75,4,"4",1.73076923076923,2 +"pyx",-0.4214323147,0.0635788825,-0.526071945,"https://salsa.debian.org/debian/pyx3","https://github.com/pyx-project/pyx",5502.6121064815,6,10,0,9,36,0,0,36,4,"4",1.625,2 +"pyxid",-1.0618344074,1.7377650499,-1.9813829645,"https://salsa.debian.org/med-team/pyxid","https://github.com/cedrus-opensource/pyxid/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"pyxnat",0.8029079218,3.9217278842,-0.2730026627,"https://salsa.debian.org/med-team/pyxnat","https://github.com/pyxnat/pyxnat.git",4754.1324652778,6,37,0,24,63,0,0,65,3,"3",1.86046511627907,1.96923076923077 +"pyyaml",0.295656714,0.9675344795,0.0168556096,"https://salsa.debian.org/python-team/packages/pyyaml","https://github.com/yaml/pyyaml.git",5656.1894444445,35,19,0,38,575,0,2,583,4,"4",1.35185185185185,1.98627787307033 +"qstat",1.4847469863,3.5445875957,0.5684335793,"https://salsa.debian.org/debian/qstat","https://github.com/Unity-Technologies/qstat",4992.716099537,11,11,0,10,43,0,0,43,4,"4",1.5,2 +"QtPass",-0.2443828761,0.6069592093,-0.421666166,"https://salsa.debian.org/debian/qtpass","https://github.com/IJHack/QtPass",3407.0546643519,102,101,0,112,378,0,0,421,2,"2",1.49753694581281,1.8978622327791 +"qtractor",0.2052424785,1.081754113,-0.1776083366,"https://salsa.debian.org/multimedia-team/qtractor","https://github.com/rncbc/qtractor.git",5788.915474537,11,33,0,25,122,0,0,125,4,"4",1.75,1.976 +"qtspell",-1.1174264874,0.8182545984,-1.5529339,"https://salsa.debian.org/qt-kde-team/extras/qtspell","https://github.com/manisandro/qtspell.git",2705.0642476852,0,4,0,3,14,0,1,15,1,"1",2,1.93333333333333 +"quickroute-linux",-0.1342848887,2.9572779507,-1.1039128379,"https://github.com/ralovich/quickroute-linux.git","https://github.com/ralovich/quickroute-linux.git",5000.8862152778,1,8,0,2,9,0,0,9,4,"4",1.88888888888889,2 +"qxgedit",0.0309448749,2.6946289528,-0.6152383196,"https://salsa.debian.org/multimedia-team/qxgedit","https://github.com/rncbc/qxgedit.git",5219.9988078704,1,11,0,3,3,0,0,3,4,"4",1.91666666666667,2 +"qxmpp",-0.5119300912,1.2450413293,-0.9220194723,"https://salsa.debian.org/xmpp-team/qxmpp","https://github.com/qxmpp-project/qxmpp.git",5420.5084722222,31,20,0,35,124,0,4,138,4,"4",1.3921568627451,1.89855072463768 +"AnnotationDbi",0.0182386654,2.4812782442,-0.5700140917,"https://salsa.debian.org/r-pkg-team/r-bioc-annotationdbi","https://github.com/Bioconductor/AnnotationDbi.git",5746.8815509259,1,33,0,12,20,0,0,25,4,"4",1.97058823529412,1.8 +"BiocParallel",-0.3260931785,0.8473313885,-0.5919329079,"https://salsa.debian.org/r-pkg-team/r-bioc-biocparallel","https://github.com/Bioconductor/BiocParallel",3995.750625,8,26,0,20,99,0,2,102,3,"3",1.76470588235294,1.97058823529412 +"Biostrings",-0.3434817294,1.1478032448,-0.6149383263,"https://salsa.debian.org/r-pkg-team/r-bioc-biostrings","https://github.com/Bioconductor/Biostrings.git",5738.5090740741,8,24,0,13,81,0,0,84,4,"4",1.75,1.96428571428571 +"checkmate",0.0859378554,2.3942389138,-0.3501105734,"https://salsa.debian.org/r-pkg-team/r-cran-checkmate","https://github.com/mllg/checkmate.git",3631.5784722222,11,53,0,13,94,0,0,94,2,"2",1.828125,2 +"crosstalk",0.1167413716,2.2666840084,-0.3491412979,"https://salsa.debian.org/r-pkg-team/r-cran-crosstalk","https://github.com/rstudio/crosstalk.git",2973.0628472222,5,12,0,11,160,0,0,160,2,"2",1.70588235294118,2 +"crul",-0.379530865,2.0620312007,-0.8847066541,"https://salsa.debian.org/r-pkg-team/r-cran-crul","https://github.com/ropensci/crul.git",2488.6026967593,12,5,0,14,41,0,0,41,1,"1",1.29411764705882,2 +"eaf",-0.4302337125,1.8302163149,-0.875193303,"https://salsa.debian.org/r-pkg-team/r-cran-eaf","https://github.com/MLopez-Ibanez/eaf/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"filehash",0.2805937396,2.9173226699,-0.2488806021,"https://salsa.debian.org/r-pkg-team/r-cran-filehash","https://github.com/rdpeng/filehash/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"fs",0.5160636344,3.5162528692,-0.2653989308,"https://salsa.debian.org/r-pkg-team/r-cran-fs","https://github.com/r-lib/fs/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"gbm",0.3279916789,3.2242802977,-0.4462694205,"https://salsa.debian.org/r-pkg-team/r-cran-gbm","https://github.com/gbm-developers/gbm/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ggeffects",-0.4101115748,1.6625213011,-0.8467537951,"https://salsa.debian.org/r-pkg-team/r-cran-ggeffects","https://github.com/strengejacke/ggeffects.git",2388.1511805556,6,17,0,11,238,0,0,240,1,"1",1.73913043478261,1.99166666666667 +"gnm",-0.0730492729,2.200175057,-0.5474121482,"https://salsa.debian.org/r-pkg-team/r-cran-gnm","https://github.com/hturner/gnm.git",5664.8181712963,2,3,0,4,13,0,0,14,4,"4",1.6,1.92857142857143 +"gtable",0.3604619903,2.5918478385,-0.180163877,"https://salsa.debian.org/r-pkg-team/r-cran-gtable","https://github.com/r-lib/gtable.git",4252.7226967593,3,15,0,11,32,0,0,32,3,"3",1.83333333333333,2 +"hms",0.2803130949,2.6915633826,-0.2371947898,"https://salsa.debian.org/r-pkg-team/r-cran-hms","https://github.com/tidyverse/hms",2747.6862152778,3,21,1,13,45,0,0,46,2,"2",1.875,1.97826086956522 +"htmlwidgets",0.2223804836,2.4523082161,-0.2245513837,"https://salsa.debian.org/r-pkg-team/r-cran-htmlwidgets","https://github.com/ramnathv/htmlwidgets.git",3428.7835185185,9,25,0,23,280,0,3,283,2,"2",1.73529411764706,1.98939929328622 +"httpuv",0.3875945435,2.2228957646,-0.1562790757,"https://salsa.debian.org/r-pkg-team/r-cran-httpuv","https://github.com/rstudio/httpuv.git",3956.9682986111,10,30,0,24,220,0,0,220,3,"3",1.75,2 +"lmerTestR",-0.2259054579,2.0342017389,-0.6812216469,"https://salsa.debian.org/r-pkg-team/r-cran-lmertest","https://github.com/runehaubo/lmerTestR.git",1009.6075115741,2,4,0,3,48,0,0,48,1,"1",1.66666666666667,2 +"memoise",0.1925230273,2.3898049253,-0.2410666252,"https://salsa.debian.org/r-pkg-team/r-cran-memoise","https://github.com/hadley/memoise.git",1189.1777777778,16,15,0,25,125,0,0,126,1,"1",1.48387096774194,1.99206349206349 +"openssl",0.1408311251,1.9736821031,-0.3054590509,"https://salsa.debian.org/r-pkg-team/r-cran-openssl","https://github.com/jeroen/openssl.git",3340.7487152778,9,9,0,11,104,0,0,105,2,"2",1.5,1.99047619047619 +"repr",-0.4200486236,1.3653979876,-0.7931488934,"https://salsa.debian.org/r-pkg-team/r-cran-repr","https://github.com/IRkernel/repr.git",3009.4312615741,13,11,0,19,107,0,5,113,2,"2",1.45833333333333,1.94690265486726 +"rhandsontable",-0.5116959513,1.6967263903,-0.9527875743,"https://salsa.debian.org/r-pkg-team/r-cran-rhandsontable","https://github.com/jrowen/rhandsontable.git",2472.1080902778,10,16,0,13,398,0,0,399,1,"1",1.61538461538462,1.99749373433584 +"stringr",0.0964776845,1.6534181355,-0.1881647637,"https://salsa.debian.org/r-pkg-team/r-cran-stringr","https://github.com/tidyverse/stringr/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"svglite",-0.1885587375,2.5890472118,-0.9181907319,"https://salsa.debian.org/r-pkg-team/r-cran-svglite","https://github.com/r-lib/svglite.git",4029.9752546296,5,22,0,17,93,0,0,94,3,"3",1.81481481481481,1.98936170212766 +"taxize",-0.5524366287,0.9514376137,-0.8175241604,"https://salsa.debian.org/r-pkg-team/r-cran-taxize","https://github.com/ropensci/taxize.git",4557.2839467593,10,50,0,33,204,0,0,205,3,"3",1.83333333333333,1.99512195121951 +"uwot",-2.1360077927,0.1637273439,-2.6156421022,"https://salsa.debian.org/r-pkg-team/r-cran-uwot","https://github.com/jlmelville/uwot.git",2010.5388078704,2,8,0,7,92,0,0,93,1,"1",1.8,1.98924731182796 +"webmockr",-0.4310376105,1.8277386609,-0.9299279762,"https://salsa.debian.org/r-pkg-team/r-cran-webmockr","https://github.com/ropensci/webmockr.git",3289.3273726852,4,4,0,5,17,0,0,18,2,"2",1.5,1.94444444444444 +"rabbitvcs",1.6714946058,3.5426783719,0.7068248862,"https://salsa.debian.org/python-team/packages/rabbitvcs","https://github.com/rabbitvcs/rabbitvcs.git",5506.5331481482,17,45,0,47,171,0,0,202,4,"4",1.7258064516129,1.84653465346535 +"radeontop",0.7905156023,3.9954216105,-0.1328982237,"https://salsa.debian.org/debian/radeontop","https://github.com/clbr/radeontop.git",3881.8500231482,5,20,0,19,110,0,0,114,3,"3",1.8,1.96491228070175 +"radio_beam",0.0745073319,3.00372116,-0.6555904149,"https://salsa.debian.org/debian-astro-team/radio-beam","https://github.com/radio-astro-tools/radio_beam",3526.8169791667,2,17,0,12,23,0,0,24,2,"2",1.89473684210526,1.95833333333333 +"radon",-1.263648812,0.2952439103,-1.5392083653,"https://salsa.debian.org/python-team/packages/radon","https://github.com/rubik/radon.git",4032.6238773148,45,20,0,51,208,0,0,208,3,"3",1.30769230769231,2 +"radsecproxy",-1.2258402548,0.3482737763,-1.8643939562,"https://salsa.debian.org/debian/radsecproxy","https://github.com/radsecproxy/radsecproxy.git",5771.4660069445,15,23,0,18,53,0,0,57,4,"4",1.60526315789474,1.92982456140351 +"nqp",0.9566218472,2.1033155845,0.3242094037,"https://salsa.debian.org/perl6-team/rakudo","https://github.com/Raku/nqp.git",5159.1587847222,24,165,0,111,165,0,3,181,4,"4",1.87301587301587,1.91160220994475 +"raspell",0.0344606053,2.1888191814,-0.7015258119,"https://salsa.debian.org/ruby-team/raspell","https://github.com/evan/raspell/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rasterio",-0.1071898305,2.015565348,-0.6779665658,"https://salsa.debian.org/debian-gis-team/rasterio","https://github.com/rasterio/rasterio.git",3692.9866550926,96,61,0,141,10,0,13,158,2,"2",1.38853503184713,1.06329113924051 +"ratt",-0.4370630128,1.1211106019,-0.8710659773,"https://salsa.debian.org/go-team/packages/ratt","https://github.com/Debian/ratt",2545.9663194445,4,6,0,7,15,0,0,15,1,"1",1.6,2 +"openrdate",0.4382808092,1.3203416533,0.0177798963,"https://salsa.debian.org/debian/rdate","https://github.com/resurrecting-open-source-projects/openrdate",876.4736111111,0,4,0,3,6,0,0,6,1,"1",2,2 +"rdiff-backup",1.0568039762,1.5664048612,0.6904043618,"https://salsa.debian.org/python-team/applications/rdiff-backup","https://github.com/rdiff-backup/rdiff-backup.git",5728.7282407408,45,27,0,46,61,0,0,90,4,"4",1.375,1.67777777777778 +"redis-py-cluster",-1.8001809263,0.773142511,-2.5308098382,"https://salsa.debian.org/python-team/packages/redis-py-cluster","https://github.com/Grokzen/redis-py-cluster",3217.2146527778,55,25,3,58,325,0,0,330,2,"2",1.3125,1.98484848484848 +"r.js",0.307781271,1.8450766211,-0.1061121379,"https://salsa.debian.org/js-team/requirejs","https://github.com/requirejs/r.js.git",4511.8290740741,2,70,0,53,645,0,3,658,3,"3",1.97222222222222,1.98024316109422 +"ripe.atlas.sagan",-0.8350788458,1.3446746037,-1.3262997043,"https://salsa.debian.org/python-team/packages/ripe-atlas-sagan","https://github.com/RIPE-NCC/ripe.atlas.sagan",2585.8181481482,2,22,0,13,17,0,0,19,1,"1",1.91666666666667,1.89473684210526 +"rlwrap",-0.017815457,0.2341200643,-0.1189260094,"https://salsa.debian.org/debian/rlwrap","https://github.com/hanslub42/rlwrap",3317.1894560185,6,18,2,18,111,0,2,113,2,"2",1.75,1.98230088495575 +"rope",1.5978468361,3.9671998177,0.5551935604,"https://salsa.debian.org/python-team/packages/rope","https://github.com/python-rope/rope",5713.8836458333,27,64,1,64,166,0,6,193,4,"4",1.7032967032967,1.860103626943 +"bond_core",-0.4557919444,0.8030863044,-0.7461613445,"https://salsa.debian.org/science-team/ros-bond-core","https://github.com/ros/bond_core",5161.8582291667,13,47,0,19,71,0,0,72,4,"4",1.78333333333333,1.98611111111111 +"genmsg",-0.0171725935,2.3757962259,-0.5825726576,"https://salsa.debian.org/science-team/ros-genmsg","https://github.com/ros/genmsg",4008.1554976852,10,28,1,20,69,0,0,71,3,"3",1.73684210526316,1.97183098591549 +"genpy",-0.6136991201,-0.6108271088,-0.6141657046,"https://salsa.debian.org/science-team/ros-genpy","https://github.com/ros/genpy.git",4178.1003472222,21,31,0,33,89,0,0,91,3,"3",1.59615384615385,1.97802197802198 +"geometry",-0.5506557748,0.4058218051,-0.730025317,"https://salsa.debian.org/science-team/ros-geometry","https://github.com/ros/geometry",5094.8150694445,26,84,1,57,212,0,0,217,4,"4",1.76363636363636,1.97695852534562 +"image_common",-0.4587743218,0.0450984941,-0.6096991982,"https://salsa.debian.org/science-team/ros-image-common","https://github.com/ros-perception/image_common.git",5179.6323611111,38,47,0,28,228,0,2,230,4,"4",1.55294117647059,1.99130434782609 +"interactive_markers",-0.2522280854,2.1257586459,-0.8003900423,"https://salsa.debian.org/science-team/ros-interactive-markers","https://github.com/ros-visualization/interactive_markers.git",5635.5972685185,21,62,0,25,70,0,0,72,4,"4",1.74698795180723,1.97222222222222 +"kdl_parser",-0.3386572847,2.2780300935,-0.9138488719,"https://salsa.debian.org/science-team/ros-kdl-parser","https://github.com/ros/kdl_parser",4840.7517013889,32,70,0,45,47,0,0,80,3,"3",1.68627450980392,1.5875 +"laser_geometry",-0.418947578,0.783831601,-0.6760367366,"https://salsa.debian.org/science-team/ros-laser-geometry","https://github.com/ros-perception/laser_geometry",5200.3426388889,9,44,0,21,63,0,0,65,4,"4",1.83018867924528,1.96923076923077 +"message_runtime",-0.2905975286,1.6300481977,-0.6771923217,"https://salsa.debian.org/science-team/ros-message-runtime","https://github.com/ros/message_runtime.git",2931.9169212963,1,6,0,3,1,0,0,3,2,"2",1.85714285714286,1.33333333333333 +"navigation_msgs",-0.585376458,1.338109234,-0.9801897126,"https://salsa.debian.org/science-team/ros-navigation-msgs","https://github.com/ros-planning/navigation_msgs",4055.7909027778,6,14,0,6,18,0,0,20,3,"3",1.7,1.9 +"nodelet_core",-0.0806493057,2.3062700037,-0.6511678143,"https://salsa.debian.org/science-team/ros-nodelet-core","https://github.com/ros/nodelet_core",4750.0362731482,13,47,1,29,90,0,0,92,3,"3",1.78333333333333,1.97826086956522 +"pluginlib",-0.6634443823,0.7184010327,-0.9470101264,"https://salsa.debian.org/science-team/ros-pluginlib","https://github.com/ros/pluginlib.git",5189.6688194445,29,44,0,22,130,0,0,131,4,"4",1.6027397260274,1.99236641221374 +"vision_opencv",-0.5521042677,0.5682460886,-0.8284518786,"https://salsa.debian.org/science-team/ros-vision-opencv","https://github.com/ros-perception/vision_opencv",5223.1408680556,33,82,0,61,435,0,0,437,4,"4",1.71304347826087,1.9954233409611 +"rss2email",0.3314855505,0.7157681983,0.0455417284,"https://salsa.debian.org/python-team/packages/rss2email","https://github.com/rss2email/rss2email.git",3888.6072916667,25,44,0,51,130,0,0,145,3,"3",1.63768115942029,1.89655172413793 +"actionpack-xml_parser",-0.2996184364,1.3428057072,-0.5955184752,"https://salsa.debian.org/ruby-team/ruby-actionpack-xml-parser","https://github.com/rails/actionpack-xml_parser",1540.6708333333,2,13,0,9,34,0,0,34,1,"1",1.86666666666667,2 +"active_model_serializers",-2.6276778243,-0.1926975438,-3.2592310267,"https://salsa.debian.org/ruby-team/ruby-active-model-serializers","https://github.com/rails-api/active_model_serializers/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"activeldap",-1.4156697614,-0.4511022965,-1.5988774793,"https://salsa.debian.org/ruby-team/ruby-activeldap","https://github.com/activeldap/activeldap/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"activerecord-import",-1.9687719488,1.0512667089,-2.7168041881,"https://salsa.debian.org/ruby-team/ruby-activerecord-import","https://github.com/zdennis/activerecord-import/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"nulldb",-2.9231293508,0.23307279,-3.9919104886,"https://salsa.debian.org/ruby-team/ruby-activerecord-nulldb-adapter","https://github.com/nulldb/nulldb/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"acts_as_list",-1.8199662912,-1.4681851633,-1.8707866646,"https://salsa.debian.org/ruby-team/ruby-acts-as-list","https://github.com/swanandp/acts_as_list",4913.7026157407,58,72,1,107,411,0,3,423,3,"3",1.55384615384615,1.97163120567376 +"addressable",0.4108416878,2.8755637332,-0.1685908494,"https://salsa.debian.org/ruby-team/ruby-addressable","https://github.com/sporkmonger/addressable/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ahoy_email",-4.4435950424,-0.9410641928,-5.3641400248,"https://salsa.debian.org/ruby-team/ruby-ahoy-email","https://github.com/ankane/ahoy_email/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"amqp",-1.8149935347,0.3288060449,-2.3239990954,"https://salsa.debian.org/ruby-team/ruby-amqp","https://github.com/ruby-amqp/amqp.git",4994.8880787037,18,59,0,41,137,0,0,146,4,"4",1.76623376623377,1.93835616438356 +"api-pagination",-3.3044182875,-0.0567093294,-4.1951110602,"https://salsa.debian.org/ruby-team/ruby-api-pagination","https://github.com/davidcelis/api-pagination.git",3040.7300578704,2,39,0,31,10,0,0,37,2,"2",1.95121951219512,1.27027027027027 +"arbre",-4.8029050341,-2.1273433872,-5.4412019806,"https://salsa.debian.org/ruby-team/ruby-arbre","https://github.com/activeadmin/arbre/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"autoprefixer-rails",-0.2315449554,2.8349504609,-1.0454191857,"https://salsa.debian.org/ruby-team/ruby-autoprefixer-rails","https://github.com/ai/autoprefixer-rails/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"awesome_print",-0.1589005828,2.0284975516,-0.8426752553,"https://salsa.debian.org/ruby-team/ruby-awesome-print","https://github.com/awesome-print/awesome_print/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"backports",0.1539156176,2.1183447847,-0.4562399385,"https://salsa.debian.org/ruby-team/ruby-backports","https://github.com/marcandre/backports/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"beaneater",-1.3606359648,1.1630055771,-2.0175948675,"https://salsa.debian.org/ruby-team/ruby-beaneater","https://github.com/beanstalkd/beaneater",3900.0326736111,5,29,1,26,71,0,2,73,3,"3",1.85294117647059,1.97260273972603 +"browser",-0.1660846663,3.3869132145,-1.1464271076,"https://salsa.debian.org/ruby-team/ruby-browser","https://github.com/fnando/browser.git",4214.4159027778,56,56,0,92,148,0,0,210,3,"3",1.5,1.7047619047619 +"clockwork",-1.6175893707,0.2897910827,-2.1048468681,"https://salsa.debian.org/ruby-team/ruby-clockwork","https://github.com/Rykian/clockwork",4663.0759143519,22,47,0,52,93,0,0,126,3,"3",1.68115942028985,1.73809523809524 +"coffee-rails",0.3091824065,2.8142114504,-0.2736133929,"https://salsa.debian.org/ruby-team/ruby-coffee-rails","https://github.com/rails/coffee-rails",3619.3450231482,7,34,0,31,141,0,0,142,2,"2",1.82926829268293,1.99295774647887 +"concurrent-ruby",0.5566030605,2.9441693658,-0.0717542554,"https://salsa.debian.org/ruby-team/ruby-concurrent","https://github.com/ruby-concurrency/concurrent-ruby.git",3789.0811458333,43,132,0,147,281,0,0,329,3,"3",1.75428571428571,1.85410334346505 +"crack",-0.2561449098,2.087316532,-0.8772440851,"https://salsa.debian.org/ruby-team/ruby-crack","https://github.com/jnunemaker/crack",4290.8581481482,10,28,0,32,97,0,0,104,3,"3",1.73684210526316,1.93269230769231 +"cri",-0.2343045243,2.3306711919,-0.7929491714,"https://salsa.debian.org/ruby-team/ruby-cri","https://github.com/ddfreyne/cri",5399.7816666667,2,13,0,10,43,0,0,43,4,"4",1.86666666666667,2 +"curses",0.2397321091,3.7638726076,-0.6627285256,"https://salsa.debian.org/ruby-team/ruby-curses","https://github.com/ruby/curses.git",5368.611724537,1,10,0,23,71,0,0,72,4,"4",1.90909090909091,1.98611111111111 +"dbf",-2.1729354458,-1.1249256758,-2.3569268761,"https://salsa.debian.org/ruby-team/ruby-dbf","https://github.com/infused/dbf/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby-dbus",-0.5967981722,1.7453526545,-1.2803486489,"https://salsa.debian.org/ruby-team/ruby-dbus","https://github.com/mvidner/ruby-dbus",4746.8070601852,9,33,0,28,89,0,0,93,3,"3",1.78571428571429,1.95698924731183 +"default_value_for",-0.8448203677,1.505826156,-1.3079220043,"https://salsa.debian.org/ruby-team/ruby-default-value-for","https://github.com/FooBarWidget/default_value_for/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"delayed_job",-0.2286424071,2.470279089,-0.9617467357,"https://salsa.debian.org/ruby-team/ruby-delayed-job","http://github.com/collectiveidea/delayed_job/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"devise-two-factor",-0.6624262185,1.6467126273,-1.2753154222,"https://salsa.debian.org/ruby-team/ruby-devise-two-factor","https://github.com/tinfoil/devise-two-factor.git",3466.0953935185,20,37,0,43,252,0,0,258,2,"2",1.64912280701754,1.97674418604651 +"diaspora_federation",-4.7376054498,-2.2734066052,-5.4037842301,"https://salsa.debian.org/ruby-team/ruby-diaspora-federation","https://github.com/diaspora/diaspora_federation/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"diff-lcs",0.3071796152,2.5635803467,-0.2628240016,"https://salsa.debian.org/ruby-team/ruby-diff-lcs","https://github.com/halostatue/diff-lcs/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"diffy",-0.2255220294,2.8131844872,-1.0283299527,"https://salsa.debian.org/ruby-team/ruby-diffy","https://github.com/samg/diffy",4494.6685763889,5,31,0,28,132,0,0,132,3,"3",1.86111111111111,2 +"distribution",-2.1011793074,0.9112617849,-3.0579162724,"https://salsa.debian.org/ruby-team/ruby-distribution","https://github.com/sciruby/distribution/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"docker-api",0.2906321596,4.2039401292,-1.0121523475,"https://salsa.debian.org/ruby-team/ruby-docker-api","https://github.com/swipely/docker-api",3249.0699421296,17,99,0,86,233,0,0,256,2,"2",1.85344827586207,1.91015625 +"ruby-domain_name",0.2651495015,2.3454735809,-0.1388653919,"https://salsa.debian.org/ruby-team/ruby-domain-name","https://github.com/knu/ruby-domain_name/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"em-synchrony",-2.0598738156,0.4564215093,-2.9786603575,"https://salsa.debian.org/ruby-team/ruby-em-synchrony","https://github.com/igrigorik/em-synchrony",2910.8221180556,2,57,0,41,186,0,1,190,2,"2",1.96610169491525,1.97894736842105 +"factory_girl",-1.4263061364,0.5433633199,-1.9953583847,"https://salsa.debian.org/ruby-team/ruby-factory-girl","https://github.com/thoughtbot/factory_girl.git",4913.9169675926,224,76,0,233,139,0,74,424,3,"3",1.25333333333333,1.32783018867925 +"fakeredis",-3.9027611166,-1.9110018697,-4.3340476978,"https://salsa.debian.org/ruby-team/ruby-fakeredis","https://github.com/guilleiguaran/fakeredis.git",3981.188900463,20,88,0,77,219,0,0,219,3,"3",1.81481481481481,2 +"fakeweb",-2.1455045277,-0.7731874586,-2.5667966225,"https://salsa.debian.org/ruby-team/ruby-fakeweb","https://github.com/chrisk/fakeweb.git",3218.6643865741,6,19,0,19,136,0,0,145,2,"2",1.76,1.93793103448276 +"faraday_middleware",-0.2690476788,2.0619472224,-0.7696905372,"https://salsa.debian.org/ruby-team/ruby-faraday-middleware","https://github.com/lostisland/faraday_middleware",4563.5818981482,47,29,1,58,244,0,14,260,3,"3",1.38157894736842,1.93846153846154 +"fast_gettext",-0.1209401725,1.2360688234,-0.5688307825,"https://salsa.debian.org/ruby-team/ruby-fast-gettext","https://github.com/grosser/fast_gettext",5110.3340046296,3,48,0,29,84,0,4,90,4,"4",1.94117647058824,1.93333333333333 +"fastimage",-0.9259690851,1.7219406128,-1.4847810256,"https://salsa.debian.org/ruby-team/ruby-fastimage","https://github.com/sdsykes/fastimage",5223.7173726852,7,44,0,46,117,0,0,125,4,"4",1.86274509803922,1.936 +"fog-rackspace",-0.4991371264,1.9082417738,-1.1448163084,"https://salsa.debian.org/ruby-team/ruby-fog-rackspace","https://github.com/fog/fog-rackspace",1479.8924537037,3,5,0,4,40,0,0,40,1,"1",1.625,2 +"ruby-fogbugz",-0.712082495,1.9230578337,-1.2759846712,"https://salsa.debian.org/ruby-team/ruby-fogbugz","https://github.com/firmafon/ruby-fogbugz",2091.2249884259,2,11,0,9,16,0,0,16,1,"1",1.84615384615385,2 +"font-awesome-rails",-0.8180755531,0.4347325375,-1.0809960447,"https://salsa.debian.org/ruby-team/ruby-font-awesome-rails","https://github.com/bokmann/font-awesome-rails",4227.7840856482,7,30,0,28,346,0,2,349,3,"3",1.81081081081081,1.99140401146132 +"foreman",-0.8272618131,1.5097537204,-1.3755635236,"https://salsa.debian.org/ruby-team/ruby-foreman","http://github.com/ddollar/foreman/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"fssm",-0.4348169171,2.3642288128,-1.1313798455,"https://salsa.debian.org/ruby-team/ruby-fssm","https://github.com/ttilley/fssm.git",2641.9220023148,2,11,0,9,53,0,0,54,1,"1",1.84615384615385,1.98148148148148 +"gelf-rb",-2.0473403812,0.3850902599,-2.7168981677,"https://salsa.debian.org/ruby-team/ruby-gelf","https://github.com/Graylog2/gelf-rb",4546.1701157407,9,25,0,21,141,0,0,142,3,"3",1.73529411764706,1.99295774647887 +"gettext_i18n_rails",-0.7613069529,2.0256293486,-1.5091771924,"https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails","https://github.com/grosser/gettext_i18n_rails",5235.7802546296,11,59,0,51,141,0,0,144,4,"4",1.84285714285714,1.97916666666667 +"gettext_i18n_rails_js",-0.9612583287,2.4872560383,-1.8785203213,"https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails-js","https://github.com/webhippie/gettext_i18n_rails_js",4076.9871759259,2,24,0,18,7,0,0,22,3,"3",1.92307692307692,1.31818181818182 +"gettext-setup-gem",-0.5280470276,1.250073738,-0.9596386922,"https://salsa.debian.org/puppet-team/ruby-gettext-setup","https://github.com/puppetlabs/gettext-setup-gem",2424.9263310185,17,20,0,23,43,0,0,44,1,"1",1.54054054054054,1.97727272727273 +"ruby-gir-ffi",-1.5231800876,0.4754387315,-2.1310553218,"https://salsa.debian.org/ruby-team/ruby-gir-ffi","https://github.com/mvz/ruby-gir-ffi",5437.5734375,3,7,0,7,35,0,4,39,4,"4",1.7,1.8974358974359 +"ruby-git",-0.6108616509,1.212287958,-1.0441459189,"https://salsa.debian.org/ruby-team/ruby-git","https://github.com/ruby-git/ruby-git/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby-team",-2.3136488279,0.3256391086,-2.9739498003,"https://salsa.debian.org/ruby-team/ruby-github-api","https://salsa.debian.org/ruby-team/ruby-github-api",2392.4012268519,0,6,0,0,0,0,0,0,1,"1",2,NA +"ruby-team",-0.649517699,1.7591556518,-1.1632479129,"https://salsa.debian.org/ruby-team/ruby-github-linguist","https://salsa.debian.org/ruby-team/ruby-github-linguist",3497.9967939815,0,11,0,0,0,0,0,0,2,"2",2,NA +"ruby-team",-1.105143203,0.5312271054,-1.4552026927,"https://salsa.debian.org/ruby-team/ruby-github-markdown","https://salsa.debian.org/ruby-team/ruby-github-markdown",3170.9246875,0,7,0,0,0,0,0,0,2,"2",2,NA +"ruby-team",-0.0402315958,2.2658512207,-0.751462188,"https://salsa.debian.org/ruby-team/ruby-github-markup","https://salsa.debian.org/ruby-team/ruby-github-markup",3514.5048263889,0,15,0,0,0,0,0,0,2,"2",2,NA +"globalid",0.5667944257,3.0518520834,-0.164807865,"https://salsa.debian.org/ruby-team/ruby-globalid","https://github.com/rails/globalid/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"guard",-2.9807132483,-1.6178467609,-3.3128126957,"https://salsa.debian.org/ruby-team/ruby-guard","https://github.com/guard/guard.git",4726.434537037,21,191,0,150,537,0,199,776,3,"3",1.90094339622642,1.69201030927835 +"hipchat-rb",-0.6566424992,1.6469892033,-1.2629040655,"https://salsa.debian.org/ruby-team/ruby-hipchat","https://github.com/hipchat/hipchat-rb",2705.747349537,7,102,0,82,222,0,1,227,1,"1",1.93577981651376,1.97797356828194 +"hiredis-rb",-0.8641250548,1.2597163597,-1.3598436427,"https://salsa.debian.org/ruby-team/ruby-hiredis","https://github.com/redis/hiredis-rb.git",4451.3495601852,10,19,0,20,124,0,1,127,3,"3",1.6551724137931,1.97637795275591 +"http.rb",0.5328919596,3.1587146036,-0.5041412503,"https://salsa.debian.org/ruby-team/ruby-http","https://github.com/httprb/http.rb",4428.9060416667,68,68,2,106,42,0,37,169,3,"3",1.5,1.24852071005917 +"jquery-rails",0.4762916242,2.5289403929,-0.1671409996,"https://salsa.debian.org/ruby-team/ruby-jquery-rails","https://github.com/rails/jquery-rails.git",4697.0958680556,14,69,0,65,417,0,1,425,3,"3",1.83132530120482,1.98117647058824 +"jquery-ui-rails",-0.5553100399,1.254748517,-1.1496297544,"https://salsa.debian.org/ruby-team/ruby-jquery-ui-rails","https://github.com/joliss/jquery-ui-rails",4080.9697453704,4,20,0,18,217,0,0,217,3,"3",1.83333333333333,2 +"js-routes",-3.4644388809,-0.4489124279,-4.2577079397,"https://salsa.debian.org/ruby-team/ruby-js-routes","https://github.com/railsware/js-routes",3471.607662037,19,61,0,62,240,0,0,242,2,"2",1.7625,1.99173553719008 +"json-jwt",-0.6646781739,1.8243330124,-1.3376720774,"https://salsa.debian.org/ruby-team/ruby-json-jwt","https://github.com/nov/json-jwt/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"json-schema",-2.1030941989,-0.2528356332,-2.4758055487,"https://salsa.debian.org/ruby-team/ruby-json-schema","https://github.com/voxpupuli/json-schema/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"json_spec",-2.5962462222,0.2357466454,-3.2697648762,"https://salsa.debian.org/ruby-team/ruby-json-spec","https://github.com/collectiveidea/json_spec",2153.749525463,1,19,0,16,121,0,0,122,1,"1",1.95,1.99180327868852 +"ruby-jwt",-0.0089310607,2.9299158213,-0.7358933013,"https://salsa.debian.org/ruby-team/ruby-jwt","https://github.com/jwt/ruby-jwt/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"kakasi_ffi",-3.4351277044,-0.6639963768,-4.2188884559,"https://salsa.debian.org/ruby-team/ruby-kakasi-ffi","https://github.com/knu/kakasi_ffi/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"kaminari",-0.5485185975,1.0463989901,-0.9640266374,"https://salsa.debian.org/ruby-team/ruby-kaminari","https://github.com/kaminari/kaminari",4634.2992476852,35,152,3,153,70,0,47,257,3,"3",1.81283422459893,1.27237354085603 +"kitchen-salt",-5.0389266876,-2.9100359531,-5.4788025236,"https://salsa.debian.org/ruby-team/ruby-kitchen-salt","https://github.com/saltstack/kitchen-salt/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"kramdown",0.1585424898,1.288591817,-0.1774821194,"https://salsa.debian.org/ruby-team/ruby-kramdown","https://github.com/gettalong/kramdown/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby-ldap",0.9723697162,3.8411235557,-0.1487304827,"https://salsa.debian.org/ruby-team/ruby-ldap","https://github.com/bearded/ruby-ldap",3395.5528703704,4,15,0,10,49,0,2,51,2,"2",1.78947368421053,1.96078431372549 +"libxml-ruby",-0.1652439642,1.5527354518,-0.7540442503,"https://salsa.debian.org/ruby-team/ruby-libxml","https://github.com/xml4r/libxml-ruby/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"mechanize",-0.3858941786,1.2331276206,-0.8805502233,"https://salsa.debian.org/ruby-team/ruby-mechanize","https://github.com/sparklemotion/mechanize.git",5735.6054513889,5,12,0,103,529,0,6,548,4,"4",1.70588235294118,1.96532846715328 +"moneta",-0.5640132497,0.2515905482,-0.8103956074,"https://salsa.debian.org/ruby-team/ruby-moneta","https://github.com/moneta-rb/moneta",5182.1595023148,20,32,0,38,98,45,0,155,4,"4",1.61538461538462,1.63225806451613 +"msgpack-ruby",0.2893496157,2.7505742261,-0.3169362878,"https://salsa.debian.org/ruby-team/ruby-msgpack","https://github.com/msgpack/msgpack-ruby",4471.1247453704,7,115,0,71,168,0,0,198,3,"3",1.94262295081967,1.84848484848485 +"multi_json",0.6582999616,3.1811345182,-0.0546345167,"https://salsa.debian.org/ruby-team/ruby-multi-json","https://github.com/intridea/multi_json",3679.9527430556,10,44,1,48,209,0,1,218,2,"2",1.81481481481481,1.95871559633028 +"ruby-team",-0.6432733622,1.9225985539,-1.2230466394,"https://salsa.debian.org/ruby-team/ruby-omniauth-github","https://salsa.debian.org/ruby-team/ruby-omniauth-github",3158.4246296296,0,8,0,0,0,0,0,0,2,"2",2,NA +"omniauth-gitlab",-0.8634553119,1.3390999825,-1.29446321,"https://salsa.debian.org/ruby-team/ruby-omniauth-gitlab","https://github.com/linchus/omniauth-gitlab/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"omniauth-openid",-2.3993574129,-0.1716426742,-2.9778348021,"https://salsa.debian.org/ruby-team/ruby-omniauth-openid","https://github.com/intridea/omniauth-openid",4671.7113888889,3,19,0,14,49,0,0,57,3,"3",1.86363636363636,1.85964912280702 +"omniauth-saml",-0.5579531725,2.353187853,-1.2497308047,"https://salsa.debian.org/ruby-team/ruby-omniauth-saml","https://github.com/PracticallyGreen/omniauth-saml.git",4118.1158217593,12,46,0,40,204,0,0,207,3,"3",1.79310344827586,1.98550724637681 +"open4",0.0907349731,2.6591042616,-0.4921712465,"https://salsa.debian.org/ruby-team/ruby-open4","https://github.com/ahoward/open4",1740.4206597222,2,8,0,7,38,0,0,40,1,"1",1.8,1.95 +"openid_connect",-1.1502490607,2.0041817142,-2.12720173,"https://salsa.debian.org/ruby-team/ruby-openid-connect","https://github.com/nov/openid_connect",4182.9791435185,0,17,0,9,93,0,3,96,3,"3",2,1.96875 +"packable",-3.0992250392,-0.7077744526,-3.6975414863,"https://salsa.debian.org/ruby-team/ruby-packable","https://github.com/marcandre/packable/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"paint",0.0340746752,1.782920882,-0.2850565902,"https://salsa.debian.org/ruby-team/ruby-paint","https://github.com/janlelis/paint.git",4285.910474537,4,14,0,14,30,0,0,31,3,"3",1.77777777777778,1.96774193548387 +"parallel",0.6193238415,3.5398365982,-0.3774990833,"https://salsa.debian.org/ruby-team/ruby-parallel","https://github.com/grosser/parallel/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"paranoia",-0.1012866416,3.7176288674,-1.2611069956,"https://salsa.debian.org/ruby-team/ruby-paranoia","https://github.com/rubysherpas/paranoia/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"ruby_parser",-0.2008414789,1.500579567,-0.6200732147,"https://salsa.debian.org/ruby-team/ruby-parser","https://github.com/seattlerb/ruby_parser.git",5671.9061921296,0,3,0,2,215,0,0,216,4,"4",2,1.99537037037037 +"pathname2",-0.9624861378,1.7646456748,-1.5703348288,"https://salsa.debian.org/ruby-team/ruby-pathname2","https://github.com/djberg96/pathname2",4825.4280902778,0,6,0,1,5,0,1,6,3,"3",2,1.83333333333333 +"pdf-reader",0.5615735066,2.9676531602,-0.1143510479,"https://salsa.debian.org/ruby-team/ruby-pdf-reader","https://github.com/yob/pdf-reader",5741.4093981482,14,55,0,50,0,0,0,50,4,"4",1.79710144927536,1 +"posix-spawn",0.1309262243,1.6920070582,-0.2475689059,"https://salsa.debian.org/ruby-team/ruby-posix-spawn","https://github.com/rtomayko/posix-spawn",3425.5233101852,3,31,0,26,114,0,0,116,2,"2",1.91176470588235,1.98275862068966 +"rack",0.5237066371,1.7902869998,0.0263794792,"https://salsa.debian.org/ruby-team/ruby-rack","https://github.com/rack/rack",5772.4169444445,210,362,9,391,706,0,76,1026,4,"4",1.63286713286713,1.68810916179337 +"rack-cors",-0.412726661,2.4616028734,-1.1580055428,"https://salsa.debian.org/ruby-team/ruby-rack-cors","https://github.com/cyu/rack-cors",4892.2220601852,37,39,0,61,338,0,0,361,3,"3",1.51315789473684,1.93628808864266 +"punycode.js",0.5843909394,4.0464162194,-0.4662308176,"https://salsa.debian.org/ruby-team/ruby-rails-assets-punycode","https://github.com/bestiejs/punycode.js",4371.2037384259,18,3,0,19,151,0,0,151,3,"3",1.14285714285714,2 +"rails-dom-testing",1.1395257959,2.3186509997,0.452605243,"https://salsa.debian.org/ruby-team/ruby-rails-dom-testing","https://github.com/rails/rails-dom-testing",3596.7865625,8,32,0,32,86,0,0,88,2,"2",1.8,1.97727272727273 +"rails-html-sanitizer",0.0035830645,1.4381559694,-0.2871912749,"https://salsa.debian.org/ruby-team/ruby-rails-html-sanitizer","https://github.com/rails/rails-html-sanitizer",3530.5188078704,6,25,0,27,142,0,0,143,2,"2",1.80645161290323,1.99300699300699 +"rails-i18n",-0.8873907002,1.4792293029,-1.4400451677,"https://salsa.debian.org/ruby-team/ruby-rails-i18n","https://github.com/svenfuchs/rails-i18n/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rainbow",-0.0554541407,2.1809136318,-0.4874876801,"https://salsa.debian.org/ruby-team/ruby-rainbow","https://github.com/sickill/rainbow/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rbnacl",-0.5101798059,1.8184409822,-1.1442616342,"https://salsa.debian.org/ruby-team/ruby-rbnacl","https://github.com/RubyCrypto/rbnacl",3765.2138425926,11,37,2,39,107,0,6,113,2,"2",1.77083333333333,1.94690265486726 +"rbpdf",0.3170747692,3.3087733487,-0.4838111804,"https://salsa.debian.org/ruby-team/ruby-rbpdf","https://github.com/naitoh/rbpdf/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"rchardet",0.8898007893,4.3708723994,-0.1239109738,"https://salsa.debian.org/ruby-team/ruby-rchardet","https://github.com/jmhodges/rchardet",5157.8658101852,2,16,0,14,39,0,0,42,4,"4",1.88888888888889,1.92857142857143 +"rdiscount",0.5400773203,2.7137511021,-0.1397503416,"https://salsa.debian.org/ruby-team/ruby-rdiscount","https://github.com/rtomayko/rdiscount",5495.3965277778,14,23,3,28,170,0,9,190,4,"4",1.62162162162162,1.89473684210526 +"re2",-0.3975240745,2.0675577643,-1.080838045,"https://salsa.debian.org/ruby-team/ruby-re2","https://github.com/mudge/re2.git",4891.9840277778,5,6,0,6,31,0,1,32,3,"3",1.54545454545455,1.96875 +"recaptcha",-0.7227524813,1.5115844498,-1.1563133628,"https://salsa.debian.org/ruby-team/ruby-recaptcha","https://github.com/ambethia/recaptcha",5167.5063425926,32,133,0,118,0,0,20,138,4,"4",1.80606060606061,1 +"recursive-open-struct",-0.9586694143,1.8658984093,-1.696474562,"https://salsa.debian.org/ruby-team/ruby-recursive-open-struct","https://github.com/aetherknight/recursive-open-struct/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"redcarpet",0.0453332853,0.8616945524,-0.2027621969,"https://salsa.debian.org/ruby-team/ruby-redcarpet","https://github.com/vmg/redcarpet/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"redcloth",0.3958422452,2.2802681181,-0.2616585591,"https://salsa.debian.org/ruby-team/ruby-redcloth","https://github.com/jgarber/redcloth.git",5745.4538541667,8,27,0,31,85,0,2,99,4,"4",1.77142857142857,1.85858585858586 +"redis-rb",-0.1845294704,1.6465311996,-0.5725594934,"https://salsa.debian.org/ruby-team/ruby-redis","https://github.com/redis/redis-rb/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"redis-actionpack",-0.8365151572,1.4579951576,-1.2916857062,"https://salsa.debian.org/ruby-team/ruby-redis-actionpack","https://github.com/redis-store/redis-actionpack",3755.356412037,8,18,0,15,48,0,0,50,2,"2",1.69230769230769,1.96 +"redis-namespace",-0.5136949026,1.5651978248,-1.007887329,"https://salsa.debian.org/ruby-team/ruby-redis-namespace","https://github.com/resque/redis-namespace",5080.3240046296,46,64,0,90,271,0,0,277,4,"4",1.58181818181818,1.97833935018051 +"ronn-ng",0.0051973803,1.3529280372,-0.5133229589,"https://salsa.debian.org/ruby-team/ruby-ronn","https://github.com/apjanke/ronn-ng",5091.8833101852,3,20,4,19,40,0,0,50,4,"4",1.8695652173913,1.8 +"sass-rails",0.1295459675,2.3430805193,-0.2869628621,"https://salsa.debian.org/ruby-team/ruby-sass-rails","https://github.com/rails/sass-rails",3032.8716550926,10,70,2,62,828,0,0,832,2,"2",1.875,1.99519230769231 +"seed-fu",-0.3406843156,2.6986297961,-1.1723771613,"https://salsa.debian.org/ruby-team/ruby-seed-fu","https://github.com/mbleigh/seed-fu",3639.382974537,1,34,0,23,185,0,4,196,2,"2",1.97142857142857,1.94387755102041 +"select2-rails",0.0255233967,4.0170630036,-1.0829307262,"https://salsa.debian.org/ruby-team/ruby-select2-rails","https://github.com/argerim/select2-rails",3178.7430787037,3,45,0,37,323,0,4,328,2,"2",1.9375,1.98475609756098 +"signet",-0.6999934393,1.7242691265,-1.2316883956,"https://salsa.debian.org/ruby-team/ruby-signet","https://github.com/googleapis/signet",4807.4255671296,28,44,4,52,165,0,1,167,3,"3",1.61111111111111,1.98802395209581 +"sinatra",0.3867492716,1.8300987882,-0.1759543833,"https://salsa.debian.org/ruby-team/ruby-sinatra","https://github.com/sinatra/sinatra.git",5774.2084027778,157,401,0,368,41,0,0,396,4,"4",1.71863799283154,1.10353535353535 +"slack-notifier",-0.2300777475,2.6813920387,-0.9614495819,"https://salsa.debian.org/ruby-team/ruby-slack-notifier","https://github.com/slack-notifier/slack-notifier.git",2800.9713773148,7,25,0,26,174,0,0,175,2,"2",1.78125,1.99428571428571 +"solve",-1.8731536972,0.3722546164,-2.3421355548,"https://salsa.debian.org/ruby-team/ruby-solve","https://github.com/berkshelf/solve",3205.9559722222,4,24,0,17,61,0,0,61,2,"2",1.85714285714286,2 +"sprockets",0.2127696789,2.1502629674,-0.2372190965,"https://salsa.debian.org/ruby-team/ruby-sprockets","https://github.com/rails/sprockets.git",3278.0454050926,50,229,0,213,572,0,0,665,2,"2",1.82078853046595,1.86015037593985 +"stomp",-0.0622865151,2.2785748082,-0.5399267706,"https://salsa.debian.org/ruby-team/ruby-stomp","https://github.com/stompgem/stomp.git",4485.6743055556,3,49,0,31,92,0,4,103,3,"3",1.94230769230769,1.89320388349515 +"svg-graph2",-0.3606208872,1.999901842,-1.0364827172,"https://salsa.debian.org/ruby-team/ruby-svg-graph","https://github.com/lumean/svg-graph2",5000.5990393519,3,24,0,20,18,0,1,29,4,"4",1.88888888888889,1.62068965517241 +"task_list",-0.7972452731,1.5304821718,-1.2730429771,"https://salsa.debian.org/ruby-team/ruby-task-list","https://github.com/deckar01/task_list.git",3500.9144675926,4,16,0,14,10,0,2,22,2,"2",1.8,1.45454545454545 +"test_declarative",-3.1861402959,-0.6802948039,-3.7322816142,"https://salsa.debian.org/ruby-team/ruby-test-declarative","https://github.com/svenfuchs/test_declarative/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"test-unit",0.5083159182,3.1187784557,-0.0204072698,"https://salsa.debian.org/ruby-team/ruby-test-unit","https://github.com/test-unit/test-unit/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"text",0.3951935457,2.8287836535,-0.1391551665,"https://salsa.debian.org/ruby-team/ruby-text","https://github.com/threedaymonk/text",2533.6334375,0,20,0,9,25,0,0,26,1,"1",2,1.96153846153846 +"thor",0.4898388928,3.0323114244,-0.1082643553,"https://salsa.debian.org/ruby-team/ruby-thor","https://github.com/erikhuda/thor/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"thread_safe",0.7899153314,3.4062016312,-0.0364056562,"https://salsa.debian.org/ruby-team/ruby-thread-safe","https://github.com/ruby-concurrency/thread_safe",1914.5871759259,2,18,1,17,28,0,0,34,1,"1",1.9,1.82352941176471 +"timecop",-1.6249475535,-0.136572147,-1.9770285904,"https://salsa.debian.org/ruby-team/ruby-timecop","https://github.com/travisjeffery/timecop/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"toml-rb",-1.0965997307,1.7054562066,-1.7254826934,"https://salsa.debian.org/ruby-team/ruby-toml-rb","https://github.com/emancu/toml-rb.git",3791.6442361111,5,30,0,29,61,0,0,61,3,"3",1.85714285714286,2 +"ruby-unf_ext",0.5249786091,2.442343707,-0.0572331883,"https://salsa.debian.org/ruby-team/ruby-unf-ext","https://github.com/knu/ruby-unf_ext",4837.9721180556,5,11,0,11,144,0,0,145,3,"3",1.6875,1.99310344827586 +"validates_url",-1.5783095032,0.6947261226,-2.1729142188,"https://salsa.debian.org/ruby-team/ruby-validate-url","https://github.com/perfectline/validates_url.git",4598.7266782407,25,34,0,47,141,0,0,144,3,"3",1.57627118644068,1.97916666666667 +"vcr",-1.8354081732,0.3458876474,-2.4299770711,"https://salsa.debian.org/ruby-team/ruby-vcr","https://github.com/vcr/vcr",5026.1477083333,86,97,0,152,774,0,33,823,4,"4",1.53005464480874,1.9404617253949 +"xpath",0.2253924511,2.6354082514,-0.4532834945,"https://salsa.debian.org/ruby-team/ruby-xpath","https://github.com/teamcapybara/xpath.git",4699.0999421296,4,29,0,22,77,0,0,77,3,"3",1.87878787878788,2 +"yajl-ruby",0.1342868737,1.2952090225,-0.1984486272,"https://salsa.debian.org/ruby-team/ruby-yajl","https://github.com/brianmario/yajl-ruby",4761.9604282407,20,41,0,45,266,0,0,272,3,"3",1.67213114754098,1.97794117647059 +"yaml_db",-1.6914754372,0.8448802104,-2.2259427821,"https://salsa.debian.org/ruby-team/ruby-yaml-db","https://github.com/yamldb/yaml_db",4943.5546759259,10,17,0,20,191,0,3,198,3,"3",1.62962962962963,1.96464646464646 +"yell",-2.2945770851,0.1365084458,-2.7815318187,"https://salsa.debian.org/ruby-team/ruby-yell","https://github.com/rudionrails/yell",3852.7088541667,5,10,0,12,42,0,5,47,3,"3",1.66666666666667,1.8936170212766 +"rumur",-3.5360734663,-0.8290791088,-4.2689394833,"https://github.com/Smattr/rumur.git","https://github.com/Smattr/rumur.git",3378.9262037037,0,5,0,2,8,0,0,8,2,"2",2,2 +"sagetex",-0.1549904573,0.5108732423,-0.363447528,"https://salsa.debian.org/tex-team/sagetex","https://github.com/dandrake/sagetex/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"salmon",-0.3649631387,1.5121758625,-0.9283685843,"https://salsa.debian.org/med-team/salmon","https://github.com/COMBINE-lab/salmon/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"samizdat",-2.1436226321,0.0590823844,-2.8619607448,"https://salsa.debian.org/ruby-team/samizdat","https://github.com/angdraug/samizdat",3433.2320138889,0,3,0,1,2,0,0,2,2,"2",2,2 +"samplv1",0.1318819979,2.3880742784,-0.4301804768,"https://salsa.debian.org/multimedia-team/samplv1","https://github.com/rncbc/samplv1.git",4120.8180671296,1,15,0,6,28,0,3,32,3,"3",1.9375,1.875 +"sandsifter",-0.8702992262,1.6152724713,-1.5907539971,"https://salsa.debian.org/pkg-security-team/sandsifter","https://github.com/rigred/sandsifter",736.7519907407,4,12,0,7,12,0,0,15,1,"1",1.75,1.8 +"sasview",-1.0627164618,0.2502972617,-1.4248935984,"https://salsa.debian.org/science-team/sasview","https://github.com/SasView/sasview.git",5783.1973842593,20,119,0,59,30,0,22,86,4,"4",1.85611510791367,1.34883720930233 +"scap-workbench",-0.3629110649,2.6509329851,-1.2724650562,"https://salsa.debian.org/debian/scap-workbench","https://github.com/OpenSCAP/scap-workbench.git",4660.2892824074,13,37,0,20,138,0,7,146,3,"3",1.74,1.94520547945205 +"schismtracker",0.2030503767,1.1666319026,-0.2400483232,"https://salsa.debian.org/multimedia-team/schism","https://github.com/schismtracker/schismtracker",4666.6107291667,15,42,0,31,165,0,6,173,3,"3",1.73684210526316,1.95375722543353 +"coordgenlibs",-0.6657659236,1.5707387755,-1.125402023,"https://salsa.debian.org/science-team/schroedinger-coordgenlibs","https://github.com/schrodinger/coordgenlibs.git",2268.1054282408,12,9,0,14,28,0,0,29,1,"1",1.42857142857143,1.96551724137931 +"scram",0.0112378447,2.4451248274,-0.690432285,"https://salsa.debian.org/science-team/scram","https://github.com/rakhimov/scram.git",1943.5289930556,2,6,0,3,21,0,1,22,1,"1",1.75,1.95454545454545 +"scrcpy",-0.0596273247,2.3700526091,-0.5833876176,"https://salsa.debian.org/yangfl-guest/scrcpy","https://github.com/Genymobile/scrcpy",2194.2825462963,140,11,2,121,680,0,13,788,1,"1",1.07284768211921,1.86294416243655 +"screenFetch",0.8393718554,3.4206935722,0.0064658687,"https://salsa.debian.org/debian/screenfetch","https://github.com/KittyKatt/screenFetch.git",4948.5768518519,38,182,0,141,38,0,5,173,3,"3",1.82727272727273,1.21965317919075 +"screengrab",0.1432641642,1.1078243645,-0.1380237462,"https://salsa.debian.org/lxqt-team/screengrab","https://github.com/lxqt/screengrab.git",4829.5888194445,59,21,0,54,65,0,0,87,3,"3",1.2625,1.74712643678161 +"scrot",0.5207763404,1.4883547353,0.0924816727,"https://salsa.debian.org/debian/scrot","https://github.com/resurrecting-open-source-projects/scrot",1711.9000347222,19,22,0,23,60,0,0,64,1,"1",1.53658536585366,1.9375 +"scrypt",-0.3160075827,1.9170411595,-0.7532305313,"https://salsa.debian.org/debian/scrypt","https://github.com/Tarsnap/scrypt.git",4121.4724652778,3,11,0,10,45,0,0,46,3,"3",1.78571428571429,1.97826086956522 +"sdate",-0.1644092081,1.9663758042,-0.7580677936,"https://github.com/df7cb/sdate","https://github.com/df7cb/sdate",5170.3786689815,3,6,0,6,13,0,0,14,4,"4",1.66666666666667,1.92857142857143 +"seascope",0.1418549141,3.3764775459,-0.9515590832,"https://salsa.debian.org/debian/seascope","https://github.com/anilFree/seascope.git",2921.7499305556,1,15,0,6,6,0,0,7,2,"2",1.9375,1.85714285714286 +"selinux",-1.9466562158,0.7511457525,-2.5791957587,"https://salsa.debian.org/selinux-team/secilc","https://github.com/SELinuxProject/selinux.git",5593.8026157407,179,30,0,124,83,0,12,182,4,"4",1.14354066985646,1.45604395604396 +"THC-Archive",1.9359167993,4.4474577245,0.8251568889,"https://salsa.debian.org/debian/secure-delete","https://github.com/hackerschoice/THC-Archive",1834.166099537,2,3,0,3,7,0,0,8,1,"1",1.6,1.875 +"selinux",0.7649754209,3.3984155889,-0.1297129167,"https://salsa.debian.org/selinux-team/selinux-python","https://github.com/SELinuxProject/selinux.git",5593.8026157407,179,30,0,124,83,0,12,182,4,"4",1.14354066985646,1.45604395604396 +"semi",-0.0012315826,0.7304306594,-0.3636303627,"https://salsa.debian.org/debian/semi","https://github.com/wanderlust/semi",5270.9675347222,3,13,0,9,12,0,0,14,4,"4",1.8125,1.85714285714286 +"sendemail",0.5149987593,2.580274247,-0.1001009863,"https://github.com/mogaal/sendemail","https://github.com/mogaal/sendemail",1084.8616782407,0,2,0,2,42,0,0,43,1,"1",2,1.97674418604651 +"sendxmpp",1.6949802972,3.915419876,0.6723168015,"https://salsa.debian.org/xmpp-team/sendxmpp","https://github.com/lhost/sendxmpp.git",3008.6224768519,2,6,0,3,52,0,0,52,2,"2",1.75,2 +"ser2net",0.6438108629,1.9333620158,-0.0355562238,"https://salsa.debian.org/debian/ser2net","https://github.com/cminyard/ser2net",5671.7052083333,14,9,0,15,113,0,0,117,4,"4",1.39130434782609,1.96581196581197 +"serd",0.7042703147,2.9113947553,0.0669085772,"https://salsa.debian.org/multimedia-team/serd","https://github.com/drobilla/serd.git",4700.7071990741,5,1,0,6,28,0,0,29,3,"3",1.16666666666667,1.96551724137931 +"serverspec-runner",-1.6557747415,0.9321001072,-2.3818100795,"https://salsa.debian.org/ruby-team/serverspec-runner","https://github.com/hiracy/serverspec-runner",3100.2933101852,2,5,0,2,5,0,0,5,2,"2",1.71428571428571,2 +"setBfree",0.0170022664,2.0259314608,-0.4587247273,"https://salsa.debian.org/multimedia-team/setbfree","https://github.com/pantherb/setBfree.git",3675.3818055556,8,6,0,10,61,0,0,61,2,"2",1.42857142857143,2 +"shapelib",0.2832338511,1.1530187147,-0.0270271594,"https://salsa.debian.org/debian-gis-team/shapelib","https://github.com/OSGeo/shapelib.git",5762.8618865741,4,13,0,16,34,0,0,36,4,"4",1.76470588235294,1.94444444444444 +"shellinabox",1.4229551917,3.5460511425,0.4536040301,"https://github.com/shellinabox/shellinabox/","https://github.com/shellinabox/shellinabox",3681.1884027778,7,26,0,21,143,0,3,152,2,"2",1.78787878787879,1.94078947368421 +"shortuuid",-0.4574144902,1.8821725228,-1.1753645345,"https://salsa.debian.org/python-team/packages/shortuuid","https://github.com/skorokithakis/shortuuid.git",4431.3497800926,19,17,0,30,96,0,0,97,3,"3",1.47222222222222,1.98969072164948 +"shotcut",-0.0371835128,1.3895028111,-0.3956647911,"https://salsa.debian.org/multimedia-team/shotcut","https://github.com/mltframework/shotcut",4437.0470486111,40,29,1,54,300,0,0,337,3,"3",1.42028985507246,1.89020771513353 +"should.js",-1.54067697,-0.4927936502,-1.7632687804,"https://salsa.debian.org/js-team/should.js","https://github.com/shouldjs/should.js.git",3267.8598842593,8,77,0,66,165,0,6,211,2,"2",1.90588235294118,1.78199052132701 +"simple-obfs",-0.4921488347,2.3362837337,-1.2782165107,"https://salsa.debian.org/bridges-team/simple-obfs","https://github.com/shadowsocks/simple-obfs.git",958.8196412037,21,12,0,23,215,0,0,217,1,"1",1.36363636363636,1.99078341013825 +"simple-tpm-pk11",-0.6002403517,1.7339981128,-1.3361738434,"https://salsa.debian.org/debian/simple-tpm-pk11","https://github.com/ThomasHabets/simple-tpm-pk11",3536.4266898148,8,13,0,16,52,0,1,53,2,"2",1.61904761904762,1.9811320754717 +"simpleburn",1.1321508597,4.0273397461,0.0153846721,"https://github.com/mati75/simpleburn.git","https://github.com/mati75/simpleburn.git",1916.8323611111,0,3,0,2,4,0,0,5,1,"1",2,1.8 +"simpleeval",-1.0513943081,0.6565241205,-1.3725768937,"https://salsa.debian.org/tryton-team/simpleeval","https://github.com/danthedeckie/simpleeval.git",3363.307037037,10,23,0,21,94,0,0,95,2,"2",1.6969696969697,1.98947368421053 +"simplejson",0.7781612347,2.530704791,0.1122369737,"https://salsa.debian.org/python-team/packages/simplejson","https://github.com/simplejson/simplejson",5762.0850115741,6,42,0,35,85,0,0,111,4,"4",1.875,1.76576576576577 +"ssr",0.5074767944,2.5172653323,-0.0714681759,"https://salsa.debian.org/multimedia-team/simplescreenrecorder","https://github.com/MaartenBaert/ssr",3464.0590972222,13,48,0,42,288,0,1,318,2,"2",1.78688524590164,1.90566037735849 +"simplesnap",-0.3478600805,2.4893157768,-1.2512484875,"https://github.com/jgoerzen/simplesnap","https://github.com/jgoerzen/simplesnap",3116.7912384259,1,6,0,4,24,0,0,24,2,"2",1.85714285714286,2 +"sinntp",-0.7486132539,2.2241911903,-1.864431269,"https://salsa.debian.org/python-team/packages/sinntp","https://github.com/jwilk/sinntp.git",5461.030625,0,2,0,2,3,0,0,4,4,"4",2,1.75 +"skiboot",-1.2267708754,0.8083409101,-1.8023566904,"https://salsa.debian.org/debian/skiboot","https://github.com/open-power/skiboot.git",3435.5121180556,156,19,0,99,117,0,0,167,2,"2",1.10857142857143,1.70059880239521 +"dict",-0.1341965123,0.4940218282,-0.3529875318,"https://salsa.debian.org/debian/skkdic","https://github.com/skk-dev/dict",2069.106724537,1,13,0,14,27,0,0,27,1,"1",1.92857142857143,2 +"skktools",-0.7739115557,-0.492281698,-0.8304382583,"https://salsa.debian.org/debian/skktools","https://github.com/skk-dev/skktools",4603.9943402778,1,14,0,9,15,0,0,15,3,"3",1.93333333333333,2 +"sl",0.323098945,1.3268829075,-0.065447292,"https://salsa.debian.org/debian/sl","https://github.com/mtoyoda/sl",1446.5538657407,0,15,0,10,116,0,0,116,1,"1",2,2 +"sleef",-2.2104947128,0.3306322864,-2.7673859805,"https://salsa.debian.org/science-team/sleef","https://github.com/shibatch/sleef.git",2789.4703935185,24,7,0,30,20,0,2,45,2,"2",1.2258064516129,1.44444444444444 +"sleuthkit",0.248789794,0.7322070572,0.0073823657,"https://salsa.debian.org/pkg-security-team/sleuthkit","https://github.com/sleuthkit/sleuthkit",5541.6815740741,21,144,0,79,39,0,2,97,4,"4",1.87272727272727,1.4020618556701 +"slowhttptest",-0.5285418268,1.6541713882,-0.9836957935,"https://salsa.debian.org/debian/slowhttptest","https://github.com/shekyan/slowhttptest",4436.458900463,5,15,0,11,62,0,3,65,3,"3",1.75,1.95384615384615 +"smarty",0.3504374167,1.5540551587,-0.1505110391,"https://salsa.debian.org/debian/smarty3","https://github.com/smarty-php/smarty.git",3318.9346180556,45,52,0,58,489,0,1,510,2,"2",1.5360824742268,1.95882352941176 +"smbmap",-0.0942111377,1.2729571655,-0.3894550484,"https://salsa.debian.org/pkg-security-team/smbmap","https://github.com/ShawnDEvans/smbmap.git",3137.7212731482,5,16,0,14,95,0,2,99,2,"2",1.76190476190476,1.95959595959596 +"smcroute",-0.5495305171,0.137923259,-0.8122481411,"https://salsa.debian.org/debian/smcroute","https://github.com/troglobit/smcroute.git",5055.7766087963,11,24,0,26,82,0,0,90,4,"4",1.68571428571429,1.91111111111111 +"SmokePing",0.1909583252,0.4951169655,-0.0114998503,"https://salsa.debian.org/debian/smokeping","https://github.com/oetiker/SmokePing.git",5773.8930902778,41,36,0,63,259,0,13,284,4,"4",1.46753246753247,1.91197183098592 +"snap",-0.2880010482,1.7199246286,-0.9244808984,"https://salsa.debian.org/med-team/snap-aligner","https://github.com/amplab/snap.git",3911.3341898148,1,64,0,10,89,0,0,89,3,"3",1.98461538461538,2 +"snimpy",-1.1710720581,-0.3633696382,-1.3515477674,"https://salsa.debian.org/debian/snimpy","https://github.com/vincentbernat/snimpy/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"snoopy",1.1669824916,2.8753833581,0.3279585504,"https://salsa.debian.org/pkg-security-team/snoopy","https://github.com/a2o/snoopy",3060.3719097222,6,34,4,21,133,0,0,138,2,"2",1.85,1.96376811594203 +"SoapyHackRF",0.1605098081,2.6673565763,-0.324555585,"https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyhackrf","https://github.com/pothosware/SoapyHackRF.git",2556.4767361111,1,9,0,7,36,0,5,41,1,"1",1.9,1.8780487804878 +"SoapyOsmo",0.1156871694,2.5406057768,-0.3339209238,"https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyosmo","https://github.com/pothosware/SoapyOsmo.git",2779.5272569445,0,2,0,2,14,0,2,16,2,"2",2,1.875 +"SoapySDR",0.5757029294,3.2715487378,-0.2009342982,"https://salsa.debian.org/debian-hamradio-team/soapysdr/soapysdr","https://github.com/pothosware/SoapySDR.git",3219.8508912037,4,27,0,26,135,0,20,166,2,"2",1.87096774193548,1.81325301204819 +"solarpowerlog",-1.7795970498,0.0950109385,-2.3705182782,"https://github.com/coldtobi/solarpowerlog/tree/debian","https://github.com/coldtobi/solarpowerlog",5143.7188310185,1,8,0,1,1,0,1,3,4,"4",1.88888888888889,1.33333333333333 +"solvespace",0.3400078311,2.4750974835,-0.3014099682,"https://salsa.debian.org/science-team/solvespace","https://github.com/solvespace/solvespace/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sombok",0.3006788873,1.8374945588,-0.0607142369,"https://salsa.debian.org/kolter/sombok","https://github.com/hatukanezumi/sombok",1612.4445949074,0,1,0,1,4,0,0,4,1,"1",2,2 +"sonata",0.2905505595,0.9576245442,-0.0885666061,"https://salsa.debian.org/mpd-team/sonata","https://github.com/multani/sonata",4950.7015162037,15,21,0,23,50,0,0,60,3,"3",1.58333333333333,1.83333333333333 +"sonic",0.3436339172,1.4474196373,0.0197565432,"https://salsa.debian.org/a11y-team/sonic","https://github.com/waywardgeek/sonic",4727.1402199074,3,21,0,12,42,0,0,42,3,"3",1.875,2 +"sope",-0.250285844,0.9987661956,-0.7280518867,"https://salsa.debian.org/debian/sope","https://github.com/inverse-inc/sope.git",4884.8710648148,9,32,0,24,32,0,0,35,3,"3",1.78048780487805,1.91428571428571 +"soundkonverter",1.0908472726,2.4748241992,0.3743578972,"https://salsa.debian.org/qt-kde-team/extras/soundkonverter","https://github.com/dfaust/soundkonverter.git",4518.0852893519,5,14,0,15,97,0,5,103,3,"3",1.73684210526316,1.94174757281553 +"spectrwm",0.8740320474,3.3995660037,-0.1106287738,"https://salsa.debian.org/debian/spectrwm","https://github.com/conformal/spectrwm",5428.7537962963,35,24,0,38,333,0,14,353,4,"4",1.40677966101695,1.94334277620397 +"sphinxcontrib-bibtex",0.111160598,2.1131827213,-0.4197298069,"https://salsa.debian.org/science-team/sphinxcontrib-bibtex","https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git",4544.6493055556,11,9,0,16,150,0,0,150,3,"3",1.45,2 +"restbuilder",-1.1764165162,1.2846690356,-1.6755940115,"https://salsa.debian.org/python-team/packages/sphinxcontrib-restbuilder","https://github.com/sphinx-contrib/restbuilder.git",2987.8306828704,1,10,0,8,23,0,0,25,2,"2",1.90909090909091,1.92 +"spelling",-0.7874116783,1.0287481645,-1.4199296239,"https://salsa.debian.org/python-team/packages/sphinxcontrib-spelling","https://github.com/sphinx-contrib/spelling",5270.8333333333,12,76,0,67,83,0,0,120,4,"4",1.86363636363636,1.69166666666667 +"sphinxcontrib-websupport",-1.489015386,0.092912366,-1.8959476069,"https://salsa.debian.org/python-team/packages/sphinxcontrib-websupport","https://github.com/sphinx-doc/sphinxcontrib-websupport",4818.6938425926,8,17,0,18,21,0,0,29,3,"3",1.68,1.72413793103448 +"sphinxtesters",-1.0316070726,1.4478444724,-1.604600739,"https://salsa.debian.org/python-team/packages/sphinxtesters","https://github.com/matthew-brett/sphinxtesters.git",2155.7952314815,0,3,0,2,5,0,0,5,1,"1",2,2 +"spin-debian",-0.5307239904,2.5263569152,-1.4016281412,"https://github.com/thomaslee/spin-debian","https://github.com/thomaslee/spin-debian",1934.3454282407,2,4,0,2,3,0,0,3,1,"1",1.66666666666667,2 +"sqitch",-1.0987496818,-0.3717057014,-1.2899258645,"https://salsa.debian.org/perl-team/modules/packages/sqitch","https://github.com/sqitchers/sqitch/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"sqldeveloper-package",0.3178462622,2.5512521122,-0.5498064554,"https://github.com/lazarusllong/sqldeveloper-package.git","https://github.com/lazarusllong/sqldeveloper-package.git",2130.3049189815,0,3,0,1,6,0,0,6,1,"1",2,2 +"sqlgrey-debian",-0.447394697,1.287594037,-1.0928861268,"https://github.com/bobek/sqlgrey-debian","https://github.com/bobek/sqlgrey-debian",4172.3835300926,1,3,0,2,1,0,0,2,3,"3",1.75,1.5 +"sqlmap",-0.0436656036,1.2298763794,-0.4076774194,"https://salsa.debian.org/pkg-security-team/sqlmap","https://github.com/sqlmapproject/sqlmap.git",5537.8440625,75,67,0,118,120,0,6,236,4,"4",1.47183098591549,1.50847457627119 +"ssh-audit",0.2128051096,2.7100037355,-0.3787946632,"https://salsa.debian.org/debian/ssh-audit","https://github.com/jtesta/ssh-audit.git",2897.0719328704,19,7,0,23,122,0,13,141,2,"2",1.26923076923077,1.86524822695035 +"sshuttle",0.4686212873,1.5902040128,-0.0562158764,"https://salsa.debian.org/debian/sshuttle","https://github.com/sshuttle/sshuttle.git",4975.0844675926,104,46,0,119,319,0,1,380,3,"3",1.30666666666667,1.83947368421053 +"sslsplit",0.0482855639,2.1228996274,-0.6371278291,"https://salsa.debian.org/debian/sslsplit","https://github.com/droe/sslsplit",4093.9351851852,9,20,2,17,164,0,0,170,3,"3",1.68965517241379,1.96470588235294 +"subliminal",0.7190070506,3.1421902787,-0.2079240806,"https://salsa.debian.org/python-team/packages/subliminal","https://github.com/Diaoul/subliminal.git",3790.6726273148,11,36,0,30,562,0,0,566,3,"3",1.76595744680851,1.99293286219081 +"suds",-0.2061376952,0.1335002243,-0.2803381261,"https://salsa.debian.org/python-team/packages/suds","https://github.com/suds-community/suds.git",3431.6421990741,14,23,0,26,80,0,0,87,2,"2",1.62162162162162,1.91954022988506 +"sundials",0.1304834937,1.329515137,-0.4214324267,"https://salsa.debian.org/science-team/sundials","https://github.com/LLNL/sundials.git",5750.416412037,17,59,0,19,126,0,1,131,4,"4",1.77631578947368,1.9618320610687 +"sup",0.7289408703,1.645644064,0.2014294659,"https://salsa.debian.org/ruby-team/sup-mail","https://github.com/sup-heliotrope/sup/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"svgpp",-1.8854559409,-0.5385173138,-2.2188275477,"https://salsa.debian.org/debian/svgpp","https://github.com/svgpp/svgpp.git",3480.6248726852,6,8,0,8,55,0,1,56,2,"2",1.57142857142857,1.98214285714286 +"svgtune",0.1366019906,2.760378779,-0.708785107,"http://github.com/yarikoptic/svgtune","http://github.com/yarikoptic/svgtune",4268.4841550926,0,2,0,0,0,0,0,0,3,"3",2,NA +"svgwrite",0.1630015143,2.8978314663,-0.6431657526,"https://salsa.debian.org/python-team/packages/svgwrite","https://github.com/mozman/svgwrite.git",2562.4058912037,4,22,0,19,110,0,0,115,1,"1",1.84615384615385,1.95652173913043 +"svn2git",0.0735704043,2.214779927,-0.6989156967,"https://salsa.debian.org/debian/svn-all-fast-export","https://github.com/svn-all-fast-export/svn2git.git",5311.2481365741,28,29,0,32,96,0,0,107,4,"4",1.50877192982456,1.89719626168224 +"svtplay-dl",-0.259583484,1.4909319758,-0.7330050577,"https://salsa.debian.org/olof/svtplay-dl","https://github.com/spaam/svtplay-dl",4669.1490162037,48,26,3,52,53,0,0,92,3,"3",1.35135135135135,1.57608695652174 +"svxlink",-0.3635018341,1.3160115906,-0.862809513,"https://salsa.debian.org/debian-hamradio-team/svxlink","https://github.com/sm0svx/svxlink/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"swaks",-0.0249524642,0.3218579009,-0.1486439733,"https://salsa.debian.org/debian/swaks","https://github.com/jetmore/swaks",5448.0600694445,0,9,5,5,49,0,0,49,4,"4",2,2 +"swami",0.1476526288,1.5183148814,-0.4624982263,"https://salsa.debian.org/multimedia-team/swami","https://github.com/swami/swami",4547.4787962963,6,10,0,8,16,0,0,19,3,"3",1.625,1.84210526315789 +"swauth",-2.4254901848,-0.8570793139,-2.7795442667,"https://salsa.debian.org/openstack-team/services/swauth","https://github.com/openstack/swauth.git",3045.1673958333,5,41,0,20,0,0,0,20,2,"2",1.89130434782609,1 +"swayidle",-0.101420118,2.2036420089,-0.6198513899,"https://salsa.debian.org/swaywm-team/swayidle","https://github.com/swaywm/swayidle",1867.500775463,24,22,0,36,149,0,0,156,1,"1",1.47826086956522,1.9551282051282 +"swift",-0.7448605494,-0.5081147887,-0.8497485173,"https://salsa.debian.org/openstack-team/services/swift","https://github.com/openstack/swift.git",4902.7891898148,50,447,0,293,35,0,0,321,3,"3",1.89939637826962,1.10903426791277 +"synaptic",4.0786320856,4.6212205168,3.6414737103,"https://github.com/mvo5/synaptic","https://github.com/mvo5/synaptic",5665.1249768519,20,60,0,45,96,0,2,108,4,"4",1.75,1.88888888888889 +"tappy",-0.7057840569,2.2385171659,-1.5015511284,"https://salsa.debian.org/python-team/packages/tap.py","https://github.com/python-tap/tappy",3537.627025463,10,7,0,13,34,0,0,34,2,"2",1.41176470588235,2 +"tcpflow",0.1993321539,0.7688453693,-0.0915379508,"https://salsa.debian.org/debian/tcpflow","https://github.com/simsong/tcpflow.git",4133.2346875,26,36,0,41,169,0,0,171,3,"3",1.58064516129032,1.98830409356725 +"tcpslice",0.3358455905,2.6360959654,-0.570915695,"https://salsa.debian.org/debian/tcpslice","https://github.com/the-tcpdump-group/tcpslice",1218.7178356482,4,7,0,9,17,0,0,18,1,"1",1.63636363636364,1.94444444444444 +"tdc",-0.5860347644,1.7220497679,-1.1918576951,"https://github.com/MTecknology/tdc","https://github.com/MTecknology/tdc",2078.2080208333,1,4,0,1,3,0,0,3,1,"1",1.8,2 +"tdiary-contrib",-1.4993548568,-0.3330069572,-2.0474169755,"https://salsa.debian.org/ruby-team/tdiary-contrib","https://github.com/tdiary/tdiary-contrib",5617.5064699074,4,81,0,39,47,0,0,49,4,"4",1.95294117647059,1.95918367346939 +"tdiary-style-gfm",-3.85195761,-1.6209873018,-4.3352117054,"https://salsa.debian.org/ruby-team/tdiary-style-gfm","https://github.com/tdiary/tdiary-style-gfm",3042.2103356482,2,13,0,10,14,0,0,14,2,"2",1.86666666666667,2 +"tea-qt",-0.2810310835,0.1682947168,-0.470037759,"https://salsa.debian.org/debian/tea","https://github.com/psemiletov/tea-qt.git",2860.1480092593,4,9,0,7,18,0,1,21,2,"2",1.69230769230769,1.85714285714286 +"teckit",2.1261637138,6.076788803,0.7450555927,"https://github.com/debian-tex/teckit","https://github.com/debian-tex/teckit",2563.6115277778,1,6,0,2,1,0,0,3,1,"1",1.85714285714286,1.33333333333333 +"tegaki",1.3618120507,5.4067459557,0.1410792866,"https://salsa.debian.org/debian/tegaki-zinnia-japanese","https://github.com/tegaki/tegaki.git",5118.3927777778,1,17,0,7,18,0,0,21,4,"4",1.94444444444444,1.85714285714286 +"terminado",0.1170410576,1.292034871,-0.1639482973,"https://salsa.debian.org/python-team/packages/terminado","https://github.com/jupyter/terminado",3771.3957407407,25,31,0,38,96,0,0,101,3,"3",1.55357142857143,1.95049504950495 +"termshark",-0.7902341917,1.4608630566,-1.2282898458,"https://salsa.debian.org/go-team/packages/termshark","https://github.com/gcla/termshark.git",1476.2094328704,6,14,0,14,67,0,0,72,1,"1",1.7,1.93055555555556 +"tifffile",-0.4950191398,1.0954022518,-0.9432954038,"https://salsa.debian.org/python-team/packages/tifffile","https://github.com/cgohlke/tifffile.git",1876.5951851852,0,2,0,1,107,0,0,107,1,"1",2,2 +"tigervnc",0.3860499518,0.9771386342,0.0684855341,"https://salsa.debian.org/debian-remote-team/tigervnc","https://github.com/TigerVNC/tigervnc.git",5713.2161226852,57,92,0,111,563,0,20,660,4,"4",1.61744966442953,1.8530303030303 +"tikzit",-0.3160832668,1.7178404043,-0.77589652,"https://salsa.debian.org/debian/tikzit","https://github.com/tikzit/tikzit.git",4273.8409027778,1,14,0,8,114,0,0,115,3,"3",1.93333333333333,1.99130434782609 +"tiledarray",-1.7374267908,0.1767686338,-2.351826242,"https://salsa.debian.org/debichem-team/tiledarray","https://github.com/ValeevGroup/tiledarray.git",5618.1119675926,7,39,0,21,38,0,5,43,4,"4",1.84782608695652,1.88372093023256 +"tktable",0.3811226337,2.9724908262,-0.2247277525,"https://salsa.debian.org/tcltk-team/tk-table","https://github.com/wjoye/tktable",2301.1677546296,2,6,0,3,5,0,0,5,1,"1",1.75,2 +"python-tldp",-2.9387752686,-1.0847198188,-3.3226946918,"https://github.com/tLDP/python-tldp","https://github.com/tLDP/python-tldp",2447.0141319445,0,4,0,2,4,0,0,4,1,"1",2,2 +"tldr.py",-0.8494191178,1.5859020327,-1.3735854961,"https://salsa.debian.org/python-team/packages/tldr-py","https://github.com/lord63/tldr.py",1740.1593055556,4,6,0,6,33,0,0,33,1,"1",1.6,2 +"tlf",-0.8747316419,-0.5145883819,-0.9886468624,"https://salsa.debian.org/debian-hamradio-team/tlf","https://github.com/Tlf/tlf.git",5111.2798263889,15,21,0,19,45,0,2,47,4,"4",1.58333333333333,1.95744680851064 +"tootle",1.2711208148,4.7692261317,-0.0231156554,"https://salsa.debian.org/debian/tootle","https://github.com/bleakgrey/tootle.git",1706.1450925926,21,13,0,23,214,0,0,214,1,"1",1.38235294117647,2 +"torbrowser-launcher",0.2254493944,0.4690081374,0.0615930109,"https://salsa.debian.org/pkg-privacy-team/torbrowser-launcher","https://github.com/micahflee/torbrowser-launcher",3941.4624421296,20,66,6,66,20,0,1,80,3,"3",1.76744186046512,1.25 +"toro",-2.2006489719,0.2918073361,-2.7668191631,"https://salsa.debian.org/debian/toro","https://github.com/ajdavis/toro/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"totalopenstation",-0.3889221766,1.015672648,-0.7332210243,"https://salsa.debian.org/debian-gis-team/totalopenstation","https://github.com/totalopenstation/totalopenstation.git",3856.5791319445,6,8,0,10,14,0,0,20,3,"3",1.57142857142857,1.7 +"traitlets",0.2529500243,1.8629238208,-0.0962338622,"https://salsa.debian.org/python-team/packages/traitlets","https://github.com/ipython/traitlets.git",5659.0350347222,36,89,0,97,252,0,0,265,4,"4",1.712,1.95094339622642 +"twolame",0.8417112782,2.6067569755,0.181912311,"https://salsa.debian.org/multimedia-team/twolame","https://github.com/njh/twolame",5003.7664467593,10,10,2,13,33,0,0,33,4,"4",1.5,2 +"txt2html",0.7774259234,2.1221283602,0.106308761,"https://salsa.debian.org/debian/txt2html","https://github.com/resurrecting-open-source-projects/txt2html",5316.6490856482,1,4,0,2,4,0,0,4,4,"4",1.8,2 +"txt2man",0.4090645621,1.519569464,-0.1442456476,"https://salsa.debian.org/debian/txt2man","https://github.com/mvertes/txt2man",2424.6791435185,2,9,0,9,19,0,0,19,1,"1",1.81818181818182,2 +"txt2tags",0.0507302842,1.0615675266,-0.3853719858,"https://salsa.debian.org/python-team/packages/txt2tags","https://github.com/txt2tags/txt2tags.git",5549.6046296296,9,22,0,3,36,0,1,37,4,"4",1.70967741935484,1.97297297297297 +"txWS",-1.4288081047,1.2079142338,-2.0336181053,"https://salsa.debian.org/python-team/packages/txws","https://github.com/MostAwesomeDude/txWS",4288.2085763889,2,10,0,9,37,0,0,37,3,"3",1.83333333333333,2 +"txZMQ",-0.6021876626,0.9002822086,-1.0188293115,"https://salsa.debian.org/python-team/packages/txzmq","https://github.com/smira/txZMQ",3989.2474074074,3,25,0,17,61,0,0,62,3,"3",1.89285714285714,1.98387096774194 +"typogrify",-0.5841407904,1.9099456866,-1.1786502144,"https://salsa.debian.org/python-team/packages/typogrify","https://github.com/mintchaos/typogrify",4964.5992708333,2,13,0,12,50,0,0,50,3,"3",1.86666666666667,2 +"u-msgpack-python",0.71036009,3.6137824666,-0.1082167429,"https://salsa.debian.org/python-team/packages/u-msgpack-python","https://github.com/vsergeev/u-msgpack-python",3518.0095949074,11,3,1,10,40,0,0,40,2,"2",1.21428571428571,2 +"uap-core",-1.4950577768,0.2195779264,-1.9007872982,"https://salsa.debian.org/debian/uap-core","https://github.com/ua-parser/uap-core.git",3378.7186458333,35,224,0,172,383,0,0,428,2,"2",1.86486486486486,1.89485981308411 +"udisks",1.637930268,2.6755087394,1.0040393895,"https://salsa.debian.org/utopia-team/udisks2","https://github.com/storaged-project/udisks",5742.1701388889,64,76,1,109,96,0,1,178,4,"4",1.54285714285714,1.53932584269663 +"ufo2otf-debian",-1.1799643582,1.8587549116,-1.9214944844,"https://github.com/Rudloff/ufo2otf-debian","https://github.com/Rudloff/ufo2otf-debian",893.8441666667,1,3,0,3,1,0,0,3,1,"1",1.75,1.33333333333333 +"UglifyJS2",-0.4631278916,1.3138425047,-0.9110194583,"https://salsa.debian.org/js-team/uglifyjs","https://github.com/mishoo/UglifyJS2",3886.0955208333,82,71,0,115,88,0,0,192,3,"3",1.4640522875817,1.45833333333333 +"UglifyJS2",1.1390181603,3.3421341091,0.221625202,"https://salsa.debian.org/js-team/uglifyjs","https://github.com/mishoo/UglifyJS2",3886.0955208333,82,71,0,115,88,0,0,192,3,"3",1.4640522875817,1.45833333333333 +"ukui-sidebar",-3.8890227903,-1.5419346693,-4.3399549698,"https://github.com/ukui/ukui-sidebar","https://github.com/ukui/ukui-sidebar",770.8421412037,16,52,0,28,0,0,0,28,1,"1",1.76470588235294,1 +"unshield",1.079201816,2.9040511207,0.2466958012,"https://salsa.debian.org/games-team/unshield","https://github.com/twogood/unshield.git",5774.0918055556,2,32,0,28,33,0,0,49,4,"4",1.94117647058824,1.6734693877551 +"Unworkable",-0.495607915,1.1078529483,-1.0387863531,"https://salsa.debian.org/debian/unworkable","https://github.com/niallo/Unworkable.git",3168.162650463,2,5,0,2,2,0,0,3,2,"2",1.71428571428571,1.66666666666667 +"usbauth-all",-0.84864584,2.3248338051,-1.5774396132,"https://salsa.debian.org/debian/usbauth","https://github.com/kochstefan/usbauth-all.git",2917.2837384259,3,5,0,2,7,0,0,7,2,"2",1.625,2 +"usbauth-all",-1.3618380248,0.1189121883,-1.684268531,"https://salsa.debian.org/debian/usbauth-notifier","https://github.com/kochstefan/usbauth-all.git",2917.2837384259,3,5,0,2,7,0,0,7,2,"2",1.625,2 +"usbguard",-0.21450453,0.5691395227,-0.5636553493,"https://salsa.debian.org/birger/usbguard","https://github.com/dkopecek/usbguard",3141.3933796296,33,38,1,43,150,0,1,161,2,"2",1.53521126760563,1.93167701863354 +"usbmuxd",1.7018106669,3.399620343,0.8385492974,"https://salsa.debian.org/imobiledevice-team/usbmuxd","https://github.com/libimobiledevice/usbmuxd",5280.2443287037,27,16,0,24,138,0,1,149,4,"4",1.37209302325581,1.9261744966443 +"usbview",0.2830288966,1.2165170826,-0.0945146744,"https://salsa.debian.org/debian/usbview","https://github.com/gregkh/usbview.git",5596.9732407408,7,11,0,12,12,0,0,21,4,"4",1.61111111111111,1.57142857142857 +"uvloop",-0.4097803455,1.6193553491,-1.0751849943,"https://salsa.debian.org/python-team/packages/uvloop","https://github.com/MagicStack/uvloop",2912.1617939815,58,10,0,57,542,0,1,543,2,"2",1.14705882352941,1.99815837937385 +"v4l2loopback",-0.1197314674,0.4069152495,-0.2587985427,"https://salsa.debian.org/debian/v4l2loopback","https://github.com/umlaeute/v4l2loopback.git",5406.2159953704,26,63,0,57,94,0,35,176,4,"4",1.70786516853933,1.53409090909091 +"vagrant-libvirt",-0.1221442454,0.3185253091,-0.2416538921,"https://salsa.debian.org/ruby-team/vagrant-libvirt","https://github.com/vagrant-libvirt/vagrant-libvirt",3827.3451388889,87,210,0,209,98,0,3,280,3,"3",1.70707070707071,1.35 +"vagrant-lxc",0.8034556285,4.6021026989,-0.412211374,"https://salsa.debian.org/ruby-team/vagrant-lxc","https://github.com/fgrehm/vagrant-lxc",3559.775474537,9,55,2,46,129,0,31,186,2,"2",1.859375,1.69354838709677 +"vagrant-mutate",-0.4801401485,1.7149444538,-0.9074989115,"https://salsa.debian.org/ruby-team/vagrant-mutate","https://github.com/sciurus/vagrant-mutate",1407.9479166667,3,15,4,15,61,0,1,62,1,"1",1.83333333333333,1.98387096774194 +"vagrant-sshfs",-0.3177714786,2.0839099019,-0.8418425788,"https://salsa.debian.org/ruby-team/vagrant-sshfs","https://github.com/dustymabe/vagrant-sshfs",2305.1928472222,2,14,0,15,132,0,0,132,1,"1",1.875,2 +"vcsh",1.141131609,4.2673996711,0.0261319499,"https://github.com/RichiH/vcsh","https://github.com/RichiH/vcsh",4529.0101851852,11,57,0,53,153,63,2,223,3,"3",1.83823529411765,1.68609865470852 +"VOoM",-0.4785805602,0.6126802722,-0.659254773,"https://salsa.debian.org/yyabuki/vim-voom","https://github.com/vim-voom/VOoM.git",1193.9262731482,0,1,0,1,20,0,0,20,1,"1",2,2 +"virtualjaguar-debian",-0.3323824959,1.6186130413,-0.7674058951,"https://github.com/glaubitz/virtualjaguar-debian","https://github.com/glaubitz/virtualjaguar-debian",1293.0757291667,2,1,0,1,1,0,0,2,1,"1",1.33333333333333,1.5 +"vmtouch",0.0085288392,3.0675234726,-0.8067347383,"https://salsa.debian.org/debian/vmtouch","https://github.com/hoytech/vmtouch",4266.5434837963,8,25,0,21,85,0,0,86,3,"3",1.75757575757576,1.98837209302326 +"voctomix",-0.3727468412,1.1810950571,-0.6494603735,"https://salsa.debian.org/debian/voctomix","https://github.com/voc/voctomix.git",3329.1224189815,7,54,0,35,80,0,5,86,2,"2",1.88524590163934,1.93023255813953 +"voctomix-outcasts",-1.6893130475,-1.2420509413,-1.7699634447,"https://salsa.debian.org/debian/voctomix-outcasts","https://github.com/CarlFK/voctomix-outcasts.git",2648.5362847222,0,9,0,6,7,0,0,7,1,"1",2,2 +"vokoscreenNG",0.2104121096,1.2955691942,-0.1531712498,"https://salsa.debian.org/debian/vokoscreen-ng","https://github.com/vkohaupt/vokoscreenNG/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"volk",0.3490308455,1.9477412745,-0.157883478,"https://salsa.debian.org/bottoms/pkg-volk","https://github.com/gnuradio/volk",4752.915,39,93,0,74,106,0,0,129,3,"3",1.70454545454545,1.82170542635659 +"voltron",-1.8139477845,1.3185040904,-2.8023383764,"https://salsa.debian.org/python-team/packages/voltron","https://github.com/snare/voltron.git",2775.5086458333,5,31,0,19,212,0,1,213,2,"2",1.86111111111111,1.99530516431925 +"voluptuous",-0.403966828,1.2358837228,-0.7514608215,"https://salsa.debian.org/python-team/packages/voluptuous","https://github.com/alecthomas/voluptuous",4900.0540740741,38,69,0,73,81,0,0,132,3,"3",1.64485981308411,1.61363636363636 +"voms",-0.756674276,-0.2090198319,-0.9203293452,"https://salsa.debian.org/ellert/voms","https://github.com/italiangrid/voms",3745.5262731482,4,20,0,8,29,0,5,35,2,"2",1.83333333333333,1.82857142857143 +"waitress",-0.001435195,0.7796936159,-0.2577457307,"https://salsa.debian.org/python-team/packages/waitress","https://github.com/Pylons/waitress.git",4372.6596990741,10,50,0,48,135,0,0,153,3,"3",1.83333333333333,1.88235294117647 +"wal2json",-1.8275745539,0.5424600488,-2.3404171148,"https://salsa.debian.org/postgresql/wal2json","https://github.com/eulerto/wal2json.git",3393.2528703704,6,15,0,13,173,0,0,177,2,"2",1.71428571428571,1.9774011299435 +"wand",-0.67759885,-0.1056309981,-0.8962104321,"https://salsa.debian.org/debian/wand","https://github.com/emcconville/wand",4461.4997222222,24,94,1,85,430,0,0,439,3,"3",1.79661016949153,1.97949886104784 +"WavPack",0.5006437508,1.2816911597,0.1442013441,"https://salsa.debian.org/multimedia-team/wavpack","https://github.com/dbry/WavPack",5719.9072569445,11,19,0,26,86,0,0,87,4,"4",1.63333333333333,1.98850574712644 +"libwbxml",0.5716576747,2.0439677491,-0.0953236447,"https://salsa.debian.org/debian/wbxml2","https://github.com/libwbxml/libwbxml.git",5170.821412037,0,19,0,15,25,0,0,28,4,"4",2,1.89285714285714 +"wcwidth",0.3330909557,1.8989641963,-0.0738762364,"https://salsa.debian.org/python-team/packages/wcwidth","https://github.com/jquast/wcwidth",3540.9241550926,5,18,0,16,80,0,0,81,2,"2",1.78260869565217,1.98765432098765 +"websocketpp",-0.3732259601,1.2705562016,-0.7134226458,"https://salsa.debian.org/debian/websocketpp","https://github.com/zaphoyd/websocketpp.git",3911.9273263889,7,63,0,40,237,0,21,277,3,"3",1.9,1.85559566787004 +"websploit",-0.4221028192,2.1023366852,-1.0726176237,"https://salsa.debian.org/pkg-security-team/websploit","https://github.com/websploit/websploit",0.0014814815,1,1,0,1,3,0,0,4,1,"1",1.5,1.75 +"weevely3",-0.2507372174,2.1708290167,-0.8636427805,"https://salsa.debian.org/pkg-security-team/weevely","https://github.com/epinna/weevely3.git",3185.5150578704,7,21,0,18,24,0,3,39,2,"2",1.75,1.61538461538462 +"welle.io",-1.1503735792,0.8698707092,-1.5560375998,"https://salsa.debian.org/debian-hamradio-team/welle.io","https://github.com/AlbrechtL/welle.io",2902.9566203704,11,44,0,35,243,0,3,249,2,"2",1.8,1.97590361445783 +"weresync",0.8686224385,5.3149179418,-0.6110888212,"https://salsa.debian.org/python-team/packages/weresync","https://github.com/DonyorM/weresync.git",2224.0163194445,5,4,0,4,47,0,0,47,1,"1",1.44444444444444,2 +"weupnp",-1.9200689609,0.314231077,-2.3479232511,"https://salsa.debian.org/debian/weupnp","https://github.com/bitletorg/weupnp.git",896.40375,1,9,0,8,23,0,2,27,1,"1",1.9,1.85185185185185 +"wfmath",-0.3893875883,0.837955788,-0.9792345009,"https://salsa.debian.org/games-team/wfmath","https://github.com/worldforge/wfmath",5506.8696990741,0,8,0,7,8,0,0,9,4,"4",2,1.88888888888889 +"wfuzz",0.3494531903,3.0367255196,-0.346839296,"https://salsa.debian.org/pkg-security-team/wfuzz","https://github.com/xmendez/wfuzz.git",3000.7348148148,13,27,0,24,91,0,5,111,2,"2",1.675,1.81981981981982 +"whatthepatch",-1.2344880678,1.15651314,-1.8143537794,"https://salsa.debian.org/python-team/packages/whatthepatch","https://github.com/cscorley/whatthepatch",3792.0029513889,6,11,0,11,23,0,0,23,3,"3",1.64705882352941,2 +"when",-0.2471365546,1.4766184372,-0.8165939727,"https://salsa.debian.org/carnil/when","https://github.com/bcrowell/when/issues/new",2746.3319791667,2,17,0,0,0,0,0,0,2,"2",1.89473684210526,NA +"whichcraft",-0.303651311,1.9645474175,-0.7638381926,"https://salsa.debian.org/python-team/packages/whichcraft","https://github.com/cookiecutter/whichcraft",2896.9858101852,2,14,0,8,22,0,0,22,2,"2",1.875,2 +"wanderlust",-0.3325500668,0.46879212,-0.6623736703,"https://salsa.debian.org/debian/wl","https://github.com/wanderlust/wanderlust",5747.0710416667,6,25,0,16,85,0,0,85,4,"4",1.80645161290323,2 +"wanderlust",-0.9633885518,-0.6844818162,-1.0856880817,"https://salsa.debian.org/debian/wl-beta","https://github.com/wanderlust/wanderlust",5747.0710416667,6,25,0,16,85,0,0,85,4,"4",1.80645161290323,2 +"WPEBackend-fdo",0.5730095986,3.296980661,-0.0681747088,"https://salsa.debian.org/webkit-team/wpebackend-fdo","https://github.com/Igalia/WPEBackend-fdo",2058.3566319445,11,16,1,15,33,0,0,35,1,"1",1.59259259259259,1.94285714285714 +"Xastir",0.1089482482,0.8635088142,-0.3202862478,"https://salsa.debian.org/debian-hamradio-team/xastir","https://github.com/Xastir/Xastir.git",5658.7705902778,2,27,0,23,47,0,1,57,4,"4",1.93103448275862,1.82456140350877 +"xcape",0.1031866498,2.6635244357,-0.4881717246,"https://salsa.debian.org/debian/xcape","https://github.com/alols/xcape",2160.4542361111,3,26,0,19,215,0,0,216,1,"1",1.89655172413793,1.99537037037037 +"xcffib",0.3422766078,1.6439736239,-0.2089170835,"https://salsa.debian.org/python-team/packages/xcffib","https://github.com/tych0/xcffib.git",3466.6135069445,10,9,0,14,67,0,0,67,2,"2",1.47368421052632,2 +"xCHM",0.2106957608,0.7959718479,-0.0859691061,"https://salsa.debian.org/debian/xchm","https://github.com/rzvncj/xCHM.git",5664.2862037037,3,5,0,6,25,0,0,25,4,"4",1.625,2 +"xcscope.el",0.2222567121,2.7358133073,-0.5096652742,"https://salsa.debian.org/debian/xcscope-el","https://github.com/dkogan/xcscope.el",3521.9445949074,2,6,0,6,30,0,0,31,2,"2",1.75,1.96774193548387 +"xdffileio",-0.3370360933,3.1399742139,-1.5172901103,"https://salsa.debian.org/med-team/xdffileio","https://github.com/mmlabs-mindmaze/xdffileio.git",3980.6902777778,1,9,0,3,4,0,0,6,3,"3",1.9,1.66666666666667 +"xdms-debian",-0.3245085497,1.1111188277,-0.7327199722,"https://github.com/glaubitz/xdms-debian","https://github.com/glaubitz/xdms-debian",2621.1444212963,2,1,0,3,2,0,0,5,1,"1",1.33333333333333,1.4 +"xdotool",1.2968912917,2.6433354619,0.5854640504,"https://salsa.debian.org/debian/xdotool","https://github.com/jordansissel/xdotool.git",5532.0414351852,34,28,0,50,581,0,0,582,4,"4",1.45161290322581,1.99828178694158 +"xen-tools",0.1849226805,0.4044499915,0.02937965,"https://github.com/xen-tools/xen-tools","https://github.com/xen-tools/xen-tools",5773.4961921296,25,18,2,29,33,0,0,52,4,"4",1.41860465116279,1.63461538461538 +"xmldiff",0.559598996,1.5801414897,0.007932953,"https://salsa.debian.org/debian/xmldiff","https://github.com/Shoobx/xmldiff.git",5659.7240162037,11,15,0,19,92,0,0,95,4,"4",1.57692307692308,1.96842105263158 +"xmltv",-0.0141973655,0.1968271173,-0.1465991903,"https://salsa.debian.org/nickm/xmltv","https://github.com/XMLTV/xmltv.git",5729.3252314815,14,54,0,44,137,0,0,159,4,"4",1.79411764705882,1.86163522012579 +"xmoto",-0.0128577775,0.350476721,-0.2212793709,"https://salsa.debian.org/games-team/xmoto","https://github.com/xmoto/xmoto",5752.6098148148,7,30,1,14,32,0,1,34,4,"4",1.81081081081081,1.94117647058824 +"yadm",0.155795293,2.4789916734,-0.5346609613,"https://salsa.debian.org/debian/yadm","https://github.com/TheLocehiliosan/yadm",1719.5473611111,26,32,0,34,348,0,0,348,1,"1",1.55172413793103,2 +"yanc",-1.5009992611,1.4616219544,-2.2668515294,"https://salsa.debian.org/python-team/packages/yanc","https://github.com/0compute/yanc",1361.9793865741,0,3,0,2,13,0,0,13,1,"1",2,2 +"yatm",-0.9969942564,0.469884003,-1.3959449427,"https://salsa.debian.org/debian/yatm","https://github.com/mlang/yatm.git",2272.488912037,0,3,0,1,4,0,0,5,1,"1",2,1.8 +"yder",-0.5735586705,1.4948558419,-1.0176765614,"https://salsa.debian.org/debian-iot-team/oauth2/yder.git","https://github.com/babelouest/yder",1282.873275463,2,11,0,9,16,0,0,16,1,"1",1.84615384615385,2 +"ydpdict",-1.6620122332,-0.9650225761,-1.8878460738,"https://github.com/porridge/ydpdict","https://github.com/porridge/ydpdict",5724.9537731482,0,4,0,3,0,0,0,3,4,"4",2,1 diff --git a/new_denom_032624_stripped.csv b/new_denom_032624_stripped.csv new file mode 100644 index 0000000..a8697c9 --- /dev/null +++ b/new_denom_032624_stripped.csv @@ -0,0 +1,3064 @@ +project_name,underproduction_mean,underproduction_low,underproduction_high,debian_vcs_link,upstream_vcs_link,age_of_project,contributors,collaborators,milestone_count,api_contrib_count,issue_contrib_count,file_contrib_count,wiki_contrib_count, total_contrib +0xFFFF,-0.510168673,1.4527994311,-1.0011708662,https://salsa.debian.org/debian/0xffff, https://github.com/pali/0xFFFF,5557.8427777778,3,11,0,6,9,0,0,9 +3270font,0.7956265926,4.3574626903,-0.214217071,https://github.com/kilobyte/3270font/tree/debian,https://github.com/kilobyte/3270font,3596.6082060185,6,15,0,9,3,0,0,11 +4pane-debian-dir,-0.2426279425,2.299894807,-0.8194220994,https://github.com/dghart/4pane-debian-dir/tree/master/,https://github.com/dghart/4pane-debian-dir,2236.6859722222,0,2,0,1,2,0,0,2 +4ti2,0.4764408337,3.0285400273,-0.2191943656,https://salsa.debian.org/math-team/4ti2, https://github.com/4ti2/4ti2.git,5656.5603819445,3,11,0,6,18,0,0,18 +6tunnel,-0.563131582,0.346490728,-0.8398599484,https://salsa.debian.org/debian/6tunnel, https://github.com/wojtekka/6tunnel,2673.0241203704,1,7,0,5,18,0,1,19 +a2jmidid,0.3594669173,1.948434404,-0.1562277334,https://salsa.debian.org/multimedia-team/a2jmidid, https://github.com/linuxaudio/a2jmidid.git,4551.7947916667,8,8,0,12,23,0,0,27 +abGate,0.1706833434,2.3128885166,-0.4447167424,https://salsa.debian.org/multimedia-team/abgate, https://github.com/antanasbruzas/abGate.git,1677.5786226852,2,8,0,4,5,0,0,6 +link,0.2419062498,3.4521460543,-0.7141549374,https://salsa.debian.org/multimedia-team/ableton-link, https://github.com/Ableton/link.git,2835.8410648148,20,10,0,19,81,0,0,88 +acme-tiny,-0.0997740414,0.6982852517,-0.3572560835,https://salsa.debian.org/letsencrypt-team/acme-tiny, https://github.com/diafygi/acme-tiny.git,2161.2252314815,7,34,0,36,354,0,0,355 +acpi_call,0.1056920793,1.3196660142,-0.2309830486,https://salsa.debian.org/moonsweep/acpi-call, https://github.com/nix-community/acpi_call.git,4711.2498958333,14,26,0,29,24,0,0,39 +adapta-kde,-0.0885623802,2.0889906357,-0.5313636783,https://salsa.debian.org/debian/adapta-kde, https://github.com/PapirusDevelopmentTeam/adapta-kde.git,636.9053819444,2,5,0,3,0,0,0,3 +admesh,0.1260876875,1.8100481532,-0.381631879,https://salsa.debian.org/science-team/admesh, https://github.com/admesh/admesh,3319.1463078704,15,9,1,20,42,0,0,44 +ADMS,-0.6746373026,2.0836908399,-1.2638452949,https://salsa.debian.org/science-team/adms, https://github.com/Qucs/ADMS.git,3397.3394444445,6,10,0,12,44,0,3,49 +ADOL-C,-0.218347665,0.2989988071,-0.4200973016,https://salsa.debian.org/science-team/adolc, https://github.com/coin-or/ADOL-C,5292.5953472222,11,44,0,11,43,0,2,48 +taplib,-0.1607320251,2.2507776056,-0.6544297324,https://salsa.debian.org/debian-astro-team/adql, https://github.com/gmantele/taplib.git,3533.9449074074,2,12,0,7,26,0,0,26 +adwaita-qt,0.205201025,2.3560485193,-0.2873294601,https://salsa.debian.org/debian/adwaita-qt, https://github.com/FedoraQt/adwaita-qt.git,3324.8509953704,3,11,0,9,135,0,0,137 +aeskulap,-0.0079946864,0.7360602484,-0.280025211,https://salsa.debian.org/med-team/aeskulap, https://github.com/pipelka/aeskulap.git,0.1217013889,0,2,0,2,3,0,0,4 +afew,-0.174094467,3.0914363808,-1.0829316549,https://salsa.debian.org/python-team/packages/afew, https://github.com/afewmail/afew,4444.5631134259,14,62,1,59,188,0,0,190 +AFFLIBv3,0.4855383072,1.2966231457,0.0866885423,https://salsa.debian.org/pkg-security-team/afflib, https://github.com/sshock/AFFLIBv3,3923.2419675926,1,18,0,14,23,0,0,28 +afio,0.7471975104,2.0817065146,0.0678453147,https://salsa.debian.org/debian/afio, https://github.com/kholtman/afio,3009.1574652778,0,6,0,4,8,0,0,8 +AFLplusplus,-0.6866375311,2.5698791713,-1.4766466472,https://salsa.debian.org/pkg-security-team/aflplusplus, https://github.com/AFLplusplus/AFLplusplus.git,1658.7534375,94,190,0,201,0,0,0,201 +aggdraw,-1.0738283571,1.0896722547,-1.5311943301,https://salsa.debian.org/debian-gis-team/aggdraw, https://github.com/pytroll/aggdraw,4403.4778240741,4,15,2,15,48,0,0,49 +aha,-0.0329000287,2.2809487303,-0.5337481366,https://salsa.debian.org/debian/aha, https://github.com/theZiz/aha.git,3422.3746180556,1,26,0,18,0,0,1,19 +aiodns,0.1656826228,1.9021756708,-0.2783622395,https://salsa.debian.org/python-team/packages/aiodns, https://github.com/saghul/aiodns.git,3490.3476273148,13,17,0,27,96,0,0,100 +aioprocessing,-1.8106172723,-0.4031506429,-2.0700475194,https://github.com/davesteele/aioprocessing,https://github.com/davesteele/aioprocessing,3054.801087963,3,13,0,8,1,0,0,8 +airspyone_host,0.135032826,1.7638004482,-0.2266634267,https://salsa.debian.org/bottoms/pkg-airspy-host, https://github.com/airspy/airspyone_host.git,3592.9147685185,9,15,0,21,60,0,6,68 +airspyhf,0.4277792447,3.1863173209,-0.2431051192,https://salsa.debian.org/debian-hamradio-team/airspyhf, https://github.com/airspy/airspyhf.git,2334.5221527778,3,13,0,13,36,0,0,38 +aiscm,-2.1266027747,-0.9022998492,-2.4482757524,https://github.com/wedesoft/aiscm,https://github.com/wedesoft/aiscm,3606.1918865741,0,8,0,3,7,0,0,8 +alabaster,1.5840034231,5.0180871348,0.3754116681,https://github.com/jbouse-debian/alabaster,https://github.com/jbouse-debian/alabaster,3086.3917592593,1,6,0,4,4,0,0,5 +amavisd-milter,0.615386065,3.5879174633,-0.470593397,https://salsa.debian.org/debian/amavisd-milter, https://github.com/prehor/amavisd-milter,5582.9392824074,1,5,0,3,7,0,0,7 +amazon-ecr-credential-helper,-1.2935017996,1.3375714894,-1.8855602579,https://github.com/awslabs/amazon-ecr-credential-helper/tree/debian,https://github.com/awslabs/amazon-ecr-credential-helper,2759.7970717593,31,49,1,56,371,0,0,396 +amora,-0.6385985537,1.533812873,-1.3373354269,https://github.com/amora/amora/tree/master/amora-server,https://github.com/amora/amora,4404.2341666667,0,11,0,6,5,0,0,9 +amsynth,0.3306364812,1.2209617467,-0.1269359447,https://salsa.debian.org/multimedia-team/amsynth, https://github.com/nixxcode/amsynth.git ,5332.9271990741,11,24,0,21,100,0,3,109 +amule,0.4839430086,0.6876326423,0.3238736448,https://salsa.debian.org/debian/amule, https://github.com/amule-project/amule.git,5047.6080555556,11,25,0,16,46,0,0,55 +amule-emc,-0.3584249255,1.8578303929,-0.8058880504,https://salsa.debian.org/morph/amule-emc, https://github.com/palopezv/amule-emc,2735.137662037,0,2,0,0,1,0,0,1 +analog-ce,0.3100100337,0.6308951381,0.1129534728,https://salsa.debian.org/debian/analog, https://github.com/c-amie/analog-ce.git,798.2990509259,2,1,0,1,4,0,0,5 +anfo,-0.5164343879,1.1141228746,-0.8858012402,https://salsa.debian.org/med-team/anfo, https://github.com/udo-stenzel/anfo,2083.7738310185,0,5,0,1,1,0,1,2 +anomaly,-2.6979232432,-0.9294432931,-3.0157661638,https://github.com/mogaal/anomaly,https://github.com/mogaal/anomaly,224.8161226852,0,2,0,1,2,0,0,3 +anosql,-1.7531962484,0.6178873531,-2.3213037286,https://salsa.debian.org/python-team/packages/anosql, https://github.com/honza/anosql,2207.9932523148,1,18,0,12,24,0,0,24 +ansible-lint,0.2113200286,2.3970134545,-0.4192549848,https://salsa.debian.org/python-team/packages/ansible-lint, https://github.com/ansible/ansible-lint,3772.1254976852,239,77,4,263,0,0,0,263 +antpm,-0.4257977771,1.2499417918,-0.9097264377,https://salsa.debian.org/debian/antpm, https://github.com/ralovich/antpm,5246.6502893519,2,16,0,6,4,0,0,7 +anypaper,-0.8366781332,1.8293957466,-1.525331321,https://github.com/mogaal/anypaper,https://github.com/mogaal/anypaper,358.8230671296,0,1,0,1,0,0,0,1 +aoeui,-1.5753745078,-0.1018330597,-2.0145689052,https://salsa.debian.org/debian/aoeui, https://github.com/pklausler/aoeui.git,0.0311342593,0,4,0,1,2,0,0,3 +apachetop,-0.1433968655,0.1384791106,-0.2436187019,https://salsa.debian.org/debian/apachetop, https://github.com/tessus/apachetop.git,4171.4287847222,1,5,0,3,11,0,0,12 +apel,-0.1699911676,0.0467119457,-0.2503884599,https://salsa.debian.org/debian/apel, https://github.com/wanderlust/apel,5064.9154166667,2,8,0,5,0,0,0,5 +apipkg,0.1848523093,2.3386412167,-0.297646363,https://salsa.debian.org/python-team/packages/apipkg, https://github.com/pytest-dev/apipkg,4796.3536574074,4,14,0,15,32,0,0,36 +aplpy,-0.0173305787,1.6394741457,-0.5266587065,https://salsa.debian.org/debian-astro-team/aplpy, https://github.com/aplpy/aplpy.git,4761.8146296296,3,44,0,33,0,0,1,34 +appdirs,0.3458277639,1.9577727359,-0.1122252661,https://salsa.debian.org/python-team/packages/appdirs, https://github.com/ActiveState/appdirs.git,4580.7970601852,5,36,0,28,143,0,0,144 +appstream-generator,-1.1332713071,-0.1060546301,-1.4824521416,https://salsa.debian.org/pkgutopia-team/appstream-generator, https://github.com/ximion/appstream-generator,2846.9885185185,14,5,0,14,47,0,0,47 +apriltag,-1.1179244852,1.091725818,-1.6047836993,https://salsa.debian.org/science-team/apriltag, https://github.com/AprilRobotics/apriltag.git,1884.0502083333,21,28,0,42,0,0,0,42 +aprsdigi,0.1781157768,2.7404004262,-0.7343395696,https://salsa.debian.org/debian-hamradio-team/aprsdigi, https://github.com/n2ygk/aprsdigi.git,5178.2461574074,2,9,0,4,7,0,0,7 +aprx,-0.2704326877,2.1233467944,-0.9280144637,https://salsa.debian.org/debian-hamradio-team/aprx, https://github.com/PhirePhly/aprx,4964.0779861111,6,4,1,7,43,0,0,43 +apt-forktracer,0.0547352043,1.112259075,-0.2401275584,https://github.com/porridge/apt-forktracer,https://github.com/porridge/apt-forktracer,5457.9246990741,1,3,0,2,1,0,0,2 +apt-offline,0.7681910278,1.8077281258,0.1487399152,https://github.com/rickysarraf/apt-offline,https://github.com/rickysarraf/apt-offline,5588.93,4,18,3,12,62,0,2,69 +apt-venv,0.5985278149,4.8192892935,-0.7291864283,https://salsa.debian.org/debian/apt-venv, https://github.com/LeoIannacone/apt-venv,1672.1250694445,0,3,0,1,7,0,0,7 +aptitude-robot,0.0330441368,2.6987643495,-0.6758866251,https://github.com/elmar/aptitude-robot,https://github.com/elmar/aptitude-robot,3822.3247685185,3,7,1,6,9,0,0,10 +apulse-debian,-0.1771724569,1.2997369797,-0.4576897761,https://github.com/exaexa/apulse-debian,https://github.com/exaexa/apulse-debian,2693.7106712963,2,11,0,9,2,0,0,9 +apvlv,0.8026186076,2.4912926837,-0.0110446926,https://salsa.debian.org/debian/apvlv, https://github.com/naihe2010/apvlv,4571.1944675926,1,28,0,18,92,0,0,94 +arachne-pnr,-0.2393988119,0.9055823033,-0.5128499486,https://salsa.debian.org/science-team/arachne-pnr, https://github.com/cseed/arachne-pnr.git,1523.5826388889,1,29,0,24,90,0,0,91 +ArbiterJS,-0.9372250205,1.3094171556,-1.3679284559,https://salsa.debian.org/js-team/arbiterjs, https://github.com/ArbiterJS/ArbiterJS,777.6784722222,0,1,0,0,0,0,0,0 +arc,1.0034305192,2.95692526,0.1704629703,https://git.hadrons.org/cgit/debian/pkgs/arc.git, https://github.com/ani6al/arc,0.1011921296,1,1,0,1,0,0,0,1 +arc-theme,0.0557512099,0.9470106383,-0.1788662281,https://github.com/UbuntuBudgie/arc-theme/tree/debian,https://github.com/UbuntuBudgie/arc-theme,2773.5425578704,36,30,0,2,2,0,0,3 +arch-test,0.0607618911,0.902121307,-0.1116504733,https://github.com/kilobyte/arch-test/tree/debian,https://github.com/kilobyte/arch-test,2721.0558912037,2,7,0,6,10,0,0,10 +archmage,-0.5766750111,-0.3037651495,-0.666439779,https://salsa.debian.org/python-team/packages/archmage, https://github.com/dottedmag/archmage,4875.1846412037,1,4,0,3,16,0,0,16 +arcp-py,-5.0400309655,-2.6837801512,-5.4802256243,https://salsa.debian.org/python-team/packages/arcp, https://github.com/stain/arcp-py.git,744.5613194444,0,3,0,2,4,0,0,4 +ardentryst,1.6336595561,4.7901963616,0.4114961199,https://salsa.debian.org/games-team/ardentryst, https://github.com/ardentryst/ardentryst,3087.7143865741,4,6,0,6,7,0,0,7 +arename,-0.7754375198,0.9646514013,-1.1302132776,https://salsa.debian.org/perl-team/modules/packages/arename, https://github.com/ft/arename.git,5509.5740972222,2,1,0,3,3,0,0,4 +phc-winner-argon2,0.743835667,2.5300173326,0.1203530186,https://salsa.debian.org/pkg-security-team/argon2, https://github.com/P-H-C/phc-winner-argon2,2090.9970833333,21,70,0,62,101,0,0,123 +aif,-0.0994853605,0.2382471007,-0.2885738031,https://salsa.debian.org/pkg-security-team/arno-iptables-firewall, https://github.com/arno-iptables-firewall/aif.git,5173.1893171296,1,13,0,3,50,0,0,50 +arp-scan,0.7973854024,2.157870748,0.1913515465,https://salsa.debian.org/pkg-security-team/arp-scan, https://github.com/royhills/arp-scan,5689.2689583333,1,16,0,11,61,0,1,64 +arpack-ng,0.3837318586,0.9028165971,0.1090371111,https://salsa.debian.org/science-team/arpack, https://github.com/opencollab/arpack-ng.git,4374.6474884259,45,30,0,53,0,0,0,53 +arping,0.530645087,1.2970011805,0.131538231,https://salsa.debian.org/debian/arping, https://github.com/ThomasHabets/arping,5640.3308564815,6,8,1,10,48,0,0,49 +assess,-1.4000321709,1.1332183932,-2.0278507888,https://salsa.debian.org/emacsen-team/assess-el, https://github.com/phillord/assess.git,2948.0093402778,0,8,0,6,12,0,0,13 +astLib,-0.4953363519,0.6080154454,-0.6729060494,https://salsa.debian.org/debian-astro-team/astlib, https://github.com/mattyowl/astLib.git,2666.6349305556,0,4,0,2,5,0,0,5 +astromenace,-0.4083684893,0.5804361033,-0.6175886343,https://salsa.debian.org/games-team/astromenace, https://github.com/viewizard/astromenace.git,5567.4927893519,5,4,0,7,21,0,0,22 +astropy-healpix,-0.4944474025,0.2280631702,-0.7220614086,https://salsa.debian.org/debian-astro-team/astropy-healpix, https://github.com/astropy/astropy-healpix,2653.9758333333,3,14,5,12,33,0,2,35 +atig,-1.8648493244,0.279641993,-2.4212366269,https://salsa.debian.org/ruby-team/atig, https://github.com/atig/atig,4572.5188078704,2,14,1,10,17,0,0,17 +atlas-cpp,0.0341726983,1.1760438151,-0.4721381555,https://salsa.debian.org/games-team/atlas-cpp, https://github.com/worldforge/atlas-cpp,5588.9221643519,1,7,0,7,9,0,0,11 +audacious-plugins,1.7224717183,2.5284554407,1.1638170855,https://salsa.debian.org/multimedia-team/audacious-plugins, https://github.com/audacious-media-player/audacious-plugins,5769.3870138889,19,100,0,83,0,0,0,83 +audiofile,0.422362873,1.1370882832,0.0919717085,https://salsa.debian.org/multimedia-team/audiofile, https://github.com/mpruett/audiofile,1573.8945023148,10,2,0,8,60,0,0,61 +austin,-1.9885885289,0.9749582973,-2.7198737394,https://github.com/P403n1x87/austin,https://github.com/P403n1x87/austin,1837.728599537,4,7,8,7,31,0,1,34 +autocutsel-debian,0.1797843854,2.4764961713,-0.3873891003,https://github.com/elmar/autocutsel-debian,https://github.com/elmar/autocutsel-debian,3741.7552430556,3,8,0,7,1,0,0,7 +autolog,-0.4586466955,0.5238636181,-1.0843460423,https://salsa.debian.org/pkg-security-team/autolog, https://github.com/JKDingwall/autolog.git,1891.041099537,4,11,0,5,2,0,0,6 +automx-debian,-0.602057718,1.6606574872,-1.3781487507,https://github.com/wreiner/automx-debian.git,https://github.com/wreiner/automx-debian.git,38.1884490741,1,1,0,1,0,0,0,1 +autopostgresqlbackup,0.0717331465,1.1779509822,-0.3973782275,https://salsa.debian.org/kolter/autopostgresqlbackup, https://github.com/k0lter/autopostgresqlbackup,1670.5722222222,8,3,0,6,19,0,0,21 +autorenamer,-0.3876192426,1.6252404011,-0.8867624476,https://github.com/porridge/autorenamer,https://github.com/porridge/autorenamer,3637.0090277778,4,1,0,1,3,0,0,3 +averell,-3.3917060035,-0.2624325775,-4.2312153625,https://github.com/jeanparpaillon/averell,https://github.com/jeanparpaillon/averell,585.8797453704,0,1,0,0,2,0,0,2 +pkg-avr-evtd,0.7552713955,5.6393427141,-0.8294940805,https://github.com/rbrito/pkg-avr-evtd,https://github.com/rbrito/pkg-avr-evtd,3784.5630787037,0,1,0,0,1,0,0,1 +awesfx,0.8705331012,2.216301783,0.1561432022,https://salsa.debian.org/multimedia-team/awesfx, https://github.com/tiwai/awesfx.git,1324.8292592593,0,1,0,1,2,0,0,2 +biber,0.025597249,0.3975294935,-0.1139709408,https://github.com/debian-tex/biber,https://github.com/debian-tex/biber,5232.9484259259,2,17,0,7,1,0,0,7 +biblesync,0.3250691142,3.3691024007,-0.4547464712,https://salsa.debian.org/pkg-crosswire-team/biblesync, https://github.com/karlkleinpaste/biblesync.git,2205.1738773148,0,6,0,3,7,0,0,7 +bibtool,0.6789918484,1.7753249658,0.1299255999,https://salsa.debian.org/tex-team/bibtool, https://github.com/ge-ne/bibtool.git,4734.0663541667,1,5,0,3,29,0,0,29 +binkd,-1.5291148732,-0.7208993868,-1.8984875134,https://salsa.debian.org/md/binkd, https://github.com/pgul/binkd,5661.947349537,4,23,0,12,24,0,0,27 +bino,0.1952576502,1.8817060276,-0.4774605999,https://github.com/schaal/bino,https://github.com/schaal/bino,3762.7609490741,0,4,0,2,1,0,0,2 +binwalk,0.2237508811,1.3345373481,-0.1513640072,https://salsa.debian.org/pkg-security-team/binwalk, https://github.com/ReFirmLabs/binwalk,3364.812650463,24,70,1,71,16,0,25,105 +biometric-authentication,-0.485933223,1.5346031672,-1.0554082079,https://github.com/ukui/biometric-authentication,https://github.com/ukui/biometric-authentication,1286.1941203704,2,8,0,4,14,0,0,14 +bitstruct,-1.0422111169,1.6758733437,-1.7408364383,https://salsa.debian.org/python-team/packages/bitstruct, https://github.com/eerimoq/bitstruct,3110.3722916667,2,10,0,6,34,0,0,34 +blackboxwm,0.9240670694,1.5485949706,0.4955253,https://salsa.debian.org/debian/blackbox, https://github.com/bbidulock/blackboxwm,5638.5930671296,4,7,0,8,24,0,0,27 +pkg-blahtexml,-0.8489779977,1.4826442088,-1.4663049964,http://github.com/abhidg/pkg-blahtexml,http://github.com/abhidg/pkg-blahtexml,103.9986226852,0,1,0,0,0,0,0,0 +Bluebird,1.1380974193,4.2767964991,0.1562970087,https://salsa.debian.org/desktop-themes-team/bluebird-gtk-theme, https://github.com/shimmerproject/Bluebird,2956.8580092593,3,16,0,11,26,0,0,27 +bmap-tools,-0.1504052056,1.1252732802,-0.4879151231,https://salsa.debian.org/debian/bmap-tools, https://github.com/intel/bmap-tools,4042.2103240741,15,24,3,22,30,0,1,40 +boinctui,-0.1432413703,1.420786312,-0.5512115785,https://github.com/suleman1971/boinctui,https://github.com/suleman1971/boinctui,3939.3302893519,1,7,0,5,21,0,0,21 +bootinfoscript,-0.3809313102,1.1240423783,-0.7082417318,https://salsa.debian.org/debian/boot-info-script, https://github.com/arvidjaar/bootinfoscript,3172.7375,1,7,0,3,19,0,0,20 +booth,-2.5882433407,-1.3768010854,-2.9582924151,https://salsa.debian.org/ha-team/booth, https://github.com/ClusterLabs/booth.git,4438.4447337963,6,37,0,22,34,0,0,41 +btchip-python,-1.1812672757,1.4023375583,-1.7414921007,https://salsa.debian.org/python-team/packages/btchip-python, https://github.com/LedgerHQ/btchip-python.git,3019.8821180556,5,10,0,10,36,0,0,36 +btfs,-0.1692325715,2.6773757299,-0.8903422829,https://salsa.debian.org/debian/btfs, https://github.com/johang/btfs,2774.3356481482,11,11,0,15,32,0,0,39 +bti,-0.2588997909,0.7195438277,-0.7283552221,https://git.toastfreeware.priv.at/debian/bti.git, https://github.com/gregkh/bti.git,3076.6664699074,14,25,0,25,36,0,0,45 +btrbk-packaging,0.1156617148,2.2848637542,-0.5286650377,https://github.com/digint/btrbk-packaging,https://github.com/digint/btrbk-packaging,2807.8996064815,1,3,0,1,4,0,0,4 +compsize,0.1058240849,2.8049694932,-0.4831458072,https://github.com/kilobyte/compsize/tree/debian,https://github.com/kilobyte/compsize,1814.0231481482,0,8,0,7,52,0,0,52 +budgie-desktop,-0.3863909585,-0.1050655044,-0.4722349352,https://github.com/ubuntubudgie/budgie-desktop/tree/debian,https://github.com/ubuntubudgie/budgie-desktop,3652.4221643519,35,69,1,5,47,0,0,48 +budgie-extras,-0.3549864205,1.918871211,-0.8848111475,https://github.com/UbuntuBudgie/budgie-extras/tree/debian,https://github.com/UbuntuBudgie/budgie-extras,2299.353599537,13,15,6,20,6,0,0,24 +budgie-indicator-applet,-0.3165710056,1.8644335276,-0.7715039703,https://github.com/UbuntuBudgie/budgie-indicator-applet/tree/debian,https://github.com/UbuntuBudgie/budgie-indicator-applet,2410.5153935185,0,6,1,2,24,0,0,24 +buildapp,-0.6306447633,1.6220492356,-1.3420391452,https://salsa.debian.org/common-lisp-team/buildapp, https://github.com/xach/buildapp,2095.158275463,0,6,0,6,25,0,0,25 +bwm-ng,1.4012192264,3.1707005611,0.5566987616,https://salsa.debian.org/debian/bwm-ng, https://github.com/vgropp/bwm-ng,5022.6577083333,1,12,0,7,29,0,0,30 +cafeobj,-1.8104313277,-1.0153734132,-2.0497300294,https://github.com/CafeOBJ/cafeobj,https://github.com/CafeOBJ/cafeobj,3212.0939699074,0,7,0,3,3,0,2,7 +capnproto-debian,0.2688312178,0.9760274096,-0.0981830892,https://github.com/thomaslee/capnproto-debian,https://github.com/thomaslee/capnproto-debian,3752.338587963,3,4,0,3,5,0,0,5 +carbon-c-relay,-1.7206703797,2.1186998142,-2.7912817518,https://salsa.debian.org/debian/carbon-c-relay, https://github.com/grobian/carbon-c-relay.git,3376.0489467593,8,36,0,25,0,0,1,26 +CARE-debian,-0.2836237154,3.5038071749,-1.3460010784,https://github.com/ivoire/CARE-debian,https://github.com/ivoire/CARE-debian,2.7190856481,0,2,0,1,1,0,0,2 +observatories-table,-0.1932098569,1.2412651155,-0.4565906785,https://salsa.debian.org/debian-astro-team/casacore-data-observatories, https://github.com/casacore/observatories-table.git,766.9570138889,1,3,0,2,2,0,0,2 +cassbeam,-0.2590451087,0.999251768,-0.6449745997,https://salsa.debian.org/debian-astro-team/cassbeam, https://github.com/ratt-ru/cassbeam,1099.9010185185,0,5,0,3,3,0,0,3 +casync,-1.0162004091,-0.313916552,-1.2265268627,https://salsa.debian.org/systemd-team/casync, https://github.com/systemd/casync,2466.7584606482,38,15,0,44,38,0,0,69 +catcodec,-1.1685609799,1.0772762213,-1.6183880518,https://salsa.debian.org/openttd-team/catcodec, https://github.com/OpenTTD/catcodec.git,4292.8177314815,2,4,0,3,2,0,0,3 +catimg,-0.0953582269,2.1605928046,-0.6844708001,https://salsa.debian.org/debian/catimg, https://github.com/posva/catimg.git,3000.6790046296,7,14,0,12,58,0,0,58 +caveexpress,-0.4341110971,0.5694718441,-0.5965828946,https://salsa.debian.org/games-team/caveexpress, https://github.com/mgerhardy/caveexpress,2582.468125,2,6,0,4,11,0,3,14 +Cavez-of-Phear-packaging,0.0722256397,3.4094980689,-0.7199285527,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,23.0470601852,0,1,0,1,1,0,0,2 +cbatticon,-0.6634198756,2.0334034925,-1.2638833309,https://salsa.debian.org/debian/cbatticon, https://github.com/valr/cbatticon.git,4175.7122800926,3,25,0,19,61,0,2,63 +cbflib,0.9354285947,4.3539203092,-0.1929526206,https://salsa.debian.org/science-team/cbflib, https://github.com/yayahjb/cbflib,5636.0790740741,1,18,0,8,16,0,0,18 +cbm,0.2175441651,1.9827159385,-0.3872945166,https://salsa.debian.org/debian/cbm, https://github.com/resurrecting-open-source-projects/cbm,918.9922337963,1,3,0,2,11,0,0,12 +ccbuild,-0.9629469603,0.1146367137,-1.3836463029,https://salsa.debian.org/debian/ccbuild, https://github.com/bneijt/ccbuild.git,4764.8878703704,1,5,0,2,9,0,0,9 +cccc,1.1630655625,3.7723724067,0.0933849486,https://salsa.debian.org/debian/cccc, https://github.com/sarnold/cccc,2703.0782638889,1,7,0,3,10,0,0,11 +ccd2iso-debian,0.361667663,2.3145122267,-0.2829342926,https://github.com/paulproteus/ccd2iso-debian,https://github.com/paulproteus/ccd2iso-debian,10.0830555556,1,1,0,2,1,0,0,3 +cclive,0.3075023734,1.0246036879,-0.0680117934,https://github.com/mogaal/cclive,https://github.com/mogaal/cclive,1632.909375,1,4,0,2,0,0,0,2 +cd-discid,0.6925316992,3.3171474044,-0.0825478541,https://github.com/taem/cd-discid/tree/deb,https://github.com/taem/cd-discid,2591.0086574074,2,2,0,3,8,0,0,9 +cellwriter,1.0089121851,3.1682961137,-0.0123490019,https://salsa.debian.org/debian/cellwriter, https://github.com/risujin/cellwriter,1174.0054050926,1,2,0,2,8,0,1,9 +cen64-debian,-0.0299112832,2.2614422439,-0.6566748344,https://github.com/dh4/cen64-debian/,https://github.com/dh4/cen64-debian,1926.2346064815,0,5,0,3,1,0,0,3 +cen64-qt-debian,-0.752499837,1.4603763669,-1.3157313926,https://github.com/dh4/cen64-qt-debian/,https://github.com/dh4/cen64-qt-debian,1637.4857986111,0,4,0,3,1,0,0,3 +centreon-clib,-3.2868334023,-0.8614963308,-3.7498045046,https://salsa.debian.org/centreon-team/centreon-clib, https://github.com/centreon/centreon-clib.git,4179.8511458333,9,17,0,12,14,0,0,16 +certspotter,-1.0333689914,-0.0755768851,-1.2332167803,https://salsa.debian.org/go-team/packages/certspotter, https://github.com/sslmate/certspotter,2838.7901736111,7,8,2,11,9,0,0,16 +CeWL,-0.0142294382,1.8140197076,-0.3642449144,https://salsa.debian.org/pkg-security-team/cewl, https://github.com/digininja/CeWL.git,2751.2389351852,7,13,0,13,22,0,0,31 +cgroupfs-mount,0.5950079509,2.246233345,0.0389645239,https://github.com/tianon/cgroupfs-mount,https://github.com/tianon/cgroupfs-mount,2931.2437847222,0,7,0,5,13,0,0,15 +chafa,0.2729454746,2.5277999875,-0.1637443656,https://salsa.debian.org/debian/chafa, https://github.com/hpjansson/chafa.git,2095.0478819445,25,6,0,27,29,0,1,49 +Chaosreader,0.051219731,1.9660310042,-0.36928528,https://salsa.debian.org/pkg-security-team/chaosreader, https://github.com/brendangregg/Chaosreader,66.7731134259,0,4,0,3,13,0,0,13 +charls,0.0895204966,0.7433078443,-0.0746073455,https://salsa.debian.org/med-team/charls, https://github.com/team-charls/charls.git,5412.7639236111,9,14,0,14,20,0,2,29 +cjk,0.9697104519,1.6795645993,0.5078842706,https://github.com/debian-tex/cjk,https://github.com/debian-tex/cjk,4969.9469328704,1,7,0,4,2,0,0,4 +cjose,0.2954038942,3.3240815436,-0.6206035693,https://salsa.debian.org/debian/cjose, https://github.com/zmartzone/cjose.git,2698.734525463,9,16,0,16,4,0,0,17 +cjs,0.3334254948,1.2158627921,-0.0031931609,https://salsa.debian.org/cinnamon-team/cjs, https://github.com/linuxmint/cjs.git,3771.5652546296,71,77,0,93,33,0,0,114 +ckbuilder,-1.3486815873,1.7603160909,-2.1472801921,https://salsa.debian.org/js-team/ckbuilder, https://github.com/ckeditor/ckbuilder.git,3366.2307291667,1,11,0,10,31,0,0,31 +cl-csv,-0.1843136147,2.282501642,-0.9607356223,https://salsa.debian.org/common-lisp-team/cl-csv, https://github.com/AccelerationNet/cl-csv,3373.8361342593,0,10,0,9,30,0,0,30 +cl-ftp,-0.6205750271,2.0407172858,-1.4348634933,https://github.com/pinterface/cl-ftp,https://github.com/pinterface/cl-ftp,3252.9678009259,1,3,0,2,5,0,0,6 +cl-github-v3,-0.5258867542,3.1486982913,-1.5778685827,https://github.com/hanshuebner/cl-github-v3,https://github.com/hanshuebner/cl-github-v3,2986.6350810185,1,3,0,2,3,0,0,3 +ironclad,-0.2926194741,2.5462973619,-0.9228966528,https://salsa.debian.org/common-lisp-team/cl-ironclad, https://github.com/sharplispers/ironclad,5005.7061458333,20,31,0,38,63,0,0,79 +local-time,-0.1155735019,3.1988484402,-1.0582604602,http://github.com/dlowe-net/local-time,http://github.com/dlowe-net/local-time,5698.7149884259,7,50,0,0,0,0,0,0 +lparallel,-0.3212127102,2.5346068068,-1.0978335516,https://github.com/lmj/lparallel,https://github.com/lmj/lparallel,2019.918599537,0,5,0,4,49,0,0,49 +cl-markdown,-0.704735028,1.4518477641,-1.1406727407,https://github.com/gwkkwg/cl-markdown,https://github.com/gwkkwg/cl-markdown,5675.8904513889,2,4,0,3,15,0,0,16 +debian-coinor-ipopt,0.5832138621,1.8467840552,-0.023431241,https://github.com/ghorn/debian-coinor-ipopt.git,https://github.com/ghorn/debian-coinor-ipopt.git,39.8457986111,1,2,0,3,6,0,0,7 +coinst,-2.1191156396,-0.1758133987,-2.7007167402,https://salsa.debian.org/ocaml-team/coinst, https://github.com/vouillon/coinst,2037.998599537,0,10,0,3,4,0,0,5 +CoinUtils,0.5173058529,1.7235167137,0.083670866,https://salsa.debian.org/science-team/coinutils, https://github.com/coin-or/CoinUtils,5778.8880671296,5,20,0,19,32,0,0,42 +collada-dom,0.691454203,3.6624920638,-0.1343215008,https://salsa.debian.org/science-team/collada-dom, https://github.com/rdiankov/collada-dom,2502.5084606482,0,12,0,6,37,0,0,37 +colord-gtk,0.7697552931,2.9826639125,0.077041879,https://salsa.debian.org/debian/colord-gtk, https://github.com/hughsie/colord-gtk.git,4151.4261111111,7,4,0,8,20,0,0,21 +Colormake,0.4957489072,1.6979687579,-0.1003336178,https://salsa.debian.org/debian/colormake, https://github.com/pagekite/Colormake,1830.1740162037,0,12,0,7,19,0,0,20 +colorspacious,-0.5821614466,2.0041319598,-1.1596382365,https://salsa.debian.org/python-team/packages/colorspacious, https://github.com/njsmith/colorspacious.git,1894.8289351852,2,10,0,9,30,0,0,33 +terminal-colors,-0.3857845184,0.9188572345,-0.8063133571,https://salsa.debian.org/python-team/packages/colortest-python, https://github.com/eikenb/terminal-colors,4692.3352777778,1,2,0,2,11,0,0,11 +ColPack,0.2017867043,1.9302260292,-0.3695903388,https://salsa.debian.org/science-team/colpack, https://github.com/CSCsw/ColPack,1916.7757175926,1,22,0,9,0,0,0,9 +CommonMark-py,-0.1141650084,1.2511686194,-0.3702327483,https://salsa.debian.org/python-team/packages/commonmark-bkrs, https://github.com/rolandshoemaker/CommonMark-py,472.4580902778,0,5,0,4,23,0,0,24 +concordance,-0.4625050573,0.3139503984,-0.7573354842,https://salsa.debian.org/debian/concordance, https://github.com/jaymzh/concordance.git,5701.1186458333,1,3,0,2,16,0,0,16 +config-package-dev,-0.2056225256,1.2522724234,-0.6633860362,https://github.com/sipb/config-package-dev,https://github.com/sipb/config-package-dev,3585.0969444445,4,6,0,9,9,0,0,16 +ssh-connect,0.6639299634,3.4943269761,-0.2623886668,https://salsa.debian.org/debian/connect-proxy, https://github.com/gotoh/ssh-connect,3911.0326273148,0,6,0,3,7,0,0,9 +workbench,0.0811043258,2.6788022329,-0.7528644786,http://github.com/neurodebian/workbench,http://github.com/neurodebian/workbench,3495.7424652778,3,16,0,0,0,0,0,0 +conserver,-0.5522688783,0.0570588023,-0.8821891544,https://salsa.debian.org/debian/conserver, https://github.com/conserver/conserver.git,4671.668912037,1,15,0,9,21,0,0,23 +constantly,0.8509284475,3.7618528736,0.0151388634,https://salsa.debian.org/python-team/packages/constantly, https://github.com/twisted/constantly.git,2708.6915162037,2,14,0,8,30,0,0,30 +context,0.3449326884,0.8438807473,0.0662940568,https://github.com/debian-tex/context,https://github.com/debian-tex/context,5666.6297800926,2,10,0,4,3,0,0,4 +context-modules,0.2805651463,2.5200169996,-0.1441758839,https://github.com/debian-tex/context-modules,https://github.com/debian-tex/context-modules,4444.3460763889,3,7,0,4,3,0,0,4 +context-free,-0.3442355768,0.7562945788,-0.8321584754,https://github.com/MtnViewJohn/context-free,https://github.com/MtnViewJohn/context-free,2911.319537037,1,9,0,3,27,0,9,36 +ConvertAll,0.1771895993,1.8709004223,-0.3855879122,https://salsa.debian.org/qt-kde-team/extras/convertall, https://github.com/doug-101/ConvertAll.git,72.0215277778,1,2,0,1,0,0,0,1 +convertdate,-1.0779704926,1.5263503581,-1.6372696683,https://salsa.debian.org/python-team/packages/convertdate, https://github.com/fitnr/convertdate,2873.5651041667,10,11,0,11,44,0,0,45 +project--copyright-update,-0.5521971605,1.8066389929,-1.1431761187,https://salsa.debian.org/debian/copyright-update, https://github.com/jaalto/project--copyright-update,3367.8622453704,0,1,0,1,0,0,0,1 +core.cache,-0.5610215639,2.4088514058,-1.3030738883,https://salsa.debian.org/clojure-team/core-cache-clojure, https://github.com/clojure/core.cache,4284.5170138889,8,15,0,13,17,0,18,44 +cruft,1.801661645,2.7360925805,1.1501879975,https://github.com/a-detiste/cruft,https://github.com/a-detiste/cruft,5211.5065740741,2,8,0,7,3,0,0,7 +cruft-ng,0.142059124,2.3097088035,-0.5171739502,https://github.com/a-detiste/cruft-ng,https://github.com/a-detiste/cruft-ng,3368.4031018519,2,10,0,10,11,0,1,13 +cryfs,-0.1323512993,0.8693806221,-0.3694530273,https://github.com/davesteele/cryfs,https://github.com/davesteele/cryfs,3180.9594560185,28,15,0,27,1,0,0,27 +CTDConverter,-2.8525515304,-0.4549866674,-3.3207596251,https://salsa.debian.org/med-team/ctdconverter, https://github.com/WorkflowConversion/CTDConverter,2616.9146180556,5,13,0,9,15,0,0,15 +cupt,-0.7851662489,-0.7413560004,-0.8102098137,https://github.com/jackyf/cupt/tree/master,https://github.com/jackyf/cupt,3964.469525463,4,7,0,6,9,0,1,14 +curvedns,-1.1461706987,0.1127414426,-1.3738129892,https://salsa.debian.org/pkg-security-team/curvedns, https://github.com/curvedns/curvedns.git,3466.7757291667,0,3,0,2,9,0,0,9 +cwm,-0.5002044281,1.5042184567,-0.9352825389,https://github.com/jamesmcdonald/cwm,https://github.com/jamesmcdonald/cwm,5679.8960532407,1,30,0,0,1,0,0,1 +cycle,-0.313126049,0.6954651903,-0.7844178818,https://salsa.debian.org/med-team/cycle, https://github.com/metlov/cycle.git,229.9525347222,0,1,0,1,0,0,0,1 +project--perl-ddir,-0.9126372061,1.4246841106,-1.4714839475,https://salsa.debian.org/debian/ddir, https://github.com/jaalto/project--perl-ddir.git,3338.2834722222,0,1,0,1,2,0,0,2 +debomatic,-0.8158097197,-0.1371156791,-1.0821998073,https://salsa.debian.org/python-team/packages/debomatic, https://github.com/debomatic/debomatic,5739.495,4,16,0,13,18,0,0,22 +debootstick,-0.5087170385,0.8382307544,-0.8815589055,https://github.com/drakkar-lig/debootstick,https://github.com/drakkar-lig/debootstick,3036.0772106482,5,8,0,8,20,0,2,23 +debian-debuerreotype,-1.063173434,1.4648781183,-1.6297873496,https://github.com/debuerreotype/debian-debuerreotype,https://github.com/debuerreotype/debian-debuerreotype,2712.8558217593,0,4,0,2,2,0,0,3 +deepin-notifications,0.3474442725,3.6547785603,-0.4321808993,https://salsa.debian.org/pkg-deepin-team/deepin-notifications, https://github.com/linuxdeepin/deepin-notifications,2025.0469791667,4,26,0,14,18,0,0,30 +dicteval,-2.9536986334,-0.1320875709,-3.6889555809,https://salsa.debian.org/debian/dicteval, https://github.com/osantana/dicteval.git,1110.6433217593,3,12,0,10,14,0,0,14 +ding-libs,0.3833422556,2.4936424716,-0.1381470129,https://salsa.debian.org/sssd-team/ding-libs, https://github.com/SSSD/ding-libs,5249.6200810185,15,12,0,14,16,0,0,23 +dir2ogg,0.2396946845,1.641521491,-0.3190929184,https://github.com/julian-klode/dir2ogg,https://github.com/julian-klode/dir2ogg,1310.0299884259,1,5,1,3,9,0,0,10 +direnv-deb,-0.006884838,1.7585706473,-0.4511605857,https://github.com/direnv/direnv-deb,https://github.com/direnv/direnv-deb,3256.5212847222,1,6,0,1,1,0,0,2 +node-dirty,-0.8909885733,2.6227016495,-1.9512157567,https://salsa.debian.org/js-team/dirty.js, https://github.com/felixge/node-dirty.git,4940.3282175926,7,21,0,20,52,0,0,53 +discus,1.1705020939,3.7454601144,0.0821077036,https://salsa.debian.org/debian/discus, https://github.com/ncarrier/discus.git,1119.0192592593,0,4,0,1,3,0,0,3 +diskscan,-0.2808442196,0.3836383801,-0.4193484695,https://salsa.debian.org/debian/diskscan, https://github.com/baruch/diskscan.git,1436.448587963,0,3,0,3,32,0,0,32 +ditaa,1.1445611741,3.5538586753,0.1428331298,https://salsa.debian.org/java-team/ditaa, https://github.com/stathissideris/ditaa,4647.8960416667,3,17,0,12,73,0,0,74 +dizzy,0.5207937556,2.8020455015,-0.2161435151,https://salsa.debian.org/perl-team/modules/packages/dizzy, https://github.com/penma/dizzy.git,1717.3470949074,4,6,0,4,1,0,0,5 +django-bitfield,-1.1647703491,1.6767739512,-1.9098342392,https://salsa.debian.org/python-team/packages/django-bitfield, https://github.com/disqus/django-bitfield,4482.6217939815,15,33,0,35,84,0,0,98 +django-cas-server,-1.308896058,2.2292815551,-2.3158506417,https://salsa.debian.org/python-team/packages/django-cas-server, https://github.com/nitmir/django-cas-server.git,3041.6335532407,8,9,0,13,46,0,0,47 +pkg-django-compat,-1.3241602951,-0.1886083427,-1.7657341927,https://github.com/Linaro/pkg-django-compat.git,https://github.com/Linaro/pkg-django-compat.git,1206.0878819445,0,6,0,3,3,0,0,3 +django-cors-headers,-1.1139410876,0.0671040287,-1.3367389103,https://salsa.debian.org/python-team/packages/django-cors-headers, https://github.com/adamchainz/django-cors-headers,3979.5858333333,47,28,0,63,10,0,0,66 +django-guardian,-0.6318405623,-0.1756665381,-0.763973424,https://salsa.debian.org/python-team/packages/django-guardian, https://github.com/lukaszb/django-guardian,4311.9324074074,74,100,0,127,8,0,0,133 +pkg-django-restricted-resource,-1.2869731875,0.2279132109,-1.7519542903,https://github.com/Linaro/pkg-django-restricted-resource,https://github.com/Linaro/pkg-django-restricted-resource,3194.8619212963,0,7,0,4,3,0,0,5 +django-reversion,-0.777150964,0.9983388355,-1.4152875579,https://salsa.debian.org/python-team/packages/django-reversion, https://github.com/etianen/django-reversion.git,5522.8556828704,31,173,0,144,17,0,14,167 +django-setuptest,-1.0039883027,1.8917399808,-1.7398796439,https://salsa.debian.org/python-team/packages/django-setuptest, https://github.com/praekelt/django-setuptest.git,1589.0550810185,0,22,0,14,37,0,0,38 +pkg-django-testproject,-0.7999395109,1.6435435249,-1.4494523946,https://github.com/Linaro/pkg-django-testproject,https://github.com/Linaro/pkg-django-testproject,3196.2780324074,0,5,0,3,4,0,0,4 +pkg-django-testscenarios,-1.3257146932,-0.0322578006,-1.6658090716,https://github.com/Linaro/pkg-django-testscenarios,https://github.com/Linaro/pkg-django-testscenarios,3196.2901157408,0,7,0,4,5,0,0,5 +django-xmlrpc,-1.0500707985,0.6741579236,-1.5157519079,https://salsa.debian.org/python-team/packages/django-xmlrpc, https://github.com/Fantomas42/django-xmlrpc,2632.3087384259,1,5,0,2,8,0,0,8 +dmarc-cat,-0.1483894393,3.3771756375,-1.1901233623,https://salsa.debian.org/go-team/packages/dmarc-cat, https://github.com/keltia/dmarc-cat.git,1521.7803009259,0,4,0,3,19,0,0,19 +dms,-1.7923560941,0.9490139495,-3.0040589667,https://github.com/grantma/dms,https://github.com/grantma/dms,1425.0333101852,0,7,0,1,0,0,0,1 +dnstap-ldns,-1.9630028548,0.4908382481,-2.5788124384,https://salsa.debian.org/dns-team/dnstap-ldns, https://github.com/dnstap/dnstap-ldns.git,2977.0303009259,3,7,0,5,6,0,0,7 +dnswalk,1.9006613427,5.3064955884,0.5879892736,https://salsa.debian.org/debian/dnswalk, https://github.com/davebarr/dnswalk.git,3790.9134837963,0,2,0,2,5,0,0,5 +docdiff,-0.3637756064,0.6895030349,-0.723612814,https://salsa.debian.org/debian/docdiff, https://github.com/hisashim/docdiff,3912.6548148148,0,6,1,5,11,0,2,13 +Droopy,-0.8939869433,1.3787169177,-1.3337026104,https://salsa.debian.org/debian/droopy, https://github.com/stackp/Droopy.git,5280.2147685185,0,7,0,4,33,0,0,33 +drumkv1,-0.1956463038,1.0706720909,-0.4594280916,https://salsa.debian.org/multimedia-team/drumkv1, https://github.com/rncbc/drumkv1.git,4115.9090277778,1,13,0,4,23,0,1,24 +dtach,0.4720927384,2.0532258223,-0.05646356,https://salsa.debian.org/voelkel-guest/dtach, https://github.com/crigler/dtach.git,1708.1544328704,2,2,0,3,25,0,0,26 +dtfabric,0.0544342308,2.3417288031,-0.4793676181,https://salsa.debian.org/debian/dtfabric, https://github.com/libyal/dtfabric.git,2597.9576388889,0,1,0,1,6,0,1,7 +dumpet,0.8119567162,4.8329646447,-0.595687567,https://salsa.debian.org/debian/dumpet, https://github.com/rhboot/dumpet.git,4953.9319097222,2,5,0,3,2,0,0,4 +dvbcut-deb,-0.140015948,0.3995494726,-0.3603098157,https://github.com/bernhardu/dvbcut-deb,https://github.com/bernhardu/dvbcut-deb,2301.5843402778,21,3,0,13,12,0,0,21 +dvisvgm,0.1719982822,1.5508413641,-0.14266231,https://github.com/debian-tex/dvisvgm,https://github.com/debian-tex/dvisvgm,1541.3238194445,1,6,0,3,2,0,0,3 +dymo-cups-drivers,0.1695490981,1.2653423504,-0.0340436611,https://salsa.debian.org/printing-team/dymo-cups-drivers, https://github.com/matthiasbock/dymo-cups-drivers,4079.6409837963,4,11,0,5,30,0,0,31 +e2tools,-0.3154826477,0.572945917,-0.5928968266,https://salsa.debian.org/debian/e2tools, https://github.com/e2tools/e2tools,1196.5083217593,2,6,3,6,14,0,0,16 +easygit,0.383586011,3.5957594474,-0.5807571227,https://salsa.debian.org/debian/easygit, https://github.com/newren/easygit,3676.0657175926,399,15,0,318,0,0,0,318 +easyprocess,-0.5379917332,1.9459970198,-1.0219432067,https://salsa.debian.org/python-team/packages/easyprocess, https://github.com/ponty/easyprocess.git,4652.3978009259,3,9,0,6,23,0,0,23 +ecdsautils,-0.5842189084,1.6112758398,-1.017052069,https://salsa.debian.org/communitywlan-team/ecdsautils, https://github.com/freifunk-gluon/ecdsautils,3436.625625,1,8,0,5,0,0,0,5 +edbrowse,0.3708322115,1.5829127394,-0.1941202595,https://salsa.debian.org/a11y-team/edbrowse, https://github.com/CMB/edbrowse.git,5783.5197453704,9,22,0,20,30,0,10,47 +emacs-python-environment,-0.6497796464,0.8881585898,-0.9254847969,https://salsa.debian.org/emacsen-team/emacs-python-environment, https://github.com/tkf/emacs-python-environment.git,626.8352777778,0,3,0,3,12,0,0,12 +engauge_debian,0.4683184378,1.884463339,-0.1321998122,https://github.com/winchen/engauge_debian,https://github.com/winchen/engauge_debian,3059.1429976852,0,6,0,2,1,0,0,2 +enjarify,0.4273596447,3.1508079803,-0.3690926561,https://salsa.debian.org/android-tools-team/enjarify, https://github.com/Storyyeller/enjarify,1738.1109490741,3,12,0,10,26,0,0,30 +entrypoints,0.857419697,4.1047834353,0.0074721981,https://salsa.debian.org/python-team/packages/entrypoints, https://github.com/takluyver/entrypoints,2468.1372569445,5,10,0,10,52,0,0,52 +enzyme,0.2209281122,2.7508227467,-0.5362781772,https://salsa.debian.org/python-team/packages/enzyme, https://github.com/Diaoul/enzyme,665.1386111111,0,3,0,2,20,0,0,20 +epoptes,-0.5424519728,0.3737235027,-0.8396779959,https://github.com/epoptes/epoptes,https://github.com/epoptes/epoptes,4351.4067939815,4,10,0,8,6,0,0,11 +epr-api,-0.1835594424,2.5490628716,-0.8931266505,https://salsa.debian.org/debian-gis-team/epr-api, https://github.com/bcdev/epr-api,4843.1898611111,0,19,0,7,3,0,0,8 +erfa,0.2626332321,2.3178268988,-0.1835083824,https://salsa.debian.org/debian-astro-team/erfa, https://github.com/liberfa/erfa,3687.0853240741,3,14,0,13,25,0,0,29 +eris,-0.632476633,0.6133940856,-1.1993507243,https://salsa.debian.org/games-team/eris, https://github.com/worldforge/eris,5633.2405092593,2,7,0,8,6,0,0,10 +bear,-1.5598707008,0.7740571851,-2.0549566735,https://salsa.debian.org/erlang-team/packages/erlang-bear, https://github.com/boundary/bear.git,985.0124652778,0,11,0,6,17,0,0,17 +cuttlefish,-1.1570169301,1.4079371161,-1.9722441303,https://salsa.debian.org/erlang-team/packages/erlang-cuttlefish, https://github.com/Kyorai/cuttlefish.git,3504.2075115741,6,42,0,29,12,0,17,51 +getopt,-1.2464014688,1.2405525277,-1.7527351047,https://salsa.debian.org/erlang-team/packages/erlang-getopt, https://github.com/jcomellas/getopt,5121.0564583333,4,19,0,16,31,0,0,33 +extrace,-0.716911996,1.6418001527,-1.2621214591,https://salsa.debian.org/debian/extrace, https://github.com/chneukirchen/extrace,3149.892662037,4,2,0,5,5,0,0,6 +eyeD3-debian,1.2363220835,2.3225067373,0.5919861745,https://github.com/gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian,2546.8571180556,1,6,0,1,2,0,0,3 +faac,0.4086376314,1.7882056088,-0.0272312251,https://salsa.debian.org/multimedia-team/faac, https://github.com/knik0/faac,5409.5071180556,6,12,0,10,30,0,0,30 +faad2,1.0544175056,2.2339624185,0.4716640534,https://salsa.debian.org/multimedia-team/faad2, https://github.com/knik0/faad2.git,5741.3708333333,16,14,0,22,44,0,0,49 +faba-icon-theme,0.8911212387,4.4384740676,-0.1142443813,https://github.com/ubuntubudgie/faba-icon-theme/tree/debian,https://github.com/ubuntubudgie/faba-icon-theme,1592.9366782407,0,6,0,2,0,0,0,2 +fabulous,-1.9004216273,-0.0667224502,-2.4935029916,https://salsa.debian.org/python-team/packages/fabulous, https://github.com/jart/fabulous.git,4223.1852546296,4,8,0,7,25,5,0,30 +fadecut,-0.6673500925,1.8538364578,-1.1385440983,https://github.com/fadecut/fadecut/tree/debian,https://github.com/fadecut/fadecut,2792.815474537,1,14,5,2,11,0,1,12 +fai,-0.1410290031,-0.0834131887,-0.1875070234,https://github.com/faiproject/fai,https://github.com/faiproject/fai,5773.004537037,75,16,0,54,6,0,0,57 +fakesleep,-2.4812653648,0.0741874264,-3.0028931926,https://salsa.debian.org/python-team/packages/fakesleep, https://github.com/wearpants/fakesleep,0.0144907407,0,1,0,1,3,0,0,3 +fastd,0.3335142219,3.127871508,-0.5170005596,https://salsa.debian.org/communitywlan-team/fastd, https://github.com/NeoRaider/fastd.git,4199.101087963,7,5,0,10,31,0,1,35 +ft2-clone,-1.4004624291,1.3055702677,-2.1338147005,https://salsa.debian.org/multimedia-team/fasttracker2, https://github.com/8bitbubsy/ft2-clone,1461.1673958333,1,7,0,7,46,0,0,46 +fastx_toolkit,-0.3457886057,1.0929975464,-0.7809122121,https://salsa.debian.org/med-team/fastx-toolkit, https://github.com/agordon/fastx_toolkit.git,3133.6998726852,1,6,0,3,38,0,0,39 +fatcat,0.4842442346,3.2701121154,-0.2692644397,https://salsa.debian.org/pkg-security-team/fatcat, https://github.com/gregwar/fatcat,3248.5118981482,2,7,0,6,33,0,0,33 +fatresize,1.7814820731,4.9928976784,0.5330410517,https://salsa.debian.org/parted-team/fatresize, https://github.com/ya-mouse/fatresize,2189.5325,0,6,0,4,33,0,0,33 +fbpager,1.5882380186,4.0001262231,0.5019616446,https://salsa.debian.org/debian/fbpager, https://github.com/fluxbox/fbpager,37.6531828704,0,2,0,1,2,0,0,3 +fbset,1.3134317762,2.3999244161,0.6559617709,https://github.com/sudipm-mukherjee/fbset.git,https://github.com/sudipm-mukherjee/fbset.git,5178.7434375,2,3,0,1,1,0,0,2 +fcgiwrap,0.3134577921,1.1712166293,-0.0802338795,https://salsa.debian.org/debian/fcgiwrap, https://github.com/gnosek/fcgiwrap,2589.7245138889,5,10,0,10,65,0,0,68 +fcitx-libpinyin,1.3904314469,5.5830539288,-0.0318276844,https://salsa.debian.org/input-method-team/fcitx-libpinyin, https://github.com/fcitx/fcitx-libpinyin,4359.6518287037,2,6,0,6,22,0,0,22 +pkg-fdm,0.3672168929,2.1938634044,-0.4626394068,https://github.com/ft/pkg-fdm/,https://github.com/ft/pkg-fdm,5107.6653125,0,3,0,2,1,0,0,3 +fizmo-ncursesw,-0.2032604477,2.2028162183,-0.7770451436,https://github.com/chrender/fizmo-ncursesw,https://github.com/chrender/fizmo-ncursesw,4851.4142708333,0,5,0,2,1,0,0,2 +flake8-polyfill,-0.2905096989,2.1500667272,-0.8317869422,https://salsa.debian.org/python-team/packages/flake8-polyfill, https://github.com/PyCQA/flake8-polyfill.git,2673.1830902778,0,6,0,4,5,0,0,7 +flam3,0.7831072925,3.742743382,-0.2650609153,https://salsa.debian.org/debian/flam3, https://github.com/scottdraves/flam3,1152.1052083333,1,7,0,3,25,0,4,29 +flask-jwt-simple,-3.7410042156,-1.191605345,-4.3201217059,https://salsa.debian.org/python-team/packages/flask-jwt-simple, https://github.com/vimalloc/flask-jwt-simple.git,1518.8651041667,3,4,0,3,21,0,0,22 +flask-ldapconn,-1.0816817059,1.8547595955,-1.9421748383,https://salsa.debian.org/python-team/packages/flask-ldapconn, https://github.com/rroemhild/flask-ldapconn,3190.6329976852,4,10,0,11,32,0,0,32 +flask-silk,-0.0747361696,1.0191065444,-0.3413292213,https://salsa.debian.org/python-team/packages/flask-silk, https://github.com/sublee/flask-silk.git,2842.4741087963,0,7,0,3,4,0,0,4 +Junicode-font,0.9749123035,2.3528322079,0.3195301325,https://salsa.debian.org/fonts-team/fonts-junicode, https://github.com/psb1558/Junicode-font,1677.9374305556,3,4,0,6,15,0,0,19 +font-abyssinica,1.1912418458,4.4703518731,0.0766166908,https://salsa.debian.org/fonts-team/fonts-sil-abyssinica, https://github.com/silnrsi/font-abyssinica,1729.8640509259,1,8,0,7,2,0,0,7 +font-andika,0.226819753,1.7302356665,-0.1521199628,https://salsa.debian.org/fonts-team/fonts-sil-andika, https://github.com/silnrsi/font-andika,2361.7046180556,0,9,0,6,6,0,0,11 +foomatic-db,1.5209798812,2.5785791995,0.8766539303,https://salsa.debian.org/printing-team/foomatic-db, https://github.com/OpenPrinting/foomatic-db.git,5681.1902083333,5,53,0,16,22,0,0,30 +formiko-debian,0.1628471672,3.1297243219,-0.6061311313,https://github.com/ondratu/formiko-debian,https://github.com/ondratu/formiko-debian,1770.974849537,2,2,0,3,3,0,0,3 +fortunes-br,0.3826030919,2.4726357351,-0.4239383871,https://github.com/leitao/fortunes-br.git,https://github.com/leitao/fortunes-br.git,0.0056944444,0,1,0,1,0,0,0,1 +fortunes-mario-deb,0.2746196581,1.8773332397,-0.3193714441,http://github.com/fike/fortunes-mario-deb,http://github.com/fike/fortunes-mario-deb,1606.775150463,3,8,0,0,0,0,0,0 +fpgatools,0.2633177336,3.6230241615,-0.6179143711,https://github.com/Wolfgang-Spraul/fpgatools,https://github.com/Wolfgang-Spraul/fpgatools,1132.0893287037,1,6,0,5,0,0,0,5 +fqterm,-1.4778336115,-0.4100027914,-1.8864383483,https://salsa.debian.org/chinese-team/fqterm, https://github.com/mytbk/fqterm,3515.765625,5,7,0,7,21,0,1,23 +FreeAlchemist,0.059449695,2.2746437451,-0.4707582387,https://salsa.debian.org/python-team/packages/freealchemist, https://github.com/dakk/FreeAlchemist,3586.1830324074,0,3,0,1,0,0,0,1 +tools,0.0533159838,3.7765554083,-1.2991303501,https://salsa.debian.org/freedict-team/freedict-tools, https://github.com/freedict/tools.git,2348.65375,1,10,0,9,17,0,0,0 +freedv-gui,-0.3213805891,1.1426935949,-0.7378333115,https://salsa.debian.org/debian-hamradio-team/freedv, https://github.com/drowe67/freedv-gui,3043.6515972222,1,33,0,13,0,0,0,13 +freewheeling,0.5792903992,2.5071657819,-0.2534567966,https://salsa.debian.org/multimedia-team/freewheeling, https://github.com/free-wheeling/freewheeling,5218.8730671296,1,3,0,3,28,0,2,30 +frozen-bubble,0.1650357772,0.4601977225,-0.0231433032,https://salsa.debian.org/perl-team/modules/packages/frozen-bubble, https://github.com/kthakore/frozen-bubble.git,3389.417650463,4,17,0,10,23,0,0,27 +fyba,0.4754986254,2.6289545812,-0.0402028003,https://salsa.debian.org/debian-gis-team/fyba, https://github.com/kartverket/fyba.git,1185.3266203704,1,10,0,5,17,0,0,17 +g2,-0.2327989276,0.4800818237,-0.5737455032,https://salsa.debian.org/med-team/g2, https://github.com/danielrmeyer/g2,0,0,1,0,0,3,0,0,3 +ganeti-os-noop,-0.2281036129,2.1546963922,-0.852366861,https://salsa.debian.org/ganeti-team/ganeti-os-noop, https://github.com/grnet/ganeti-os-noop,677.1858449074,0,6,0,2,5,1,0,6 +ganglia-modules-linux,0.0664199188,1.2956066726,-0.272928033,https://salsa.debian.org/debian/ganglia-modules-linux, https://github.com/ganglia/ganglia-modules-linux.git,1617.3040972222,0,6,0,3,4,0,0,4 +sonata,-0.5294268825,1.0612461481,-0.8314567315,https://salsa.debian.org/science-team/gap-sonata, https://github.com/gap-packages/sonata.git,4006.9744907407,4,7,0,4,8,0,0,60 +toric,-0.2451456454,2.4949167647,-0.8186260968,https://salsa.debian.org/science-team/gap-toric, https://github.com/gap-packages/toric.git,3029.62,4,5,0,5,6,0,0,7 +garmintools,-0.2174342508,0.5366088912,-0.517674515,https://salsa.debian.org/debian/garmin-forerunner-tools, https://github.com/jorgesca/garmintools.git,2685.7982986111,0,5,0,3,1,0,0,4 +gatk-native-bindings,-0.1009865887,2.4624009827,-0.676296384,https://salsa.debian.org/java-team/gatk-native-bindings, https://github.com/broadinstitute/gatk-native-bindings,505.8018981481,1,4,0,3,6,0,0,6 +gau2grid,-0.815898809,1.1342927173,-1.4069047503,https://salsa.debian.org/debichem-team/gau2grid, https://github.com/dgasmith/gau2grid,1166.9793981482,4,10,0,8,18,0,0,18 +gconjugue,-1.193395361,0.6134141951,-1.7117987645,https://salsa.debian.org/debian/gconjugue, https://github.com/jalvesaq/gconjugue,2752.1538888889,0,4,0,1,3,0,0,3 +gdnsd,-2.9678392165,-0.3979054994,-3.671905411,https://github.com/paravoid/gdnsd,https://github.com/paravoid/gdnsd,4241.3566550926,2,11,0,9,3,0,0,11 +geki2,-0.2585741806,1.1302096458,-0.6025965378,https://salsa.debian.org/games-team/geki2, https://github.com/Quipyowert2/geki2,1827.8569328704,0,3,0,1,1,0,0,1 +gelemental,0.1018714919,1.200080654,-0.3080550909,https://salsa.debian.org/debichem-team/gelemental, https://github.com/ginggs/gelemental,1560.5809722222,8,4,0,9,9,0,0,12 +gsl,-1.7873471074,-0.175086234,-2.0689484551,https://github.com/bluca/gsl,https://github.com/bluca/gsl,3538.6016782407,4,35,0,24,1,0,0,0 +genetic,0.2707726153,2.7069673968,-0.4380759284,https://salsa.debian.org/science-team/genetic, https://github.com/skoblov-lab/genetic,1118.9616550926,2,4,0,1,1,0,0,1 +genext2fs,-0.2882576546,0.2063423739,-0.5033680475,https://salsa.debian.org/debian/genext2fs, https://github.com/bestouff/genext2fs,3682.2901041667,0,10,0,5,18,0,0,19 +gimp-texturize,0.1555855572,1.2662980132,-0.1945666027,https://salsa.debian.org/debian/gimp-texturize, https://github.com/lmanul/gimp-texturize.git,3625.7350810185,1,11,0,4,8,0,0,8 +ginkgocadx,-0.2628483641,0.2619463655,-0.4738586037,https://salsa.debian.org/med-team/ginkgocadx, https://github.com/gerddie/ginkgocadx.git,2123.8061111111,1,5,0,5,27,0,0,27 +git-lfs,0.1085080655,1.2887939983,-0.2117786782,https://salsa.debian.org/go-team/packages/git-lfs, https://github.com/github/git-lfs.git,3479.3090162037,54,197,0,202,5,0,124,330 +git-remote-hg,1.3804187017,3.9090882195,0.2873521231,https://salsa.debian.org/debian/git-remote-hg, https://github.com/mnauw/git-remote-hg/commits/master,5185.326875,55,11,0,0,0,0,0,0 +debian,-0.5135509471,0.0361166657,-0.7320665039,https://salsa.debian.org/debian/github-backup,https://salsa.debian.org/debian/github-backup,3299.6675694445,9,13,0,0,0,0,0,2 +gitless,-1.0129472172,1.1745444276,-1.5532855313,https://salsa.debian.org/python-team/packages/gitless, https://github.com/sdg-mit/gitless.git,1580.4098032407,8,31,0,24,19,0,0,38 +gitmagic,0.0058626792,1.3968023647,-0.4117773836,https://salsa.debian.org/debian/gitmagic, https://github.com/blynn/gitmagic,4774.4399537037,12,73,0,47,40,0,3,65 +giza,-0.0821548044,1.7697955982,-0.4330998724,https://salsa.debian.org/debian-astro-team/giza, https://github.com/danieljprice/giza,4755.9934837963,2,14,0,9,20,0,1,23 +gjots2,0.4947222776,2.209205505,-0.3492735275,https://github.com/leggewie-DM/gjots2,https://github.com/leggewie-DM/gjots2,4231.0400231482,3,4,0,1,2,0,0,2 +gkrellm-cpufreq-debian,0.5206628103,3.0983277333,-0.2908114881,https://github.com/glaubitz/gkrellm-cpufreq-debian,https://github.com/glaubitz/gkrellm-cpufreq-debian,3039.7838657408,1,2,0,1,3,0,0,3 +gkrelluim,-1.2524698575,0.70104569,-1.6202431051,https://salsa.debian.org/debian/gkrelluim, https://github.com/dai-vdr/gkrelluim.git,5001.2533333333,0,1,0,0,0,0,0,0 +glimpse,4.8421978907,8.0624327916,3.3845931676,https://github.com/az143/glimpse,https://github.com/az143/glimpse,3292.5989583333,0,6,0,2,2,0,0,4 +global,0.9251069439,1.8029807522,0.3956705838,https://github.com/punitagrawal/global,https://github.com/punitagrawal/global,2253.924212963,4,4,0,5,4,0,0,6 +gmetric4j,-2.7598692877,-0.5906102463,-3.2950920542,https://github.com/ganglia/gmetric4j,https://github.com/ganglia/gmetric4j,3040.7001273148,1,11,0,5,21,0,2,23 +gnarwl,-1.0091273178,-0.1197325367,-1.4783256893,https://salsa.debian.org/debian/gnarwl, https://github.com/fln/gnarwl,2570.5118287037,1,9,0,5,7,0,0,8 +dash-to-panel,0.1124971506,2.1907441864,-0.4246734255,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dash-to-panel, https://github.com/home-sweet-gnome/dash-to-panel.git,2629.7539467593,40,85,0,86,104,0,2,187 +dash-to-dock,-0.0287596469,0.9830411728,-0.301129726,https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-dashtodock, https://github.com/micheleg/dash-to-dock.git,4172.0530092593,157,30,0,142,64,0,0,197 +GoldenEye,0.2914223421,3.2376647843,-0.4228022843,https://salsa.debian.org/pkg-security-team/goldeneye, https://github.com/jseidl/GoldenEye,3012.1110532407,1,7,0,5,0,0,0,5 +apps-gorm,0.3792145956,1.5053938025,-0.0975198397,https://salsa.debian.org/gnustep-team/gorm.app, https://github.com/gnustep/apps-gorm,5785.6866782407,3,22,0,21,13,0,0,27 +gosa-core,-0.3775685336,-0.2189132452,-0.4901429898,https://salsa.debian.org/debian-edu-pkg-team/gosa, https://github.com/gosa-project/gosa-core,5676.7658217593,7,31,0,8,18,0,0,20 +gosa-plugins-mailaddress,-2.3383979882,0.2643568587,-2.9856475557,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-mailaddress, https://github.com/gosa-project/gosa-plugins-mailaddress,2274.6763657408,0,4,0,2,4,0,0,4 +gosa-plugins-netgroups,-0.9914007629,0.4777372444,-1.3827009663,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-netgroups, https://github.com/gosa-project/gosa-plugins-netgroups,1422.7270023148,0,3,0,1,2,0,0,2 +gosa-plugins-pwreset,-1.3598337718,0.2879233373,-1.6292931799,https://salsa.debian.org/debian-edu-pkg-team/gosa-plugin-pwreset, https://github.com/gosa-project/gosa-plugins-pwreset,2184.168125,0,3,0,1,1,0,0,2 +linux-crypto,-2.3611563875,-0.8645584676,-2.6234146821,https://salsa.debian.org/lumag/gost-crypto, https://github.com/GostCrypt/linux-crypto.git,1726.5372222222,2,3,0,2,3,0,0,3 +gpicview,2.0702671645,4.218597649,1.053942169,https://salsa.debian.org/lxde-team/gpicview, https://github.com/lxde/gpicview,5713.732662037,76,42,0,59,6,0,0,60 +gpp,0.6295645906,3.8657120667,-0.3089812218,https://salsa.debian.org/debian/gpp, https://github.com/logological/gpp/commits/master,5185.326875,55,11,0,0,0,0,0,0 +gpustat,-0.7414031604,1.6738603051,-1.1885003927,https://salsa.debian.org/nvidia-team/gpustat, https://github.com/wookayin/gpustat,2769.8730787037,16,5,3,17,31,0,0,44 +gpyfft,-0.0412032188,3.0931064376,-0.9221041966,https://salsa.debian.org/science-team/gpyfft, https://github.com/geggo/gpyfft,2840.7253009259,4,10,0,8,33,0,0,33 +gss-ntlmssp,-1.0758514008,0.7187446283,-1.5147853098,https://salsa.debian.org/freeipa-team/gss-ntlmssp, https://github.com/gssapi/gss-ntlmssp,3594.9212152778,10,4,0,7,12,0,1,19 +gtkguitune,-0.2491277386,0.3826186785,-0.4591495452,https://github.com/bobek/gtkguitune,https://github.com/bobek/gtkguitune,3186.2603587963,1,3,0,2,1,0,0,2 +gtkterm,1.6614158143,3.2236786848,0.801083568,https://salsa.debian.org/debian/gtkterm, https://github.com/Jeija/gtkterm.git,4575.4452083333,6,17,0,14,44,0,0,46 +gtranscribe,-0.5259853209,1.6855244705,-0.950618829,https://salsa.debian.org/debian/gtranscribe, https://github.com/innir/gtranscribe,3558.9036921296,0,5,1,2,14,0,0,14 +guake-indicator,0.2250848406,2.5013911283,-0.5378976224,https://salsa.debian.org/debian/guake-indicator/, https://github.com/Ozzyboshi/guake-indicator,2489.1411226852,1,8,0,4,11,0,0,11 +gufw,1.8217065732,4.3624901931,0.7344598754,https://salsa.debian.org/python-team/packages/gui-ufw, https://github.com/costales/gufw.git,1462.9175578704,0,7,0,8,66,0,0,67 +guidedog,-1.2127820662,0.0904612737,-1.6926274962,https://github.com/antocm/guidedog/tree/debian,https://github.com/antocm/guidedog,2480.6617361111,0,5,0,2,1,0,1,4 +guile-ssh,-0.8980031766,3.1579670718,-2.0800708726,https://salsa.debian.org/debian/guile-ssh, https://github.com/artyom-poptsov/guile-ssh.git,3867.3559837963,0,10,0,8,28,0,0,28 +gup,-5.1695702647,-4.4485454537,-5.4289590562,https://github.com/rfc1036/gup,https://github.com/rfc1036/gup,3593.8147453704,0,1,0,1,0,0,0,1 +guzzle_sphinx_theme,-0.8704022633,0.681504729,-1.1374775257,https://salsa.debian.org/python-team/packages/guzzle-sphinx-theme, https://github.com/guzzle/guzzle_sphinx_theme.git,2860.3134027778,3,11,0,12,42,0,0,42 +debian-gwaei,-0.2415301818,1.2081497422,-0.8722234296,https://github.com/norbusan/debian-gwaei,https://github.com/norbusan/debian-gwaei,2765.6634375,2,2,0,2,3,0,0,3 +gwakeonlan,0.8535169941,3.0627414632,-0.0322068923,https://salsa.debian.org/debian/gwakeonlan, https://github.com/muflone/gwakeonlan.git,4933.5151273148,2,13,0,10,35,0,0,35 +gwc,0.608752043,1.6289733041,0.0519069422,https://salsa.debian.org/multimedia-team/gwc, https://github.com/AlisterH/gwc.git,3165.1705324074,1,5,0,3,6,0,0,7 +gxkb,0.3787936181,4.0698464881,-0.6334875708,https://github.com/mati75/gxkb.git,https://github.com/mati75/gxkb.git,2732.567650463,0,4,0,2,2,0,0,3 +gxtuner,1.2625236588,4.7533829415,0.0339744566,https://salsa.debian.org/multimedia-team/gxtuner, https://github.com/brummer10/gxtuner,1914.1892013889,3,6,0,4,9,0,0,9 +h2o,-0.7321540349,0.815719718,-1.2812732312,https://salsa.debian.org/debian/h2o, https://github.com/h2o/h2o,4716.5859490741,44,155,4,123,17,0,22,154 +h5utils,-0.0466394355,0.6200500479,-0.3159473526,https://salsa.debian.org/debian-gis-team/h5utils, https://github.com/NanoComp/h5utils.git,5379.8304166667,0,6,0,3,18,0,0,18 +hacktv,-2.0082673058,0.152267044,-2.4727541201,https://salsa.debian.org/debian-hamradio-team/hacktv, https://github.com/fsphil/hacktv,2394.7430787037,3,7,0,8,43,0,0,45 +HandBrake,1.3904843391,2.685148707,0.6451582617,https://salsa.debian.org/multimedia-team/handbrake, https://github.com/HandBrake/HandBrake,5786.3675231482,105,51,3,108,0,0,2,110 +hexedit,1.4888142147,3.4858685969,0.5617313768,https://salsa.debian.org/debian/hexedit, https://github.com/pixel/hexedit.git,5414.7907060185,8,14,0,14,45,0,0,45 +hexter,0.4080603481,2.7603000142,-0.3443231764,https://salsa.debian.org/multimedia-team/hexter, https://github.com/smbolton/hexter.git ,4380.3528472222,0,6,0,5,17,0,0,17 +hfst-ospell,0.2591920737,1.3643095914,-0.0408851515,https://salsa.debian.org/science-team/hfst-ospell, https://github.com/hfst/hfst-ospell.git,4745.7576967593,1,17,0,8,24,0,1,26 +hijra,-1.1521044725,0.9019784859,-1.9896405953,https://salsa.debian.org/islamic-team/hijra, https://github.com/ojuba-org/hijra.git,4311.2884143519,0,8,0,4,4,0,0,6 +hinawa-utils,-1.8036430906,0.9409258571,-2.4422801802,https://salsa.debian.org/debian/hinawa-utils/, https://github.com/takaswie/hinawa-utils.git,2264.2987962963,1,2,0,2,8,0,0,8 +hiro,-3.1230113579,-1.1402355338,-3.6931446576,https://salsa.debian.org/python-team/packages/hiro, https://github.com/alisaifee/hiro,3329.7532638889,1,3,0,3,6,0,0,6 +hmat-oss,0.3027957485,3.0822404955,-0.6301530543,https://salsa.debian.org/science-team/hmat-oss, https://github.com/jeromerobert/hmat-oss.git,3261.6730555556,6,19,0,14,7,0,0,16 +hodie,-0.8398270988,0.8472590081,-1.2059612682,https://salsa.debian.org/cts/hodie, https://github.com/michiexile/hodie,1318.6005671296,0,5,0,1,2,0,0,2 +hoel,-2.626226217,-0.6734593354,-3.0112543725,https://salsa.debian.org/debian-iot-team/oauth2/hoel.git, https://github.com/babelouest/hoel,1340.3941203704,3,9,0,7,12,0,0,12 +html2text,1.3340380398,2.3215255445,0.7275451633,https://salsa.debian.org/debian/html2text, https://github.com/grobian/html2text,1388.0924421296,5,7,0,7,21,0,0,23 +html5-parser,0.4588005785,2.4674305887,-0.084728594,https://github.com/debian-calibre/html5-parser,https://github.com/debian-calibre/html5-parser,2309.5259259259,1,6,0,5,4,0,0,6 +hyphen,0.4314729534,1.6039540493,0.0503177929,https://salsa.debian.org/libreoffice-team/hyphen, https://github.com/hunspell/hyphen.git,2824.9621875,2,9,0,6,18,0,0,19 +hyphen-ru,1.3639402124,5.60995268,0.0175129851,http://github.com/Protagores/hyphen-ru,http://github.com/Protagores/hyphen-ru,3.0971875,0,1,0,0,0,0,0,0 +i18nspector,-0.3130156228,1.3470282705,-0.8210059464,https://salsa.debian.org/debian/i18nspector, https://github.com/jwilk/i18nspector,3956.4540162037,0,2,0,2,6,0,0,7 +i2pd,-0.8587827802,0.1492942795,-1.1545577005,https://salsa.debian.org/yangfl-guest/i2pd, https://github.com/PurpleI2P/i2pd,3747.1315856482,37,139,2,97,14,0,23,126 +i7z,0.0808738409,1.2622361789,-0.2430911659,https://salsa.debian.org/debian/i7z, https://github.com/ajaiantilal/i7z,310.0352199074,0,7,0,3,33,0,0,35 +IanniX,-0.1880732304,2.1486905541,-0.8754662474,https://salsa.debian.org/multimedia-team/iannix, https://github.com/buzzinglight/IanniX,4212.6902430556,7,14,0,10,41,0,3,45 +ibuffer-projectile,-0.7228061953,1.8154077231,-1.292148074,https://salsa.debian.org/emacsen-team/ibuffer-projectile, https://github.com/purcell/ibuffer-projectile.git,3152.3891087963,1,7,0,7,14,0,0,14 +ice-builder-gradle-debian-packaging,-1.1849485707,0.9406079932,-1.6391429375,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,https://github.com/zeroc-ice/ice-builder-gradle-debian-packaging.git,2370.9240625,0,3,0,2,3,0,0,4 +icebreaker,0.4692256371,1.8411957204,-0.176942106,https://salsa.debian.org/games-team/icebreaker, https://github.com/mattdm/icebreaker.git,3923.7699305556,0,5,0,4,7,0,0,7 +icemon,0.7030922937,3.5835100346,-0.2959059985,https://salsa.debian.org/qt-kde-team/extras/icemon, https://github.com/icecc/icemon.git,4527.72,9,27,0,37,45,0,1,68 +icecream-sundae,-1.0385376489,1.8149325043,-1.7149505904,https://salsa.debian.org/debian/icecream-sundae, https://github.com/JPEWdev/icecream-sundae,638.2833796296,3,6,0,6,16,0,0,16 +ifetch-tools,-1.7763116684,-1.4179435016,-1.8644650677,https://github.com/unixabg/ifetch-tools,https://github.com/unixabg/ifetch-tools,5167.9663194445,0,4,0,3,2,0,0,3 +ifupdown-multi,-0.0008911093,3.5795714925,-1.035637135,https://github.com/edmonds/ifupdown-multi,https://github.com/edmonds/ifupdown-multi,2598.1821759259,0,2,0,1,1,0,0,2 +inn,-0.504610683,-0.419983647,-0.5703395284,https://salsa.debian.org/md/inn2, https://github.com/InterNetNews/inn.git,5725.5850115741,6,6,0,10,0,0,0,10 +iodine,-0.2722510221,-0.1412187428,-0.330852502,https://git.toastfreeware.priv.at/debian/iodine.git/, https://github.com/yarrick/iodine.git,5593.1268634259,29,23,0,31,45,0,0,60 +ionit,-2.5676980502,-0.9981519368,-2.9844493768,https://github.com/bdrung/ionit/tree/debian/unstable,https://github.com/bdrung/ionit,1307.9435069445,2,5,0,2,4,0,0,4 +ip4r,-1.4632745556,-0.4677957849,-1.7119933385,https://salsa.debian.org/postgresql/ip4r, https://github.com/RhodiumToad/ip4r.git,3711.2765972222,1,6,0,5,22,0,0,23 +ipheth-debian,0.9430908027,3.7638258527,-0.137434873,https://github.com/pmcenery/ipheth-debian,https://github.com/pmcenery/ipheth-debian,4243.6053819445,0,4,0,2,1,0,0,2 +ipmctl,-1.8038062885,-0.2344447385,-2.0696396657,https://github.com/kilobyte/ipmctl/tree/debian,https://github.com/kilobyte/ipmctl,1854.5950810185,32,11,0,22,0,0,0,22 +ippusbxd,0.0111748533,2.660027865,-0.7220268879,https://salsa.debian.org/printing-team/ippusbxd, https://github.com/OpenPrinting/ippusbxd,2327.0776967593,1,12,0,6,11,0,0,13 +iprange,0.6480375888,3.9597495364,-0.2945161283,https://salsa.debian.org/debian/iprange, https://github.com/firehol/iprange.git,1873.7119328704,0,7,0,3,20,0,1,21 +iprutils,-1.9030231406,0.3339685092,-2.4460433686,https://salsa.debian.org/debian/iprutils, https://github.com/bjking1/iprutils,5119.0450578704,18,20,0,15,14,0,0,22 +ipv6calc,0.5432988576,1.7634814459,-0.0022190697,https://salsa.debian.org/debian/ipv6calc, https://github.com/pbiering/ipv6calc,5498.6132407407,2,10,5,7,16,0,0,19 +ipv6toolkit,0.1556183786,2.6785840103,-0.5536700112,https://github.com/alvarezp/ipv6toolkit/tree/debian,https://github.com/alvarezp/ipv6toolkit,3020.5637962963,1,17,0,8,0,0,0,8 +pkg-ipvsadm,1.6190855359,2.7831585401,0.9056298919,https://github.com/formorer/pkg-ipvsadm,https://github.com/formorer/pkg-ipvsadm,3173.692650463,1,2,0,2,3,0,0,4 +ipython_genutils,0.5301773312,3.2373221637,-0.0754853283,https://salsa.debian.org/python-team/packages/ipython-genutils, https://github.com/ipython/ipython_genutils,4920.5252546296,2,28,3,27,23,0,0,43 +ir.lv2,0.0482033805,1.8072786295,-0.420434878,https://salsa.debian.org/multimedia-team/ir.lv2, https://github.com/tomszilagyi/ir.lv2.git,901.6371759259,2,4,0,0,1,0,0,1 +sptable,-0.3572895376,2.8910468841,-1.1439831667,https://salsa.debian.org/debian-astro-team/iraf-sptable, https://github.com/iraf-community/sptable,2001.9924189815,2,4,0,1,3,0,0,3 +ircmarkers,-1.4435928142,0.7583118463,-1.9125989528,https://github.com/df7cb/ircmarkers,https://github.com/df7cb/ircmarkers,5694.8846527778,1,3,0,3,1,0,0,3 +jack_midi_clock,0.3118920052,2.9552674463,-0.4056573573,https://salsa.debian.org/multimedia-team/jack-midi-clock, https://github.com/x42/jack_midi_clock,4775.6370949074,0,4,0,3,3,0,0,4 +jackson-dataformat-yaml,-0.30501226,2.808298895,-1.2455361494,https://salsa.debian.org/java-team/jackson-dataformat-yaml, https://github.com/FasterXML/jackson-dataformat-yaml.git,2094.1709722222,1,22,0,16,0,0,4,20 +jaraco.itertools,-2.1770715585,0.4444182514,-2.9053425973,https://salsa.debian.org/python-team/packages/jaraco.itertools, https://github.com/jaraco/jaraco.itertools.git,3229.3396990741,17,5,0,18,7,0,0,21 +java-atk-wrapper,0.561521277,1.2449834534,0.2042642146,https://salsa.debian.org/a11y-team/java-atk-wrapper, https://github.com/GNOME/java-atk-wrapper,5298.5764814815,11,11,0,8,3,0,0,11 +JDim,-1.0625455629,0.9599464829,-1.4721593744,https://salsa.debian.org/debian/jdim, https://github.com/JDimproved/JDim.git,5782.9914467593,2,15,0,8,9,0,0,9 +jhead,-0.1046962169,0.0128556712,-0.1619952781,https://salsa.debian.org/reichel/jhead, https://github.com/Matthias-Wandel/jhead,974.1013078704,4,13,0,10,49,0,0,49 +jinja2-time,-0.4698555936,1.1570025567,-0.7656248707,https://salsa.debian.org/python-team/packages/jinja2-time, https://github.com/hackebrot/jinja2-time,2112.1138657407,0,3,0,2,20,0,0,20 +jitterdebugger,-2.3485028902,-0.1533055837,-2.7859741296,https://salsa.debian.org/debian/jitterdebugger, https://github.com/igaw/jitterdebugger.git,1214.2022916667,8,3,0,9,12,0,0,13 +jitterentropy-rngd,-1.0568983374,-0.2694182082,-1.1867836067,https://salsa.debian.org/debian/jitterentropy-rngd, https://github.com/smuellerDD/jitterentropy-rngd,2267.9794675926,9,1,0,10,33,0,0,33 +jmxetric,-2.9017326958,-0.7363274677,-3.3243552835,https://github.com/ganglia/jmxetric,https://github.com/ganglia/jmxetric,2292.7484027778,0,9,0,5,14,0,0,16 +jp2a,0.9044983067,3.5392448615,-0.0351520282,https://salsa.debian.org/debian/jp2a, https://github.com/Talinx/jp2a,2190.7298032407,3,4,0,6,11,0,0,13 +jupyter-sphinx-theme,-0.4091049447,-0.045316663,-0.4899605303,https://salsa.debian.org/python-team/packages/jupyter-sphinx-theme, https://github.com/jupyter/jupyter-sphinx-theme,1834.3539467593,2,32,0,24,12,0,0,30 +kamcli,-4.7786388825,-2.4182541708,-5.4179403291,https://salsa.debian.org/pkg-voip-team/kamcli/, https://github.com/kamailio/kamcli,3121.9156134259,1,5,0,5,8,0,0,8 +kamerka,0.8743124322,3.7857646393,-0.1312218342,http://github.com/dos1/kamerka,http://github.com/dos1/kamerka,2873.9879282407,7,12,1,0,0,0,0,0 +debian-karlyriceditor,-0.1145592946,2.7444681458,-1.0688808595,https://github.com/martin-steghoefer/debian-karlyriceditor,https://github.com/martin-steghoefer/debian-karlyriceditor,1746.0329513889,1,1,0,2,0,0,0,2 +kbtin,-0.2885497121,1.2472045448,-0.639846297,https://github.com/kilobyte/kbtin/tree/debian,https://github.com/kilobyte/kbtin,5761.0344212963,1,4,0,3,7,0,0,7 +kcemu-debian,-1.5465318214,-0.3965547601,-1.8452569055,https://github.com/glaubitz/kcemu-debian,https://github.com/glaubitz/kcemu-debian,4222.8273842593,2,2,0,1,0,0,0,1 +kchmviewer,0.9382066218,2.3758050403,0.2613367395,https://salsa.debian.org/qt-kde-team/extras/kchmviewer, https://github.com/gyunaev/kchmviewer,2255.6306481482,1,6,0,4,23,0,0,23 +kcmsystemd-debian,0.7599629002,3.9388494787,-0.1577270679,https://github.com/shsorbom/kcmsystemd-debian.git,https://github.com/shsorbom/kcmsystemd-debian.git,684.1522685185,1,12,0,8,3,0,0,9 +keychain,1.0933393106,2.2752386059,0.4360362266,https://salsa.debian.org/debian/keychain, https://github.com/funtoo/keychain,3125.5103356482,23,18,0,32,53,0,0,63 +khard,0.0842088929,2.5350536215,-0.5777839137,https://salsa.debian.org/python-team/packages/khard, https://github.com/lucc/khard,3364.3432523148,16,20,1,32,41,0,0,63 +kim-api,-0.8423857472,1.4393693103,-1.2913134011,https://salsa.debian.org/science-team/kim-api, https://github.com/openkim/kim-api,4210.4546527778,1,26,1,10,24,0,1,26 +kindleclip,-0.8974283368,0.9569429807,-1.3449393666,https://github.com/gwolf/kindleclip,https://github.com/gwolf/kindleclip,1841.0025925926,0,1,0,1,7,0,0,7 +javadev,-0.406165741,0.7632042123,-0.7000750742,https://salsa.debian.org/med-team/king, https://github.com/rlabduke/javadev.git,5017.5933217593,0,15,0,1,3,0,0,4 +kismet-debian,1.9335416891,2.9570779251,1.2756598324,https://github.com/andrikos/kismet-debian,https://github.com/andrikos/kismet-debian,1415.5860300926,0,1,0,1,0,0,0,1 +clj-kitchensink,-0.6039126858,2.5849138336,-1.5600356447,https://salsa.debian.org/clojure-team/kitchensink-clojure, https://github.com/puppetlabs/clj-kitchensink.git,3697.8495138889,12,47,0,34,0,0,0,34 +klatexformula_debian,-0.2602166071,0.57054691,-0.5330870672,https://github.com/TobiasWinchen/klatexformula_debian,https://github.com/TobiasWinchen/klatexformula_debian,3554.8463541667,0,6,0,3,1,0,0,3 +debian-ksmtuned,0.6468606724,3.7904647882,-0.3169526232,https://github.com/bzed/debian-ksmtuned,https://github.com/bzed/debian-ksmtuned,2027.7201157408,1,1,0,2,2,0,0,3 +kylin-burner,0.5891863927,3.7002638946,-0.3231693637,https://github.com/ukui/kylin-burner,https://github.com/ukui/kylin-burner,1294.0143055556,2,9,0,4,7,0,0,8 +kylin-display-switch,-1.7366978486,1.7252586454,-2.558884793,https://github.com/ukui/kylin-display-switch,https://github.com/ukui/kylin-display-switch,1387.1396296296,4,11,0,10,8,0,0,12 +lablgtk-extras,-0.8756228195,2.0634481167,-1.8186386711,https://salsa.debian.org/ocaml-team/lablgtk-extras, https://github.com/zoggy/lablgtk-extras.git,3792.5139930556,0,3,0,1,2,0,0,2 +labltk,-0.1496995002,2.0785630827,-0.594072233,https://salsa.debian.org/ocaml-team/labltk, https://github.com/garrigue/labltk.git,3339.1637268519,1,3,0,3,27,0,0,28 +laby,1.665594867,5.3198865227,0.3634891036,https://salsa.debian.org/ocaml-team/laby, https://github.com/sgimenez/laby.git,2556.9824884259,11,12,0,15,44,0,7,56 +coffee,-0.8084062082,0.1539618161,-0.9674228878,https://salsa.debian.org/debian/latex-coffee-stains, https://github.com/Echsecutor/coffee,1954.8484027778,1,7,0,3,2,0,0,3 +latexmk,2.3142169158,4.8870249679,1.1895147626,https://github.com/debian-tex/latexmk,https://github.com/debian-tex/latexmk,1865.2669907407,3,7,0,5,3,0,0,5 +latexml,0.5426184631,2.9655400064,-0.3271877484,https://github.com/debian-tex/latexml,https://github.com/debian-tex/latexml,2055.9208333333,2,6,0,4,1,0,0,4 +pkg-lava-tool,-1.5553171291,-0.4092627761,-1.882507141,https://github.com/Linaro/pkg-lava-tool,https://github.com/Linaro/pkg-lava-tool,2892.9631481482,0,21,0,7,2,0,0,7 +pkg-lavapdu,-1.360190138,0.6576027042,-1.9660643803,https://github.com/Linaro/pkg-lavapdu,https://github.com/Linaro/pkg-lavapdu,1898.0415972222,9,22,0,16,6,0,0,19 +lazyarray,-1.6930876257,1.5097154973,-2.5262604044,https://salsa.debian.org/science-team/lazyarray, https://github.com/NeuralEnsemble/lazyarray,3518.1808333333,0,8,0,4,5,0,0,6 +lbzip2,0.4553413125,1.9206872689,-0.0826154573,https://github.com/kjn/lbzip2/tree/debian,https://github.com/kjn/lbzip2,2710.187037037,0,3,0,1,4,0,1,5 +lcdf-typetools,0.5850757713,1.6610997166,0.0976153045,https://salsa.debian.org/fonts-team/lcdf-typetools, https://github.com/kohler/lcdf-typetools.git,5649.3697337963,4,5,0,6,27,0,0,28 +acme-poe-knee,-1.8444968736,-0.7377441759,-2.0661466284,https://salsa.debian.org/perl-team/modules/packages/libacme-poe-knee-perl, https://github.com/jib/acme-poe-knee.git,0,0,1,0,1,0,0,0,1 +Alien-SDL,-0.0977796476,0.3529808751,-0.1969931002,https://salsa.debian.org/perl-team/modules/packages/libalien-sdl-perl, https://github.com/PerlGameDev/Alien-SDL.git,2024.7772222222,0,15,0,7,10,0,0,12 +ambix,-0.2891761381,1.5956439603,-0.6870161119,https://salsa.debian.org/multimedia-team/libambix, https://github.com/iem-projects/ambix.git,2332.8963194445,2,15,0,3,2,0,0,4 +apache-singleton,-1.4918758035,1.0630563092,-2.2427825215,https://salsa.debian.org/perl-team/modules/packages/libapache-singleton-perl, https://github.com/mschout/apache-singleton.git,2808.9702777778,2,1,0,2,0,0,0,2 +mod_authnz_pam,-0.1714935794,2.2098425672,-0.8074827861,https://salsa.debian.org/freeipa-team/mod-authnz-pam, https://github.com/adelton/mod_authnz_pam.git,3451.9741203704,6,1,0,5,17,0,0,18 +App-CPANTS-Lint,-0.2108873196,3.0022710317,-1.1931665391,https://salsa.debian.org/perl-team/modules/packages/libapp-cpants-lint-perl, https://github.com/charsbar/App-CPANTS-Lint.git,177.5091782407,0,3,0,3,4,0,0,4 +p5-app-perlrdf-command-query,-2.5195716821,-0.1728085325,-3.0060090978,https://salsa.debian.org/perl-team/modules/packages/libapp-perlrdf-command-query-perl, https://github.com/tobyink/p5-app-perlrdf-command-query,786.4794675926,0,1,0,1,1,0,0,2 +Archive-Ar,-0.7153173845,1.4218992511,-1.4262008359,https://salsa.debian.org/perl-team/modules/packages/libarchive-ar-perl, https://github.com/jbazik/Archive-Ar.git,1734.3291435185,1,5,0,2,4,0,0,4 +libaria,-0.4287076752,2.5333867692,-1.5521033494,https://github.com/jksrecko/libaria,https://github.com/jksrecko/libaria,1255.0196875,1,2,0,2,3,0,0,4 +perl-Array-Iterator,-1.1520508851,1.0062186595,-1.5899210944,https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl, https://github.com/perlancar/perl-Array-Iterator.git,4456.1288194445,1,16,0,6,7,0,0,8 +Astro-FITS-CFITSIO,-0.284600426,1.0728247575,-0.745324073,https://salsa.debian.org/perl-team/modules/packages/libastro-fits-cfitsio-perl, https://github.com/pratzlaff/Astro-FITS-CFITSIO,41.8160185185,1,3,0,2,1,0,0,2 +AtomBus,-2.9184975503,-0.9823925311,-3.3182517592,https://salsa.debian.org/perl-team/modules/packages/libatombus-perl, https://github.com/ironcamel/AtomBus.git,574.4602777778,0,2,0,2,4,0,0,4 +p5-atteanx-compatibility-trine,-5.221355937,-3.8031880755,-5.4863317126,https://salsa.debian.org/perl-team/modules/packages/libatteanx-compatibility-trine-perl, https://github.com/kjetilk/p5-atteanx-compatibility-trine.git,174.8482291667,0,1,0,2,4,0,0,4 +atteanx-endpoint,-5.0524581401,-2.9636769875,-5.4798110024,https://salsa.debian.org/perl-team/modules/packages/libatteanx-endpoint-perl, https://github.com/kasei/atteanx-endpoint.git,581.8788078704,0,3,0,2,1,0,0,2 +p5-atteanx-store-sparql,-3.6547632503,-1.1140927923,-4.301232368,https://salsa.debian.org/perl-team/modules/packages/libatteanx-store-sparql-perl, https://github.com/kjetilk/p5-atteanx-store-sparql.git,1578.1186458333,1,3,0,4,5,0,0,5 +perl-Authen-Captcha,-0.8189234623,0.262039817,-1.0902527604,https://salsa.debian.org/perl-team/modules/packages/libauthen-captcha-perl, https://github.com/lkundrak/perl-Authen-Captcha.git,604.0063194444,4,2,0,4,1,0,0,5 +B-Hooks-OP-Check,0.6263225059,3.4250343136,-0.0183739613,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-op-check-perl, https://github.com/karenetheridge/B-Hooks-OP-Check,4225.8527430556,1,3,0,3,0,0,0,3 +B-Hooks-Parser,-1.1725055097,-0.0976957027,-1.3418704161,https://salsa.debian.org/perl-team/modules/packages/libb-hooks-parser-perl, https://github.com/karenetheridge/B-Hooks-Parser.git,3844.972962963,4,3,0,6,6,0,0,9 +b-utils,-0.2233577064,1.2899551919,-0.5541961272,https://salsa.debian.org/perl-team/modules/packages/libb-utils-perl, https://github.com/jbenjore/b-utils.git,1697.3214351852,0,9,0,2,12,0,0,12 +libb2,0.4344926484,2.4059587424,-0.0945466725,https://salsa.debian.org/debian/libb2, https://github.com/BLAKE2/libb2.git,2769.1435185185,5,14,0,15,43,0,0,44 +backuppc-xs,0.0682740707,4.0111217079,-0.9932975309,https://salsa.debian.org/debian/libbackuppc-xs-perl, https://github.com/backuppc/backuppc-xs.git,1496.301400463,2,5,0,2,11,0,0,11 +libbase58,-0.3899391721,2.4680002613,-1.1487322403,https://salsa.debian.org/debian/libbase58, https://github.com/luke-jr/libbase58,2238.1648148148,3,7,0,8,0,0,0,8 +libbde,0.3715579957,2.3531465313,-0.2679169251,https://salsa.debian.org/pkg-security-team/libbde, https://github.com/libyal/libbde,2546.6279398148,2,1,0,3,54,0,2,56 +BerkeleyDB,0.094191881,0.6104187657,-0.0890236719,https://salsa.debian.org/md/libberkeleydb-perl, https://github.com/pmqs/BerkeleyDB.git,5644.9127083333,1,4,0,3,5,0,0,5 +bio-alignio-stockholm,-4.9835930933,-2.6349248881,-5.4713428559,https://salsa.debian.org/med-team/libbio-alignio-stockholm-perl, https://github.com/bioperl/bio-alignio-stockholm.git,10.2199305556,0,2,0,2,0,0,0,2 +bio-cluster,-0.7997866799,1.4401770295,-1.3214678694,https://salsa.debian.org/med-team/libbio-cluster-perl, https://github.com/bioperl/bio-cluster.git,7.3618171296,0,2,0,2,2,0,0,3 +bio-db-embl,-3.9031050099,-1.6133202421,-4.3425936432,https://salsa.debian.org/med-team/libbio-db-embl-perl, https://github.com/bioperl/bio-db-embl.git,156.3099421296,0,2,0,2,2,0,0,3 +bioparser,-1.0837320242,1.8160602363,-1.7618255497,https://salsa.debian.org/med-team/libbioparser-dev, https://github.com/rvaser/bioparser,2526.0444675926,2,4,0,2,7,0,0,7 +bot-training,-3.2750745336,-1.1281011499,-3.7406250651,https://salsa.debian.org/perl-team/modules/packages/libbot-training-perl, https://github.com/avar/bot-training.git,3166.8061805556,0,2,0,2,3,0,0,3 +bpp-core,-0.3055083002,1.3427773866,-0.9266820803,https://salsa.debian.org/med-team/libbpp-core, https://github.com/BioPP/bpp-core,4797.1825925926,3,24,0,9,13,0,0,14 +bpp-phyl,-0.6908318666,0.5108256238,-1.0987919805,https://salsa.debian.org/med-team/libbpp-phyl, https://github.com/BioPP/bpp-phyl.git,5775.3533796296,2,40,0,11,26,0,0,30 +bpp-phyl-omics,-0.3598958857,2.0635272475,-1.1073993387,https://salsa.debian.org/med-team/libbpp-phyl-omics, https://github.com/BioPP/bpp-phyl-omics.git,4025.9415046296,0,9,0,3,3,0,0,4 +bpp-popgen,-0.5271533507,1.1251682809,-1.1042333821,https://salsa.debian.org/med-team/libbpp-popgen, https://github.com/BioPP/bpp-popgen,5514.9573032407,1,13,0,4,2,0,0,4 +bpp-qt,-0.0541983729,2.8865148932,-1.0203907927,https://salsa.debian.org/med-team/libbpp-qt, https://github.com/BioPP/bpp-qt,5024.8754050926,0,12,0,3,1,0,0,3 +bpp-raa,-0.4695334076,2.4236088145,-1.4371504644,https://salsa.debian.org/med-team/libbpp-raa, https://github.com/BioPP/bpp-raa,5066.2362962963,0,17,0,4,1,0,0,4 +bpp-seq,-0.7192518957,0.6394875381,-1.1233907337,https://salsa.debian.org/med-team/libbpp-seq, https://github.com/BioPP/bpp-seq,5747.7503472222,1,22,0,5,7,0,0,9 +bpp-seq-omics,-0.4569335369,1.1913544639,-1.0602096041,https://salsa.debian.org/med-team/libbpp-seq-omics, https://github.com/BioPP/bpp-seq-omics.git,4806.9277083333,0,14,0,4,5,0,0,6 +bultitude,-1.4773927994,1.1163772935,-2.107348178,https://salsa.debian.org/clojure-team/libbultitude-clojure, https://github.com/TimoFreiberg/bultitude.git,2812.2660300926,1,20,0,15,5,0,0,18 +Business-EDI,-3.9144500578,-1.6606272938,-4.344431509,https://salsa.debian.org/perl-team/modules/packages/libbusiness-edi-perl, https://github.com/atz/Business-EDI.git,1031.8625925926,0,2,0,1,2,0,0,2 +business-isbn,0.4456335938,2.2644684353,-0.07414136,https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl, https://github.com/briandfoy/business-isbn.git,5456.629849537,2,8,0,6,17,0,0,19 +libcaca,1.7158261148,2.8952023479,1.0094395421,https://salsa.debian.org/multimedia-team/libcaca, https://github.com/cacalabs/libcaca.git,5032.4727199074,5,18,0,13,72,0,0,75 +cache-historical-perl,-2.3954691781,0.151997288,-2.9853546683,https://salsa.debian.org/perl-team/modules/packages/libcache-historical-perl, https://github.com/mschilli/cache-historical-perl.git,1172.6421064815,1,1,0,2,0,0,0,2 +Cache-Memcached-Fast,0.4990329576,3.9172913613,-0.4350811541,https://salsa.debian.org/perl-team/modules/packages/libcache-memcached-fast-perl, https://github.com/JRaspass/Cache-Memcached-Fast.git,5347.5680324074,1,11,0,8,23,0,0,23 +libcap-ng,0.8396700265,1.681480669,0.3896198847,https://salsa.debian.org/debian/libcap-ng, https://github.com/stevegrubb/libcap-ng,2330.4456365741,16,5,0,19,22,0,0,29 +libcapi20,0.8368813861,2.3931041059,0.2031772198,https://github.com/leggewie-DM/libcapi20,https://github.com/leggewie-DM/libcapi20,1469.2789236111,0,1,0,1,1,0,0,2 +Catalyst-Authentication-Credential-HTTP,-0.5445869591,1.7237240173,-0.9848916986,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-authentication-credential-http-perl, https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,3862.9087152778,0,7,0,7,0,0,0,7 +catalyst-dispatch-regex,-0.2606173856,1.8455952252,-0.6908933433,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-dispatchtype-regex-perl, https://github.com/mvgrimes/catalyst-dispatch-regex.git,733.893287037,0,2,0,2,3,0,0,3 +Catalyst-Model-DBIC-Schema,0.0213319889,2.940935467,-0.7164785923,https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl, https://github.com/perl-catalyst/Catalyst-Model-DBIC-Schema,5560.3081828704,1,18,0,13,3,0,0,16 +Catmandu-Atom,-2.0448922521,-0.090192519,-2.4689508151,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-atom-perl, https://github.com/LibreCat/Catmandu-Atom.git,2313.0128472222,0,6,0,5,2,0,0,5 +Catmandu-FileStore,-4.6751603427,-1.9416786358,-5.4067542228,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-filestore-perl, https://github.com/LibreCat/Catmandu-FileStore.git,1680.9195138889,0,7,0,6,8,0,0,8 +Catmandu-Importer-getJSON,-1.1909213366,1.1095653007,-1.9138474886,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-importer-getjson-perl, https://github.com/nichtich/Catmandu-Importer-getJSON.git,2053.8504513889,2,5,0,5,11,0,0,12 +Catmandu-MAB2,-2.1995168172,-0.5970612736,-2.5957637184,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-mab2-perl, https://github.com/jorol/Catmandu-MAB2.git,2364.9603356482,0,4,0,2,7,0,0,7 +Catmandu-RDF,-1.5674004847,0.7873124502,-2.1156699483,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-rdf-perl, https://github.com/LibreCat/Catmandu-RDF.git,3436.1034722222,1,7,0,4,19,0,1,21 +Catmandu-SRU,-1.6347444625,0.7856473937,-2.213169114,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-sru-perl, https://github.com/LibreCat/Catmandu-SRU.git,3182.483275463,4,14,0,8,13,0,0,14 +Catmandu-Store-MongoDB,-2.1900265394,0.0427518931,-2.6176713043,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-store-mongodb-perl, https://github.com/LibreCat/Catmandu-Store-MongoDB.git,3318.0048263889,0,6,0,4,6,0,0,6 +Catmandu-Wikidata,-1.8751171258,0.7106805559,-2.4545693893,https://salsa.debian.org/perl-team/modules/packages/libcatmandu-wikidata-perl, https://github.com/nichtich/Catmandu-Wikidata.git,3124.955462963,0,3,0,1,4,0,1,5 +cgi-application-server,-1.3503684925,1.1163471363,-2.0606594531,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-server-perl, https://github.com/rjbs/cgi-application-server.git,2084.0161111111,0,3,0,2,2,0,0,4 +CGI-Expand,-0.5995119077,1.6030547825,-1.0867729842,https://salsa.debian.org/perl-team/modules/packages/libcgi-expand-perl, https://github.com/bowman/CGI-Expand.git,1724.580462963,2,5,0,2,1,0,0,2 +CGI-Session-ExpireSessions,-2.1411258628,-0.6175205041,-2.4722907936,https://salsa.debian.org/perl-team/modules/packages/libcgi-session-expiresessions-perl, https://github.com/ronsavage/CGI-Session-ExpireSessions,152.6683333333,0,1,0,1,2,0,0,2 +Chatbot-Eliza,-1.3144935043,1.2362568323,-1.8965557655,https://salsa.debian.org/perl-team/modules/packages/libchatbot-eliza-perl, https://github.com/ggruen/Chatbot-Eliza,2872.7296875,1,4,0,2,0,0,0,2 +chi-driver-redis,-1.0562831931,1.2500992113,-1.5273046989,https://salsa.debian.org/perl-team/modules/packages/libchi-driver-redis-perl, https://github.com/rentrak/chi-driver-redis,2250.5063078704,1,6,0,4,5,0,0,6 +libcitygml,-1.0898756324,0.0704593832,-1.422660328,https://salsa.debian.org/debian-gis-team/libcitygml, https://github.com/jklimke/libcitygml.git,4063.0042476852,3,34,0,18,41,0,0,42 +class-c3-adopt-next,-0.163979537,2.015060941,-0.6012557543,https://salsa.debian.org/perl-team/modules/packages/libclass-c3-adopt-next-perl, https://github.com/rafl/class-c3-adopt-next.git,539.1778587963,0,4,0,2,0,0,0,2 +Class-Container,-0.0506280246,1.6643843634,-0.4036695635,https://salsa.debian.org/perl-team/modules/packages/libclass-container-perl, https://github.com/kenahoo/Class-Container.git,1.6649189815,1,3,0,3,3,0,0,3 +class-insideout,-0.6783523447,1.0454132392,-0.9711596731,https://salsa.debian.org/perl-team/modules/packages/libclass-insideout-perl, https://github.com/dagolden/class-insideout.git,3195.8285300926,0,3,0,2,8,0,0,8 +class-meta,-2.1588155835,0.1407589648,-2.6165631943,https://salsa.debian.org/perl-team/modules/packages/libclass-meta-perl, https://github.com/theory/class-meta.git,2689.2590856482,0,3,0,2,3,0,0,3 +class-refresh,-1.6945342203,0.5207835259,-2.147534344,https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl, https://github.com/doy/class-refresh.git,1057.1042708333,0,3,0,3,6,0,0,6 +libcleri,-2.6428568291,0.0499127531,-3.28649977,https://salsa.debian.org/siridb-team/libcleri, https://github.com/cesbit/libcleri.git,2711.9692592593,2,9,0,4,7,0,0,8 +config-auto,0.2333854777,2.0661047236,-0.2396184716,https://salsa.debian.org/perl-team/modules/packages/libconfig-auto-perl, https://github.com/jib/config-auto.git,2192.3712731482,2,3,0,1,2,0,0,3 +Config-Identity,-1.1292654123,1.0457452223,-1.5624237769,https://salsa.debian.org/perl-team/modules/packages/libconfig-identity-perl, https://github.com/dagolden/Config-Identity.git,2902.5731828704,0,4,0,3,2,0,0,4 +perl-Convert-ASN1,0.4197948981,1.947299648,-0.0317401557,https://salsa.debian.org/perl-team/modules/packages/libconvert-asn1-perl, https://github.com/gbarr/perl-Convert-ASN1.git,5538.4047453704,6,11,0,13,39,0,0,41 +convert-binhex,0.5297090391,2.6158283055,-0.0231792705,https://salsa.debian.org/perl-team/modules/packages/libconvert-binhex-perl, https://github.com/stephenenelson/convert-binhex.git,816.5657407407,0,2,0,2,2,0,0,3 +CPAN-DistnameInfo,0.2522399529,2.0212536151,-0.1714651554,https://salsa.debian.org/perl-team/modules/packages/libcpan-distnameinfo-perl, https://github.com/gbarr/CPAN-DistnameInfo.git,2596.9826157407,4,4,0,6,11,0,0,16 +perl-crypt-cracklib,-0.6543542036,2.0569886418,-1.4105292586,https://salsa.debian.org/perl-team/modules/packages/libcrypt-cracklib-perl, https://github.com/dsully/perl-crypt-cracklib.git,1122.6671643519,0,2,0,1,5,0,0,5 +Crypt-DH-GMP,-0.2521104835,0.8592315725,-0.4600056877,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-gmp-perl, https://github.com/lestrrat/Crypt-DH-GMP.git,1507.2044791667,0,3,0,2,2,0,0,3 +crypt-dh,-0.350596725,1.4226875994,-0.742243187,https://salsa.debian.org/perl-team/modules/packages/libcrypt-dh-perl, https://github.com/wchristian/crypt-dh.git,6.7348726852,0,3,0,2,0,0,0,2 +perl-Crypt-OpenSSL-Bignum,0.573671133,2.817673072,-0.0231679046,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-bignum-perl, https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git,1031.4781134259,1,6,0,3,7,0,0,8 +perl-crypt-openssl-pkcs10,-0.3431098229,2.5077909436,-1.1135889242,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-pkcs10-perl, https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git,84.9646875,1,2,0,1,1,0,0,1 +Crypt-OpenSSL-RSA,0.4685020789,2.4809174365,-0.0400198203,https://salsa.debian.org/perl-team/modules/packages/libcrypt-openssl-rsa-perl, https://github.com/toddr/Crypt-OpenSSL-RSA.git,4592.8473842593,12,12,0,16,31,0,0,35 +crypt-saltedhash,-0.4905719307,1.6402467611,-0.9344153294,https://salsa.debian.org/perl-team/modules/packages/libcrypt-saltedhash-perl, https://github.com/campus-explorer/crypt-saltedhash,137.0340162037,2,4,0,4,7,0,0,8 +CSS-Tiny,-0.2187157738,2.0546898664,-0.9614626512,https://salsa.debian.org/perl-team/modules/packages/libcss-tiny-perl, https://github.com/chorny/CSS-Tiny.git,2896.0719791667,1,2,0,3,0,0,0,3 +libcue,1.3280527366,4.5646098156,0.2528534907,https://salsa.debian.org/debian/libcue, https://github.com/lipnitsk/libcue,5295.1366435185,10,5,0,13,29,0,0,29 +libcypher-parser,-0.5122868361,1.7043358431,-0.9505714794,https://github.com/cleishm/libcypher-parser,https://github.com/cleishm/libcypher-parser,2052.1131134259,4,8,0,4,34,0,1,35 +Dancer-Plugin-REST,-1.332193545,1.346725582,-1.9482623921,https://salsa.debian.org/perl-team/modules/packages/libdancer-plugin-rest-perl, https://github.com/perldancer/Dancer-Plugin-REST.git,1451.9472800926,1,5,0,2,4,0,0,6 +perl-Data-Alias,0.1378605049,2.1486354011,-0.5977466385,https://salsa.debian.org/perl-team/modules/packages/libdata-alias-perl, https://github.com/mvduin/perl-Data-Alias,610.4551041667,0,2,0,2,4,0,0,4 +Data-Dumper-Concise,0.2663762197,2.5519999595,-0.2144683206,https://salsa.debian.org/perl-team/modules/packages/libdata-dumper-concise-perl, https://github.com/p5sagit/Data-Dumper-Concise,2778.0428240741,1,3,0,2,0,0,0,2 +Data-FormValidator,-0.452587545,1.1833831498,-0.804155609,https://salsa.debian.org/perl-team/modules/packages/libdata-formvalidator-perl, https://github.com/dnmfarrell/Data-FormValidator.git,2189.7575578704,3,6,0,6,10,0,0,11 +data-hal,-0.7708587998,2.2387120212,-1.7298903065,https://salsa.debian.org/perl-team/modules/packages/libdata-hal-perl, https://github.com/sipwise/data-hal.git,3620.8497222222,0,13,0,10,4,0,0,12 +Data-OptList,0.4752078978,2.7815727481,-0.0271116591,https://salsa.debian.org/perl-team/modules/packages/libdata-optlist-perl, https://github.com/rjbs/Data-OptList.git,5253.3015972222,0,2,0,2,5,0,0,5 +data-phrasebook,-2.0173455185,0.5053918978,-2.598257896,https://salsa.debian.org/perl-team/modules/packages/libdata-phrasebook-perl, https://github.com/barbie/data-phrasebook.git,3782.0208333333,0,1,0,1,0,0,0,1 +perl-database-dumptruck,-2.6354712016,-0.053291936,-3.2800311486,https://salsa.debian.org/perl-team/modules/packages/libdatabase-dumptruck-perl, https://github.com/lkundrak/perl-database-dumptruck.git,85.8566550926,0,1,0,1,1,0,0,2 +DateTime-Format-Mail,0.3841471215,2.8615309864,-0.1765169258,https://salsa.debian.org/perl-team/modules/packages/libdatetime-format-mail-perl, https://github.com/book/DateTime-Format-Mail.git,809.9546875,2,1,0,3,7,0,0,7 +DBD-ODBC,-0.4492586589,-0.3647039199,-0.4605696828,https://salsa.debian.org/perl-team/modules/packages/libdbd-odbc-perl, https://github.com/perl5-dbi/DBD-ODBC.git,4357.0500347222,1,12,0,8,22,0,0,22 +DBD-SQLite2,-0.2242626457,0.8599429182,-0.4391897101,https://salsa.debian.org/perl-team/modules/packages/libdbd-sqlite2-perl, https://github.com/rurban/DBD-SQLite2,1683.3107175926,3,5,0,1,0,0,0,1 +DBIx-Abstract,-0.7663996691,0.9860020058,-1.2168119968,https://salsa.debian.org/perl-team/modules/packages/libdbix-abstract-perl, https://github.com/iarna/DBIx-Abstract.git,3028.2298842593,1,6,0,3,3,0,0,3 +dbix-class-schema-loader,0.899902187,3.2743262714,-0.0171547791,https://salsa.debian.org/perl-team/modules/packages/libdbix-class-schema-loader-perl, https://github.com/dbsrgits/dbix-class-schema-loader,5369.7104282407,13,29,0,32,33,0,0,52 +Debian-Copyright,0.0036003397,1.9825965853,-0.5566012214,https://salsa.debian.org/perl-team/modules/packages/libdebian-copyright-perl, https://github.com/periapt/Debian-Copyright.git,467.6439236111,0,1,0,1,1,0,0,2 +Devel-bt,-0.5926888766,2.1164194627,-1.6374000091,https://salsa.debian.org/perl-team/modules/packages/libdevel-bt-perl, http://github.com/rafl/Devel-bt,563.5733796296,0,1,0,0,0,0,0,0 +Devel-Cycle,0.2975717055,2.3628676137,-0.1689937232,https://salsa.debian.org/perl-team/modules/packages/libdevel-cycle-perl, https://github.com/lstein/Devel-Cycle.git,24.4394791667,1,2,0,1,0,0,0,1 +devel-symdump,0.1995761912,1.3405631393,-0.0953876401,https://salsa.debian.org/debian/libdevel-symdump-perl, https://github.com/andk/devel-symdump,2899.582337963,0,6,0,4,4,0,0,5 +Perl-Device-Cdio,-1.3704489286,-0.772668166,-1.5698638654,https://salsa.debian.org/perl-team/modules/packages/libdevice-cdio-perl, https://github.com/rocky/Perl-Device-Cdio.git,3711.3743287037,0,4,0,1,6,0,0,6 +directory-scratch,-0.3578234126,3.2936545083,-1.4107895462,https://salsa.debian.org/perl-team/modules/packages/libdirectory-scratch-perl, https://github.com/bobtfish/directory-scratch.git,1951.3868981482,1,5,0,4,1,0,0,4 +p5-dist-inkt,-1.6527902396,0.7910520727,-2.1410543937,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-perl, https://github.com/tobyink/p5-dist-inkt,2915.0334953704,0,1,0,1,4,0,0,4 +p5-dist-inkt-role-test,-1.5942005273,1.6783425318,-2.409860989,https://salsa.debian.org/perl-team/modules/packages/libdist-inkt-role-test-perl, https://github.com/tobyink/p5-dist-inkt-role-test,0.0739467593,0,1,0,1,0,0,0,1 +dist-zilla-plugins-cjm,-0.7135120934,1.9137851349,-1.4906069541,https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-plugins-cjm-perl, https://github.com/madsen/dist-zilla-plugins-cjm,3005.9145833333,0,4,0,4,10,0,0,11 +libdivsufsort,0.3802819676,3.1639307168,-0.2503528943,https://salsa.debian.org/med-team/libdivsufsort, https://github.com/y-256/libdivsufsort.git,2687.7754050926,0,6,0,2,28,0,0,28 +libdogleg,-0.2667101184,1.7245498351,-0.6711419661,https://salsa.debian.org/science-team/libdogleg, https://github.com/dkogan/libdogleg.git,4490.860775463,0,5,0,2,1,0,0,2 +libeatmydata,0.3763000817,1.1375608394,0.0117248362,https://salsa.debian.org/debian/libeatmydata, https://github.com/stewartsmith/libeatmydata.git,5640.2884027778,11,12,0,16,27,0,0,35 +Email-MIME-CreateHTML,-0.598597254,0.9396464518,-0.9866469243,https://salsa.debian.org/perl-team/modules/packages/libemail-mime-createhtml-perl, https://github.com/vanstyn/Email-MIME-CreateHTML.git,1257.2075810185,1,3,0,3,9,0,0,10 +end,-1.6952231001,0.2859980609,-2.1369126329,https://salsa.debian.org/perl-team/modules/packages/libend-perl, https://github.com/Abigail/end.git,519.9620023148,0,1,0,0,1,0,0,1 +libeot,0.4231617787,2.6750549846,-0.0161024184,https://salsa.debian.org/fonts-team/libeot, https://github.com/umanwizard/libeot.git,3660.8458101852,1,5,0,4,6,0,0,9 +eval-closure,0.3725931069,2.6025825306,-0.0711445029,https://salsa.debian.org/perl-team/modules/packages/libeval-closure-perl, https://github.com/doy/eval-closure.git,2047.9688310185,1,4,0,5,11,0,0,13 +libevt,0.3231580646,2.9388038619,-0.3464543518,https://salsa.debian.org/pkg-security-team/libevt, https://github.com/libyal/libevt,2794.588125,1,2,0,2,3,0,2,5 +libevtx,0.4679040206,3.3941203575,-0.3128196542,https://salsa.debian.org/pkg-security-team/libevtx, https://github.com/libyal/libevtx,2794.5568055556,0,1,0,1,24,0,2,26 +libeXaDrums,-1.57576575,0.4655834923,-2.0471585802,https://github.com/SpintroniK/libeXaDrums/tree/debian,https://github.com/SpintroniK/libeXaDrums,2888.0486342593,2,6,0,3,6,0,0,7 +libexif-gtk,0.6899028208,2.4094585548,0.0374998074,https://salsa.debian.org/debian-phototools-team/libexif-gtk, https://github.com/libexif/libexif-gtk.git,5131.8707407407,2,5,0,6,4,0,0,6 +ExtUtils-CBuilder,-0.5036465134,1.0344999475,-0.9863787578,https://salsa.debian.org/perl-team/modules/packages/libextutils-cbuilder-perl, https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder.git,4657.3346759259,8,12,0,11,12,0,0,17 +extutils-modulemaker,-1.6287177053,0.4949751478,-2.0632435211,https://salsa.debian.org/perl-team/modules/packages/libextutils-modulemaker-perl, https://github.com/jkeenan/extutils-modulemaker.git,3844.1565972222,0,2,0,1,4,0,0,4 +libfcgi-debian,2.4025790949,4.8601691677,1.2415729675,https://github.com/tehnick/libfcgi-debian,https://github.com/tehnick/libfcgi-debian,1176.1604513889,0,1,0,1,1,0,0,2 +File-MimeInfo,1.3146582473,3.1446233838,0.4775906292,https://salsa.debian.org/perl-team/modules/packages/libfile-mimeinfo-perl, https://github.com/mbeijen/File-MimeInfo.git,3834.7099189815,10,12,0,18,50,0,0,53 +File-Modified,-0.1454311962,1.4011585761,-0.5041124489,https://salsa.debian.org/perl-team/modules/packages/libfile-modified-perl, https://github.com/neilb/File-Modified,2145.0378472222,1,2,0,1,0,0,0,1 +file-save-home,-1.8007818428,0.3604487668,-2.2376298003,https://salsa.debian.org/perl-team/modules/packages/libfile-save-home-perl, https://github.com/jkeenan/file-save-home,1776.9554861111,0,2,0,1,0,0,0,1 +File-Touch,0.098284703,1.8336262821,-0.2560959194,https://salsa.debian.org/perl-team/modules/packages/libfile-touch-perl, https://github.com/neilb/File-Touch,4116.4970486111,1,3,0,2,3,0,0,3 +perl-File-Write-Rotate,-1.0296556573,1.3459084629,-1.5005566671,https://salsa.debian.org/perl-team/modules/packages/libfile-write-rotate-perl, https://github.com/sharyanto/perl-File-Write-Rotate.git,3146.8113888889,0,17,0,5,6,0,0,7 +filehandle-unget,0.0063823885,1.5940372704,-0.2756601201,https://salsa.debian.org/perl-team/modules/packages/libfilehandle-unget-perl, https://github.com/coppit/filehandle-unget.git,3647.0964930556,0,3,0,1,0,0,0,1 +Filesys-Notify-Simple,0.1924577796,2.7235880131,-0.2464440556,https://salsa.debian.org/perl-team/modules/packages/libfilesys-notify-simple-perl, https://github.com/miyagawa/Filesys-Notify-Simple.git,4730.4164814815,0,13,0,9,27,0,0,27 +Filter,-0.2555356397,0.0318054425,-0.3077435742,https://salsa.debian.org/debian/libfilter-perl, https://github.com/rurban/Filter,4868.3054861111,5,12,0,11,13,0,0,14 +filter-template,-1.0581574357,1.1903314595,-1.5773248661,https://salsa.debian.org/perl-team/modules/packages/libfilter-template-perl, https://github.com/rcaputo/filter-template,1475.5620138889,0,1,0,1,0,0,0,1 +libfixposix,-0.4206114577,2.0891396228,-0.9806467917,https://salsa.debian.org/common-lisp-team/libfixposix, https://github.com/sionescu/libfixposix.git,4611.074537037,9,4,0,10,24,0,0,28 +libfizmo,0.6273284521,4.5692102059,-0.4878285416,https://github.com/chrender/libfizmo,https://github.com/chrender/libfizmo,4850.5273958333,1,7,0,3,3,0,0,3 +libfsntfs,0.3317907898,2.8232850998,-0.2751892076,https://salsa.debian.org/pkg-security-team/libfsntfs, https://github.com/libyal/libfsntfs.git,3331.7044212963,0,1,0,1,16,0,2,18 +libfte,-1.9268255727,0.4828975174,-2.5557399688,https://github.com/kpdyer/libfte/tree/debian/unstable,https://github.com/kpdyer/libfte,519.2035763889,0,6,1,3,6,0,0,6 +libfvde,0.9569035002,4.5103410226,-0.1365413277,https://salsa.debian.org/pkg-security-team/libfvde, https://github.com/libyal/libfvde.git,3327.7584953704,0,1,0,1,79,0,2,81 +libfwnt,0.4678493195,3.4503175442,-0.3155910203,https://salsa.debian.org/pkg-security-team/libfwnt, https://github.com/libyal/libfwnt,3707.8170833333,2,1,0,3,9,0,2,11 +libfwsi,0.4767451355,3.2824611568,-0.3244519074,https://salsa.debian.org/pkg-security-team/libfwsi, https://github.com/libyal/libfwsi.git,3356.5179398148,0,1,0,1,19,0,2,21 +gclib,-1.2540063751,1.2393506434,-1.793979304,https://salsa.debian.org/med-team/libgclib, https://github.com/gpertea/gclib,2782.2130555556,2,2,0,3,11,0,0,11 +gdal-grass,0.1785470496,2.1229290789,-0.4698383341,https://salsa.debian.org/debian-gis-team/gdal-grass, https://github.com/OSGeo/gdal-grass.git,695.4440625,6,4,0,13,3,0,0,13 +geo-google-mapobject,-0.8736364381,1.4566987694,-1.3139869808,https://salsa.debian.org/perl-team/modules/packages/libgeo-google-mapobject-perl, https://github.com/periapt/geo-google-mapobject.git,50.641099537,0,1,0,1,1,0,0,2 +geoip-api-perl,-0.1336111961,0.5223083889,-0.2976960926,https://salsa.debian.org/perl-team/modules/packages/libgeo-ip-perl, https://github.com/maxmind/geoip-api-perl.git,4739.8765162037,5,12,0,10,18,0,0,22 +git-pureperl,-0.9270531395,0.744963627,-1.3901965303,https://salsa.debian.org/perl-team/modules/packages/libgit-pureperl-perl, https://github.com/broquaint/git-pureperl.git,2866.3317824074,3,22,0,14,6,0,0,15 +libgit2,0.7426843467,1.4899627881,0.3118438265,https://salsa.debian.org/debian/libgit2, https://github.com/libgit2/libgit2.git,5520.8953703704,104,508,0,399,0,0,0,399 +gnupg-interface,0.1615830389,0.739184756,-0.1104590476,https://salsa.debian.org/perl-team/modules/packages/libgnupg-interface-perl, https://github.com/bestpractical/gnupg-interface.git,5505.2035300926,4,10,0,13,15,0,0,22 +Graph-D3,-2.0103879366,0.5815176639,-2.5923181246,https://salsa.debian.org/perl-team/modules/packages/libgraph-d3-perl, https://github.com/shoheik/Graph-D3.git,1331.9675925926,1,3,0,3,3,0,0,4 +Graph-ReadWrite,0.0013928296,2.5958738365,-0.7361535942,https://salsa.debian.org/perl-team/modules/packages/libgraph-readwrite-perl, https://github.com/neilb/Graph-ReadWrite.git,2428.8532986111,0,5,0,3,3,0,0,3 +p5-graph-writer-dsm,-2.8359680573,-0.7007526287,-3.3075782595,https://salsa.debian.org/perl-team/modules/packages/libgraph-writer-dsm-perl, https://github.com/joenio/p5-graph-writer-dsm.git,1743.0827777778,0,2,0,1,0,0,0,1 +Graphics-ColorNames-WWW,-0.8846098514,1.1184900901,-1.3674713039,https://salsa.debian.org/perl-team/modules/packages/libgraphics-colornames-www-perl, https://github.com/cfaerber/Graphics-ColorNames-WWW,3881.2659606482,0,3,0,1,0,0,0,1 +GraphViz,-0.0292832904,0.8748911062,-0.2131770807,https://salsa.debian.org/perl-team/modules/packages/libgraphviz-perl, https://github.com/ronsavage/GraphViz.git,4149.5647685185,0,8,0,6,5,0,0,6 +libgtextutils,0.1810799898,2.3142226538,-0.6333026117,https://salsa.debian.org/med-team/libgtextutils, https://github.com/agordon/libgtextutils.git,1379.9043171296,1,2,0,1,21,0,0,21 +gzstream,-0.4604271748,1.0639003315,-0.7280422963,https://salsa.debian.org/med-team/libgzstream, https://github.com/kanedo/gzstream.git,1271.8150115741,0,2,0,1,4,0,0,4 +perl-html-stripscripts,-0.3606801075,1.7950802024,-0.7870879637,https://salsa.debian.org/perl-team/modules/packages/libhtml-stripscripts-perl, https://github.com/clintongormley/perl-html-stripscripts.git,634.9694444444,1,1,0,2,4,0,0,4 +html-template,0.2623998312,1.2787610043,-0.0168521747,https://salsa.debian.org/perl-team/modules/packages/libhtml-template-perl, https://github.com/mpeters/html-template.git,2360.5546296296,1,10,0,6,17,0,0,17 +HTML-Tiny,-0.2742049645,2.1158495273,-0.8034234216,https://salsa.debian.org/perl-team/modules/packages/libhtml-tiny-perl, https://github.com/ap/HTML-Tiny.git,5143.9249537037,0,2,0,2,0,0,0,2 +HTTP-Message,1.2240574234,4.0822720732,0.2771667606,https://salsa.debian.org/perl-team/modules/packages/libhttp-message-perl, https://github.com/libwww-perl/HTTP-Message.git,5655.1268518519,76,18,0,56,26,0,1,74 +HTTP-Proxy,-0.0949217121,1.2455203169,-0.6350123924,https://salsa.debian.org/perl-team/modules/packages/libhttp-proxy-perl, https://github.com/book/HTTP-Proxy.git,4041.0415393519,7,1,0,8,15,0,0,18 +http-server-simple,0.8231195226,2.8527464993,0.0853932498,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-perl, https://github.com/bestpractical/http-server-simple,2910.7674074074,4,11,0,11,4,0,0,12 +HTTP-Server-Simple-PSGI,-0.1977126095,1.9180365026,-0.6285309261,https://salsa.debian.org/perl-team/modules/packages/libhttp-server-simple-psgi-perl, https://github.com/miyagawa/HTTP-Server-Simple-PSGI.git,1409.5210763889,0,2,0,2,3,0,0,4 +libhugetlbfs,-0.6583887261,1.4081810608,-1.179127099,https://github.com/punitagrawal/libhugetlbfs.git,https://github.com/punitagrawal/libhugetlbfs.git,2039.1172800926,1,1,0,2,1,0,0,3 +libics,-1.5487571477,-0.7977160114,-1.7237343016,https://salsa.debian.org/med-team/libics, https://github.com/svi-opensource/libics,4511.1015277778,4,15,0,9,13,0,0,14 +Net-IDN-Encode,0.0249334359,3.9722760412,-1.0659289095,https://salsa.debian.org/perl-team/modules/packages/libidna-punycode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.6395949074,6,7,0,3,12,0,0,12 +iksemel,1.4056706717,3.3010035011,0.531380273,https://salsa.debian.org/debian/libiksemel, https://github.com/meduketto/iksemel,2285.3264351852,0,3,0,0,15,0,0,15 +p5-image-exif,-0.3566210754,0.8027615419,-0.610345557,https://salsa.debian.org/perl-team/modules/packages/libimage-exif-perl, https://github.com/arc/p5-image-exif.git,101.2955787037,2,2,0,1,1,0,0,2 +Image-MetaData-JPEG,0.1782474931,2.8015789571,-0.5717239967,https://salsa.debian.org/perl-team/modules/packages/libimage-metadata-jpeg-perl, https://github.com/rjbs/Image-MetaData-JPEG.git,1915.8586921296,1,3,0,2,0,0,0,2 +image-size,0.2728915097,1.5941936935,-0.1459963248,https://salsa.debian.org/perl-team/modules/packages/libimage-size-perl, https://github.com/rjray/image-size.git,4527.5378587963,0,12,0,10,14,0,0,14 +libinstpatch,0.3063715043,2.068273106,-0.0894533028,https://salsa.debian.org/multimedia-team/libinstpatch, https://github.com/swami/libinstpatch,4470.7645833333,4,11,0,8,17,0,0,19 +p5-io-callback,-2.0212295476,0.6694774365,-2.7211969358,https://salsa.debian.org/perl-team/modules/packages/libio-callback-perl, https://github.com/tobyink/p5-io-callback.git,2909.5988078704,0,1,0,1,0,0,0,1 +IO-Digest,-0.1769998583,2.4353442239,-0.8553329296,https://salsa.debian.org/perl-team/modules/packages/libio-digest-perl, https://github.com/clkao/IO-Digest.git,1863.0997106482,1,4,0,3,4,0,0,4 +File-Flock,0.2170241797,2.8246432586,-0.6360167425,https://salsa.debian.org/perl-team/modules/packages/libio-event-perl, https://github.com/muir/File-Flock.git,474.8396990741,0,4,0,4,6,0,0,6 +LibIO-Interface-Perl,1.0184295465,4.1476474847,0.0508969184,https://salsa.debian.org/perl-team/modules/packages/libio-interface-perl, https://github.com/lstein/LibIO-Interface-Perl.git,2278.4801041667,0,2,0,1,6,0,0,7 +perl-io-socket-inet6,1.0536105818,2.554159089,0.3603685147,https://salsa.debian.org/perl-team/modules/packages/libio-socket-inet6-perl, https://github.com/shlomif/perl-io-socket-inet6.git,5052.8307060185,0,3,0,1,0,0,0,1 +IPC-Run3,0.5630723174,3.202492468,-0.0863000736,https://salsa.debian.org/perl-team/modules/packages/libipc-run3-perl, https://github.com/rjbs/IPC-Run3.git,1899.0353819445,8,2,0,10,19,0,0,20 +ipc-system-simple,0.7025068064,3.3730782331,0.0378027178,https://salsa.debian.org/perl-team/modules/packages/libipc-system-simple-perl, https://github.com/pjf/ipc-system-simple.git,5306.4576388889,4,11,0,8,42,0,0,42 +ITL,0.0254308757,1.554670546,-0.4274590481,https://salsa.debian.org/islamic-team/libitl, https://github.com/arabeyes-org/ITL,3251.4730902778,2,13,0,6,19,0,0,19 +libitl-gobject,-0.7439913292,1.4835301757,-1.3690898031,https://salsa.debian.org/islamic-team/libitl-gobject, https://github.com/aelmahmoudy/libitl-gobject.git,2211.2291898148,0,2,0,1,0,0,0,1 +jbzip2,-0.1117625553,1.7645153992,-0.5532046545,https://salsa.debian.org/java-team/libjbzip2-java, https://github.com/routeKIT/jbzip2.git,1394.2040046296,0,2,0,1,0,0,0,1 +libjcat,-2.9665296188,-1.1386554909,-3.3229751102,https://salsa.debian.org/efi-team/libjcat, https://github.com/hughsie/libjcat.git,1373.0888425926,7,5,0,7,13,0,0,14 +jifty-dbi,-1.6146679558,0.7852306876,-2.2707603438,https://salsa.debian.org/perl-team/modules/packages/libjifty-dbi-perl, https://github.com/bestpractical/jifty-dbi.git,2518.1463888889,1,16,0,21,6,0,0,25 +Lingua-EN-Inflect-Number,0.1280326899,2.5007020448,-0.4017863004,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-inflect-number-perl, https://github.com/neilbowers/Lingua-EN-Inflect-Number,2030.0671527778,1,2,0,1,0,0,0,1 +Lingua-EN-Numbers-Ordinate,-0.5287396988,1.7136767904,-0.9568574903,https://salsa.debian.org/perl-team/modules/packages/liblingua-en-numbers-ordinate-perl, https://github.com/neilb/Lingua-EN-Numbers-Ordinate,4119.2290856482,1,2,0,1,0,0,0,1 +Lingua-PT-Stemmer,-0.0370378021,1.7556059977,-0.4052943013,https://salsa.debian.org/perl-team/modules/packages/liblingua-pt-stemmer-perl, https://github.com/neilb/Lingua-PT-Stemmer.git,472.7143518519,1,2,0,1,0,0,0,1 +list-compare,0.3913134488,2.6930680807,-0.0910990527,https://salsa.debian.org/perl-team/modules/packages/liblist-compare-perl, https://github.com/jkeenan/list-compare.git,5186.5518171296,4,4,0,6,7,0,0,7 +Locale-Maketext-Gettext,-0.4988694756,1.1302337571,-0.8279808959,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-gettext-perl, https://github.com/imacat/Locale-Maketext-Gettext.git,519.6569444444,0,2,0,1,0,0,0,1 +locale-maketext-lexicon,0.161275632,1.8969602532,-0.2840997851,https://salsa.debian.org/perl-team/modules/packages/liblocale-maketext-lexicon-perl, https://github.com/clintongormley/locale-maketext-lexicon.git,1951.7074074074,1,9,0,7,17,0,0,17 +p5-Locales,-1.0439124558,1.1408551718,-1.4785456456,https://salsa.debian.org/perl-team/modules/packages/liblocales-perl, https://github.com/drmuey/p5-Locales.git,1740.6568287037,0,3,0,2,4,0,0,4 +liblockfile-debian,1.3452804851,2.1620317868,0.8349604945,https://github.com/miquels/liblockfile-debian,https://github.com/miquels/liblockfile-debian,1484.1868055556,0,2,0,1,0,0,0,1 +log-message-simple,0.207617298,1.6631748554,-0.0635138373,https://salsa.debian.org/perl-team/modules/packages/liblog-message-simple-perl, https://github.com/jib/log-message-simple.git,1230.0807175926,0,3,0,2,1,0,0,2 +libltc,0.2546232027,2.4814619881,-0.1954510519,https://salsa.debian.org/multimedia-team/libltc, https://github.com/x42/libltc,3674.4912152778,2,8,0,6,48,0,0,50 +p5-lwp-useragent-chicaching,-0.7942219141,1.5178916477,-1.2272281043,https://salsa.debian.org/perl-team/modules/packages/liblwp-useragent-chicaching-perl, https://github.com/kjetilk/p5-lwp-useragent-chicaching.git,1283.7690740741,0,1,0,1,3,0,0,3 +magpie,-1.7158635114,1.197884825,-2.5208982983,https://salsa.debian.org/perl-team/modules/packages/libmagpie-perl, https://github.com/tamarou/magpie.git,2275.6417824074,0,6,0,5,5,0,3,9 +mail-mbox-messageparser,-0.0992180029,0.3833084593,-0.2549281336,https://salsa.debian.org/perl-team/modules/packages/libmail-mbox-messageparser-perl, https://github.com/coppit/mail-mbox-messageparser.git,3258.3029513889,0,3,0,1,0,0,0,1 +perl5-MailTools,1.0529685668,2.1520713579,0.4690208845,https://salsa.debian.org/perl-team/modules/packages/libmailtools-perl, https://github.com/markov2/perl5-MailTools,1648.7267013889,0,2,0,1,4,0,0,4 +libmatemixer,0.5190776518,2.8714266987,-0.0439618764,https://salsa.debian.org/debian-mate-team/libmatemixer, https://github.com/mate-desktop/libmatemixer.git,3404.5255092593,7,20,0,15,31,0,0,35 +perl-math-basecalc,-1.0492971392,0.7762474864,-1.6069135742,https://salsa.debian.org/perl-team/modules/packages/libmath-basecalc-perl, https://github.com/kenahoo/perl-math-basecalc.git,3269.0290740741,0,8,0,2,5,0,0,5 +Math-GMP,-0.4977700318,1.2717897116,-0.9791927568,https://salsa.debian.org/perl-team/modules/packages/libmath-gmp-perl, https://github.com/turnstep/Math-GMP.git,2969.082974537,1,6,0,5,6,0,0,6 +Math-Random-ISAAC,0.6477137679,3.3609472371,-0.0377506361,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-perl, https://github.com/jawnsy/Math-Random-ISAAC,2416.3080324074,0,1,0,1,1,0,0,1 +Math-Random-ISAAC-XS,0.4200441154,2.426176795,-0.0688144675,https://salsa.debian.org/perl-team/modules/packages/libmath-random-isaac-xs-perl, https://github.com/jawnsy/Math-Random-ISAAC-XS.git,2412.8853703704,0,1,0,1,0,0,0,1 +math-random-oo,-1.3518748941,0.9987771421,-1.8072166016,https://salsa.debian.org/perl-team/modules/packages/libmath-random-oo-perl, https://github.com/dagolden/math-random-oo.git,1499.3150694445,0,1,0,1,2,0,0,3 +mce-perl,-0.2406488454,2.0794415417,-0.6733224842,https://salsa.debian.org/perl-team/modules/packages/libmce-perl, https://github.com/marioroy/mce-perl.git,2944.7772337963,1,6,0,6,17,0,0,17 +Memoize-ExpireLRU,0.1936518014,2.9309817533,-0.4019145174,https://salsa.debian.org/perl-team/modules/packages/libmemoize-expirelru-perl, https://github.com/neilb/Memoize-ExpireLRU,624.640474537,1,2,0,1,0,0,0,1 +Message-Passing,-1.5721707445,-0.5831799889,-1.7635460333,https://salsa.debian.org/perl-team/modules/packages/libmessage-passing-perl, https://github.com/suretec/Message-Passing.git,2987.7789236111,1,15,0,11,14,0,0,16 +method-signatures-simple,-0.5051718146,2.287989514,-1.1367149384,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-simple-perl, https://github.com/rhesa/method-signatures-simple.git,4262.9309953704,0,6,0,2,4,0,0,4 +minIni,-0.452730067,0.8302579746,-0.745676424,https://salsa.debian.org/yangfl-guest/minIni, https://github.com/compuphase/minIni,2280.3336342593,2,6,0,4,22,0,0,22 +MLDBM,0.2556850889,2.2171328226,-0.1413700534,https://salsa.debian.org/perl-team/modules/packages/libmldbm-perl, https://github.com/chorny/MLDBM.git,1906.0319791667,3,2,0,2,0,0,0,2 +Module-CPANTS-Analyse,0.6092458087,3.4788905255,-0.4688881027,https://salsa.debian.org/perl-team/modules/packages/libmodule-cpants-analyse-perl, https://github.com/cpants/Module-CPANTS-Analyse.git,5647.7312152778,8,20,0,23,21,0,0,33 +module-extract-use,-1.4214887251,0.7223462254,-1.8616614077,https://salsa.debian.org/perl-team/modules/packages/libmodule-extract-use-perl, https://github.com/briandfoy/module-extract-use.git,2918.7995717593,0,7,0,4,8,0,0,8 +Module-Find,0.5306890725,2.9619110746,-0.0631954531,https://salsa.debian.org/perl-team/modules/packages/libmodule-find-perl, https://github.com/crenz/Module-Find.git,4710.686875,2,8,0,7,14,0,0,15 +module-install-readmefrompod,-1.8312131642,-0.8033082466,-2.0615814708,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-readmefrompod-perl, https://github.com/bingos/module-install-readmefrompod.git,2847.0250694445,0,7,0,6,4,0,0,6 +Perl-Module-Install-XSUtil,-1.9528681484,-0.4161990227,-2.2440219121,https://salsa.debian.org/perl-team/modules/packages/libmodule-install-xsutil-perl, https://github.com/gfx/Perl-Module-Install-XSUtil.git,1649.8556828704,0,9,0,3,4,0,0,6 +Module-Manifest,-0.2750809802,2.0412664766,-0.7072069311,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-perl, https://github.com/karenetheridge/Module-Manifest,3547.1878935185,0,3,0,3,0,0,0,3 +module-manifest-skip-pm,-0.3311047045,2.0896483213,-0.8611240864,https://salsa.debian.org/perl-team/modules/packages/libmodule-manifest-skip-perl, https://github.com/ingydotnet/module-manifest-skip-pm.git,1169.1213194445,0,5,0,3,11,0,0,11 +p5-module-package-rdf,-1.9996964425,0.8089579857,-2.7247782661,https://salsa.debian.org/perl-team/modules/packages/libmodule-package-rdf-perl, https://github.com/tobyink/p5-module-package-rdf,668.6822106481,0,1,0,1,0,0,0,1 +module-signature,0.6153933477,2.3081438868,0.0588548985,https://salsa.debian.org/perl-team/modules/packages/libmodule-signature-perl, https://github.com/audreyt/module-signature.git,4414.5291782407,0,17,0,11,23,0,0,23 +Module-Starter-Plugin-CGIApp,-1.0772217685,1.7774421629,-2.0362185062,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,4024.0661921296,0,7,0,4,4,0,0,4 +p5-moops,-2.0160241228,0.1848579356,-2.5747690554,https://salsa.debian.org/perl-team/modules/packages/libmoops-perl, https://github.com/tobyink/p5-moops,2419.9678819445,0,3,0,2,7,0,0,7 +p5-moosex-attributetags,-1.484446991,0.7122802252,-1.9169457017,https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributetags-perl, https://github.com/tobyink/p5-moosex-attributetags,2042.2449074074,0,1,0,1,4,0,0,4 +perl-mp3-info,0.9722005224,3.0635904685,0.1459746264,https://salsa.debian.org/perl-team/modules/packages/libmp3-info-perl, https://github.com/JJ/perl-mp3-info.git,3267.4327777778,1,4,0,1,3,0,0,3 +libmsiecf,0.4655231291,3.4302212781,-0.3202002984,https://salsa.debian.org/pkg-security-team/libmsiecf, https://github.com/libyal/libmsiecf.git,3548.1866898148,0,1,0,1,5,0,2,7 +multidimensional,0.6378488709,3.4059130057,-0.1088057954,https://salsa.debian.org/perl-team/modules/packages/libmultidimensional-perl, https://github.com/ilmari/multidimensional,4293.3777314815,1,3,0,4,4,0,0,6 +libmurmurhash,-1.1606750215,1.2419656851,-1.5922212752,https://salsa.debian.org/med-team/libmurmurhash, https://github.com/kloetzl/libmurmurhash.git,1568.0675578704,0,1,0,1,0,0,0,1 +perl-nagios-object,-0.0287280626,2.4165825039,-0.5145037556,https://salsa.debian.org/perl-team/modules/packages/libnagios-object-perl, https://github.com/duncs/perl-nagios-object.git,4719.3367939815,1,14,0,9,10,0,0,11 +libnatpmp,0.2543409022,1.1083518392,4.5219738185424e-05,https://salsa.debian.org/miniupnp-team/libnatpmp, https://github.com/miniupnp/libnatpmp,3832.0982523148,3,20,0,19,24,0,0,26 +libnbcompat,-5.0470695639,-2.6158016281,-5.4799549879,https://github.com/jgoerzen/libnbcompat,https://github.com/jgoerzen/libnbcompat,3888.0046759259,0,19,0,0,2,0,0,2 +libndp,0.413875636,2.2608821975,0.0018314313,https://salsa.debian.org/debian/libndp, https://github.com/jpirko/libndp.git,3924.0402314815,9,4,0,9,18,0,0,20 +libneo4j-client,-0.4420044551,1.822604323,-1.1962509735,https://github.com/cleishm/libneo4j-client,https://github.com/cleishm/libneo4j-client,1826.3064351852,2,5,0,3,62,0,1,63 +p5-Net-DNS-Lite,-0.3886008757,1.7387555976,-0.810307745,https://salsa.debian.org/perl-team/modules/packages/libnet-dns-lite-perl, https://github.com/kazuho/p5-Net-DNS-Lite.git,2215.0713888889,0,7,0,6,9,0,0,9 +Net-IDN-Encode,0.2021202967,2.48699816,-0.240749263,https://salsa.debian.org/perl-team/modules/packages/libnet-idn-encode-perl, https://github.com/cfaerber/Net-IDN-Encode.git,3674.6395949074,6,7,0,3,12,0,0,12 +perl-net-jabber-bot,-1.4064709925,2.213836255,-2.339836966,https://salsa.debian.org/perl-team/modules/packages/libnet-jabber-bot-perl, https://github.com/toddr/perl-net-jabber-bot.git,4656.9431712963,0,12,0,5,11,0,1,12 +Net-LDAP-FilterBuilder,-1.0311673826,1.3164424951,-1.5505907465,https://salsa.debian.org/perl-team/modules/packages/libnet-ldap-filterbuilder-perl, https://github.com/ollyg/Net-LDAP-FilterBuilder.git,3727.9931481482,1,4,0,2,2,0,0,2 +libnet-ldapapi-perl,0.3298012331,4.2171229252,-0.937584259,https://github.com/whm/libnet-ldapapi-perl,https://github.com/whm/libnet-ldapapi-perl,2319.3761458333,0,8,0,3,3,0,0,3 +Net-Netmask,0.1949090184,1.297397456,-0.0893189593,https://salsa.debian.org/perl-team/modules/packages/libnet-netmask-perl, https://github.com/jmaslak/Net-Netmask.git,4478.3867592593,1,7,0,6,3,0,0,7 +Net-OpenID-Server,-1.0955544028,0.6845393717,-1.5372515082,https://salsa.debian.org/perl-team/modules/packages/libnet-openid-server-perl, https://github.com/robn/Net-OpenID-Server.git,848.2155092593,2,3,0,3,3,0,0,4 +Net-SMTP-TLS,-0.1132113761,2.611489661,-0.7024918462,https://salsa.debian.org/perl-team/modules/packages/libnet-smtp-tls-butmaintained-perl, https://github.com/fayland/Net-SMTP-TLS,3215.1503240741,2,5,0,4,4,0,0,4 +libnfo,-1.6756209904,0.1206412877,-2.1869772617,https://salsa.debian.org/debian/libnfo, https://github.com/GeeXboX/libnfo,1108.0312384259,0,6,0,3,0,0,0,3 +libnids,1.4807006894,2.868899345,0.7254298026,https://salsa.debian.org/pkg-security-team/libnids, https://github.com/MITRECND/libnids.git,3593.0894791667,1,9,0,6,10,0,0,12 +number-fraction,-1.540099922,1.0079905103,-2.1216475277,https://salsa.debian.org/perl-team/modules/packages/libnumber-fraction-perl, https://github.com/p5-number-fraction/number-fraction.git,5664.8216203704,3,11,0,5,9,0,0,9 +libofa,0.4733582109,1.4335688496,0.0963115975,https://salsa.debian.org/debian/libofa, https://github.com/tanob/libofa.git,2279.4909837963,1,2,0,1,3,0,0,3 +libolecf,0.4621655423,3.3267217863,-0.317708483,https://salsa.debian.org/pkg-security-team/libolecf, https://github.com/libyal/libolecf.git,3351.0533101852,0,1,0,1,5,0,2,7 +libopenaptx,-1.7697893715,0.4021046488,-2.2318938305,https://salsa.debian.org/debian/libopenaptx, https://github.com/pali/libopenaptx,1024.2505671296,0,2,0,2,31,0,0,31 +pal,-0.7436164089,0.7988128956,-1.0249643964,https://salsa.debian.org/med-team/libpal-java, https://github.com/tamuri/pal,382.9409953704,0,2,0,1,0,0,0,1 +p5-Palm,0.0204029609,1.2197989009,-0.348294955,https://salsa.debian.org/perl-team/modules/packages/libpalm-perl, https://github.com/madsen/p5-Palm,2036.3955092593,2,5,0,5,0,0,0,5 +pam-encfs,-0.0672752006,1.0391890178,-0.5514410008,https://salsa.debian.org/debian/libpam-encfs, https://github.com/tinti/pam-encfs,2773.2122222222,0,4,0,2,2,0,0,4 +libpam-pwdfile,-0.1067432026,0.5002558718,-0.3226316808,https://github.com/tiwe-de/libpam-pwdfile/tree/debian,https://github.com/tiwe-de/libpam-pwdfile,923.3027546296,2,2,0,2,8,0,0,9 +PGObject-Type-DateTime,-1.4815397898,0.6709430232,-1.9159731716,https://salsa.debian.org/perl-team/modules/packages/libpgobject-type-datetime-perl, https://github.com/ledgersmb/PGObject-Type-DateTime.git,3652.6989467593,0,8,0,4,6,0,0,6 +PGObject-Util-DBAdmin,-1.5448908629,0.6014090328,-1.9825388902,https://salsa.debian.org/perl-team/modules/packages/libpgobject-util-dbadmin-perl, https://github.com/ledgersmb/PGObject-Util-DBAdmin.git,2615.9496412037,0,5,0,3,10,0,0,10 +pgp-sign,-0.5037910117,2.2440221924,-1.3324653392,https://salsa.debian.org/rra/libpgp-sign-perl, https://github.com/rra/pgp-sign,2555.0956134259,1,5,0,2,2,0,0,2 +perl5-PGPLOT,-0.1986814175,1.8032644315,-0.9289181032,https://salsa.debian.org/perl-team/modules/packages/libpgplot-perl, https://github.com/PDLPorters/perl5-PGPLOT.git,2564.25125,4,7,0,6,6,0,0,7 +Plack-Middleware-CSRFBlock,-2.8898967554,-0.7198364868,-3.3240833199,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-csrfblock-perl, https://github.com/mattp-/Plack-Middleware-CSRFBlock,1436.9725347222,1,7,0,3,3,0,0,4 +Plack-Middleware-Deflater,-0.8686046005,1.4026303206,-1.3409550295,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl, https://github.com/miyagawa/Plack-Middleware-Deflater.git,4308.6622222222,0,5,0,3,10,0,0,11 +Plack-Middleware-File-Sass,-3.742621833,-1.2109466542,-4.3202138211,https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-file-sass-perl, https://github.com/miyagawa/Plack-Middleware-File-Sass.git,372.7359490741,0,1,0,1,4,0,0,5 +plack-test-anyevent,-2.2481916187,0.456054425,-2.955500627,https://salsa.debian.org/perl-team/modules/packages/libplack-test-anyevent-perl, https://github.com/hoelzro/plack-test-anyevent.git,2226.7020138889,0,6,0,3,7,0,0,7 +pod-2-docbook,-2.1858439437,0.1225281674,-2.6170683957,https://salsa.debian.org/perl-team/modules/packages/libpod-2-docbook-perl, https://github.com/jozef/pod-2-docbook,1292.6652546296,0,6,0,3,2,0,0,3 +libpod-webserver-perl,-0.4204997081,2.3714699089,-1.5368509522,https://github.com/mogaal/libpod-webserver-perl,https://github.com/mogaal/libpod-webserver-perl,801.0357291667,1,1,0,1,1,0,0,2 +Pod-Wordlist-hanekomu,-2.3524762868,-0.0387599898,-2.7860641364,https://salsa.debian.org/perl-team/modules/packages/libpod-wordlist-hanekomu-perl, https://github.com/dagolden/Pod-Wordlist-hanekomu,1571.1035763889,0,3,0,2,0,0,0,2 +poe-component-client-http,-1.0501503685,-0.2644618645,-1.3283877911,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-http-perl, https://github.com/rcaputo/poe-component-client-http,2297.0143402778,1,4,0,7,6,0,0,10 +poe-component-client-ident,-2.7407891821,-1.3969533145,-3.0142475956,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-ident-perl, https://github.com/bingos/poe-component-client-ident.git,49.7081481481,0,1,0,1,0,0,0,1 +poe-component-client-keepalive,-0.9123072197,1.3895866184,-1.3489172881,https://salsa.debian.org/perl-team/modules/packages/libpoe-component-client-keepalive-perl, https://github.com/rcaputo/poe-component-client-keepalive.git,2357.5085300926,2,4,0,8,6,0,0,10 +poe-filter-ircd,-0.3745579428,1.9358389215,-0.8315150468,https://salsa.debian.org/perl-team/modules/packages/libpoe-filter-ircd-perl, https://github.com/bingos/poe-filter-ircd.git,1552.6868865741,0,4,0,3,1,0,0,3 +poe-loop-tk,-0.195847078,2.023755452,-0.7553813013,https://salsa.debian.org/perl-team/modules/packages/libpoe-loop-tk-perl, https://github.com/rcaputo/poe-loop-tk,2011.4116435185,0,7,0,11,1,0,0,12 +Probe-Perl,-0.1208694783,2.6826431693,-0.7468528277,https://salsa.debian.org/perl-team/modules/packages/libprobe-perl-perl, https://github.com/kenahoo/Probe-Perl,112.0281712963,0,2,0,1,0,0,0,1 +perl-proc-processtable,0.037499403,0.4824843529,-0.0771518619,https://salsa.debian.org/perl-team/modules/packages/libproc-processtable-perl, https://github.com/jwbargsten/perl-proc-processtable,3896.7371180556,1,25,0,20,24,0,0,25 +libpuzzle,-0.6680140267,0.6529557031,-1.1243331237,https://salsa.debian.org/debian-phototools-team/libpuzzle, https://github.com/jedisct1/libpuzzle,2324.9386458333,1,8,0,5,25,0,0,26 +libpwquality,0.5103514314,1.8778785061,0.0684762008,https://salsa.debian.org/gnome-team/libpwquality, https://github.com/libpwquality/libpwquality.git,4429.9063773148,51,15,0,49,43,0,0,74 +libqcow,0.4345572635,3.1501552197,-0.2914212024,https://salsa.debian.org/pkg-security-team/libqcow, https://github.com/libyal/libqcow.git,3715.7671527778,0,1,0,1,19,0,2,21 +p5-rdf-acl,-2.0654979491,1.2809082376,-3.0733910723,https://salsa.debian.org/perl-team/modules/packages/librdf-acl-perl, https://github.com/tobyink/p5-rdf-acl,1688.9962731482,0,1,0,1,0,0,0,1 +RDF-aREF,-1.6321655974,0.5126731294,-2.0632435211,https://salsa.debian.org/perl-team/modules/packages/librdf-aref-perl, https://github.com/nichtich/RDF-aREF.git,2565.8667708333,2,8,0,4,11,0,1,12 +RDF-Generator-Void,-1.6331954297,0.6259569496,-2.0634280229,https://salsa.debian.org/perl-team/modules/packages/librdf-generator-void-perl, https://github.com/kjetilk/RDF-Generator-Void.git,1725.5093171296,0,6,0,4,4,0,0,5 +RDF-Helper-Properties,-1.4850797677,1.0749945226,-2.1065327245,https://salsa.debian.org/perl-team/modules/packages/librdf-helper-properties-perl, https://github.com/kjetilk/RDF-Helper-Properties.git,2324.5435416667,0,5,0,3,5,0,0,5 +RDF-LinkedData,-1.5297189997,-0.0678424369,-2.0840021227,https://salsa.debian.org/perl-team/modules/packages/librdf-linkeddata-perl, https://github.com/kjetilk/RDF-LinkedData.git,4060.5603472222,0,7,0,4,7,0,0,7 +p5-rdf-ns-curated,-1.1846297848,1.0171931504,-1.6213429531,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-curated-perl, https://github.com/kjetilk/p5-rdf-ns-curated.git,2949.064224537,0,4,0,3,5,0,0,5 +RDF-NS,-0.5250160099,1.01221794,-0.8720836033,https://salsa.debian.org/perl-team/modules/packages/librdf-ns-perl, https://github.com/nichtich/RDF-NS.git,4253.4168518519,2,5,0,4,13,0,0,13 +p5-rdf-query-client,-1.1913139725,0.7502046078,-1.7548289358,https://salsa.debian.org/perl-team/modules/packages/librdf-query-client-perl, https://github.com/tobyink/p5-rdf-query-client,1767.4564930556,0,1,0,1,2,0,0,2 +libSavitar,-0.0624513388,1.310740378,-0.382634692,https://salsa.debian.org/3dprinting-team/libsavitar, https://github.com/Ultimaker/libSavitar.git,2417.8881481482,12,19,0,17,35,0,0,38 +libsbsms,0.1678753971,1.6421405226,-0.1313541464,https://salsa.debian.org/multimedia-team/libsbsms, https://github.com/claytonotey/libsbsms.git,571.9734837963,2,6,0,5,9,0,0,9 +p5-scalar-does,-0.5366651555,1.2277898949,-0.9504713641,https://salsa.debian.org/perl-team/modules/packages/libscalar-does-perl, https://github.com/tobyink/p5-scalar-does,1614.181099537,0,3,0,1,2,0,0,2 +libscca,0.4636827697,3.5204192618,-0.331124383,https://salsa.debian.org/pkg-security-team/libscca, https://github.com/libyal/libscca,3348.012650463,1,1,0,2,11,0,2,13 +SDL_net,0.2879256018,2.7048282977,-0.176557932,https://salsa.debian.org/sdl-team/libsdl2-net, https://github.com/libsdl-org/SDL_net.git,5565.0336111111,10,12,0,14,0,0,0,14 +perl-SHARYANTO-Utils,-2.3441465625,-0.0852227274,-2.7855609174,https://salsa.debian.org/perl-team/modules/packages/libsharyanto-utils-perl, https://github.com/perlancar/perl-SHARYANTO-Utils.git,2945.5977546296,0,13,0,2,4,0,0,5 +simpleini,-3.1256993279,-0.5243099389,-3.727940764,https://salsa.debian.org/yangfl-guest/simpleini, https://github.com/brofield/simpleini,5767.1290509259,12,11,0,17,66,0,0,66 +libsmdev,0.4901912636,3.5473022844,-0.3181659308,https://salsa.debian.org/pkg-security-team/libsmdev, https://github.com/libyal/libsmdev,2801.6257060185,0,1,0,1,7,0,2,9 +libsml,-2.5583752988,0.0607386648,-3.2378106609,https://github.com/volkszaehler/libsml/tree/debian,https://github.com/volkszaehler/libsml,4561.3065740741,12,15,0,19,11,0,0,23 +libsmraw,0.4741059034,3.3966321112,-0.3210256742,https://salsa.debian.org/pkg-security-team/libsmraw, https://github.com/libyal/libsmraw.git,2800.5750925926,0,1,0,1,3,0,2,5 +SNMP-Extension-PassPersist,0.1226846415,3.0805333609,-0.7398128832,https://salsa.debian.org/perl-team/modules/packages/libsnmp-extension-passpersist-perl, https://github.com/maddingue/SNMP-Extension-PassPersist.git,1526.080787037,0,1,0,1,2,0,0,3 +SOAP-WSDL,0.2494473126,2.2213700721,-0.2151765381,https://salsa.debian.org/perl-team/modules/packages/libsoap-wsdl-perl, https://github.com/scrottie/SOAP-WSDL,3956.8486342593,2,7,0,5,8,0,0,8 +debian-libsodium,0.7652440851,2.6480355078,0.1255307975,https://github.com/gcsideal/debian-libsodium,https://github.com/gcsideal/debian-libsodium,2198.6639814815,0,2,0,2,3,0,0,5 +sort-naturally,0.7344792523,3.7354162178,-0.0108935716,https://salsa.debian.org/perl-team/modules/packages/libsort-naturally-perl, https://github.com/bingos/sort-naturally.git,681.4402893519,0,3,0,3,6,0,0,7 +term-ui,0.3980651932,2.5988929786,-0.0533124701,https://salsa.debian.org/perl-team/modules/packages/libterm-ui-perl, https://github.com/jib/term-ui.git,4487.1224074074,4,10,0,11,10,0,0,11 +Test-Cmd,-1.4068778673,-0.2437675076,-1.6282879603,https://salsa.debian.org/perl-team/modules/packages/libtest-cmd-perl, https://github.com/neilb/Test-Cmd.git,4572.2283101852,1,7,0,4,6,0,0,7 +test-compile,-0.1757790814,2.2630567936,-0.8030738551,https://salsa.debian.org/perl-team/modules/packages/libtest-compile-perl, https://github.com/egiles/test-compile,5567.3756018519,2,14,0,11,11,0,0,12 +test-corpus-audio-mpd,-2.7413583357,-1.3992673585,-3.0159490653,https://salsa.debian.org/perl-team/modules/packages/libtest-corpus-audio-mpd-perl, http://github.com/jquelin/test-corpus-audio-mpd,904.9165856481,0,2,0,0,0,0,0,0 +Test-Database,-1.833809135,0.6133274632,-2.3400867988,https://salsa.debian.org/perl-team/modules/packages/libtest-database-perl, https://github.com/book/Test-Database.git,2702.2549537037,3,2,0,5,6,0,0,9 +Test-File-Contents,-1.1809622978,0.4343778683,-1.4826469865,https://salsa.debian.org/perl-team/modules/packages/libtest-file-contents-perl, https://github.com/ap/Test-File-Contents.git,4644.3475115741,2,4,0,3,8,0,0,9 +Test-Perl-Critic,0.2642060273,2.9016834456,-0.5237825629,https://salsa.debian.org/perl-team/modules/packages/libtest-perl-critic-perl, https://github.com/Perl-Critic/Test-Perl-Critic.git,4634.7458449074,0,9,0,6,19,0,0,20 +Test-Pod-Coverage,-0.201777392,1.0831475883,-0.4327477008,https://salsa.debian.org/perl-team/modules/packages/libtest-pod-coverage-perl, https://github.com/neilbowers/Test-Pod-Coverage,1677.1204166667,1,2,0,2,4,0,0,5 +test-prereq,-1.8896057083,-0.3676533696,-2.1546117193,https://salsa.debian.org/perl-team/modules/packages/libtest-prereq-perl, https://github.com/briandfoy/test-prereq.git,2918.7659375,4,8,0,7,13,0,0,14 +Test-RDF,-1.5273740593,1.1507063443,-2.1229709088,https://salsa.debian.org/perl-team/modules/packages/libtest-rdf-perl, https://github.com/kjetilk/Test-RDF.git,2744.0844328704,0,3,0,2,4,0,0,4 +Test-RedisServer,-2.9408349327,-0.0880954323,-3.6685151023,https://salsa.debian.org/perl-team/modules/packages/libtest-redisserver-perl, https://github.com/typester/Test-RedisServer.git,3497.317025463,0,12,0,6,19,0,0,19 +Test-Strict,0.0413930215,1.9710003237,-0.4917254856,https://salsa.debian.org/perl-team/modules/packages/libtest-strict-perl, https://github.com/manwar/Test-Strict.git,2362.5205092593,1,15,0,11,23,0,0,23 +Test-XPath,-1.6970041276,0.5827254278,-2.146747561,https://salsa.debian.org/perl-team/modules/packages/libtest-xpath-perl, https://github.com/manwar/Test-XPath.git,4673.8964699074,1,7,0,5,9,0,0,10 +Text-CSV_XS,0.3210443384,2.3035648179,-0.0928202393,https://salsa.debian.org/perl-team/modules/packages/libtext-csv-xs-perl, https://github.com/Tux/Text-CSV_XS.git,5755.1094907407,9,17,0,13,37,0,0,39 +Text-Diff,0.3186250385,2.4917818706,-0.1685547916,https://salsa.debian.org/perl-team/modules/packages/libtext-diff-perl, https://github.com/neilb/Text-Diff,2314.1856018519,0,6,0,3,4,0,0,4 +p5-Text-FindIndent,-0.5555131835,1.6711252899,-1.0083252674,https://salsa.debian.org/perl-team/modules/packages/libtext-findindent-perl, https://github.com/tsee/p5-Text-FindIndent.git,3337.1243287037,0,6,0,2,1,0,0,2 +text-markdown,0.9343197619,4.332977055,-0.1666854375,https://salsa.debian.org/perl-team/modules/packages/libtext-markdown-perl, https://github.com/bobtfish/text-markdown.git,2874.5088194445,0,12,0,7,40,0,0,41 +text-multimarkdown,0.2517262893,2.9301320017,-0.5540498908,https://salsa.debian.org/perl-team/modules/packages/libtext-multimarkdown-perl, https://github.com/bobtfish/text-multimarkdown.git,2348.7609953704,0,10,0,6,15,0,0,18 +Text-Soundex,0.8131696461,4.2054082056,0.0081736989,https://salsa.debian.org/perl-team/modules/packages/libtext-soundex-perl, https://github.com/rjbs/Text-Soundex,1152.2136342593,3,2,0,3,0,0,0,3 +perl-Text-sprintfn,-0.8179589658,2.1500712495,-1.6069534948,https://salsa.debian.org/perl-team/modules/packages/libtext-sprintfn-perl, https://github.com/perlancar/perl-Text-sprintfn,2949.61625,0,11,0,2,2,0,0,3 +thread_pool,-0.5406636263,1.505263536,-1.0728830879,https://salsa.debian.org/med-team/libthread-pool, https://github.com/rvaser/thread_pool,1629.2300810185,1,4,0,1,6,0,0,6 +libthumbor,-3.097994256,-0.4370183469,-3.7171702145,https://salsa.debian.org/python-team/packages/libthumbor, https://github.com/thumbor/libthumbor,4029.2128125,6,18,0,14,40,0,7,48 +Tie-IxHash,0.7308735457,3.2747506675,0.0615000078,https://salsa.debian.org/perl-team/modules/packages/libtie-ixhash-perl, https://github.com/chorny/Tie-IxHash.git,1314.8113773148,1,4,0,2,6,0,0,6 +tools.logging,-0.0293820524,2.7335220749,-0.6673515718,https://salsa.debian.org/clojure-team/libtools-logging-clojure, https://github.com/clojure/tools.logging.git,4541.1196180556,3,16,0,7,0,0,0,7 +p5-types-datetime,-1.2224253104,1.1350772403,-1.7134370382,https://salsa.debian.org/perl-team/modules/packages/libtypes-datetime-perl, https://github.com/tobyink/p5-types-datetime,1190.8059837963,1,4,0,3,5,0,0,5 +libunibreak,0.3910707314,2.538413373,-0.1234807159,https://salsa.debian.org/qt-kde-team/3rdparty/libunibreak, https://github.com/adah1972/libunibreak.git,5748.0207407407,6,11,0,12,26,0,3,29 +libuninameslist,0.4875132738,2.4863001693,-0.0941545187,https://salsa.debian.org/fonts-team/libuninameslist, https://github.com/fontforge/libuninameslist,5640.1865740741,5,13,0,13,19,0,0,20 +usbauth-all,-0.6014875746,1.9320845325,-1.2251803558,https://salsa.debian.org/debian/libusbauth-configparser, https://github.com/kochstefan/usbauth-all.git,2917.2837384259,3,5,0,2,7,0,0,7 +vcs-lite,-0.8542886427,1.4604399952,-1.3294177339,https://salsa.debian.org/perl-team/modules/packages/libvcs-lite-perl, http://github.com/barbie/vcs-lite,1975.3471527778,0,1,0,0,0,0,0,0 +libverto,2.4189536777,5.947206779,1.0158918925,https://salsa.debian.org/debian/libverto, https://github.com/latchset/libverto,3721.9244907408,8,2,0,9,9,0,0,14 +libvhdi,0.6481021454,3.1352052875,-0.1671545473,https://salsa.debian.org/pkg-security-team/libvhdi, https://github.com/libyal/libvhdi.git,3717.6224074074,1,1,0,2,16,0,2,18 +vitacilina,-3.6021180136,-0.769754564,-4.2924781327,https://salsa.debian.org/perl-team/modules/packages/libvitacilina-perl, https://github.com/damog/vitacilina.git,2796.7499884259,1,5,0,4,5,0,0,6 +libvmdk,0.9664788559,4.388428618,-0.090886102,https://salsa.debian.org/pkg-security-team/libvmdk, https://github.com/libyal/libvmdk.git,2936.766087963,2,1,0,3,29,0,2,31 +perl5-XML-Compile-WSDL11,-1.4310286216,0.7419388273,-1.8594446745,https://salsa.debian.org/perl-team/modules/packages/libxml-compile-wsdl11-perl, https://github.com/markov2/perl5-XML-Compile-WSDL11,1204.3164351852,0,2,0,1,0,0,0,1 +XML-Encoding,-0.7093222742,1.489807431,-1.1875178918,https://salsa.debian.org/perl-team/modules/packages/libxml-encoding-perl, https://github.com/steve-m-hay/XML-Encoding.git,2428.8622685185,1,1,0,1,0,0,0,1 +perl-XML-Generator,-0.4859689923,1.0279841867,-0.8301607275,https://salsa.debian.org/perl-team/modules/packages/libxml-generator-perl, https://github.com/timlegge/perl-XML-Generator,442.0406828704,0,3,0,2,0,0,0,2 +XML-SAX-Expat,0.7084412925,2.9227171248,0.0786452436,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-expat-perl, https://github.com/hoehrmann/XML-SAX-Expat,2544.4844675926,0,4,0,2,2,0,0,2 +xml-sax-machines,-0.9628604737,0.4253404586,-1.269754049,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-machines-perl, https://github.com/perigrin/xml-sax-machines.git,1529.9486111111,1,2,0,1,2,0,0,2 +xml-sax,0.996402312,2.2577312148,0.3914828238,https://salsa.debian.org/perl-team/modules/packages/libxml-sax-perl, https://github.com/grantm/xml-sax,3966.2573726852,0,6,0,3,4,0,0,5 +p5-xml-saxon-xslt2,-1.0066125051,2.2847267339,-1.8645802565,https://salsa.debian.org/perl-team/modules/packages/libxml-saxon-xslt2-perl, https://github.com/tobyink/p5-xml-saxon-xslt2,1518.5208564815,0,1,0,1,2,0,0,2 +xmlbird,0.3929313241,3.1477652867,-0.4381392316,https://salsa.debian.org/fonts-team/libxmlbird, https://github.com/johanmattssonm/xmlbird.git,3048.2602777778,1,7,0,6,9,0,0,9 +YAML-AppConfig,-0.2806665447,2.1538425871,-0.9966889755,https://salsa.debian.org/perl-team/modules/packages/libyaml-appconfig-perl, https://github.com/Xaerxess/YAML-AppConfig,1551.2373611111,5,2,0,4,0,0,0,4 +libydpdict,-1.336791229,0.3110794516,-1.7407427608,https://github.com/porridge/libydpdict,https://github.com/porridge/libydpdict,5005.9569675926,1,3,0,2,1,0,0,2 +libzeep,-1.527909209,-0.6468594182,-1.7548572329,https://salsa.debian.org/med-team/libzeep, https://github.com/mhekkel/libzeep.git,5502.8286342593,2,5,0,2,10,0,0,10 +20kly,1.4342234885,4.3783383344,0.2667152562,https://salsa.debian.org/python-team/packages/lightyears, https://github.com/20kly/20kly.git,4073.732349537,0,3,0,1,5,0,0,5 +lilv,0.3731954954,1.1783141026,0.0585307699,https://salsa.debian.org/multimedia-team/lilv, https://github.com/lv2/lilv.git ,5733.8443518519,8,1,0,9,44,0,0,45 +limereg,0.2360714075,2.909288917,-0.7247260854,https://salsa.debian.org/science-team/limereg, https://github.com/RoelofBerg/limereg.git,1172.0418171296,0,3,0,2,6,0,0,6 +logtop,0.3498096662,3.7145308344,-0.5283480087,https://github.com/JulienPalard/logtop,https://github.com/JulienPalard/logtop,3192.2077430556,0,9,0,4,8,0,0,8 +lolcat,0.6721262935,3.1765432052,-0.1088405445,https://salsa.debian.org/ruby-team/lolcat, https://github.com/busyloop/lolcat.git,3767.9154513889,1,19,0,15,63,0,0,72 +loqui,-1.7007984788,0.6039967407,-2.1464740031,https://salsa.debian.org/debian/loqui, https://github.com/sunnyone/loqui.git,4178.2538078704,1,9,0,3,2,0,0,3 +lsmount,0.241790673,3.2370471304,-0.6151908303,https://github.com/Llandon/lsmount,https://github.com/Llandon/lsmount,2894.8834259259,1,4,0,1,3,0,0,3 +ltsp,-0.2605389691,-0.1270230433,-0.35762279,https://github.com/ltsp/ltsp/,https://github.com/ltsp/ltsp,1481.8791782407,11,5,0,10,11,0,25,43 +luadbi,0.1585813148,2.686351466,-0.4949553216,https://salsa.debian.org/lua-team/lua-dbi, https://github.com/mwild1/luadbi,2870.1189699074,1,15,0,9,30,0,0,31 +luaexpat,0.0739779286,0.7317384216,-0.0425516616,https://salsa.debian.org/lua-team/lua-expat, https://github.com/lunarmodules/luaexpat,4256.8331365741,4,6,0,7,11,0,0,11 +linotify,-0.5779890984,2.143926952,-1.2238495501,https://salsa.debian.org/lua-team/lua-inotify, https://github.com/hoelzro/linotify.git,2964.3124768519,3,9,0,8,16,0,0,18 +lualdap,0.0504029107,1.7349223597,-0.4425312123,https://salsa.debian.org/lua-team/lua-ldap, https://github.com/lualdap/lualdap.git,4408.7069791667,7,12,0,13,25,0,0,30 +say,0.0600475565,3.4355060639,-0.8262923484,https://salsa.debian.org/lua-team/lua-say, https://github.com/lunarmodules/say.git,4008.0407638889,1,11,0,8,11,0,0,11 +lyaml,-0.3454983994,1.9583709762,-0.7980928636,https://salsa.debian.org/lua-team/lua-yaml/, https://github.com/gvvaughan/lyaml,3607.2911111111,1,7,1,6,63,0,0,63 +lunar-date,-1.0901325066,-0.0609883227,-1.3741924046,https://salsa.debian.org/chinese-team/lunar-date, https://github.com/yetist/lunar-date,5400.1525115741,1,8,0,2,12,0,0,12 +luola,-0.2736280431,0.4554221137,-0.5709254832,https://salsa.debian.org/debian/luola, https://github.com/callaa/luola.git,0.009537037,0,1,0,1,2,0,0,3 +lv2file,0.6267118175,3.5316112473,-0.3364614164,https://salsa.debian.org/multimedia-team/lv2file, https://github.com/jeremysalwen/lv2file.git,4139.5358449074,2,9,0,4,7,0,0,9 +lwt,-0.134408789,0.9137216874,-0.5254639396,https://salsa.debian.org/ocaml-team/lwt, https://github.com/ocsigen/lwt.git,5681.6560300926,82,99,0,111,0,0,0,111 +lxappearance,2.8189754808,5.1307581038,1.6743807599,https://salsa.debian.org/lxde-team/lxappearance, https://github.com/lxde/lxappearance.git,4801.901712963,111,38,0,71,12,0,0,76 +lxsession,1.2116112613,1.9433064205,0.7300432073,https://salsa.debian.org/lxde-team/lxsession, https://github.com/lxde/lxsession.git,5699.8882175926,92,44,0,68,24,0,0,80 +lz4json,-0.4492537171,1.9714794785,-0.9639366883,https://github.com/kilobyte/lz4json/tree/debian,https://github.com/kilobyte/lz4json,1639.7853125,4,5,0,5,0,0,0,5 +mac-fdisk-debian,2.7880780441,5.7864461789,1.4460748362,https://github.com/glaubitz/mac-fdisk-debian,https://github.com/glaubitz/mac-fdisk-debian,0.0261342593,1,1,0,1,1,0,0,2 +MACTelnet-Debian-Packaging,0.2259589335,2.9645776481,-0.5410252908,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,1885.9548726852,0,3,0,1,3,0,0,3 +madwimax,0.5386816454,4.8433430858,-0.9450458426,http://github.com/ago/madwimax,http://github.com/ago/madwimax,1040.9560532407,1,3,0,0,0,0,0,0 +magicrescue,0.5638588917,1.9092658203,-0.0393062113,https://salsa.debian.org/pkg-security-team/magicrescue, https://github.com/jbj/magicrescue,1064.0338194445,1,3,0,2,2,0,0,2 +magit-popup,0.2571268821,2.5085186003,-0.2260041619,https://salsa.debian.org/emacsen-team/magit-popup, https://github.com/magit/magit-popup.git,3610.5775925926,17,32,0,43,14,0,0,53 +emacsen-team,-0.9153485178,0.2878604704,-1.1484533672,https://salsa.debian.org/emacsen-team/magithub,https://salsa.debian.org/emacsen-team/magithub,1074.2872569445,13,18,0,0,0,0,0,0 +mando,-0.8468044385,1.2154767785,-1.3465386928,https://salsa.debian.org/python-team/packages/mando, https://github.com/rubik/mando.git,3495.7249768519,7,5,0,9,21,0,0,21 +manpages-zh,0.3013864409,1.4801748551,-0.1366673269,https://salsa.debian.org/chinese-team/manpages-zh, https://github.com/man-pages-zh/manpages-zh,5615.6429976852,2,12,2,8,40,0,0,44 +manuel,-1.8188927476,0.9170806837,-2.5490910041,https://salsa.debian.org/python-team/packages/manuel, https://github.com/benji-york/manuel,5520.6818171296,2,23,0,16,26,0,0,29 +marisa-trie,-0.2770059581,0.4130762278,-0.5523788144,https://salsa.debian.org/input-method-team/marisa, https://github.com/s-yata/marisa-trie.git,1648.6119675926,1,9,0,7,42,0,0,42 +mate-backgrounds,0.5159356315,3.1381456756,-0.0659273196,https://salsa.debian.org/debian-mate-team/mate-backgrounds, https://github.com/mate-desktop/mate-backgrounds.git,4154.5609837963,7,18,0,16,26,0,0,30 +mate-user-guide,0.5094536603,3.3401486345,-0.0704353393,https://salsa.debian.org/debian-mate-team/mate-user-guide, https://github.com/mate-desktop/mate-user-guide.git,2933.2399768519,5,16,0,11,19,0,0,21 +mate-user-share,-0.0144878955,0.7287904866,-0.2142966004,https://salsa.debian.org/debian-mate-team/mate-user-share, https://github.com/mate-desktop/mate-user-share.git,4144.6895601852,7,22,0,16,27,0,0,29 +mate-window-applets,-0.186625862,1.9636663587,-0.6313160521,https://salsa.debian.org/debian-mate-team/mate-window-applets, https://github.com/ubuntu-mate/mate-window-applets.git,1140.5334375,6,3,0,6,20,0,0,20 +materia-theme,0.1045234392,1.9891123795,-0.3220563371,https://salsa.debian.org/desktop-themes-team/materia-gtk-theme, https://github.com/nana-4/materia-theme/commits/master,5185.326875,55,11,0,0,0,0,0,0 +maybe,-0.652177661,1.9314993227,-1.1686602213,https://salsa.debian.org/debian/maybe, https://github.com/p-e-w/maybe,363.7199652778,0,2,1,2,60,0,0,60 +marionette-collective,0.2172201034,1.7225219851,-0.4315505666,https://salsa.debian.org/puppet-team/mcollective, https://github.com/puppetlabs/marionette-collective,3620.6848148148,74,101,0,96,3,0,0,99 +meanwhile,1.6225494468,3.5813327858,0.7214154539,https://salsa.debian.org/debian/meanwhile, https://github.com/obriencj/meanwhile.git,352.0019560185,1,1,0,2,2,0,0,3 +medusa,0.7418834796,1.8416337033,0.1473000467,https://salsa.debian.org/pkg-security-team/medusa, https://github.com/jmk-foofus/medusa,2618.4448032407,4,10,0,10,71,0,0,71 +memkind,-2.3338755247,-0.4330380435,-2.7754873055,https://github.com/kilobyte/memkind/tree/debian,https://github.com/kilobyte/memkind,3438.6727199074,30,85,0,50,2,0,0,52 +memtest86plus,2.2601852863,3.3021289749,1.5576924368,https://salsa.debian.org/debian/memtest86plus, https://github.com/memtest86plus/memtest86plus.git,663.5358564815,15,10,0,12,7,0,0,15 +mercator,-0.2340868407,1.6571874232,-0.993372484,https://salsa.debian.org/games-team/mercator, https://github.com/worldforge/mercator,5633.2390393519,0,7,0,5,5,0,0,7 +minidb,-0.4525684191,1.7891094238,-0.9018820656,https://salsa.debian.org/mwerlen/minidb, https://github.com/thp/minidb.git,4339.2984953704,2,5,0,6,13,0,0,13 +minieigen,-0.2097696756,0.7860654925,-0.499567475,https://salsa.debian.org/science-team/minieigen, https://github.com/eudoxos/minieigen,4093.4507523148,0,12,0,7,18,0,0,18 +minisat,0.081865083,0.8637917657,-0.1532386767,http://github.com/niklasso/minisat,http://github.com/niklasso/minisat,2028.9114699074,1,5,0,0,0,0,0,0 +mkalias,-0.7408475157,2.3071375002,-1.5762128281,https://salsa.debian.org/ruby-team/mkalias, https://github.com/LucianoPC/mkalias,68.2117476852,0,3,0,2,2,0,0,3 +mktorrent,0.2711814394,1.9101515608,-0.3158320018,https://salsa.debian.org/debian/mktorrent, https://github.com/pobrn/mktorrent,4360.041099537,6,10,1,14,72,0,4,77 +mmtf-java,-5.037602316,-2.8514886182,-5.4781542553,https://salsa.debian.org/debichem-team/mmtf-java, https://github.com/rcsb/mmtf-java.git,2412.8476967593,1,12,0,6,13,0,0,13 +mmv,1.5597347679,2.9419260396,0.7739885392,https://salsa.debian.org/debian/mmv, https://github.com/rrthomas/mmv.git,971.7580902778,1,1,0,2,10,0,0,10 +mod_proxy_msrpc,-0.4686771794,2.4036030859,-1.2427083432,https://github.com/bombadil/mod_proxy_msrpc/tree/debian/unstable,https://github.com/bombadil/mod_proxy_msrpc,805.3717013889,0,4,0,1,20,0,1,21 +modem-cmd,-0.6052898943,1.7555013841,-1.1587030212,https://salsa.debian.org/debian/modem-cmd, https://github.com/imZack/modem-cmd.git,939.0309143519,1,4,0,2,5,0,0,5 +modplug-tools,0.4632988211,2.9493569553,-0.4712506177,https://salsa.debian.org/multimedia-team/modplugtools, https://github.com/alexmyczko/modplug-tools,1743.9280324074,2,5,0,3,4,0,0,4 +mom,-0.6777849161,1.9853085783,-1.5072869412,https://salsa.debian.org/debian/mom, https://github.com/oVirt/mom,4972.7826157407,31,16,1,25,13,0,0,31 +mongo-c-driver,0.3915954735,1.6519342417,-0.0863313883,https://github.com/mongodb/mongo-c-driver/tree/master,https://github.com/mongodb/mongo-c-driver,5226.5267939815,106,124,0,112,0,0,0,112 +montage-wrapper,-0.3865274729,1.1809812531,-0.6680117033,https://salsa.debian.org/debian-astro-team/montage-wrapper, https://github.com/astropy/montage-wrapper,3566.7960416667,2,16,3,14,39,0,0,42 +mopidy-alsamixer,-0.098708743,2.9303656044,-0.8810971993,https://salsa.debian.org/mopidy-team/mopidy-alsamixer, https://github.com/mopidy/mopidy-alsamixer,3286.4480439815,1,5,0,5,39,0,0,39 +mopidy-beets,-0.6046887672,2.3676499619,-1.3922973554,https://salsa.debian.org/mopidy-team/mopidy-beets, https://github.com/mopidy/mopidy-beets,3887.5415162037,2,10,0,7,27,0,0,27 +mopidy-dleyna,-0.6150387258,1.8626619639,-1.276416264,https://salsa.debian.org/mopidy-team/mopidy-dleyna, https://github.com/tkem/mopidy-dleyna.git,2554.9614351852,1,6,0,4,25,0,0,25 +mp3wrap,0.1511883249,2.4047625906,-0.4072551552,https://github.com/marciosouza20/mp3wrap.git,https://github.com/marciosouza20/mp3wrap.git,36.6266319444,0,2,0,1,0,0,0,1 +mpc123,0.851583608,3.5692284528,-0.2366259159,https://salsa.debian.org/debian/mpc123, https://github.com/bucciarati/mpc123,4095.7045717593,0,4,0,1,2,0,0,2 +mpdscribble,-0.7233101544,-0.5981438455,-0.7658816633,https://salsa.debian.org/mpd-team/mpdscribble, https://github.com/MusicPlayerDaemon/mpdscribble.git,5474.3595486111,22,17,0,29,73,0,0,90 +mruby,-1.5514391,-1.3019492907,-1.6243857492,https://github.com/mruby-debian/mruby,https://github.com/mruby-debian/mruby,4156.8421527778,37,353,0,255,2,0,32,288 +msgpuck,-1.9345101796,0.7538606408,-2.5762644187,https://github.com/rtsisyk/msgpuck,https://github.com/rtsisyk/msgpuck,1946.1415046296,3,13,1,11,15,0,0,21 +msitools,0.9685786476,3.4437444916,0.0488138918,https://salsa.debian.org/debian/msitools, https://github.com/GNOME/msitools,4016.1692361111,45,59,0,69,4,0,0,71 +mt-st,0.1082142752,0.6983439611,-0.1608193497,https://salsa.debian.org/debian/mt-st, https://github.com/iustin/mt-st,3093.7365972222,14,5,0,10,19,0,0,20 +mtpolicyd,-1.3311506647,1.0954039333,-1.9915905372,https://salsa.debian.org/debian/mtpolicyd, https://github.com/benningm/mtpolicyd.git,2186.9926157407,1,4,0,3,21,0,0,21 +mtree-netbsd,-1.5216638363,0.5725600433,-2.0355608409,https://github.com/jgoerzen/mtree-netbsd,https://github.com/jgoerzen/mtree-netbsd,1538.1956712963,1,7,0,0,1,0,0,1 +MU-CITE,-0.9256165282,0.9613021982,-1.3098678212,https://salsa.debian.org/debian/mu-cite, https://github.com/cvs-m17n-org/MU-CITE,4190.5202430556,2,3,0,4,3,0,0,5 +mudita24,-0.0566417905,1.5271069455,-0.4568909604,https://salsa.debian.org/multimedia-team/mudita24, https://github.com/NielsMayer/mudita24,2005.0215046296,0,5,0,2,9,0,0,11 +mugshot,0.7316630016,2.7960037279,-0.1554059373,https://salsa.debian.org/python-team/packages/mugshot, https://github.com/bluesabre/mugshot,3560.1744907408,3,9,0,7,25,0,1,28 +mupen64plus-video-glide64,0.1160309114,2.3242018271,-0.3185351881,https://salsa.debian.org/games-team/mupen64plus-video-glide64, https://github.com/mupen64plus/mupen64plus-video-glide64,4871.8438310185,2,17,0,10,7,0,0,11 +mupen64plus-video-z64,-0.0630178119,1.307530126,-0.3263531841,https://salsa.debian.org/games-team/mupen64plus-video-z64, https://github.com/mupen64plus/mupen64plus-video-z64,4885.8515046296,2,17,0,10,9,0,0,12 +muse,0.9834892976,2.8604314623,0.0726359102,https://salsa.debian.org/emacsen-team/muse-el, https://github.com/alexott/muse,5662.6274884259,5,7,0,9,14,0,0,76 +mwrap,-0.6055213344,1.7500683415,-1.3620779276,https://salsa.debian.org/pkg-octave-team/mwrap, https://github.com/zgimbutas/mwrap,3042.6040856482,0,5,0,3,5,0,0,5 +nasty,1.7398622788,6.040628791,0.3559757417,https://salsa.debian.org/pkg-security-team/nasty, https://github.com/folkertvanheusden/nasty,2093.1121412037,0,4,0,2,1,0,0,3 +natsort,0.2307395007,2.1095787345,-0.2397860986,https://salsa.debian.org/python-team/packages/natsort, https://github.com/SethMMorton/natsort.git,4065.0547106482,9,17,0,19,20,0,1,38 +repairer,0.924989159,3.2280109324,0.0005519878,https://salsa.debian.org/l10n-korean-team/nautilus-filename-repairer, https://github.com/choehwanjin/repairer,2878.1959953704,0,1,0,1,3,0,1,4 +nb2plots,-1.170670669,1.5589366654,-1.743374148,https://salsa.debian.org/python-team/packages/nb2plots, https://github.com/matthew-brett/nb2plots.git,2904.4454282408,2,7,0,6,21,0,0,22 +nbtscan,0.2989992596,1.090810849,-0.0722586258,https://salsa.debian.org/pkg-security-team/nbtscan, https://github.com/resurrecting-open-source-projects/nbtscan,1167.6364699074,1,3,0,3,5,0,0,5 +ncbi-vdb,-0.6569361569,-0.2675890873,-0.7753516055,https://salsa.debian.org/med-team/ncbi-vdb, https://github.com/ncbi/ncbi-vdb,3367.922349537,2,70,0,18,30,0,5,46 +ncompress,0.6360276236,1.8663344659,0.0985497423,https://salsa.debian.org/debian/ncompress, https://github.com/vapier/ncompress.git,4740.1165856482,11,4,0,11,22,0,0,23 +ndctl,-0.3026771532,0.473161469,-0.4939488737,https://github.com/kilobyte/ndctl/tree/debian,https://github.com/kilobyte/ndctl,3210.1365509259,74,5,0,51,3,0,0,54 +ndg_httpsclient,0.1546655272,1.0783288299,-0.0773848973,https://salsa.debian.org/debian/ndg-httpsclient, https://github.com/cedadev/ndg_httpsclient,3360.0136342593,2,11,0,6,22,0,0,22 +neard-deb,0.5311444679,4.0953604611,-0.5296646663,https://github.com/sameo/neard-deb,https://github.com/sameo/neard-deb,1126.7503587963,0,4,0,2,2,0,0,2 +neartree,-0.0269486668,2.399314564,-0.5366245779,https://salsa.debian.org/science-team/neartree, https://github.com/yayahjb/neartree,4773.070625,0,3,0,2,2,0,0,3 +neko-debian,-0.3476116673,0.4024674223,-0.6520598063,https://github.com/HaxeFoundation/neko-debian,https://github.com/HaxeFoundation/neko-debian,5577.6636111111,6,3,0,5,2,0,0,7 +neomutt,1.0660685693,2.7351403402,0.2935299788,https://salsa.debian.org/mutt-team/neomutt, https://github.com/neomutt/neomutt,5650.5290625,268,117,0,322,9,0,0,326 +netconsole,-1.2200873308,0.812746843,-1.6449255455,https://salsa.debian.org/debian/netconsole, https://github.com/ionos-cloud/netconsole,558.8093865741,0,1,0,1,2,0,0,2 +nfoview,-0.0498945429,1.6663964244,-0.6736195708,https://salsa.debian.org/python-team/packages/nfoview, https://github.com/otsaloma/nfoview,5657.3754861111,14,5,0,10,8,0,0,13 +nfstrace,0.7169141553,2.6489983997,-0.0935466194,https://salsa.debian.org/debian/nfstrace, https://github.com/epam/nfstrace,2137.7810300926,9,42,0,16,32,0,0,38 +nifti2dicom,-0.1186607259,1.299142347,-0.6903266138,https://salsa.debian.org/med-team/nifti2dicom, https://github.com/biolab-unige/nifti2dicom.git,2963.0766898148,0,2,0,2,17,0,0,17 +ninka,-1.2427926984,1.0338618531,-1.6842246523,https://salsa.debian.org/debian/ninka, https://github.com/dmgerman/ninka,4166.3812268519,0,17,0,10,27,0,0,27 +nload,0.6920286572,1.9662038736,0.1248983732,https://github.com/marciosouza20/nload.git,https://github.com/marciosouza20/nload.git,5.8634143519,0,1,0,1,0,0,0,1 +nm-tray,0.2402419984,2.9899186351,-0.4509695416,https://salsa.debian.org/lxqt-team/nm-tray, https://github.com/palinek/nm-tray.git,2973.3749074074,57,7,0,43,49,0,0,80 +nocache,0.6323720855,2.8803006592,-0.068529056,https://salsa.debian.org/debian/nocache, https://github.com/Feh/nocache,3331.9030902778,2,12,0,11,42,0,0,42 +nodau,-1.5991809833,-0.3805538345,-1.905798655,https://salsa.debian.org/carnil/nodau, https://github.com/TicklishHoneyBee/nodau,4073.1802662037,2,7,0,3,6,0,0,6 +abbrev-js,0.3167225092,2.5424116289,-0.1165089261,https://salsa.debian.org/js-team/node-abbrev, https://github.com/npm/abbrev-js,5021.0522106482,6,4,0,8,4,0,0,12 +node-active-x-obfuscator,-1.7102077451,0.4939822957,-2.1488227767,https://salsa.debian.org/js-team/node-active-x-obfuscator, https://github.com/felixge/node-active-x-obfuscator.git,979.9255902778,0,5,0,3,0,0,0,3 +address,-2.3512829732,-0.2296492891,-2.7851879565,https://salsa.debian.org/js-team/node-address, https://github.com/node-modules/address.git,3756.5830208333,7,6,0,10,40,0,0,41 +ansi.js,0.651738311,3.3801423506,-0.0622958722,https://salsa.debian.org/js-team/node-ansi, https://github.com/TooTallNate/ansi.js.git,2003.1949884259,2,6,0,6,9,0,0,13 +applause,-2.6025031313,0.0354812349,-3.2768862018,https://salsa.debian.org/js-team/node-applause, https://github.com/outatime/applause.git,2600.1592592593,1,6,0,4,30,0,0,30 +node-cross-spawn-async,-0.4789307226,0.5287764974,-0.6568563161,https://salsa.debian.org/js-team/node-cross-spawn-async, https://github.com/IndigoUnited/node-cross-spawn-async.git,674.7693981481,1,12,0,8,0,0,0,8 +CSSStyleDeclaration,0.0239557668,3.7882296404,-1.1998721983,https://salsa.debian.org/js-team/node-cssstyle, https://github.com/chad3814/CSSStyleDeclaration.git,2137.4537037037,0,9,0,5,0,0,0,5 +d3-color,-0.5677058758,2.345342576,-1.264606113,https://salsa.debian.org/js-team/node-d3-color, https://github.com/d3/d3-color,3047.9240046296,6,8,0,11,41,0,0,44 +node-dashdash,0.812623388,3.8026107021,-0.0104465219,https://salsa.debian.org/js-team/node-dashdash, https://github.com/trentm/node-dashdash,3657.7330671296,5,4,0,5,28,0,0,28 +node-deep-extend,0.3074384175,2.5963720517,-0.1256934881,https://salsa.debian.org/js-team/node-deep-extend, https://github.com/unclechu/node-deep-extend.git,2469.0779513889,2,14,0,9,1,0,0,9 +dryice,-1.6777851216,0.5009822025,-2.1440213388,https://salsa.debian.org/js-team/node-dryice, https://github.com/mozilla/dryice,1261.6348842593,1,13,0,12,13,0,0,17 +node-errno,0.7419951798,3.986012183,-0.0698570252,https://salsa.debian.org/js-team/node-errno, https://github.com/rvagg/node-errno,3152.3664699074,3,11,0,11,31,0,0,31 +node-error-ex,-0.1994307651,1.9233568792,-0.6268261848,https://salsa.debian.org/js-team/node-error-ex, https://github.com/qix-/node-error-ex.git,1448.5513425926,4,8,0,5,25,0,0,25 +node-extend,0.7004129328,3.6122581892,-0.0527431497,https://salsa.debian.org/js-team/node-extend, https://github.com/justmoon/node-extend,4212.296400463,1,15,0,13,1,0,0,13 +extend-shallow,-0.1006921362,1.3927484709,-0.3636715364,https://salsa.debian.org/js-team/node-extend-shallow, https://github.com/jonschlinkert/extend-shallow,1170.6065046296,0,5,0,3,4,0,0,4 +file-entry-cache,-0.7855336157,1.967354907,-1.5011474598,https://salsa.debian.org/js-team/node-file-entry-cache, https://github.com/royriojas/file-entry-cache.git,3181.5545138889,1,11,0,7,28,0,0,28 +node-findit,-0.2051260072,2.7355493581,-1.1209208962,https://salsa.debian.org/js-team/node-findit2, https://github.com/andrewrk/node-findit.git,1811.4445601852,1,5,0,4,4,0,0,6 +fined,-0.1637425394,2.1242452034,-0.5982871995,https://salsa.debian.org/js-team/node-fined, https://github.com/js-cli/fined,1982.8433680556,5,3,0,4,10,0,0,10 +node-form-data,0.5074076179,3.0343874901,-0.0886742861,https://salsa.debian.org/js-team/node-form-data, https://github.com/felixge/node-form-data.git,3563.1111111111,9,36,0,35,5,0,0,36 +node-fresh,-0.3450557311,2.0039913503,-0.81124946,https://salsa.debian.org/js-team/node-fresh, https://github.com/visionmedia/node-fresh.git,3886.7925231482,11,3,0,12,37,0,0,37 +is-npm,0.9785051776,4.5008052167,0.0095997285,https://salsa.debian.org/js-team/node-is-npm, https://github.com/sindresorhus/is-npm,2619.0418634259,7,2,0,7,17,0,0,17 +is-typedarray,0.3980978816,2.528720541,-0.0976776715,https://salsa.debian.org/js-team/node-is-typedarray, https://github.com/hughsk/is-typedarray,349.2442476852,0,2,0,2,14,0,0,14 +isexe,0.3099265646,2.6155667478,-0.1218258686,https://salsa.debian.org/js-team/node-isexe, https://github.com/isaacs/isexe,2832.2716319445,1,4,0,1,26,0,0,26 +Jed,0.9307464408,4.5334423493,-0.0663016053,https://salsa.debian.org/js-team/node-jed, https://github.com/messageformat/Jed.git,1857.5029166667,3,19,0,18,61,0,0,61 +jsesc,0.1478102512,3.2506359357,-0.5098361018,https://salsa.debian.org/js-team/node-jsesc, https://github.com/mathiasbynens/jsesc,2702.1588310185,6,3,0,8,44,0,0,44 +JSON.minify,-0.1691871793,2.0408856828,-0.6162694158,https://salsa.debian.org/js-team/node-jsonminify, https://github.com/fkei/JSON.minify,3001.0353819445,2,9,0,8,17,0,0,18 +JSONSelect,0.5601821689,4.3158830877,-0.4551619485,https://salsa.debian.org/js-team/node-jsonselect, https://github.com/lloyd/JSONSelect,984.9768287037,2,8,0,8,38,0,0,39 +knockout,-1.6817262176,0.9748888004,-2.3144504112,https://salsa.debian.org/js-team/node-knockout, https://github.com/knockout/knockout.git,4081.7972685185,20,115,0,81,45,0,125,241 +lastfm-node,-0.2802502576,3.2316861272,-1.2092934746,https://salsa.debian.org/js-team/node-lastfm, https://github.com/jammus/lastfm-node,4644.4506018519,2,11,2,9,28,0,0,28 +node-macaddress,-2.3578089542,0.3286344876,-2.9837856086,https://salsa.debian.org/js-team/node-macaddress, https://github.com/scravy/node-macaddress,2961.7712268519,5,13,0,12,73,0,0,73 +map-visit,0.0602654466,2.3400984295,-0.3823836028,https://salsa.debian.org/js-team/node-map-visit, https://github.com/jonschlinkert/map-visit,645.0525115741,0,3,0,2,3,0,0,4 +media-typer,-0.1314554385,2.3567183276,-0.7554351148,https://salsa.debian.org/js-team/node-media-typer, https://github.com/expressjs/media-typer.git,2488.2450925926,1,1,0,2,14,0,0,14 +merge-descriptors,-0.2368061411,2.2901222412,-0.8069774958,https://salsa.debian.org/js-team/node-merge-descriptors, https://github.com/component/merge-descriptors.git,3669.9310532407,3,3,0,6,17,0,0,17 +node-mess,-0.2872327671,3.3046798368,-1.2179833072,https://salsa.debian.org/js-team/node-mess, https://github.com/bobrik/node-mess,420.8625578704,0,3,0,2,2,0,0,2 +minimist,0.3063916948,2.5263654362,-0.1223643827,https://salsa.debian.org/js-team/node-minimist, https://github.com/minimistjs/minimist.git,3791.1307175926,12,9,0,15,32,0,0,43 +mixin-deep,0.2041015905,2.301231867,-0.3460970033,https://salsa.debian.org/js-team/node-mixin-deep, https://github.com/jonschlinkert/mixin-deep.git,1736.2018171296,0,4,0,2,14,0,0,14 +node-mocks-http,-1.7138454453,1.129012054,-2.4238704392,https://salsa.debian.org/js-team/node-mocks-http, https://github.com/howardabrams/node-mocks-http,4315.2549074074,38,62,0,71,2,0,0,72 +repeat-element,0.0303018925,2.2050520215,-0.399164761,https://salsa.debian.org/js-team/node-repeat-element, https://github.com/jonschlinkert/repeat-element,2277.9809027778,1,7,0,3,6,0,0,6 +semver-diff,0.3257088663,2.53870067,-0.1250464411,https://salsa.debian.org/js-team/node-semver-diff, https://github.com/sindresorhus/semver-diff,2556.954525463,4,3,0,6,11,0,0,11 +node-simple-swizzle,-3.3828108141,-1.5319435267,-3.7510526278,https://salsa.debian.org/js-team/node-simple-swizzle, https://github.com/qix-/node-simple-swizzle,2271.2482060185,1,3,0,1,3,0,0,3 +snapdragon,0.0374783954,2.1244720905,-0.3853126603,https://salsa.debian.org/js-team/node-snapdragon, https://github.com/jonschlinkert/snapdragon.git,2160.5059722222,3,7,0,4,43,0,0,43 +ssri,0.4331740134,2.8578668337,-0.1107367526,https://salsa.debian.org/js-team/node-ssri, https://github.com/zkat/ssri.git,2084.4809606482,2,3,0,2,27,0,0,27 +starttls,-3.2028271629,0.3123776454,-4.1656333947,https://salsa.debian.org/js-team/node-starttls, https://github.com/mattcg/starttls,960.3696643519,0,1,0,1,4,0,0,4 +string_decoder,0.4324513521,3.0006538783,-0.1138855604,https://salsa.debian.org/js-team/node-string-decoder, https://github.com/nodejs/string_decoder.git,2072.5483449074,4,7,0,8,9,0,0,12 +test-commonjs,-1.1865527924,1.2057642216,-1.6221327583,https://salsa.debian.org/js-team/node-test, https://github.com/Gozala/test-commonjs,826.1617476852,0,3,0,1,16,0,0,16 +timed-out,0.534083437,2.8184506266,-0.0696353825,https://salsa.debian.org/js-team/node-timed-out, https://github.com/floatdrop/timed-out,2343.4748726852,6,7,0,8,28,0,0,28 +nodeenv,-0.6570648957,1.4812327857,-1.14641203,https://github.com/chriskuehl/nodeenv,https://github.com/chriskuehl/nodeenv,2128.7291782408,1,53,0,38,2,0,0,40 +nomacs,-0.1195252619,0.4799728253,-0.3176324087,https://salsa.debian.org/lxqt-team/nomacs, https://github.com/nomacs/nomacs/commits/master,5185.326875,55,11,0,0,0,0,0,0 +nomnom,0.4452914343,2.9402706663,-0.3322295975,https://github.com/mogaal/nomnom,https://github.com/mogaal/nomnom,917.9151273148,0,2,0,1,0,0,0,1 +nordlicht,-0.4190840106,1.2017878417,-0.7274544195,https://salsa.debian.org/multimedia-team/nordlicht, https://github.com/nordlicht/nordlicht,1854.1766087963,0,8,0,6,13,0,0,13 +norm,0.0395894571,0.5725879857,-0.0372679262,https://salsa.debian.org/debian/norm, https://github.com/USNavalResearchLaboratory/norm,1453.1532523148,10,9,0,11,11,0,1,19 +notmuch-addrlookup-c,-0.5765143279,1.1877508137,-1.0148913081,https://salsa.debian.org/debian/notmuch-addrlookup, https://github.com/aperezdc/notmuch-addrlookup-c,3177.0368287037,9,8,0,14,28,0,0,28 +nsca-ng,-0.5633658512,0.8404353755,-1.1288671432,https://salsa.debian.org/nagios-team/nsca-ng, https://github.com/weiss/nsca-ng.git,3817.9714236111,3,6,0,5,6,0,0,9 +nsnake.debian,0.294306693,3.1180145865,-0.512619257,https://github.com/alexdantas/nsnake.debian,https://github.com/alexdantas/nsnake.debian,35.0934490741,0,2,0,0,1,0,0,1 +nsntrace,-0.2107095266,2.4855302503,-1.1430329763,https://salsa.debian.org/sudip/nsntrace, https://github.com/nsntrace/nsntrace,1665.640150463,1,7,0,6,21,0,0,21 +nss-passwords,0.7982881531,3.7262660831,-0.2843886787,https://salsa.debian.org/ocaml-team/nss-passwords, https://github.com/glondu/nss-passwords,4767.9518865741,1,2,0,2,4,0,0,5 +nulib2,-2.8835281311,-0.617225292,-3.3218622057,https://salsa.debian.org/debian/nulib2, https://github.com/fadden/nulib2.git,2958.8671643519,0,7,0,4,9,0,0,9 +nuntius-linux,0.0562256061,3.0068525021,-0.7578958074,https://salsa.debian.org/debian/nuntius-linux, https://github.com/holylobster/nuntius-linux.git,1285.1505324074,2,13,0,13,70,0,0,71 +nurpawiki,-4.202425836,-3.4681724303,-4.3504039812,https://salsa.debian.org/ocaml-team/nurpawiki, https://github.com/glondu/nurpawiki.git,5643.4121296296,0,6,0,2,2,0,0,2 +nvidia-modprobe,0.5457409995,2.6334328552,-0.0334171669,https://salsa.debian.org/nvidia-team/nvidia-modprobe, https://github.com/NVIDIA/nvidia-modprobe,3894.0040972222,0,3,0,3,7,0,0,9 +nvidia-persistenced,0.5544050718,2.8521283153,-0.0537008341,https://salsa.debian.org/nvidia-team/nvidia-persistenced, https://github.com/NVIDIA/nvidia-persistenced,3871.0209606482,0,3,0,3,13,0,0,15 +nvidia-settings,0.3151479615,2.7684405123,-0.2288499596,https://salsa.debian.org/nvidia-team/nvidia-settings, https://github.com/NVIDIA/nvidia-settings,5776.4649305556,24,5,0,16,143,0,0,150 +ocaml-ffmpeg,-1.7680324626,0.6213946308,-2.2379595426,https://salsa.debian.org/ocaml-team/ocaml-ffmpeg, https://github.com/savonet/ocaml-ffmpeg.git,4033.3768634259,2,11,0,7,20,0,0,21 +ocaml-fileutils,-1.2078611318,0.0677154031,-1.4595756972,https://salsa.debian.org/ocaml-team/ocaml-fileutils, https://github.com/gildor478/ocaml-fileutils.git,1144.3784027778,5,6,0,7,12,0,0,12 +ocaml-flac,-1.7507623662,-0.3502245327,-2.1890215844,https://salsa.debian.org/ocaml-team/ocaml-flac, https://github.com/savonet/ocaml-flac.git,4915.2796990741,1,7,0,5,12,0,0,14 +gen,-2.9140964642,-0.9922910043,-3.3171869681,https://salsa.debian.org/ocaml-team/ocaml-gen, https://github.com/c-cube/gen.git,3422.9857291667,3,9,0,7,18,0,0,18 +ocaml-gstreamer,-0.175799754,2.6087723309,-0.9430825776,https://salsa.debian.org/ocaml-team/ocaml-gstreamer, https://github.com/savonet/ocaml-gstreamer.git,5244.7535532407,0,10,0,5,5,0,0,7 +ocaml-http,-1.5494605128,1.5864107076,-2.4465473259,https://salsa.debian.org/ocaml-team/ocaml-http, https://github.com/sacerdot/ocaml-http.git,3570.2121180556,1,3,0,2,0,0,0,2 +ocaml-inotify,-1.5984447381,0.206726916,-1.9785130273,https://salsa.debian.org/ocaml-team/ocaml-inotify, https://github.com/whitequark/ocaml-inotify,3586.2803240741,4,14,0,12,18,0,0,19 +ocaml-ladspa,-0.7118657078,1.2358767302,-1.4392313232,https://salsa.debian.org/ocaml-team/ocaml-ladspa, https://github.com/savonet/ocaml-ladspa.git,4935.8736458333,1,7,0,4,4,0,0,6 +ocaml-ogg,-0.348620776,1.64371205,-0.9603602503,https://salsa.debian.org/ocaml-team/ocaml-ogg, https://github.com/savonet/ocaml-ogg.git,5318.8518402778,1,7,0,4,2,0,0,4 +ocaml-opus,-0.9457632068,1.3513638625,-1.5381035109,https://salsa.debian.org/ocaml-team/ocaml-opus, https://github.com/savonet/ocaml-opus.git,3889.1978819445,2,8,0,5,6,0,0,7 +res,-1.6619256072,0.8404387726,-2.374669465,https://salsa.debian.org/ocaml-team/ocaml-res, https://github.com/mmottl/res,3234.9244791667,0,3,0,2,6,0,0,6 +ocaml-sha,-2.1615777656,-1.5624804098,-2.2474510973,https://salsa.debian.org/ocaml-team/ocaml-sha, https://github.com/djs55/ocaml-sha.git,5351.1972453704,6,17,0,13,26,0,0,27 +ocaml-shine,-1.6537337701,1.6212733101,-2.5015175014,https://salsa.debian.org/ocaml-team/ocaml-shine, https://github.com/savonet/ocaml-shine.git,3549.8277199074,1,5,0,4,3,0,0,5 +ocaml-speex,-0.6153846806,3.1543840863,-1.9637699192,https://salsa.debian.org/ocaml-team/ocaml-speex, https://github.com/savonet/ocaml-speex.git,5316.9980902778,1,7,0,4,2,0,0,4 +ocaml-ssl,1.2627219166,4.0685720227,0.1401679649,https://salsa.debian.org/ocaml-team/ocaml-ssl, https://github.com/savonet/ocaml-ssl.git,5405.4381828704,11,30,0,25,0,0,0,25 +ocaml-theora,-0.2512292534,3.1544360643,-1.4728171897,https://salsa.debian.org/ocaml-team/ocaml-theora, https://github.com/savonet/ocaml-theora.git,5316.9970717593,1,8,0,4,1,0,0,4 +ocaml-usb,-0.5973686893,1.7793339383,-1.206091524,https://salsa.debian.org/ocaml-team/ocaml-usb, https://github.com/letoh/ocaml-usb.git,4549.6073263889,1,8,0,5,8,0,0,10 +ocaml-vorbis,-0.9822001321,0.9986914273,-1.5520563192,https://salsa.debian.org/ocaml-team/ocaml-vorbis, https://github.com/savonet/ocaml-vorbis.git,5459.5669675926,1,7,0,4,3,0,0,6 +ocamlagrep,-2.1652077496,-1.0121628969,-2.3572482465,https://salsa.debian.org/ocaml-team/ocamlagrep, https://github.com/xavierleroy/ocamlagrep,2115.1310300926,1,2,0,2,4,0,0,4 +gsl-ocaml,0.1216448812,1.0155865797,-0.2462866522,https://salsa.debian.org/ocaml-team/ocamlgsl, https://github.com/mmottl/gsl-ocaml.git,3442.6045023148,1,11,0,10,21,0,0,22 +ocaml-makefile,-0.4214445039,1.3411395826,-0.7864395598,https://salsa.debian.org/ocaml-team/ocamlmakefile, https://github.com/mmottl/ocaml-makefile.git,1922.9826967593,0,4,0,2,8,0,0,8 +ocl-icd,0.2781454411,0.8515664588,0.03306071,https://salsa.debian.org/opencl-team/ocl-icd, https://github.com/OCL-DEV/ocl-icd.git,4207.2761689815,2,15,0,5,27,0,0,28 +octave-mpi,-0.032052781,2.1492331512,-0.6364834294,https://salsa.debian.org/pkg-octave-team/octave-mpi, https://github.com/carlodefalco/octave-mpi,1390.161724537,1,3,0,1,6,0,0,6 +odil,-0.8317789828,-0.397569442,-0.9351734244,https://salsa.debian.org/med-team/odil, https://github.com/lamyj/odil,2678.1739351852,5,12,1,9,15,0,1,16 +odt2txt,0.9552454239,3.2643599868,0.0923391006,https://salsa.debian.org/debian/odt2txt, https://github.com/dstosberg/odt2txt,3417.1558564815,1,9,0,5,28,0,0,28 +ofxstatement,-0.8387724027,1.4898616569,-1.2924218148,https://github.com/gerasiov/ofxstatement,https://github.com/gerasiov/ofxstatement,1632.6686689815,1,16,0,11,3,0,0,13 +ofxstatement-plugins,-0.5554916063,2.2730604682,-1.2542888677,https://github.com/gerasiov/ofxstatement-plugins,https://github.com/gerasiov/ofxstatement-plugins,1689.0224305556,0,3,0,1,0,0,0,1 +ogdi,0.4637866222,1.3827381608,0.0703190227,https://salsa.debian.org/debian-gis-team/ogdi-dfsg, https://github.com/libogdi/ogdi.git,5366.5318402778,1,9,0,9,11,0,0,13 +onesixtyone,-0.0525705364,1.7993576972,-0.4404876155,https://salsa.debian.org/pkg-security-team/onesixtyone, https://github.com/trailofbits/onesixtyone,3350.0547222222,10,11,0,15,26,0,0,27 +onionbalance,-1.7072197089,-0.2953383489,-2.1044905747,https://salsa.debian.org/debian/onionbalance, https://github.com/asn-d6/onionbalance.git,3123.2153240741,16,8,0,18,1,0,0,19 +Sensor,-0.705184402,0.5021820033,-0.967790767,https://salsa.debian.org/multimedia-team/openni-sensor-primesense, https://github.com/PrimeSense/Sensor.git,1069.8803587963,0,3,0,3,28,0,1,31 +opensysusers,-3.3096631827,-1.1081118835,-3.751144934,https://salsa.debian.org/debian/opensysusers, https://github.com/cromerc/opensysusers.git,1929.9289236111,4,11,0,5,2,0,0,5 +OpenMSX,0.5832066024,3.2825027954,-0.1430416611,https://salsa.debian.org/openttd-team/openttd-openmsx, https://github.com/OpenTTD/OpenMSX.git,5037.8726041667,7,8,0,10,18,0,0,19 +OpenSFX,0.0341113683,1.8104216829,-0.3723043838,https://salsa.debian.org/openttd-team/openttd-opensfx, https://github.com/OpenTTD/OpenSFX.git,5073.9709953704,7,9,0,10,14,0,0,15 +opentyrian,-0.4709020515,1.8128682506,-0.9006361349,https://salsa.debian.org/games-team/opentyrian, https://github.com/opentyrian/opentyrian.git,5445.2196527778,6,17,0,14,49,0,1,54 +platform,0.4510883183,2.2604153125,-0.0788317433,https://salsa.debian.org/debian/p8-platform, https://github.com/Pulse-Eight/platform.git,2947.3549768519,2,28,0,23,43,0,0,48 +pacemaker,1.1235155799,1.8849677755,0.6240113585,https://salsa.debian.org/ha-team/pacemaker, https://github.com/ClusterLabs/pacemaker,5780.1951388889,21,156,0,106,3,0,0,107 +packit,1.4894283431,3.9572075631,0.3794626915,https://salsa.debian.org/debian/packit, https://github.com/resurrecting-open-source-projects/packit,2522.8474189815,3,11,0,6,11,0,0,11 +pacman4console.debian,0.7320531649,3.0292005631,-0.1602141611,https://github.com/alexdantas/pacman4console.debian,https://github.com/alexdantas/pacman4console.debian,442.2178819444,0,2,0,2,1,0,0,3 +padthv1,-0.0637358518,2.799184112,-0.6752002578,https://salsa.debian.org/multimedia-team/padthv1, https://github.com/rncbc/padthv1.git,2334.0719907407,2,4,0,3,6,0,0,6 +pajeng,-2.2918945291,-1.4246521723,-2.5749097918,https://salsa.debian.org/debian/pajeng, https://github.com/schnorr/pajeng.git,3890.9853472222,1,24,0,10,19,0,5,24 +pam_p11,-0.5485831615,0.9644461867,-1.1064659619,https://salsa.debian.org/opensc-team/pam-p11, https://github.com/OpenSC/pam_p11.git,5663.1348842593,3,10,0,11,24,0,0,25 +ParaFly,-0.7037850797,1.1831572633,-1.0930849211,https://salsa.debian.org/med-team/parafly, https://github.com/ParaFly/ParaFly,1437.0966666667,1,4,0,2,1,0,0,3 +parallax,-0.0887932063,2.3891626891,-0.651790374,https://salsa.debian.org/python-team/packages/parallax, https://github.com/krig/parallax,5166.3950231482,4,10,0,8,6,0,0,9 +partd,0.2096153056,2.6193211803,-0.3193732736,https://salsa.debian.org/python-team/packages/partd, https://github.com/dask/partd.git,3130.7778009259,14,10,0,21,46,0,0,46 +pass-extension-tail,-0.3578050897,2.1366716684,-0.9333806276,https://salsa.debian.org/debian/pass-extension-tail, https://github.com/palortoff/pass-extension-tail,1892.8072222222,4,2,0,5,18,0,0,18 +pastedeploy,0.1590091885,1.1475071601,-0.1727660592,https://salsa.debian.org/python-team/packages/pastedeploy, https://github.com/Pylons/pastedeploy,4320.1172453704,5,24,0,21,22,0,0,33 +pastescript,0.3538232706,1.3551325439,-0.0943410822,https://salsa.debian.org/python-team/packages/pastescript, https://github.com/cdent/pastescript.git,3347.9577893519,0,24,0,14,7,0,0,18 +libdir,-0.0254803142,1.5396086069,-0.4343390486,https://salsa.debian.org/multimedia-team/pd/pd-libdir, https://github.com/pure-data/libdir,2709.9478356482,1,9,0,3,1,0,0,3 +pd-lua,-0.3693835135,1.759056146,-0.7808199336,https://salsa.debian.org/multimedia-team/pd/pd-lua, https://github.com/agraef/pd-lua.git,3302.6912962963,1,8,0,6,12,0,0,12 +moonlib,-0.2205765237,2.0226305482,-0.7345172583,https://salsa.debian.org/multimedia-team/pd/pd-moonlib, https://github.com/MetaluNet/moonlib.git,5328.8024537037,1,11,0,4,15,0,0,15 +PuRestJson,-0.254922487,2.320237042,-0.8198404593,https://salsa.debian.org/multimedia-team/pd/pd-purest-json, https://github.com/residuum/PuRestJson.git,4472.3532291667,0,8,0,5,24,0,2,26 +tclpd,-0.5472322751,1.0653891207,-0.8320989326,https://salsa.debian.org/multimedia-team/pd/pd-tclpd, https://github.com/pd-externals/tclpd.git,5367.8831018519,2,12,0,3,0,0,0,3 +vbap,-0.2128975248,1.7544581087,-0.7432504363,https://salsa.debian.org/multimedia-team/pd/pd-vbap, https://github.com/pd-externals/vbap.git,5156.0736574074,1,7,0,2,5,0,0,5 +xsample,-0.3812603066,1.9525555214,-0.8681596425,https://salsa.debian.org/multimedia-team/pd/pd-xsample, https://github.com/grrrr/xsample.git,5672.9809259259,1,13,0,6,6,0,0,9 +pdd,-0.9684689619,1.3033133236,-1.4106955016,https://salsa.debian.org/debian/pdd, https://github.com/jarun/pdd.git,2233.8472337963,8,9,0,11,23,0,0,23 +pdfresurrect,-0.2399652539,1.6794626137,-0.5968823707,https://salsa.debian.org/debian/pdfresurrect, https://github.com/enferex/pdfresurrect.git,5171.962662037,2,6,0,6,19,0,0,19 +pkg-pdudaemon,-2.9130668064,-0.1458508245,-3.6790610276,https://github.com/pdudaemon/pkg-pdudaemon,https://github.com/pdudaemon/pkg-pdudaemon,1898.0415972222,9,22,0,16,6,0,0,19 +peony-extensions,-0.5641116061,1.8659191557,-1.1878043816,https://github.com/ukui/peony-extensions,https://github.com/ukui/peony-extensions,1664.9383333333,13,33,0,17,25,0,0,31 +pgcharts,-0.3307169052,2.7252468866,-1.42193945,https://github.com/dimitri/pgcharts,https://github.com/dimitri/pgcharts,2256.897962963,2,6,0,6,31,0,0,31 +pgextwlist,-2.6334021475,-0.1576929626,-3.2620922871,https://github.com/dimitri/pgextwlist,https://github.com/dimitri/pgextwlist,4298.9919444445,2,19,0,12,42,0,0,42 +pgl_ddl_deploy,-2.518566076,0.3310770855,-3.2597707489,https://salsa.debian.org/postgresql/pgl-ddl-deploy, https://github.com/enova/pgl_ddl_deploy.git,2403.2563425926,9,12,0,10,14,0,0,17 +pglogical_ticker,-1.9930028095,1.9160778986,-3.1056655448,https://salsa.debian.org/postgresql/pglogical-ticker, https://github.com/enova/pglogical_ticker.git,1787.9691666667,1,7,0,5,4,0,0,5 +pgpdump,0.3614395033,1.5189339773,-0.144183693,https://salsa.debian.org/debian/pgpdump, https://github.com/kazu-yamamoto/pgpdump.git,4538.9134143519,4,16,0,16,27,0,0,28 +pgqd,-1.087235167,1.0595056838,-1.531425517,https://salsa.debian.org/postgresql/pgqd, https://github.com/pgq/pgqd,2225.1037384259,0,1,0,1,6,0,0,6 +pgsphere,-0.619432589,1.6193404032,-1.0673571695,https://salsa.debian.org/postgresql/pgsphere, https://github.com/akorotkov/pgsphere,1961.9147569445,2,10,0,7,24,0,0,26 +pgsql-asn1oid,-2.1322683467,0.0065837251,-2.973862338,https://github.com/df7cb/pgsql-asn1oid,https://github.com/df7cb/pgsql-asn1oid,2425.8964351852,3,4,0,5,4,0,0,5 +pgxnclient,-0.8515588813,0.3709704299,-1.1014910489,https://salsa.debian.org/postgresql/pgxnclient, https://github.com/pgxn/pgxnclient.git,3780.2494212963,0,7,0,7,26,0,1,27 +pgzero,-0.0710203462,2.371473236,-0.5273222344,https://github.com/RPi-Distro/pgzero,https://github.com/RPi-Distro/pgzero,1071.605775463,0,31,0,19,0,0,0,19 +Auth_SASL,0.4421914964,2.6769992169,-0.103972592,https://salsa.debian.org/php-team/pear/php-auth-sasl, https://github.com/pear/Auth_SASL.git,5614.3564699074,3,10,0,7,4,0,0,8 +ansel,-1.6222799231,-0.0808757241,-1.9210437163,https://salsa.debian.org/horde-team/php-horde-ansel, https://github.com/horde/ansel.git,3572.8158912037,8,17,0,12,3,0,0,13 +Auth,0.2047852084,2.9463639076,-0.5544067681,https://salsa.debian.org/horde-team/php-horde-auth, https://github.com/horde/Auth.git,5222.153275463,8,22,0,12,3,0,0,13 +Cache,-0.1744700522,2.1064596197,-0.6213237314,https://salsa.debian.org/horde-team/php-horde-cache, https://github.com/horde/Cache.git,5348.4683796296,2,18,0,8,2,0,0,9 +Compress,-0.0162442716,2.57315541,-0.6076939055,https://salsa.debian.org/horde-team/php-horde-compress, https://github.com/horde/Compress.git,5217.754375,1,13,0,8,5,0,0,9 +Core,-0.3802607961,0.3526269848,-0.6046153747,https://salsa.debian.org/horde-team/php-horde-core, https://github.com/horde/Core.git,5226.4980671296,21,34,0,20,9,0,0,25 +Crypt,0.1875117087,2.6751835929,-0.5329652206,https://salsa.debian.org/horde-team/php-horde-crypt, https://github.com/horde/Crypt.git,5471.7365162037,3,21,0,13,6,0,0,16 +Css_Parser,-0.0402081222,2.5291557096,-0.6027329405,https://salsa.debian.org/horde-team/php-horde-css-parser, https://github.com/horde/Css_Parser.git,3874.0563888889,2,10,0,6,4,0,0,7 +Data,0.183171821,3.0993813097,-0.5706552519,https://salsa.debian.org/horde-team/php-horde-data, https://github.com/horde/Data.git,5055.5932638889,0,13,0,7,3,0,0,9 +Dav,-0.3866587637,0.750534239,-0.6284871625,https://salsa.debian.org/horde-team/php-horde-dav, https://github.com/horde/Dav.git,3872.1194328704,2,9,0,7,2,0,0,8 +Db,-0.2646821748,1.3792981818,-0.615400448,https://salsa.debian.org/horde-team/php-horde-db, https://github.com/horde/Db.git,5458.1645833333,6,19,0,14,13,0,0,23 +Editor,-0.2234265847,1.3429870434,-0.6059411864,https://salsa.debian.org/horde-team/php-horde-editor, https://github.com/horde/Editor.git,5432.4430208333,0,10,0,4,0,0,0,4 +Form,0.1425278965,2.5646449602,-0.5503801228,https://salsa.debian.org/horde-team/php-horde-form, https://github.com/horde/Form.git,5422.4999189815,3,17,0,11,2,0,0,13 +gollem,-0.1716189866,2.8981752591,-0.8667773936,https://salsa.debian.org/horde-team/php-horde-gollem, https://github.com/horde/gollem.git,3924.770474537,2,13,0,7,0,0,0,7 +groupware,-0.8795755727,1.9558886765,-1.5950928322,https://salsa.debian.org/horde-team/php-horde-groupware, https://github.com/horde/groupware.git,2932.5787731482,1,6,0,5,0,0,0,5 +Icalendar,0.411178925,3.9130953916,-0.5130418157,https://salsa.debian.org/horde-team/php-horde-icalendar, https://github.com/horde/Icalendar.git,5159.3724305556,2,18,0,9,3,0,0,10 +Image,0.8616256223,3.8466113515,-0.1929764669,https://salsa.debian.org/horde-team/php-horde-image, https://github.com/horde/Image.git,5265.7997569445,5,20,0,14,5,0,0,15 +Imap_Client,0.0159896159,2.4567285756,-0.5941860898,https://salsa.debian.org/horde-team/php-horde-imap-client, https://github.com/horde/Imap_Client.git,5506.4812615741,14,23,0,22,21,0,0,34 +imp,-0.3872646541,1.289223631,-0.8571466277,https://salsa.debian.org/horde-team/php-horde-imp, https://github.com/horde/imp.git,5305.9052546296,15,26,0,24,15,0,0,29 +ingo,-0.7382910403,0.4431034944,-0.9475741714,https://salsa.debian.org/horde-team/php-horde-ingo, https://github.com/horde/ingo.git,4403.5670833333,10,21,0,17,4,0,0,19 +JavascriptMinify_Jsmin,-1.3153334642,2.2921605757,-2.4364015778,https://salsa.debian.org/horde-team/php-horde-javascriptminify-jsmin, https://github.com/horde/JavascriptMinify_Jsmin.git,3603.5893634259,2,12,0,6,1,0,0,7 +kronolith,-0.1662532613,1.8723658314,-0.7951139086,https://salsa.debian.org/horde-team/php-horde-kronolith, https://github.com/horde/kronolith.git,4413.8611458333,19,29,0,22,6,0,0,24 +ListHeaders,0.4960376568,4.1898452532,-0.5036453419,https://salsa.debian.org/horde-team/php-horde-listheaders, https://github.com/horde/ListHeaders.git,4255.5799305556,2,10,0,6,1,0,0,7 +Mail,-0.3639164444,1.1332103907,-0.6269982172,https://salsa.debian.org/horde-team/php-horde-mail, https://github.com/horde/Mail.git,4915.3072685185,7,13,0,11,9,0,0,17 +Mapi,-0.0661710252,2.5876798045,-0.6185327392,https://salsa.debian.org/horde-team/php-horde-mapi, https://github.com/horde/Mapi.git,2259.7966087963,1,5,0,5,3,0,0,6 +Memcache,0.004016163,2.7221166702,-0.6028996022,https://salsa.debian.org/horde-team/php-horde-memcache, https://github.com/horde/Memcache.git,4490.5543634259,3,7,0,6,1,0,0,7 +Mime,0.312598092,3.6199038108,-0.5392920252,https://salsa.debian.org/horde-team/php-horde-mime, https://github.com/horde/Mime.git,5432.603287037,7,18,0,12,8,0,0,15 +Mime_Viewer,-0.1149494509,1.9424076317,-0.6016432814,https://salsa.debian.org/horde-team/php-horde-mime-viewer, https://github.com/horde/Mime_Viewer.git,4839.7695138889,2,13,0,7,0,0,0,7 +mnemo,-0.6207827443,0.9747903027,-0.8920648669,https://salsa.debian.org/horde-team/php-horde-mnemo, https://github.com/horde/mnemo.git,4989.4455671296,5,17,0,11,4,0,0,12 +Mongo,0.9167713268,5.4298937243,-0.4793837277,https://salsa.debian.org/horde-team/php-horde-mongo, https://github.com/horde/Mongo.git,3839.6499652778,0,8,0,5,0,0,0,5 +Pack,0.2142725625,3.1945332925,-0.549560368,https://salsa.debian.org/horde-team/php-horde-pack, https://github.com/horde/Pack.git,3648.4273842593,1,11,0,5,0,0,0,5 +passwd,-0.9612115226,1.4732179071,-1.6779013899,https://salsa.debian.org/horde-team/php-horde-passwd, https://github.com/horde/passwd.git,4947.6389583333,4,19,0,12,5,0,0,13 +Role,-0.4479418321,1.1729020603,-0.7670302689,https://salsa.debian.org/horde-team/php-horde-role, https://github.com/horde/Role.git,4810.1311111111,0,8,0,5,0,0,0,5 +sesha,-1.1621564014,1.5450444492,-1.9921994089,https://salsa.debian.org/horde-team/php-horde-sesha, https://github.com/horde/sesha.git,2802.3719791667,3,8,0,7,1,0,0,8 +Test,-0.238823004,1.8788404924,-0.6415143522,https://salsa.debian.org/horde-team/php-horde-test, https://github.com/horde/Test.git,5359.615,2,15,0,7,3,0,0,8 +Text_Filter,-0.1437145474,1.0768696744,-0.5555850141,https://salsa.debian.org/horde-team/php-horde-text-filter, https://github.com/horde/Text_Filter.git,5251.3064930556,3,17,0,9,6,0,0,13 +Text_Filter_Jsmin,-1.3124045178,2.1222615389,-2.421955358,https://salsa.debian.org/horde-team/php-horde-text-filter-jsmin, https://github.com/horde/Text_Filter_Jsmin.git,2314.7323726852,0,4,0,5,1,0,0,6 +trean,-0.3058682727,1.9780246873,-0.8789295788,https://salsa.debian.org/horde-team/php-horde-trean, https://github.com/horde/trean.git,3562.8353472222,2,9,0,7,2,0,0,7 +turba,-0.4579650553,1.3117889624,-0.8859304773,https://salsa.debian.org/horde-team/php-horde-turba, https://github.com/horde/turba.git,4857.3907407407,15,22,0,21,16,0,0,32 +webmail,-0.4053353634,1.7962363637,-1.0122255509,https://salsa.debian.org/horde-team/php-horde-webmail, https://github.com/horde/webmail.git,2950.8800810185,2,6,0,6,2,0,0,6 +whups,-1.0654230845,1.9993317897,-1.8956270843,https://salsa.debian.org/horde-team/php-horde-whups, https://github.com/horde/whups.git,3431.4867013889,4,18,0,11,0,0,0,11 +wicked,-1.0749433837,1.994516371,-1.8921752454,https://salsa.debian.org/horde-team/php-horde-wicked, https://github.com/horde/wicked.git,4893.9981712963,5,14,0,9,5,0,0,11 +php-invoker,-0.2905127861,1.9595946138,-0.8899334149,https://salsa.debian.org/php-team/pear/php-invoker, https://github.com/sebastianbergmann/php-invoker,4657.8966203704,2,7,0,5,14,0,0,14 +Mail_Mime,0.0757330813,0.6687496969,-0.1249911134,https://salsa.debian.org/php-team/pear/php-mail-mime, https://github.com/pear/Mail_Mime.git,5740.767650463,4,21,0,21,26,0,0,35 +Net_LDAP2,0.6398853183,2.49018646,-0.0984745451,https://salsa.debian.org/php-team/pear/php-net-ldap2, https://github.com/pear/Net_LDAP2.git,3594.4854166667,3,10,0,6,8,0,0,9 +Net_Sieve,0.5286086799,2.5513325545,-0.1071035548,https://salsa.debian.org/php-team/pear/php-net-sieve, https://github.com/pear/Net_Sieve.git,4982.018912037,1,17,0,14,13,0,0,17 +Net_SMTP,0.6124793985,2.4835695922,0.0048970818,https://salsa.debian.org/php-team/pear/php-net-smtp, https://github.com/pear/Net_SMTP.git,5742.5019097222,6,20,0,18,56,0,0,58 +Net_Socket,0.9079949967,3.0405813906,0.1178195629,https://salsa.debian.org/php-team/pear/php-net-socket, https://github.com/pear/Net_Socket.git,3345.4632523148,1,15,0,13,12,0,0,15 +manifest,0.0385459705,2.4455307258,-0.417874197,https://salsa.debian.org/php-team/pear/php-phar-io-manifest, https://github.com/phar-io/manifest.git,2379.9058680556,3,9,0,9,17,0,0,18 +ReflectionCommon,0.0165590904,2.2866863971,-0.4124357108,https://salsa.debian.org/php-team/pear/php-phpdocumentor-reflection-common, https://github.com/phpDocumentor/ReflectionCommon,2836.5084606482,10,9,0,12,17,0,0,17 +proxy-manager-lts,-0.4696575625,1.7442933083,-0.9000807342,https://salsa.debian.org/php-team/pear/php-proxy-manager, https://github.com/FriendsOfPHP/proxy-manager-lts.git,3717.8990509259,21,47,0,55,26,0,0,78 +cache,0.9447656661,4.1692291038,-0.0612099304,https://salsa.debian.org/php-team/pear/php-psr-cache, https://github.com/php-fig/cache.git,2530.1591435185,8,10,0,14,1,0,0,15 +http-message,-0.068042639,3.3445895377,-1.0312499156,https://salsa.debian.org/php-team/pear/php-psr-http-message, https://github.com/php-fig/http-message,3219.4525347222,3,24,0,21,3,0,0,22 +Base,-0.0522904132,2.7525381131,-0.9743381106,https://salsa.debian.org/php-team/pear/php-zeta-base, https://github.com/zetacomponents/Base.git,5395.1748726852,0,15,0,9,11,0,0,15 +ConsoleTools,-0.0924800072,2.7387441567,-0.9975723832,https://salsa.debian.org/php-team/pear/php-zeta-console-tools, https://github.com/zetacomponents/ConsoleTools,5321.8501851852,2,14,0,12,14,0,0,17 +motranslator,0.3875308077,2.8677316161,-0.26542951,https://salsa.debian.org/phpmyadmin-team/motranslator, https://github.com/phpmyadmin/motranslator,2762.9628356482,6,14,2,15,27,0,0,27 +global-state,0.247922925,2.3733235469,-0.3166378665,https://salsa.debian.org/php-team/pear/phpunit-global-state, https://github.com/sebastianbergmann/global-state,3396.3039351852,9,7,0,12,28,0,0,28 +object-enumerator,0.2543254206,2.979551806,-0.3372246914,https://salsa.debian.org/php-team/pear/phpunit-object-enumerator, https://github.com/sebastianbergmann/object-enumerator,2872.2632523148,6,4,0,8,11,0,0,11 +pkg-pick,0.1551657364,3.388789847,-0.7551152625,https://github.com/eavgerinos/pkg-pick,https://github.com/eavgerinos/pkg-pick,1591.7380671296,0,2,0,1,0,0,0,1 +pickleshare,0.3717500472,2.4243139962,-0.0927808249,https://salsa.debian.org/python-team/packages/pickleshare, https://github.com/pickleshare/pickleshare,3583.9321875,1,14,0,11,33,0,0,33 +picocom,0.7162187737,2.5722054768,0.0257322882,https://salsa.debian.org/debian/picocom, https://github.com/npat-efault/picocom,2876.49875,2,13,0,11,34,0,0,35 +plexus-interactivity,0.2831519667,2.3330540176,-0.1739153338,https://salsa.debian.org/java-team/plexus-interactivity-api, https://github.com/codehaus-plexus/plexus-interactivity.git,2997.8996759259,5,11,0,10,10,0,0,12 +plotnetcfg,-1.0220271784,1.3223739863,-1.4560802079,https://salsa.debian.org/debian/plotnetcfg, https://github.com/jbenc/plotnetcfg.git,2530.945150463,2,3,0,3,11,0,0,13 +pmailq,-0.3444018612,2.2693637638,-1.1367799542,https://salsa.debian.org/kolter/pmailq, https://github.com/k0lter/pmailq,3215.8993634259,0,2,0,1,0,0,0,1 +pmemkv,-2.5666563504,-0.1874336633,-3.0132308585,https://github.com/kilobyte/pmemkv/tree/debian,https://github.com/kilobyte/pmemkv,2071.5010185185,11,29,0,21,1,0,0,22 +pnscan,0.0474645485,1.175913765,-0.3376962015,https://salsa.debian.org/pkg-security-team/pnscan, https://github.com/ptrrkssn/pnscan,1864.9276967593,1,4,0,2,6,0,0,6 +podcastparser,0.1102473664,2.4024478231,-0.3412380946,https://salsa.debian.org/debian/podcastparser, https://github.com/gpodder/podcastparser.git,3885.4088657408,6,16,0,18,26,0,0,26 +podget,0.0442858046,1.2592098163,-0.4584578402,https://salsa.debian.org/debian/podget, https://github.com/dvehrs/podget.git,2945.994837963,1,10,0,8,35,0,1,38 +policyd-rate-limit,-1.5483891938,0.8603109839,-1.9855824959,https://salsa.debian.org/python-team/packages/policyd-rate-limit, https://github.com/nitmir/policyd-rate-limit.git,2604.4654513889,1,4,0,4,24,0,0,24 +pps-tools,0.7472487963,4.4814305955,-0.4374778463,https://github.com/bzed/pps-tools,https://github.com/bzed/pps-tools,3767.0434143519,3,10,0,5,2,0,0,7 +prads,0.259994197,3.8326314267,-1.0339454478,https://salsa.debian.org/debian/prads, https://github.com/gamelinux/prads.git,4237.0082638889,2,39,0,11,30,0,2,33 +prefix,-1.1387443889,1.4705314302,-2.0097706447,https://github.com/dimitri/prefix,https://github.com/dimitri/prefix,5681.2066782408,1,10,0,7,23,0,0,23 +preggy,-2.9228555263,-1.0464425405,-3.3186736503,https://salsa.debian.org/python-team/packages/preggy, https://github.com/heynemann/preggy,3206.0471759259,1,12,2,8,14,0,0,16 +preprepare,-2.2210905897,-0.5977303937,-2.5998570115,https://github.com/dimitri/preprepare,https://github.com/dimitri/preprepare,5242.6337615741,0,4,0,2,5,0,0,5 +primus_vk,-0.4212908417,2.921882742,-1.2334752443,https://salsa.debian.org/nvidia-team/primus-vk, https://github.com/felixdoerre/primus_vk,1911.529537037,4,7,0,9,59,0,0,61 +princeprocessor,-1.2692837532,1.0737092479,-1.7210172993,https://salsa.debian.org/pkg-security-team/princeprocessor, https://github.com/hashcat/princeprocessor.git,3216.9043981482,0,10,0,6,22,0,0,22 +proftpd-mod_case,-1.4646475873,0.7662724504,-2.0254092437,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-case, https://github.com/Castaglia/proftpd-mod_case.git,4180.9304050926,0,4,0,1,5,0,0,5 +mod_clamav,-0.5199500157,1.6804203805,-1.2969019371,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-clamav, https://github.com/jbenden/mod_clamav.git,3704.0200810185,2,4,0,5,16,0,0,17 +proftpd-mod_counter,-3.9091957799,-1.6311020735,-4.3444753088,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-counter, https://github.com/Castaglia/proftpd-mod_counter,4182.156412037,0,3,0,1,3,0,0,3 +proftpd-mod_msg,-1.7610775956,0.1821621492,-2.2899965266,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-msg, https://github.com/Castaglia/proftpd-mod_msg,1530.1719212963,0,2,0,1,1,0,0,1 +proftpd-mod_tar,-1.0180464333,1.4128864786,-1.7353120048,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-tar, https://github.com/Castaglia/proftpd-mod_tar.git,4180.9053935185,0,2,0,1,3,0,0,3 +proftpd-mod_vroot,1.5988542337,4.0231527893,0.5685130663,https://salsa.debian.org/debian-proftpd-team/proftpd-mod-vroot, https://github.com/Castaglia/proftpd-mod_vroot.git,3875.2868518519,0,5,0,3,23,0,0,23 +bind_exporter,-1.219120384,0.70031567,-1.6696173791,https://salsa.debian.org/go-team/packages/prometheus-bind-exporter, https://github.com/prometheus-community/bind_exporter,2946.8200115741,21,14,0,25,30,0,1,51 +mailexporter,-1.4619262945,0.8353265582,-1.9708877275,https://salsa.debian.org/go-team/packages/prometheus-mailexporter, https://github.com/cherti/mailexporter,2367.3820486111,4,4,1,6,16,0,0,16 +pspg,-0.3610506999,2.0130078842,-0.820706513,https://salsa.debian.org/postgresql/pspg, https://github.com/okbob/pspg,2316.4040509259,13,25,0,29,14,0,0,39 +Psychtoolbox-3,0.2033527556,1.6529232576,-0.3714926285,https://github.com/neurodebian/Psychtoolbox-3/tree/debian,https://github.com/neurodebian/Psychtoolbox-3,5782.8479166667,14,56,0,38,2,0,0,39 +pt2-clone,-0.3668249418,2.0442471334,-0.8709375553,https://salsa.debian.org/multimedia-team/pt2-clone, https://github.com/8bitbubsy/pt2-clone,1458.0896180556,2,4,0,4,7,0,0,10 +PTable,-0.4977567219,1.9029777422,-1.0355607788,https://salsa.debian.org/python-team/packages/ptable, https://github.com/kxxoling/PTable,3352.2971990741,2,16,0,9,45,0,0,45 +printer-driver-ptouch,2.9461393952,6.8234280435,1.5185561181,https://salsa.debian.org/printing-team/ptouch-driver, https://github.com/philpem/printer-driver-ptouch.git,1342.5621990741,5,13,0,9,42,0,1,45 +puppetlabs-mysql,-1.0852269476,0.911414697,-1.5945594785,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-mysql, https://github.com/puppetlabs/puppetlabs-mysql,4577.2790046296,89,362,0,277,0,0,0,277 +puppetlabs-xinetd,-1.728520912,0.7618236366,-2.2296657543,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-xinetd, https://github.com/puppetlabs/puppetlabs-xinetd,4771.0705671296,11,67,0,44,13,0,0,53 +purl,-1.3403902917,0.9095061718,-1.8075410282,https://salsa.debian.org/python-team/packages/purl, https://github.com/codeinthehole/purl,3937.9855092593,4,18,0,13,36,0,0,36 +pwgen,1.3539562516,2.2914753933,0.7855817259,https://github.com/tytso/pwgen,https://github.com/tytso/pwgen,1771.0365509259,6,3,0,5,16,0,0,18 +project--perl-webget,-0.4530628758,1.9572713675,-1.0628915119,https://salsa.debian.org/debian/pwget, https://github.com/jaalto/project--perl-webget,3883.3964236111,0,1,0,1,0,0,0,1 +pydl,-0.4956083654,0.3240229847,-0.642218824,https://salsa.debian.org/debian-astro-team/pydl, https://github.com/weaverba137/pydl,4774.0527777778,1,11,1,10,23,0,0,26 +pyepr,-0.9391839973,0.1389487685,-1.21878767,https://salsa.debian.org/debian-gis-team/pyepr, https://github.com/avalentino/pyepr.git,4620.4665856482,0,3,0,1,7,0,0,7 +pyfribidi,-1.3111437363,-0.4469862862,-1.5898484292,https://salsa.debian.org/python-team/packages/pyfribidi, https://github.com/pediapress/pyfribidi.git,2842.4984953704,1,5,0,3,14,0,0,14 +PyGnuplot,-0.3092811424,1.9971008368,-0.816765548,https://salsa.debian.org/python-team/packages/pygnuplot, https://github.com/benschneider/PyGnuplot,2586.3193055556,0,7,0,3,14,0,0,14 +PyGreSQL,0.6546350335,1.713004741,0.0882104427,https://salsa.debian.org/debian/pygresql, https://github.com/PyGreSQL/PyGreSQL,5390.1054513889,4,4,4,8,32,0,0,36 +pygtail,-0.539020119,3.1329292561,-1.6179088283,https://salsa.debian.org/python-team/packages/pygtail, https://github.com/bgreenlee/pygtail,4147.3947800926,7,19,0,17,74,0,0,75 +pygtkspellcheck,0.7257355054,2.6166114148,0.0292934832,https://salsa.debian.org/python-team/packages/pygtkspellcheck, https://github.com/koehlma/pygtkspellcheck,4478.3301851852,2,11,1,6,23,0,0,23 +python-pass,-0.8847004821,1.9218976351,-1.6206835515,https://salsa.debian.org/python-team/packages/pypass, https://github.com/ReAzem/python-pass.git,1834.5500810185,3,11,0,9,16,0,1,17 +pypdf,0.3363136294,1.8784846763,-0.1155181855,https://salsa.debian.org/debian/pypdf, https://github.com/py-pdf/pypdf,4367.5921759259,137,91,3,200,0,0,0,200 +python-pypeg2-debian,0.0855915399,2.2545524529,-0.3458051782,https://github.com/fiete201/python-pypeg2-debian,https://github.com/fiete201/python-pypeg2-debian,825.4394097222,0,2,0,1,1,0,0,2 +Pyphen,-0.5188951039,1.8020010624,-0.9777786823,https://salsa.debian.org/python-team/packages/pyphen, https://github.com/Kozea/Pyphen,3769.9223263889,0,13,0,5,56,0,0,57 +pyqso,-0.3070953036,2.5075014452,-0.9777672312,https://salsa.debian.org/debian-hamradio-team/pyqso, https://github.com/ctjacobs/pyqso,2213.7885648148,2,9,5,5,25,0,0,25 +PyQwt3D,-0.3970590115,0.7440597483,-0.9451413135,https://salsa.debian.org/python-team/packages/pyqwt3d, https://github.com/GauiStori/PyQwt3D,1540.4164930556,0,3,0,1,1,0,0,2 +pyRFC3339,0.2375193564,1.6166813486,-0.0819212234,https://salsa.debian.org/python-team/packages/pyrfc3339, https://github.com/kurtraschke/pyRFC3339,3552.2014583333,1,7,0,7,14,0,0,14 +pysmi,0.2393270185,2.2118303467,-0.1841478946,https://salsa.debian.org/python-team/packages/pysmi, https://github.com/etingof/pysmi,1806.3306018519,5,7,0,9,59,0,0,60 +pytest-runner,0.4615736429,3.294817871,-0.4721455985,https://salsa.debian.org/python-team/packages/pytest-runner, https://github.com/pytest-dev/pytest-runner.git,4387.1189699074,16,10,0,24,56,0,0,67 +pytest-tornado,-1.6610342646,0.2346703329,-2.0594120368,https://salsa.debian.org/python-team/packages/pytest-tornado, https://github.com/eugeniy/pytest-tornado,2043.2375578704,2,15,0,12,44,0,0,44 +activipy,-2.4231132595,-0.8156429792,-2.7787913771,https://salsa.debian.org/python-team/packages/python-activipy, https://github.com/w3c-social/activipy,294.9819907407,0,1,0,1,9,0,0,9 +python-admesh,-0.1275889532,1.1910011407,-0.48238652,https://salsa.debian.org/science-team/python-admesh, https://github.com/admesh/python-admesh,1607.8702662037,1,1,0,2,9,0,0,9 +alignlib,-4.6393972307,-1.9112598753,-5.3987487651,https://salsa.debian.org/med-team/python-alignlib, https://github.com/marcelm/alignlib.git,1738.8239930556,1,3,0,2,2,0,0,2 +altgraph,-0.1776641612,2.0796554317,-0.6175630942,https://salsa.debian.org/python-team/packages/python-altgraph, https://github.com/ronaldoussoren/altgraph,5013.4008912037,1,6,0,4,5,0,0,7 +arpy,-0.7545902864,2.54869808,-1.7298420281,https://salsa.debian.org/python-team/packages/python-arpy, https://github.com/viraptor/arpy.git,4328.1231134259,1,9,0,8,14,0,0,17 +asttokens,0.3340810363,3.0114183655,-0.2887013264,https://salsa.debian.org/python-team/packages/python-asttokens, https://github.com/gristlabs/asttokens.git,2518.9855439815,9,8,0,14,30,0,0,33 +python-caja,0.0214160855,0.7395995669,-0.2085070184,https://salsa.debian.org/debian-mate-team/python-caja, https://github.com/mate-desktop/python-caja.git,4326.7211342593,10,21,0,18,39,0,0,45 +python-driver,-0.8062754247,1.604168392,-1.7480948985,https://salsa.debian.org/python-team/packages/python-cassandra-driver, https://github.com/datastax/python-driver.git,3941.7978935185,43,186,0,129,3,0,0,130 +changelog,-1.7044805447,-0.290367733,-2.0502430594,https://salsa.debian.org/python-team/packages/python-changelog, https://github.com/sqlalchemyorg/changelog,3951.4740509259,6,7,0,5,7,0,0,8 +cheroot,0.2184766626,2.5790389703,-0.2566344453,https://salsa.debian.org/python-team/packages/python-cheroot, https://github.com/cherrypy/cheroot.git,5771.2991898148,32,151,0,116,6,0,0,117 +click-plugins,0.1835966503,2.5094374551,-0.2993391913,https://salsa.debian.org/debian-gis-team/python-click-plugins/, https://github.com/click-contrib/click-plugins.git,1359.2907638889,1,8,0,5,25,0,0,25 +cligj,0.0110381728,2.5995508465,-0.499940708,https://salsa.debian.org/debian-gis-team/python-cligj, https://github.com/mapbox/cligj.git,2777.8914699074,2,10,0,5,17,0,0,18 +python-debianbts,0.5135384712,1.0251605893,0.2314442315,https://github.com/venthur/python-debianbts,https://github.com/venthur/python-debianbts,5257.8413310185,2,16,0,12,20,0,0,22 +deeptools_intervals,-2.8771627651,-0.6096159473,-3.3226496791,https://salsa.debian.org/med-team/python-deeptoolsintervals, https://github.com/deeptools/deeptools_intervals,1246.0450694445,0,4,0,1,4,0,0,4 +demjson,-0.2370389615,1.8179175852,-0.8013751143,https://salsa.debian.org/python-team/packages/python-demjson, https://github.com/dmeranda/demjson,1291.8414699074,0,1,0,1,3,0,2,5 +deprecated,0.1196653299,2.2597788252,-0.3084855603,https://salsa.debian.org/debian-gis-team/python-deprecated, https://github.com/tantale/deprecated.git,2057.2850694445,18,4,0,17,55,0,0,55 +diaspy,-2.1745867988,0.053506734,-2.6165608868,https://salsa.debian.org/python-team/packages/python-diaspy, https://github.com/marekjm/diaspy,3779.1691319445,4,18,0,10,31,0,0,31 +diff-match-patch,0.5846033815,3.0986556298,-0.1184020196,https://salsa.debian.org/debian/python-diff-match-patch, https://github.com/diff-match-patch-python/diff-match-patch,1729.8804282407,3,2,0,3,3,0,0,5 +django-contact-form,-1.1097333705,0.6281218172,-1.6435972974,https://salsa.debian.org/python-team/packages/python-django-contact-form, https://github.com/ubernostrum/django-contact-form,5539.2370717593,2,14,0,13,45,0,0,45 +django-etcd-settings,-0.9896632674,2.2575790822,-1.9919766953,https://salsa.debian.org/python-team/packages/python-django-etcd-settings, https://github.com/kpn-digital/django-etcd-settings,2402.9784375,6,17,0,10,16,0,0,17 +django-gravatar,-0.663578474,1.1679046767,-1.1279388031,https://salsa.debian.org/python-team/packages/python-django-gravatar2, https://github.com/twaddington/django-gravatar,3121.6933101852,1,16,0,12,30,0,0,30 +django-jsonfield,-1.0714207355,-0.0546197296,-1.3093579612,https://salsa.debian.org/python-team/modules/python-django-jsonfield, https://github.com/adamchainz/django-jsonfield,3841.3997222222,3,25,0,23,14,0,0,33 +django-libsass,-4.8173196894,-2.3911675188,-5.4384155483,https://salsa.debian.org/python-team/packages/python-django-libsass, https://github.com/torchbox/django-libsass.git,3571.0059490741,10,9,0,14,47,0,1,52 +python-ecdsa,0.1427395231,1.7301290558,-0.1550589722,https://salsa.debian.org/python-team/packages/python-ecdsa, https://github.com/warner/python-ecdsa.git,4921.8631134259,21,34,0,44,13,0,0,51 +python-epc,-0.6679338747,1.8418923245,-1.2097561588,https://salsa.debian.org/python-team/packages/python-epc, https://github.com/tkf/python-epc,2413.0286574074,1,4,0,3,7,0,0,7 +esmre,-2.0064156677,0.202087282,-2.4755780824,https://salsa.debian.org/debian/python-esmre, https://github.com/wharris/esmre.git,5681.6213078704,0,3,0,1,15,0,0,15 +python-ethtool,0.2749622306,1.8273292709,-0.3035215573,https://salsa.debian.org/python-team/packages/python-ethtool, https://github.com/fedora-python/python-ethtool/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +python-fastimport,0.1052775184,1.7457116755,-0.2624270625,https://salsa.debian.org/python-team/packages/python-fastimport, https://github.com/jelmer/python-fastimport,5680.5950578704,13,39,0,27,14,0,0,34 +fisx,-0.0903144328,1.779732029,-0.5983249377,https://salsa.debian.org/python-team/packages/python-fisx, https://github.com/vasole/fisx,3592.9752777778,0,12,0,5,12,0,1,13 +fluids,-0.4421216281,2.7506775199,-1.3660582858,https://salsa.debian.org/science-team/python-fluids, https://github.com/CalebBell/fluids/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +python-frozendict,0.1906884697,2.6355499741,-0.3237980302,https://salsa.debian.org/openstack-team/python/python-frozendict, https://github.com/slezica/python-frozendict.git,1398.6479861111,1,9,0,6,48,0,0,48 +hiredis-py,-0.3124185118,1.2752110833,-0.6377697773,https://salsa.debian.org/python-team/packages/python-hiredis, https://github.com/redis/hiredis-py.git,4704.1113541667,26,23,0,38,10,0,0,46 +python-hl7,-0.7626378243,0.9988106393,-1.372928154,https://salsa.debian.org/med-team/python-hl7, https://github.com/johnpaulett/python-hl7.git,5098.8429398148,5,6,0,7,54,0,0,54 +hupper,-0.4811484079,1.3299311475,-0.8419038999,https://salsa.debian.org/python-team/packages/python-hupper, https://github.com/Pylons/hupper,2605.9951273148,4,15,0,12,35,0,0,38 +imagesize_py,0.7812671799,3.7438976125,-0.0426186257,https://salsa.debian.org/python-team/packages/python-imagesize, https://github.com/shibukawa/imagesize_py,2343.1267013889,9,9,0,15,45,0,0,45 +python-Levenshtein,0.4783401273,1.9718349997,-0.0580315974,https://salsa.debian.org/python-team/packages/python-levenshtein, https://github.com/maxbachmann/python-Levenshtein,378.9515509259,1,2,0,1,9,0,0,9 +python-libdiscid,0.0391061082,1.6124132852,-0.2458440286,https://salsa.debian.org/multimedia-team/python-libdiscid, https://github.com/sebastinas/python-libdiscid.git,3900.1796643519,3,5,0,6,8,0,0,8 +python-librtmp-debian,0.1316033854,2.9370114855,-0.6388179337,https://github.com/breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian,409.9315625,0,1,0,1,0,0,0,1 +python-louvain,-2.2685779365,1.4962495682,-3.4339761137,https://salsa.debian.org/python-team/packages/python-louvain, https://github.com/taynaud/python-louvain/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +lti,-1.9083591935,0.6995479122,-2.570199413,https://salsa.debian.org/python-team/packages/python-lti, https://github.com/pylti/lti.git,2862.783125,11,19,0,21,32,0,0,42 +macholib,-0.2065761669,2.1953061241,-0.6422011034,https://salsa.debian.org/python-team/packages/python-macholib, https://github.com/ronaldoussoren/macholib,5321.569525463,1,18,0,12,8,0,0,17 +py-magcode-core,-0.7794988336,2.2254089124,-1.7093223217,https://github.com/grantma/py-magcode-core,https://github.com/grantma/py-magcode-core,2649.7967939815,0,2,0,1,0,0,0,1 +markdown,-0.0672775301,0.0633658209,-0.1115484973,https://salsa.debian.org/python-team/packages/python-markdown, https://github.com/Python-Markdown/markdown,5779.5951967593,101,82,0,147,24,0,96,260 +multipletau,-0.6987933509,0.5806821661,-0.9526942305,https://salsa.debian.org/python-team/packages/python-multipletau, https://github.com/FCS-analysis/multipletau,3692.0178935185,2,10,0,4,7,0,0,7 +murmurhash,-0.581276748,1.7599072349,-1.1918965779,https://salsa.debian.org/python-team/packages/python-murmurhash, https://github.com/explosion/murmurhash,3382.167962963,3,8,0,7,24,0,0,25 +netaddr,0.0168867873,0.3272246191,-0.1009353472,https://salsa.debian.org/python-team/packages/python-netaddr, https://github.com/netaddr/netaddr/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +python-netfilter,-1.0831097652,1.3819658705,-1.6354879803,https://salsa.debian.org/python-team/modules/python-netfilter, https://github.com/jlaine/python-netfilter.git,1238.4928935185,0,1,0,1,5,0,0,5 +python-netsyslog,-3.0699282944,-0.7408374792,-3.6931507709,https://github.com/dpocock/python-netsyslog,https://github.com/dpocock/python-netsyslog,1856.5705092593,0,2,0,2,0,0,0,2 +python-neuroshare,-1.423617322,1.7680897251,-2.4529679907,http://github.com/G-Node/python-neuroshare,http://github.com/G-Node/python-neuroshare,2028.2039583333,0,10,1,,,,,2 +nine,-0.8784732907,1.5749400058,-1.435685821,https://salsa.debian.org/python-team/packages/python-nine, https://github.com/nandoflorestan/nine,2401.4576273148,0,3,0,2,5,0,0,5 +noise,-3.7225843383,-1.0965675709,-4.3183675373,https://salsa.debian.org/python-team/packages/python-noise, https://github.com/caseman/noise.git,2101.5036111111,1,8,0,6,49,0,0,49 +nose-random,-2.0063531384,0.3270712054,-2.4723359773,https://salsa.debian.org/science-team/python-nose-random, https://github.com/fzumstein/nose-random,352.6133101852,0,1,0,1,3,0,0,4 +numpysane,-0.4267537204,1.9973501717,-0.9903343511,https://salsa.debian.org/python-team/packages/python-numpysane, https://github.com/dkogan/numpysane,2696.1738194445,0,2,0,1,3,0,0,3 +padme,-0.8073688582,2.1816485148,-1.677229387,https://salsa.debian.org/python-team/packages/python-padme, https://github.com/zyga/padme,2875.0020023148,1,3,1,1,3,0,0,3 +pkgconfig,0.1589137832,2.4301443545,-0.3239570925,https://salsa.debian.org/python-team/packages/python-pkgconfig, https://github.com/matze/pkgconfig,2902.384537037,4,12,0,14,42,0,0,42 +plaster,-0.2804648853,2.1267152731,-0.8306048313,https://salsa.debian.org/python-team/packages/python-plaster, https://github.com/pylons/plaster,2744.1181365741,7,5,0,7,13,0,0,13 +plaster_pastedeploy,-0.2975329299,2.1673923637,-0.8381262743,https://salsa.debian.org/python-team/packages/python-plaster-pastedeploy, https://github.com/Pylons/plaster_pastedeploy.git,2741.5056365741,4,5,0,7,13,0,0,14 +pluginbase,-0.2812881057,2.0590234382,-0.7551622974,https://salsa.debian.org/python-team/packages/python-pluginbase, https://github.com/mitsuhiko/pluginbase.git,2511.8068518519,1,9,0,7,38,0,1,40 +python-popcon,-0.2335331727,2.0183447681,-1.1098924395,https://github.com/venthur/python-popcon,https://github.com/venthur/python-popcon,4753.6013657408,3,5,0,5,7,0,0,9 +python-poppler-qt5,0.1202276082,2.3680686792,-0.3076713871,https://salsa.debian.org/python-team/packages/python-poppler-qt5, https://github.com/frescobaldi/python-poppler-qt5,3161.7950231482,7,7,1,11,89,0,1,90 +python_portpicker,-0.8378084904,1.8598481156,-1.5521700439,https://salsa.debian.org/debian/python-portpicker, https://github.com/google/python_portpicker,3069.1269212963,11,7,0,10,15,0,0,15 +pure-python-otr,-0.0437206443,2.0655225856,-0.6499675642,https://salsa.debian.org/python-team/packages/python-potr, https://github.com/python-otr/pure-python-otr,3956.9618634259,0,15,3,8,52,0,2,54 +pretend,-0.7061164562,2.3197823691,-1.5465608612,https://salsa.debian.org/python-team/packages/python-pretend, https://github.com/alex/pretend,3941.0314351852,2,9,0,9,19,0,0,19 +python-progressbar,0.3759281126,2.2892745816,-0.1083290674,https://salsa.debian.org/python-team/packages/python-progressbar, https://github.com/niltonvolpato/python-progressbar,3503.7755555556,3,12,0,8,61,0,0,63 +python-protobix,-3.1476883564,-0.7372721621,-3.7253868496,https://salsa.debian.org/python-team/packages/python-protobix, https://github.com/jbfavre/python-protobix,3133.4746064815,0,14,1,0,16,0,0,16 +pulp,0.1825004112,2.2768415582,-0.3249522323,https://salsa.debian.org/math-team/python-pulp, https://github.com/coin-or/pulp/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +Pweave,0.1974177671,3.6215699256,-0.8175147018,https://salsa.debian.org/science-team/python-pweave, https://github.com/mpastell/Pweave/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +pybadges,-3.4188935767,0.0271868396,-4.2767006556,https://salsa.debian.org/python-team/packages/python-pybadges, https://github.com/google/pybadges.git,1932.0270833333,2,14,0,12,29,0,0,29 +pyqrencode,0.0034268604,1.6950809833,-0.4794074089,https://salsa.debian.org/debian/python-qrencode, https://github.com/Arachnid/pyqrencode.git,3791.5353703704,0,6,0,5,22,0,0,22 +ratelimiter,-0.1714954577,2.6072632937,-0.9266913485,https://salsa.debian.org/python-team/packages/python-ratelimiter, https://github.com/RazerM/ratelimiter,1781.4938425926,1,5,0,3,29,0,0,30 +rebulk,-0.1999574426,2.0907811548,-0.82792677,https://salsa.debian.org/python-team/packages/python-rebulk, https://github.com/Toilal/rebulk,3019.4120833333,1,7,2,4,15,0,0,16 +rencode,0.3723707617,3.0060692556,-0.2039050857,https://salsa.debian.org/debian/python-rencode, https://github.com/aresch/rencode.git,4103.1734490741,4,4,0,5,18,0,0,18 +repoze.sphinx.autointerface,-1.3367767902,1.5129207319,-2.1830695792,https://salsa.debian.org/python-team/packages/python-repoze.sphinx.autointerface, https://github.com/repoze/repoze.sphinx.autointerface/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +repoze.tm2,-0.795011466,1.8758832556,-1.600218467,https://salsa.debian.org/python-team/packages/python-repoze.tm2, https://github.com/repoze/repoze.tm2.git,5299.0136921296,0,6,0,3,8,0,0,8 +roman,0.4266969046,1.9457667884,-0.0044298123,https://salsa.debian.org/python-team/packages/python-roman, https://github.com/zopefoundation/roman,5054.6666666667,3,8,0,8,15,0,0,19 +python-signedjson,-0.4972041941,1.1352937233,-0.7813605442,https://salsa.debian.org/matrix-team/python-signedjson, https://github.com/matrix-org/python-signedjson.git,2409.117025463,5,10,0,10,14,0,0,14 +python-slip,0.6771552086,2.9650065243,-0.0680375927,https://salsa.debian.org/debian/python-slip, https://github.com/nphilipp/python-slip.git,4760.8424189815,5,3,0,4,10,0,0,11 +smmap,0.0842345215,1.8862167897,-0.302978642,https://salsa.debian.org/python-team/packages/python-smmap, https://github.com/gitpython-developers/smmap,4570.872037037,4,18,0,16,38,0,0,38 +snuggs,-0.4089829703,1.0919909019,-0.6715786054,https://salsa.debian.org/debian-gis-team/python-snuggs, https://github.com/mapbox/snuggs.git,1698.5099305556,2,7,0,5,16,0,0,16 +socketpool,-0.433473063,1.9120698535,-1.1349538282,https://salsa.debian.org/python-team/packages/python-socketpool, https://github.com/benoitc/socketpool,2141.4605208333,0,17,0,11,31,0,0,32 +PySocksipyChain,-0.0678442589,2.0576051001,-0.7593283222,https://salsa.debian.org/freedombox-team/python-socksipychain, https://github.com/pagekite/PySocksipyChain.git,3262.1183564815,1,7,0,4,12,0,0,12 +pysrp,-0.2655598789,2.0901350297,-0.982879077,https://salsa.debian.org/python-team/packages/python-srp, https://github.com/cocagne/pysrp,4536.7902777778,2,26,0,14,45,0,0,45 +python-ssdeep,-1.6753783276,-0.7457424439,-1.8662568075,https://salsa.debian.org/python-team/packages/python-ssdeep, https://github.com/DinoTools/python-ssdeep/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +static3,-2.1484350509,0.7824659551,-2.9204988941,https://salsa.debian.org/debian/python-static3, https://github.com/rmohr/static3,1017.1397800926,0,5,0,4,21,0,0,21 +stopit,-1.4382358759,1.0640373111,-2.3707053284,https://salsa.debian.org/python-team/packages/python-stopit, https://github.com/glenfant/stopit,2025.0025810185,3,4,0,7,38,0,0,38 +python-subprocess32,0.809721279,3.7269442727,-0.0005664334,https://salsa.debian.org/python-team/modules/python-subprocess32, https://github.com/google/python-subprocess32,2769.8086226852,4,6,0,6,75,0,0,75 +python-sunlight,-0.4386787931,3.6650119727,-1.7599151869,https://salsa.debian.org/python-team/modules/python-sunlight, https://github.com/sunlightlabs/python-sunlight,1218.8703009259,0,11,0,8,23,0,0,25 +python-tblib,-0.7353049539,0.9990220369,-1.1483402151,https://salsa.debian.org/python-team/packages/python-tblib, https://github.com/ionelmc/python-tblib,3634.6597453704,5,11,0,12,50,0,0,51 +urlobject,-1.4032067102,1.0645121312,-1.9682182483,https://salsa.debian.org/python-team/packages/python-urlobject, https://github.com/zacharyvoase/urlobject,3098.5456481482,4,10,0,8,31,0,0,31 +urwidtrees,0.4916470757,4.0558334655,-0.5275660918,https://salsa.debian.org/python-team/packages/python-urwidtrees, https://github.com/pazz/urwidtrees/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +python-sdk,-2.1064074455,0.1631136587,-2.60808327,https://salsa.debian.org/pkg-security-team/python-vulndb, https://github.com/vulndb/python-sdk,1623.0260300926,0,3,0,2,5,0,0,5 +word_cloud,-2.3533134617,-0.117333833,-2.7862995006,https://salsa.debian.org/python-team/packages/python-wordcloud, https://github.com/amueller/word_cloud,4051.6273842593,33,54,0,65,30,0,1,89 +wsproto,0.0162269703,2.3090059731,-0.4249971154,https://salsa.debian.org/python-team/packages/python-wsproto, https://github.com/python-hyper/wsproto/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +python3-xapp,0.4966659567,2.7934932391,-0.0692386084,https://salsa.debian.org/cinnamon-team/python-xapp, https://github.com/linuxmint/python3-xapp.git,2312.6997685185,5,4,0,7,13,0,0,13 +python-xeddsa,-1.1633252234,1.3819292376,-1.7395228535,https://salsa.debian.org/python-team/packages/python-xeddsa, https://github.com/Syndace/python-xeddsa,1709.0088425926,1,4,0,1,2,0,0,2 +xlrd3,0.2419722546,1.6921113748,-0.1509001314,https://salsa.debian.org/python-team/packages/python-xlrd, https://github.com/Dragon2fly/xlrd3.git,4601.1105092593,9,44,0,35,8,0,0,42 +xmltodict,0.5981063759,3.2438940023,-0.1054526563,https://salsa.debian.org/debian/python-xmltodict, https://github.com/martinblech/xmltodict.git,3981.1987152778,26,29,0,41,54,0,1,89 +xopen,-0.3435053785,1.7701848391,-0.7787807244,https://salsa.debian.org/python-team/packages/python-xopen, https://github.com/marcelm/xopen/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +pyzor,0.91715325,1.9335464362,0.3494382533,https://salsa.debian.org/python-team/packages/pyzor, https://github.com/SpamExperts/pyzor,5279.2096064815,6,19,1,17,10,0,0,24 +q2templates,-5.0482247015,-2.7964556336,-5.4769511928,https://salsa.debian.org/med-team/q2templates, https://github.com/qiime2/q2templates.git,2619.2390393519,9,8,0,13,13,0,0,15 +q4wine-debian,-0.1511094825,0.0770464397,-0.2120059522,https://github.com/tehnick/q4wine-debian,https://github.com/tehnick/q4wine-debian,4144.3286111111,0,1,0,1,0,0,0,1 +qconf,-0.3811268622,1.6595217121,-0.7762847478,https://salsa.debian.org/qt-kde-team/extras/qconf, https://github.com/psi-im/qconf.git,5624.6740740741,1,15,0,7,13,0,0,13 +qdacco,-1.6662726628,-0.4610104246,-2.0217074624,https://salsa.debian.org/debian/qdacco, https://github.com/cpina/qdacco.git,5691.2413541667,1,6,0,1,5,0,0,5 +qemuctl,1.3474122059,3.3653108214,0.3818068479,https://github.com/operatornormal/qemuctl,https://github.com/operatornormal/qemuctl,627.1595486111,3,2,0,1,0,0,0,1 +qjoypad,0.8529794114,3.2612636032,-0.0822850011,https://github.com/kilobyte/qjoypad/tree/debian,https://github.com/kilobyte/qjoypad,4422.6630092593,2,12,0,10,1,0,0,11 +qmenu,0.2416596829,3.6062250713,-0.9305566725,https://github.com/teopost/qmenu,https://github.com/teopost/qmenu,3121.65625,0,12,2,5,5,0,0,6 +qmidiarp,0.1060884453,2.4093772481,-0.4462133548,https://salsa.debian.org/multimedia-team/qmidiarp, https://github.com/emuse/qmidiarp.git,5041.9955208333,2,10,0,5,12,0,0,16 +qmidinet,0.3987634563,2.3272584853,-0.2919992565,https://salsa.debian.org/multimedia-team/qmidinet, https://github.com/rncbc/qmidinet.git,4992.0509143519,1,11,0,4,10,0,0,11 +qsampler,0.22306551,2.8539174302,-0.5046019625,https://salsa.debian.org/multimedia-team/qsampler, https://github.com/rncbc/qsampler.git,5737.9962847222,3,14,0,5,5,0,0,7 +qsynth,0.1425312579,0.7343171417,-0.1064510745,https://salsa.debian.org/multimedia-team/qsynth, https://github.com/rncbc/qsynth.git,5674.9236458333,3,19,0,7,24,0,0,25 +qtads,0.5108490252,2.4840737536,-0.3393338609,https://salsa.debian.org/games-team/qtads, https://github.com/realnc/qtads.git,4788.6839583333,5,7,0,10,20,0,0,22 +qterm,-0.9155978148,-0.4024112301,-1.1525455527,https://salsa.debian.org/chinese-team/qterm, https://github.com/qterm/qterm,4614.8412384259,1,8,0,4,17,0,1,18 +ChemmineR,-4.9478723057,-2.463477009,-5.4701350553,https://salsa.debian.org/r-pkg-team/r-bioc-chemminer, https://github.com/girke-lab/ChemmineR.git,5502.0317476852,2,22,0,10,19,0,0,26 +GenomicAlignments,-0.0620075073,2.2952168072,-0.6079488331,https://salsa.debian.org/r-pkg-team/r-bioc-genomicalignments, https://github.com/Bioconductor/GenomicAlignments.git,3637.7668287037,1,21,0,13,35,0,0,39 +GenomicRanges,-0.3216038801,1.2623780689,-0.6013624703,https://salsa.debian.org/r-pkg-team/r-bioc-genomicranges, https://github.com/Bioconductor/GenomicRanges.git,4977.821712963,4,35,0,17,53,0,0,59 +IRanges,-0.2732928737,0.9495069035,-0.572231786,https://salsa.debian.org/r-pkg-team/r-bioc-iranges, https://github.com/Bioconductor/IRanges.git,5556.7386458333,4,26,0,13,28,0,0,34 +preprocessCore,-0.5732675432,1.6147898925,-1.0092066733,https://salsa.debian.org/r-pkg-team/r-bioc-preprocesscore, https://github.com/bmbolstad/preprocessCore.git,2983.7131828704,0,24,0,9,24,0,0,29 +Rsamtools,-0.2310113342,1.6900769525,-0.6158536063,https://salsa.debian.org/r-pkg-team/r-bioc-rsamtools, https://github.com/Bioconductor/Rsamtools.git,5200.0497569445,3,23,0,13,61,0,1,68 +S4Vectors,-0.0375813239,2.2525487662,-0.5982212588,https://salsa.debian.org/r-pkg-team/r-bioc-s4vectors, https://github.com/Bioconductor/S4Vectors/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +XVector,-0.1488435412,2.1308487448,-0.5902275914,https://salsa.debian.org/r-pkg-team/r-bioc-xvector, https://github.com/Bioconductor/XVector.git,3819.2003935185,0,10,0,5,3,0,0,7 +animation,-0.3515983765,2.1779345723,-0.9193080299,https://salsa.debian.org/r-pkg-team/r-cran-animation, https://github.com/yihui/animation/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +arm,-0.2157734257,1.5269652897,-0.5053279666,https://salsa.debian.org/r-pkg-team/r-cran-arm, https://github.com/suyusung/arm.git,2199.2741898148,0,4,0,2,20,0,0,20 +av,-3.30692254,-1.0664029566,-3.7499442887,https://salsa.debian.org/r-pkg-team/r-cran-av, https://github.com/ropensci/av.git,1927.0685763889,2,3,0,3,37,0,0,37 +BBmisc,-0.0791867315,2.2103067426,-0.5239193282,https://salsa.debian.org/r-pkg-team/r-cran-bbmisc, https://github.com/berndbischl/BBmisc/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +R-bitops,0.1812196348,2.5081885743,-0.2636167197,https://salsa.debian.org/r-pkg-team/r-cran-bitops, https://github.com/mmaechler/R-bitops/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +bold,-0.3589941343,1.8830194903,-0.7984155261,https://salsa.debian.org/r-pkg-team/r-cran-bold, https://github.com/ropensci/bold/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +crayon,0.2585448991,2.4711889525,-0.1898457145,https://salsa.debian.org/r-pkg-team/r-cran-crayon, https://github.com/r-lib/crayon/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +data.table,0.2136711627,2.3818673171,-0.2205863845,https://salsa.debian.org/r-pkg-team/r-cran-data.table, https://github.com/Rdatatable/data.table/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +lwgeom,0.0058180918,2.4188629892,-0.7327945006,https://salsa.debian.org/r-pkg-team/r-cran-lwgeom, https://github.com/r-spatial/lwgeom/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +matrixcalc,0.635479198,4.3464268954,-0.3463558892,https://salsa.debian.org/r-pkg-team/r-cran-matrixcalc, https://github.com/TomKellyGenetics/matrixcalc/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +mcmc,0.1542552699,2.7368602124,-0.4513098316,https://salsa.debian.org/r-pkg-team/r-cran-mcmc, https://github.com/cjgeyer/mcmc/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +mice,-1.1703228936,1.1700115105,-1.5897791054,https://salsa.debian.org/r-pkg-team/r-cran-mice, https://github.com/amices/mice/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +MNP,-0.0051235593,2.1439929564,-0.4400210306,https://salsa.debian.org/r-pkg-team/r-cran-mnp, https://github.com/kosukeimai/MNP/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +nozzle,-2.8854861587,-0.5978017889,-3.3250463837,https://salsa.debian.org/r-pkg-team/r-cran-nozzle.r1, https://github.com/parklab/nozzle.git,926.0286111111,0,1,0,1,13,0,0,13 +r-optparse,-0.2070927617,2.0241027782,-0.6422022567,https://salsa.debian.org/r-pkg-team/r-cran-optparse, https://github.com/trevorld/r-optparse.git,3364.6461689815,0,11,0,2,23,0,0,23 +pbdZMQ,0.1891713681,3.4926433557,-0.7475172495,https://salsa.debian.org/r-pkg-team/r-cran-pbdzmq, https://github.com/snoweye/pbdZMQ/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +plyr,0.2396916445,2.3397739545,-0.1920061376,https://salsa.debian.org/r-pkg-team/r-cran-plyr, https://github.com/hadley/plyr/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ps,0.1035877787,2.5492783444,-0.3466845119,https://salsa.debian.org/r-pkg-team/r-cran-ps, https://github.com/r-lib/ps/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +pscl,0.7428074668,3.4473876545,-0.1554350642,https://salsa.debian.org/r-pkg-team/r-cran-pscl, https://github.com/atahk/pscl/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rcmdcheck,0.2146726991,2.6895020277,-0.3988188518,https://salsa.debian.org/r-pkg-team/r-cran-rcmdcheck, https://github.com/r-Lib/rcmdcheck/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rgenoud,-0.3488800713,2.0874491929,-0.9117194293,https://salsa.debian.org/r-pkg-team/r-cran-rgenoud, https://github.com/JasjeetSekhon/rgenoud/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ritis,-0.2993761764,1.9534734206,-0.7980064599,https://salsa.debian.org/r-pkg-team/r-cran-ritis, https://github.com/ropensci/ritis.git,3983.0266666667,1,4,0,3,12,0,0,12 +rncl,-0.3371319454,1.9103735604,-0.7874553216,https://salsa.debian.org/r-pkg-team/r-cran-rncl, https://github.com/fmichonneau/rncl/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +RPostgreSQL,0.1055240035,2.6128418992,-0.4853871285,https://salsa.debian.org/r-pkg-team/r-cran-rpostgresql, https://github.com/tomoakin/RPostgreSQL/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rprotobuf,-0.6366352318,1.6233621016,-1.07827539,https://salsa.debian.org/r-pkg-team/r-cran-rprotobuf, https://github.com/eddelbuettel/rprotobuf/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rredlist,-0.2938584635,2.0226834023,-0.7943140683,https://salsa.debian.org/r-pkg-team/r-cran-rredlist, https://github.com/ropensci/rredlist/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +truncnorm,-0.0250364198,2.0343035584,-0.4668055836,https://salsa.debian.org/r-pkg-team/r-cran-truncnorm, https://github.com/olafmersmann/truncnorm/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +r-utf8,0.4292727883,3.0821382028,-0.1776413564,https://salsa.debian.org/r-pkg-team/r-cran-utf8, https://github.com/patperry/r-utf8/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +vcdExtra,-0.1359675027,2.0732853363,-0.5645165568,https://salsa.debian.org/r-pkg-team/r-cran-vcdextra, https://github.com/friendly/vcdExtra.git,5383.4657523148,0,9,0,3,12,0,0,12 +vioplot,-0.5117688173,1.754135969,-0.9412408999,https://salsa.debian.org/r-pkg-team/r-cran-vioplot, https://github.com/TomKellyGenetics/vioplot,2457.8733912037,2,6,0,3,10,0,0,11 +worrms,-0.5997090341,1.1419114747,-0.9334770127,https://salsa.debian.org/r-pkg-team/r-cran-worrms, https://github.com/ropensci/worrms/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +Zelig,0.7234179385,3.5136261784,-0.1954309797,https://salsa.debian.org/r-pkg-team/r-cran-zelig, https://github.com/IQSS/Zelig/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +radare2,-0.001835483,0.290941294,-0.1737536018,https://salsa.debian.org/pkg-security-team/radare2, https://github.com/radareorg/radare2/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +radcli,0.8077891464,3.0284268528,0.04850184,https://salsa.debian.org/debian/radcli, https://github.com/radcli/radcli,0.0082986111,10,25,0,19,27,0,0,35 +radium_compressor,0.1355972195,2.8572373451,-0.7243626073,https://salsa.debian.org/multimedia-team/radium-compressor, https://github.com/kmatheussen/radium_compressor.git,2426.0817361111,0,1,0,1,4,0,0,4 +rainbow,-2.2315150038,-0.9649972127,-2.481288314,https://salsa.debian.org/js-team/rainbow.js, https://github.com/ccampbell/rainbow/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rake-compiler,-0.1765905828,1.968096231,-0.8991055528,https://salsa.debian.org/ruby-team/rake-compiler, https://github.com/rake-compiler/rake-compiler/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rapache,-1.9452855915,-0.2626388012,-2.421875321,https://salsa.debian.org/r-pkg-team/rapache, https://github.com/jeffreyhorner/rapache.git,4155.5934953704,1,13,0,6,35,0,0,35 +raphael,0.6406275138,3.7045765255,-0.2507834388,https://salsa.debian.org/debian/raphael, https://github.com/DmitryBaranovskiy/raphael/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +redmine_local_avatars,-1.4572727561,1.4827307788,-2.2601628352,https://salsa.debian.org/debian/redmine-plugin-local-avatars, https://github.com/ncoders/redmine_local_avatars,3991.5587615741,3,11,0,9,47,0,0,48 +ree,0.455206434,2.7126650543,-0.2943021607,https://salsa.debian.org/debian/ree, https://github.com/alexmyczko/ree,1112.0390740741,3,1,0,2,2,0,0,3 +remaster-iso,-2.0473516929,0.1202211372,-2.4770101415,https://github.com/unixabg/remaster-iso,https://github.com/unixabg/remaster-iso,251.8044791667,1,3,0,3,5,0,0,5 +python-requests-aws,-0.7617204879,2.8252172293,-1.7279435269,https://salsa.debian.org/python-team/packages/requests-aws, https://github.com/tax/python-requests-aws,1319.2575,2,12,1,8,18,0,0,18 +rerun,-0.4314612854,3.3152754481,-1.4987677111,https://salsa.debian.org/ruby-team/rerun, https://github.com/alexch/rerun/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +resvg,-0.8706965662,2.5429179421,-1.7032916571,https://salsa.debian.org/debian/resvg, https://github.com/RazrFalcon/resvg.git,2182.7898726852,46,8,0,47,30,0,0,65 +rexical,-1.8414750192,0.9895052788,-2.7520386326,https://salsa.debian.org/ruby-team/rexical, https://github.com/tenderlove/rexical,5447.083912037,2,10,0,9,23,0,2,29 +ripe-atlas-cousteau,-0.9764944882,1.3924863314,-1.4702991314,https://salsa.debian.org/python-team/packages/ripe-atlas-cousteau, https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,3286.9945949074,5,15,0,13,37,0,0,39 +robocut,-0.2824151439,2.3754574352,-1.0923195505,https://github.com/alpharesearch/robocut,https://github.com/alpharesearch/robocut,831.4363194444,0,6,0,3,0,0,0,3 +robotfindskitten-pkg-debian,0.0179376982,1.3078276454,-0.485626997,https://github.com/rfinnie/robotfindskitten-pkg-debian,https://github.com/rfinnie/robotfindskitten-pkg-debian,1629.5291319445,3,1,0,3,0,0,0,3 +rolo,-0.0498132259,2.1330027792,-0.8216828066,https://salsa.debian.org/debian/rolo, https://github.com/libvc/rolo,1738.2993634259,2,2,0,2,2,0,0,2 +rospack,-0.2414662592,1.0688853941,-0.5553517117,https://salsa.debian.org/science-team/ros-rospack, https://github.com/ros/rospack.git,3438.9073958333,20,26,0,26,22,0,0,42 +rospkg,-0.0548646672,1.8580305855,-0.5008277906,https://salsa.debian.org/science-team/ros-rospkg, https://github.com/ros-infrastructure/rospkg.git,4295.6529861111,33,59,0,64,29,0,0,79 +std_msgs,-0.0206690342,2.386166873,-0.5747059717,https://salsa.debian.org/science-team/ros-std-msgs, https://github.com/ros/std_msgs.git,3274.7244560185,3,17,0,9,19,0,0,20 +rsh-redone,0.2434579926,2.4765843324,-0.7125516261,https://salsa.debian.org/debian/rsh-redone, https://github.com/gsliepen/rsh-redone,3762.4461458333,1,2,0,2,0,0,0,2 +rt-extension-repeatticket,-1.2713455525,2.448057755,-2.2206005858,https://salsa.debian.org/request-tracker-team/rt-extension-repeatticket, https://github.com/bestpractical/rt-extension-repeatticket,4204.3307407408,0,5,0,4,3,0,0,7 +rtkit,1.5914934939,3.4753341698,0.6818583583,https://salsa.debian.org/multimedia-team/rtkit, https://github.com/heftig/rtkit,3958.7431828704,18,3,0,13,43,0,0,51 +actionpack-action_caching,-0.0195395793,2.0209197518,-0.4608551365,https://salsa.debian.org/ruby-team/ruby-actionpack-action-caching, https://github.com/rails/actionpack-action_caching/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +actionpack-page_caching,-2.0979772282,1.0629868716,-2.9170878445,https://salsa.debian.org/ruby-team/ruby-actionpack-page-caching, https://github.com/rails/actionpack-page_caching/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +bacon,-1.4997697176,0.69875474,-2.0358441625,https://salsa.debian.org/ruby-team/ruby-bacon, https://github.com/leahneukirchen/bacon,5364.0763657407,3,17,0,13,38,0,0,42 +base62,-3.2007890763,-0.5710294937,-3.7408477417,https://salsa.debian.org/ruby-team/ruby-base62, https://github.com/jtzemp/base62.git,1973.6897222222,1,5,0,3,13,0,1,15 +batch-loader,-1.39118114,1.051907531,-1.9658421191,https://salsa.debian.org/ruby-team/ruby-batch-loader, https://github.com/exAspArk/batch-loader/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +bcrypt-ruby,-0.1670366207,2.5485813659,-0.7840534303,https://salsa.debian.org/ruby-team/ruby-bcrypt, https://github.com/bcrypt-ruby/bcrypt-ruby/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby-beautify,-1.8179395924,0.5723544617,-2.4288221334,https://salsa.debian.org/ruby-team/ruby-beautify.git, https://github.com/erniebrodeur/ruby-beautify,2708.0809837963,1,19,0,16,45,0,0,50 +bogus,-2.97011868,-1.1536023268,-3.3242631007,https://salsa.debian.org/ruby-team/ruby-bogus, https://github.com/psyho/bogus/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +bootsnap,0.4969446581,4.0467699375,-0.4453655481,https://salsa.debian.org/ruby-team/ruby-bootsnap, https://github.com/Shopify/bootsnap/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +mongo-ruby-driver,-0.4876456206,1.8841260262,-1.1170056726,https://salsa.debian.org/ruby-team/ruby-bson, https://github.com/mongodb/mongo-ruby-driver/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +buff-config,-2.0406131429,-0.5802367653,-2.3469509456,https://salsa.debian.org/ruby-team/ruby-buff-config, https://github.com/berkshelf/buff-config/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +buff-extensions,-1.7001314331,0.6961340583,-2.1479955125,https://salsa.debian.org/ruby-team/ruby-buff-extensions, https://github.com/RiotGames/buff-extensions,1162.5226851852,0,5,0,3,12,0,0,12 +builder,0.2891790514,2.0567550581,-0.1483490017,https://salsa.debian.org/ruby-team/ruby-builder, https://github.com/tenderlove/builder/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +byebug,0.1180553967,2.3001711673,-0.3220977863,https://salsa.debian.org/ruby-team/ruby-byebug, https://github.com/deivid-rodriguez/byebug/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +capture-output,-2.8922262934,-0.7342713061,-3.3221878931,https://salsa.debian.org/ruby-team/ruby-capture-output, https://github.com/jpastuszek/capture-output,0.0173611111,0,1,0,1,1,0,0,2 +capybara,0.2496990629,2.4303429017,-0.4282559769,https://salsa.debian.org/ruby-team/ruby-capybara, https://github.com/teamcapybara/capybara/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +cassiopee,-1.5851518029,1.3271244261,-2.3664077484,https://salsa.debian.org/ruby-team/ruby-cassiopee, https://github.com/osallou/cassiopee/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +celluloid,0.0913806587,1.1865611887,-0.2892192569,https://salsa.debian.org/ruby-team/ruby-celluloid, https://github.com/celluloid/celluloid/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +certificate_authority,-2.001867048,0.4618631999,-2.7039312007,https://salsa.debian.org/ruby-team/ruby-certificate-authority, https://github.com/cchandler/certificate_authority/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +cmdparse,0.6782564731,4.5071204079,-0.416431913,https://salsa.debian.org/ruby-team/ruby-cmdparse, https://github.com/gettalong/cmdparse/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +color,-1.6594930763,0.7881397104,-2.2203703357,https://salsa.debian.org/ruby-team/ruby-color, https://github.com/halostatue/color,4994.1460185185,1,11,1,4,30,0,0,30 +colorator,0.17562997,2.3024347781,-0.2637255242,https://salsa.debian.org/ruby-team/ruby-colorator, https://github.com/octopress/colorator/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +combustion,-2.7077626864,-0.5070219842,-3.2814670287,https://salsa.debian.org/ruby-team/ruby-combustion, https://github.com/pat/combustion/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +commander,-0.3544313341,2.5524463745,-1.091065268,https://salsa.debian.org/ruby-team/ruby-commander, https://github.com/commander-rb/commander/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +connection_pool,-0.107782789,2.7608316302,-0.9083898684,https://salsa.debian.org/ruby-team/ruby-connection-pool, https://github.com/mperham/connection_pool/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +coveralls-ruby,-1.0639842925,0.6886883657,-1.6214631931,https://salsa.debian.org/ruby-team/ruby-coveralls, https://github.com/lemurheavy/coveralls-ruby/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +crb-blast,-0.6967501476,1.5636879643,-1.4854285145,https://salsa.debian.org/ruby-team/ruby-crb-blast, https://github.com/cboursnell/crb-blast,1070.1020717593,0,5,0,2,15,0,0,15 +css_parser,0.4702988432,3.0731837512,-0.226276662,https://salsa.debian.org/ruby-team/ruby-css-parser, https://github.com/premailer/css_parser/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +curb,-0.9519936286,0.5852000443,-1.3702997899,https://salsa.debian.org/ruby-team/ruby-curb, https://github.com/taf2/curb/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +dalli,-0.7493522151,1.7345835465,-1.4848953309,https://salsa.debian.org/ruby-team/ruby-dalli, https://github.com/petergoldstein/dalli/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +eim_xml,-0.7146782347,2.4094998812,-1.5508131873,https://salsa.debian.org/ruby-team/ruby-eim-xml, https://github.com/hirakuro/eim_xml/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +em-http-request,-0.182257018,2.1432197933,-1.011053135,https://salsa.debian.org/ruby-team/ruby-em-http-request, https://github.com/igrigorik/em-http-request/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +em-redis,-2.4322275314,0.3220252422,-3.2383595542,https://salsa.debian.org/ruby-team/ruby-em-redis, https://github.com/libc/em-redis,3058.3058101852,3,10,0,6,7,0,0,10 +encryptor,0.4811221705,4.0560529867,-0.7455390491,https://salsa.debian.org/ruby-team/ruby-encryptor, https://github.com/attr-encrypted/encryptor,2635.9583564815,1,9,0,5,53,0,0,54 +entypo-rails,0.5391017786,4.3530001784,-0.5148206393,https://salsa.debian.org/ruby-team/ruby-entypo-rails, https://github.com/lwe/entypo-rails,1757.4358333333,1,10,0,7,20,0,0,20 +enumerize,-3.5842960195,-1.0600757701,-4.2631150762,https://salsa.debian.org/ruby-team/ruby-enumerize, https://github.com/brainspec/enumerize/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +escape_utils,-0.3520723582,1.3204538371,-0.8030228346,https://salsa.debian.org/ruby-team/ruby-escape-utils, https://github.com/brianmario/escape_utils.git,4731.6076041667,5,24,0,25,33,0,0,45 +espeak-ruby,-0.7286751247,2.0352078637,-1.4874218872,https://salsa.debian.org/ruby-team/ruby-espeak, https://github.com/dejan/espeak-ruby/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ethon,-0.0042860534,2.2301309151,-0.5633876951,https://salsa.debian.org/ruby-team/ruby-ethon, https://github.com/typhoeus/ethon/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +excon,0.3241647951,2.1161660144,-0.1827284225,https://salsa.debian.org/ruby-team/ruby-excon, https://github.com/excon/excon/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +execjs,0.8128959283,3.6876363054,-0.0541606598,https://salsa.debian.org/ruby-team/ruby-execjs, https://github.com/rails/execjs/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +factory_bot,-2.8031110385,-0.7539374887,-3.2965562449,https://salsa.debian.org/ruby-team/ruby-factory-bot, https://github.com/thoughtbot/factory_bot/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +factory_bot_rails,-4.3362753842,-1.1849251406,-5.2964482175,https://salsa.debian.org/ruby-team/ruby-factory-bot-rails, https://github.com/thoughtbot/factory_bot_rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +faker,-2.043268084,0.4558232112,-2.7260545607,https://salsa.debian.org/ruby-team/ruby-faker, https://github.com/faker-ruby/faker/issues/new,2746.3319791667,2,17,0,0,0,0,0,881 +ruby-fcgi-ng,0.3005043747,2.2153527182,-0.3456056618,https://salsa.debian.org/ruby-team/ruby-fcgi, https://github.com/alphallc/ruby-fcgi-ng,3559.9222685185,1,6,0,5,7,0,0,7 +ferret,-1.152482197,0.9802706874,-1.8377454457,https://salsa.debian.org/ruby-team/ruby-ferret, https://github.com/dbalmain/ferret/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ffaker,-2.5489714355,0.5028353652,-3.5038139593,https://salsa.debian.org/ruby-team/ruby-ffaker, https://github.com/ffaker/ffaker/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ffi,0.7507411929,2.0786767636,0.1677842861,https://salsa.debian.org/ruby-team/ruby-ffi, https://github.com/ffi/ffi/wiki/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ffi-rzmq,-1.7723964358,0.1072926119,-2.431946797,https://salsa.debian.org/ruby-team/ruby-ffi-rzmq, https://github.com/chuckremes/ffi-rzmq,3424.7133912037,1,37,0,26,23,0,0,39 +filepath,-2.3053481268,0.1409903961,-2.9510491569,https://salsa.debian.org/ruby-team/ruby-filepath, https://github.com/gioele/filepath/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +fission,-1.6562095743,0.8388115306,-2.2192481171,https://salsa.debian.org/ruby-team/ruby-fission, https://github.com/thbishop/fission,876.3192708333,0,10,0,7,20,0,0,20 +flexmock,-0.3454878367,2.571112926,-1.0719182939,https://salsa.debian.org/ruby-team/ruby-flexmock, https://github.com/doudou/flexmock/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +fog-core,0.6091506734,3.4479009172,-0.153332088,https://salsa.debian.org/ruby-team/ruby-fog-core, https://github.com/fog/fog-core/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +fog-local,-0.5604968871,1.9424075855,-1.1725410205,https://salsa.debian.org/ruby-team/ruby-fog-local, https://github.com/fog/fog-local,5023.4471759259,4,29,0,20,20,0,0,31 +graffiti,-1.4846935384,1.5503379929,-2.3930105658,https://salsa.debian.org/ruby-team/ruby-graffiti, https://github.com/angdraug/graffiti,3536.2679166667,0,3,0,1,2,0,0,2 +grape,-0.4350415295,1.4006419917,-1.070629589,https://salsa.debian.org/ruby-team/ruby-grape, https://github.com/ruby-grape/grape/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +Ruby-Graphviz,-0.281553724,2.1524260723,-1.1267460692,https://salsa.debian.org/ruby-team/ruby-graphviz, https://github.com/glejeune/Ruby-Graphviz/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rb-gsl,-0.3230766707,0.701457517,-0.7464638333,https://salsa.debian.org/ruby-team/ruby-gsl, https://github.com/SciRuby/rb-gsl/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +haml,-0.2288560111,0.7789985582,-0.5585413968,https://salsa.debian.org/ruby-team/ruby-haml, https://github.com/haml/haml/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +haml-rails,-1.7986736177,0.2769400484,-2.4010715421,https://salsa.debian.org/ruby-team/ruby-haml-rails, https://github.com/haml/haml-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +hamster,0.1910108771,2.6568022387,-0.3608024404,https://salsa.debian.org/ruby-team/ruby-hamster, https://github.com/hamstergem/hamster/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +hangouts-chat,-1.2144339097,0.4818108524,-1.5637566918,https://salsa.debian.org/ruby-team/ruby-hangouts-chat, https://github.com/enzinia/hangouts-chat,1065.9778472222,3,4,0,3,4,0,0,4 +hashie,0.5722550457,3.4085323574,-0.2355411618,https://salsa.debian.org/ruby-team/ruby-hashie, https://github.com/hashie/hashie/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +highline,0.2453167047,2.4988399297,-0.2235846904,https://salsa.debian.org/ruby-team/ruby-highline, https://github.com/JEG2/highline/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +hitimes,0.1068100876,2.6613098357,-0.447701455,https://salsa.debian.org/ruby-team/ruby-hitimes, https://github.com/copiousfreetime/hitimes/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +html-pipeline,-0.3782141806,2.4999259043,-1.1470246908,https://salsa.debian.org/ruby-team/ruby-html-pipeline, https://github.com/jch/html-pipeline,4034.7769328704,33,88,0,93,41,0,0,110 +html2haml,-0.284722491,1.1708771552,-0.6449129827,https://salsa.debian.org/ruby-team/ruby-html2haml, https://github.com/haml/html2haml/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +httparty,-0.2296319294,1.8101133693,-0.8217200797,https://salsa.debian.org/ruby-team/ruby-httparty, https://github.com/jnunemaker/httparty/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +i18n,0.8152415757,2.7696084069,0.1031413415,https://salsa.debian.org/ruby-team/ruby-i18n, https://github.com/ruby-i18n/i18n/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +i18n-inflector-rails,-3.6101910392,-1.2035908486,-4.2660614395,https://salsa.debian.org/ruby-team/ruby-i18n-inflector-rails, https://github.com/siefca/i18n-inflector-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +icalendar,-0.9967703811,1.7616614381,-1.7133045592,https://salsa.debian.org/ruby-team/ruby-icalendar, https://github.com/icalendar/icalendar/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ice_cube,-2.9447850831,0.3245689035,-3.696715811,https://salsa.debian.org/ruby-team/ruby-ice-cube, http://seejohnrun.github.com/ice_cube/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +image_science,-0.6109855428,1.3356911263,-1.2647438358,https://salsa.debian.org/ruby-team/ruby-image-science, https://github.com/seattlerb/image_science/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +influxdb-ruby,0.0573197432,3.227120433,-0.9690594839,https://salsa.debian.org/ruby-team/ruby-influxdb, https://github.com/InfluxCommunity/influxdb-ruby/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +inherited_resources,-4.4805244395,-1.6125821355,-5.323696982,https://salsa.debian.org/ruby-team/ruby-inherited-resources, https://github.com/activeadmin/inherited_resources/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rubyinline,-0.5488463078,1.586460929,-1.1539952628,https://salsa.debian.org/ruby-team/ruby-inline, https://github.com/seattlerb/rubyinline.git,5600.4261805556,0,4,0,3,40,0,0,40 +innertube,-0.8869903201,1.6021467977,-1.6544158523,https://salsa.debian.org/ruby-team/ruby-innertube, https://github.com/basho/innertube.git,1008.2290162037,0,4,0,4,8,0,0,8 +ipaddress,0.3785874101,3.1933979431,-0.2196161692,https://salsa.debian.org/ruby-team/ruby-ipaddress, https://github.com/bluemonk/ipaddress/issues/new,2746.3319791667,2,17,0,0,0,0,0,56 +jar-dependencies,0.0460603946,2.8173117768,-0.7407876075,https://salsa.debian.org/ruby-team/ruby-jar-dependencies, https://github.com/mkristian/jar-dependencies,3114.2440277778,4,15,0,15,42,0,1,45 +jekyll-commonmark,-3.9057611496,-1.6518132292,-4.3433705046,https://salsa.debian.org/ruby-team/ruby-jekyll-commonmark, https://github.com/jekyll/jekyll-commonmark/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +jekyll-feed,0.1675771135,2.2494684672,-0.2627259539,https://salsa.debian.org/ruby-team/ruby-jekyll-feed, https://github.com/jekyll/jekyll-feed/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +joiner,-0.899573388,2.1329741465,-1.7030771732,https://salsa.debian.org/ruby-team/ruby-joiner, https://github.com/pat/joiner/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +jquery-atwho-rails,-0.7423375517,1.4980767196,-1.2841911773,https://salsa.debian.org/ruby-team/ruby-jquery-atwho-rails, https://github.com/ichord/jquery-atwho-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +locale,0.3803802231,1.524276319,-0.0365821889,https://salsa.debian.org/ruby-team/ruby-locale, https://github.com/ruby-gettext/locale/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +magic,-0.136206368,2.210685595,-0.7957036211,https://salsa.debian.org/ruby-team/ruby-magic, https://github.com/qoobaa/magic,2808.4621990741,0,9,0,5,8,0,0,8 +mail-gpg,-0.9409015952,1.9853520354,-1.675246259,https://salsa.debian.org/ruby-team/ruby-mail-gpg, https://github.com/jkraemer/mail-gpg,4267.9559722222,18,136,0,11,30,0,0,30 +markdown-it-html5-embed,-2.8648647448,0.5943602868,-3.688121554,https://salsa.debian.org/ruby-team/ruby-markdown-it-html5-embed, https://github.com/cmrd-senya/markdown-it-html5-embed,2489.0705555556,3,10,0,7,15,0,0,15 +maxitest,-2.3507463091,0.2011168043,-2.9821664947,https://salsa.debian.org/ruby-team/ruby-maxitest, https://github.com/grosser/maxitest,3302.3780092593,0,10,0,6,20,0,0,20 +method_source,0.3967690887,3.2318024051,-0.2913605087,https://salsa.debian.org/ruby-team/ruby-method-source, https://github.com/banister/method_source,3988.6090393519,4,19,0,20,55,0,0,56 +ruby-mime-types,0.3717629365,2.6878654539,-0.1300864966,https://salsa.debian.org/ruby-team/ruby-mime-types, https://github.com/mime-types/ruby-mime-types/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +minimagick,-1.0439670842,0.2157840612,-1.3997145193,https://salsa.debian.org/ruby-team/ruby-mini-magick, https://github.com/minimagick/minimagick/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +minitar,-0.0660695838,1.7554167483,-0.5639163741,https://salsa.debian.org/ruby-team/ruby-minitar, https://github.com/halostatue/minitar,5658.6576851852,8,6,1,8,33,0,0,33 +minitest,0.6291543197,3.2530425688,0.0059259645,https://salsa.debian.org/ruby-team/ruby-minitest, https://github.com/seattlerb/minitest/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +minitest-around,-1.7698068776,0.7510788114,-2.5114054563,https://salsa.debian.org/ruby-team/ruby-minitest-around, https://github.com/splattael/minitest-around,2552.4467708333,2,14,0,7,17,0,0,17 +minitest-shared_description,-3.2057434289,-0.7536793446,-3.735520243,https://salsa.debian.org/ruby-team/ruby-minitest-shared-description, https://github.com/jeremyevans/minitest-shared_description,2605.2266666667,0,2,0,2,2,0,0,2 +mixlib-install,-0.6385298321,2.1889207953,-1.4847448361,https://salsa.debian.org/ruby-team/ruby-mixlib-install, https://github.com/chef/mixlib-install/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +mocha,-0.0854006271,1.5328416557,-0.5865753787,https://salsa.debian.org/ruby-team/ruby-mocha, https://github.com/freerange/mocha/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +mousetrap-rails,-0.5414473391,2.2995115053,-1.3022888739,https://salsa.debian.org/ruby-team/ruby-mousetrap-rails, https://github.com/kugaevsky/mousetrap-rails,2627.8625810185,0,4,0,3,14,0,2,16 +mustache,0.3863898236,2.9819707709,-0.4052274614,https://salsa.debian.org/ruby-team/ruby-mustache, https://github.com/defunkt/mustache,4729.4908680556,23,58,1,62,26,0,0,84 +mysql2,0.3134512975,1.4731032493,-0.1330082155,https://salsa.debian.org/ruby-team/ruby-mysql2, https://github.com/brianmario/mysql2,4877.8413194445,60,107,4,128,39,0,0,163 +net-sftp,0.512822573,2.6427692706,-0.1200757583,https://salsa.debian.org/ruby-team/ruby-net-sftp, https://github.com/net-ssh/net-sftp/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +net-ssh,0.3423712483,1.5708505632,-0.0962002825,https://salsa.debian.org/ruby-team/ruby-net-ssh, https://github.com/net-ssh/net-ssh/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +net-ssh-gateway,0.0949247841,2.4061879488,-0.3883582933,https://salsa.debian.org/ruby-team/ruby-net-ssh-gateway, https://github.com/net-ssh/net-ssh-gateway/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +netrc,0.6689404268,3.5600163117,-0.1237597689,https://salsa.debian.org/ruby-team/ruby-netrc, https://github.com/heroku/netrc,3633.5661342593,0,30,0,18,43,0,0,45 +nokogiri,0.0984970577,0.7468154749,-0.1063244283,https://salsa.debian.org/ruby-team/ruby-nokogiri, https://github.com/sparklemotion/nokogiri/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rubyntlm,-0.0624150923,2.5862392951,-0.7205122229,https://salsa.debian.org/ruby-team/ruby-ntlm, https://github.com/winrb/rubyntlm/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +oauth-ruby,0.0832778896,2.8453147176,-0.5926012173,https://salsa.debian.org/ruby-team/ruby-oauth, https://github.com/oauth-xx/oauth-ruby,5341.0796643519,47,77,3,86,0,0,0,86 +oauth2,-0.165607622,2.3195911932,-0.9005135088,https://salsa.debian.org/ruby-team/ruby-oauth2, https://github.com/intridea/oauth2,4856.2432986111,41,112,2,108,0,0,0,108 +oily_png,0.1453183816,3.1507405338,-0.7131154739,https://salsa.debian.org/ruby-team/ruby-oily-png, https://github.com/wvanbergen/oily_png/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +oj,0.2009601344,1.5648205522,-0.1380338639,https://salsa.debian.org/ruby-team/ruby-oj, https://github.com/ohler55/oj/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby-ole,-0.6621692167,1.4303576538,-1.3055179465,https://salsa.debian.org/ruby-team/ruby-ole, https://github.com/aquasync/ruby-ole/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +omniauth-cas3,-0.5952547028,1.8217576227,-1.2467001517,https://salsa.debian.org/ruby-team/ruby-omniauth-cas3, https://github.com/tduehr/omniauth-cas3,3904.2384027778,7,20,0,16,5,0,0,17 +omniauth_crowd,-0.5393910023,2.0196041023,-1.2327402235,https://salsa.debian.org/ruby-team/ruby-omniauth-crowd, https://github.com/robdimarco/omniauth_crowd,3405.9749189815,0,18,0,7,22,0,1,23 +pdf-core,0.4904301487,3.0385774309,-0.1720936555,https://salsa.debian.org/ruby-team/ruby-pdf-core, https://github.com/prawnpdf/pdf-core,3635.7233912037,6,16,0,15,46,0,0,47 +ruby-pgplot,-2.6363964332,-2.1680994385,-2.777770353,https://salsa.debian.org/ruby-team/ruby-pgplot, https://github.com/masa16/ruby-pgplot,1430.3931597222,0,3,0,2,0,0,0,2 +pkg-config,0.3988956635,1.8385888168,-0.0542821557,https://salsa.debian.org/ruby-team/ruby-pkg-config, https://github.com/ruby-gnome/pkg-config/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +powerpack,-0.1934084944,2.1339641007,-0.895456645,https://salsa.debian.org/ruby-team/ruby-powerpack, https://github.com/bbatsov/powerpack.git,2684.7776041667,4,14,0,13,29,0,0,29 +premailer,-0.5173304375,2.1881663412,-1.1678917683,https://salsa.debian.org/ruby-team/ruby-premailer, https://github.com/premailer/premailer,5001.0799884259,26,100,0,91,2,0,19,111 +ruby-progressbar,0.8495085041,3.8284313345,-0.1583697084,https://salsa.debian.org/ruby-team/ruby-progressbar, https://github.com/jfelchner/ruby-progressbar/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +psych,0.1356905572,2.4813899471,-0.6287647557,https://salsa.debian.org/ruby-team/ruby-psych, https://github.com/ruby/psych/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +puppet-syntax,-1.4274929514,0.597721473,-2.0050274993,https://salsa.debian.org/ruby-team/ruby-puppet-syntax, https://github.com/voxpupuli/puppet-syntax/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +puppetlabs_spec_helper,-1.7074456885,0.8017468129,-2.3846811973,https://salsa.debian.org/ruby-team/ruby-puppetlabs-spec-helper, https://github.com/puppetlabs/puppetlabs_spec_helper/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rabl-rails,-0.911642608,0.5957511596,-1.2777176183,https://salsa.debian.org/ruby-team/ruby-rabl-rails, https://github.com/ccocchi/rabl-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rack-google-analytics,-2.1861215386,0.6392727132,-2.9350136773,https://salsa.debian.org/ruby-team/ruby-rack-google-analytics, https://github.com/kangguru/rack-google-analytics,1720.5543634259,2,20,0,17,54,0,0,56 +rack-oauth2,-0.4998111729,2.3524970457,-1.2089369245,https://salsa.debian.org/ruby-team/ruby-rack-oauth2, https://github.com/nov/rack-oauth2/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rack-test,0.1859803919,2.3863075108,-0.2515547357,https://salsa.debian.org/ruby-team/ruby-rack-test, https://github.com/rack/rack-test/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +highlightjs,-1.776057653,0.676887867,-2.5692038823,https://salsa.debian.org/ruby-team/ruby-rails-assets-highlightjs, https://github.com/components/highlightjs,2389.9739467593,1,13,0,13,40,0,0,41 +jquery.fullscreen,-0.3069663717,3.425973806,-1.5023904978,https://salsa.debian.org/ruby-team/ruby-rails-assets-jquery-fullscreen-plugin, https://github.com/private-face/jquery.fullscreen,928.6241898148,0,10,3,5,39,0,0,39 +rails-deprecated_sanitizer,0.511323457,3.2709347629,-0.2232233125,https://salsa.debian.org/ruby-team/ruby-rails-deprecated-sanitizer, https://github.com/rails/rails-deprecated_sanitizer/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +retryable,-0.6091419167,3.2470945934,-1.7468533882,https://salsa.debian.org/ruby-team/ruby-retryable, https://github.com/nfedyashev/retryable/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +riddle,-0.2213568731,2.8190792528,-1.302253646,https://salsa.debian.org/ruby-team/ruby-riddle, https://github.com/pat/riddle/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +riot,-2.0988502373,0.6683400663,-2.9186141778,https://salsa.debian.org/ruby-team/ruby-riot, https://github.com/thumblemonks/riot.git,3321.7834953704,13,21,0,20,33,0,7,43 +rmagick,1.1027033423,3.178542172,0.1881853373,https://salsa.debian.org/ruby-team/ruby-rmagick, https://github.com/rmagick/rmagick/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +roadie,-0.1961366614,1.239631746,-0.5682337388,https://salsa.debian.org/ruby-team/ruby-roadie, https://github.com/Mange/roadie/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +roadie-rails,0.2474719144,3.1899002451,-0.5277315026,https://salsa.debian.org/ruby-team/ruby-roadie-rails, https://github.com/Mange/roadie-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +roxml,-2.5839472744,-1.4732125607,-2.7933760266,https://salsa.debian.org/ruby-team/ruby-roxml, https://github.com/Empact/roxml/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rr,-1.121241691,1.6540401602,-1.8988612605,https://salsa.debian.org/ruby-team/ruby-rr, https://github.com/rr/rr/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rspec-its,0.3171416756,3.0292623369,-0.3872674482,https://salsa.debian.org/ruby-team/ruby-rspec-its, https://github.com/rspec/rspec-its/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rspec-puppet,-1.5750551856,-0.1277944687,-2.1032613755,https://salsa.debian.org/ruby-team/ruby-rspec-puppet, https://github.com/rodjek/rspec-puppet/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rspec-rails,-1.5844038432,-0.1606831019,-1.9538760382,https://salsa.debian.org/ruby-team/ruby-rspec-rails, https://github.com/rspec/rspec-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rspec-retry,-2.3142070783,-0.3616680713,-2.7725056817,https://salsa.debian.org/ruby-team/ruby-rspec-retry, https://github.com/NoRedInk/rspec-retry/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby2ruby,-1.2632583004,0.5122103892,-1.7609454819,https://salsa.debian.org/ruby-team/ruby-ruby2ruby, https://github.com/seattlerb/ruby2ruby.git,5438.8588773148,0,3,0,3,34,0,0,35 +rmail,0.7637470574,3.3946799515,-0.0798110938,https://salsa.debian.org/ruby-team/ruby-rubymail, https://github.com/terceiro/rmail/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rufus-scheduler,-0.6929292609,1.2502062176,-1.0955436307,https://salsa.debian.org/ruby-team/ruby-rufus-scheduler, https://github.com/jmettraux/rufus-scheduler/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rugged,0.1738858881,1.9747468959,-0.302862283,https://salsa.debian.org/ruby-team/ruby-rugged, https://github.com/libgit2/rugged/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +safe_yaml,0.4923372454,2.4380212188,-0.0762986291,https://salsa.debian.org/ruby-team/ruby-safe-yaml, https://github.com/dtao/safe_yaml/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby-saml,-0.6292373352,1.4888690533,-1.2152677939,https://salsa.debian.org/ruby-team/ruby-saml, https://github.com/onelogin/ruby-saml/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sanitize,0.1142111133,2.7598362726,-0.6767036115,https://salsa.debian.org/ruby-team/ruby-sanitize, https://github.com/rgrove/sanitize/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sassc-rails,-1.8895893476,0.6543031358,-2.5458693661,https://salsa.debian.org/ruby-team/ruby-sassc-rails, https://github.com/sass/sassc-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sdoc,0.2066194576,2.5352625368,-0.2819990512,https://salsa.debian.org/ruby-team/ruby-sdoc, https://github.com/zzak/sdoc.git,5126.572337963,22,57,0,56,0,0,0,56 +seamless_database_pool,-2.1643107675,0.2260298985,-2.6118947494,https://salsa.debian.org/ruby-team/ruby-seamless-database-pool, https://github.com/bdurand/seamless_database_pool/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +selenium,-0.2089568629,1.5489405973,-0.5373754091,https://salsa.debian.org/ruby-team/ruby-selenium-webdriver, https://github.com/SeleniumHQ/selenium/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +semantic_puppet,-0.6229814617,0.8563700058,-0.9765203623,https://salsa.debian.org/puppet-team/ruby-semantic-puppet, https://github.com/puppetlabs/semantic_puppet/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sequel_pg,0.6191087607,3.8061270046,-0.2981530837,https://salsa.debian.org/ruby-team/ruby-sequel-pg, https://github.com/jeremyevans/sequel_pg.git,4773.6626388889,4,7,0,9,45,0,0,47 +sexp_processor,0.2542094629,3.0388178614,-0.4829633288,https://salsa.debian.org/ruby-team/ruby-sexp-processor, https://github.com/seattlerb/sexp_processor,5341.4177430556,0,2,0,1,26,0,0,26 +ruby-shadow,0.216126739,1.4890131453,-0.1154816196,https://salsa.debian.org/ruby-team/ruby-shadow, https://github.com/apalmblad/ruby-shadow/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sham_rack,-2.1608189217,0.0182643744,-2.8608854622,https://salsa.debian.org/ruby-team/ruby-sham-rack, https://github.com/mdub/sham_rack,3267.7854166667,2,5,0,3,12,0,0,12 +simplecov,-0.3160772042,2.2007214999,-1.0026344512,https://salsa.debian.org/ruby-team/ruby-simplecov, https://github.com/simplecov-ruby/simplecov/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +slim,-0.3918087088,1.09130624,-0.8384953408,https://salsa.debian.org/ruby-team/ruby-slim, http://github.com/slim-template/slim//issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +soap4r-noeticpenguin,0.4756744398,2.1003291699,-0.0796726268,https://salsa.debian.org/ruby-team/ruby-soap4r, https://github.com/noeticpenguin/soap4r-noeticpenguin/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +spring,0.1889684319,2.2582459747,-0.2755388783,https://salsa.debian.org/ruby-team/ruby-spring, https://github.com/rails/spring/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sprockets-rails,0.6272839018,2.9396554619,-0.1070486043,https://salsa.debian.org/ruby-team/ruby-sprockets-rails, https://github.com/rails/sprockets-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +tins,-0.0184774495,2.3442756527,-0.4994282993,https://salsa.debian.org/ruby-team/ruby-tins, https://github.com/flori/tins.git,5186.4477893519,2,5,0,6,19,0,0,19 +toml,0.5450450103,3.0277601672,-0.1659943286,https://salsa.debian.org/ruby-team/ruby-toml, https://github.com/jm/toml,3202.4776736111,3,24,1,21,69,0,0,69 +treetop,0.2325856151,1.7246039787,-0.1675338127,https://salsa.debian.org/ruby-team/ruby-treetop, https://github.com/cjheath/treetop/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +truncato,-0.892450421,1.0747849229,-1.3078720915,https://salsa.debian.org/ruby-team/ruby-truncato, https://github.com/jorgemanrubia/truncato,3523.9293634259,2,13,0,10,27,0,0,28 +twitter,-0.6682623901,1.3259076585,-1.147074381,https://salsa.debian.org/ruby-team/ruby-twitter, https://github.com/sferik/twitter,5668.765474537,66,150,0,172,52,0,171,383 +twitter-stream,-0.4992291188,2.3271486963,-1.2824567535,https://salsa.debian.org/ruby-team/ruby-twitter-stream, http://github.com/voloko/twitter-stream/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +typed-array,-0.7061785139,1.6402446003,-1.1445021258,https://salsa.debian.org/ruby-team/ruby-typed-array, https://github.com/yaauie/typed-array,63.5884953704,0,2,0,2,2,0,0,2 +typhoeus,-0.1128851981,2.3506320669,-0.7362615291,https://salsa.debian.org/ruby-team/ruby-typhoeus, https://github.com/typhoeus/typhoeus/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +issues,-0.1835463152,-0.1043691104,-0.2043071695,https://salsa.debian.org/ruby-team/ruby-tzinfo, https://tzinfo.github.io/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +url_safe_base64,-1.0899769047,2.7888654476,-2.2202803102,https://salsa.debian.org/ruby-team/ruby-url-safe-base64, https://github.com/joenoon/url_safe_base64,1866.2862384259,0,2,0,2,2,0,0,2 +uuid,-0.141865508,3.1821978286,-1.059582524,https://salsa.debian.org/ruby-team/ruby-uuid, https://github.com/assaf/uuid,4250.514537037,5,18,0,13,78,0,1,81 +uuidtools,0.0082132863,1.7860368385,-0.3798291083,https://salsa.debian.org/ruby-team/ruby-uuidtools, https://github.com/sporkmonger/uuidtools,4302.5516087963,4,20,0,12,66,0,3,70 +validates_email,-1.5781922437,0.7480299974,-2.1834264358,https://salsa.debian.org/ruby-team/ruby-validate-email, https://github.com/perfectline/validates_email.git,4596.2118865741,2,8,0,4,9,0,0,9 +validates_hostname,-1.2415295122,1.2211165969,-1.7510919236,https://salsa.debian.org/ruby-team/ruby-validates-hostname, https://github.com/KimNorgaard/validates_hostname,4293.8459722222,0,12,0,5,18,0,0,18 +varia_model,-1.8678804974,-0.0930481582,-2.2356906543,https://salsa.debian.org/ruby-team/ruby-varia-model, https://github.com/berkshelf/varia_model/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +version_sorter,-0.8955692286,1.3134248845,-1.3333811894,https://salsa.debian.org/ruby-team/ruby-version-sorter, https://github.com/github/version_sorter,5346.8123032407,4,15,0,12,21,0,0,23 +versionomy,-1.9875633378,1.0365445382,-2.7207117207,https://salsa.debian.org/ruby-team/ruby-versionomy, https://github.com/dazuma/versionomy/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +Voight-Kampff,-3.6122138418,-1.1841868732,-4.2747449932,https://salsa.debian.org/ruby-team/ruby-voight-kampff, https://github.com/biola/Voight-Kampff/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +web-console,0.1404315345,2.5211217633,-0.3233556237,https://salsa.debian.org/ruby-team/ruby-web-console, https://github.com/rails/web-console/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +webmock,-0.8722996031,1.4227793478,-1.5805653267,https://salsa.debian.org/ruby-team/ruby-webmock, https://github.com/bblimke/webmock/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +websocket-ruby,-2.0302234955,1.0763961168,-2.8933706474,https://salsa.debian.org/ruby-team/ruby-websocket, https://github.com/imanel/websocket-ruby.git,4172.1994328704,3,14,0,15,38,0,0,39 +xml-simple,0.2810527115,2.941255221,-0.5650827802,https://salsa.debian.org/ruby-team/ruby-xml-simple, https://github.com/maik/xml-simple,3655.0192476852,4,12,0,12,31,0,0,31 +scalpel,1.9235574134,5.7889102705,0.6091390984,https://salsa.debian.org/pkg-security-team/scalpel, https://github.com/sleuthkit/scalpel.git,2828.8538888889,1,11,0,5,69,0,0,69 +scanlogd,1.0265172022,3.3179170915,-0.0529925024,https://salsa.debian.org/debian/scanlogd/, https://github.com/openwall/scanlogd.git,3573.3593287037,0,2,0,1,4,0,0,4 +scapy,0.8574558824,1.870596003,0.3040325575,https://salsa.debian.org/pkg-security-team/scapy, https://github.com/secdev/scapy/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +maeparser,-0.1240254936,2.1383222642,-0.7555796895,https://salsa.debian.org/debichem-team/schroedinger-maeparser, https://github.com/schrodinger/maeparser.git,2087.1343287037,12,14,0,15,15,0,0,16 +science.js,-1.5791662472,1.653426766,-2.4733135985,https://salsa.debian.org/js-team/science.js/, https://github.com/jasondavies/science.js.git,2725.1817592593,1,8,0,6,30,0,0,30 +scim,1.8800598007,2.6066941269,1.3618783859,https://github.com/leggewie-DM/scim,https://github.com/leggewie-DM/scim,3009.7372800926,4,5,0,6,2,0,0,7 +scim-anthy,0.002293794,1.4287101867,-0.6578723431,https://github.com/leggewie-DM/scim-anthy,https://github.com/leggewie-DM/scim-anthy,1414.2472685185,5,3,0,5,1,0,0,6 +scim-chewing,1.4542811691,3.3715479543,0.5061771978,https://salsa.debian.org/debian/scim-chewing, https://github.com/chewing/scim-chewing.git,2973.6130092593,0,11,0,4,6,0,0,6 +scim-pinyin,1.3124715757,3.3775777533,0.2280732409,https://salsa.debian.org/input-method-team/scim-pinyin, https://github.com/scim-im/scim-pinyin/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +scim-tables,0.9359530215,2.2487851526,0.2559891027,https://github.com/leggewie-DM/scim-tables,https://github.com/leggewie-DM/scim-tables,793.6947685185,3,3,0,3,1,0,0,4 +sct-deb,0.114819976,2.8309553504,-0.5908234474,https://github.com/Tookmund/sct-deb,https://github.com/Tookmund/sct-deb,125.8640393519,0,1,0,1,0,0,0,1 +setuptools_scm,0.0218119153,1.0762900197,-0.3060730181,https://salsa.debian.org/python-team/packages/setuptools-scm, https://github.com/pypa/setuptools_scm/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +setuptools_scm_git_archive,-1.1288748526,1.4309706158,-1.7245251246,https://salsa.debian.org/python-team/packages/setuptools-scm-git-archive, https://github.com/Changaco/setuptools_scm_git_archive,2852.8371759259,5,5,0,7,22,0,0,22 +sexplib,-1.5719893405,-0.308694773,-1.9907588838,https://salsa.debian.org/ocaml-team/sexplib310, https://github.com/janestreet/sexplib.git,3950.7644444445,1,18,0,12,43,0,0,48 +sgabios-debian,0.6248433625,3.3447922772,-0.1006393146,https://github.com/ymc/sgabios-debian,https://github.com/ymc/sgabios-debian,1409.8465509259,1,3,0,3,2,0,0,3 +shine,0.5449317214,2.5585883378,0.0206552894,https://salsa.debian.org/multimedia-team/shine, https://github.com/savonet/shine/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +showq,0.4980241305,2.6384494868,-0.2994881583,https://salsa.debian.org/multimedia-team/showq, https://github.com/evandelisle/showq.git,4589.6974189815,2,9,0,4,11,0,1,12 +shutdown-qapps,0.083229246,2.5754574312,-0.646790907,https://github.com/hakaishi/shutdown-qapps,https://github.com/hakaishi/shutdown-qapps,4242.5183217593,1,5,0,2,4,0,0,4 +sidedoor,-1.2070083599,0.905385237,-1.6442775708,https://github.com/daradib/sidedoor,https://github.com/daradib/sidedoor,1283.144525463,0,2,0,2,5,0,0,6 +siege,0.97547978,2.0335300671,0.3603230005,https://salsa.debian.org/debian/siege, https://github.com/JoeDog/siege/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sight,-2.4142300337,-1.1923515267,-2.6246960575,https://salsa.debian.org/med-team/sight, https://github.com/IRCAD/sight,5195.7820833333,18,189,0,40,13,0,0,45 +signify,-0.42914773,1.9932487279,-0.9002655171,https://salsa.debian.org/debian/signify-openbsd, https://github.com/aperezdc/signify.git,3467.3640972222,11,5,0,8,28,0,0,30 +sigscheme,0.0095840913,0.5411815775,-0.1766561408,https://salsa.debian.org/debian/sigscheme, https://github.com/uim/sigscheme.git,4570.4844212963,0,12,0,4,6,0,0,8 +silver-platter,-2.1237439075,-0.8804783102,-2.3543625093,https://salsa.debian.org/jelmer/silver-platter, https://github.com/jelmer/silver-platter/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +timeline,0.4007687558,3.0154567789,-0.4849247131,https://salsa.debian.org/js-team/simile-timeline, https://github.com/simile-widgets/timeline/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +simple-image-reducer,0.1736790136,2.6063762202,-0.6423729726,https://salsa.debian.org/python-team/packages/simple-image-reducer, https://github.com/henrythasler/simple-image-reducer,3392.7195833333,3,5,0,5,11,0,0,11 +sklearn-pandas,-0.1846814273,2.4060352331,-0.9752323305,https://salsa.debian.org/debian/sklearn-pandas, https://github.com/scikit-learn-contrib/sklearn-pandas/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +SkyPat,-3.6622190091,-1.2552465603,-4.2901929758,https://salsa.debian.org/debian/skypat, https://github.com/skymizer/SkyPat,1330.0854513889,4,12,0,7,15,0,1,18 +slick-greeter,0.230041088,2.4883516609,-0.403804259,https://github.com/UbuntuBudgie/slick-greeter/tree/debian,https://github.com/UbuntuBudgie/slick-greeter,2438.3149768519,27,9,0,9,3,0,0,10 +smarty-gettext,-0.1172764021,0.9213265959,-0.4308872423,https://salsa.debian.org/debian/smarty-gettext/, https://github.com/smarty-gettext/smarty-gettext.git,3367.1055439815,3,7,0,6,31,0,0,31 +smarty-lexer,-2.1771173058,0.8224220515,-2.9339605005,https://salsa.debian.org/debian/smarty-lexer/, https://github.com/smarty-php/smarty-lexer.git,2967.1062731482,1,5,0,2,3,0,0,4 +smash,-1.6021448383,1.016931715,-2.2070553084,https://salsa.debian.org/js-team/smash, https://github.com/mbostock/smash.git,1268.6711921296,0,6,0,5,23,0,4,27 +smbldap-tools,4.0992169923,6.2973766162,2.977896731,https://salsa.debian.org/debian/smbldap-tools, https://github.com/fumiyas/smbldap-tools,3527.4513194445,0,4,0,1,2,0,0,3 +snake4.debian,0.095148698,1.3696917472,-0.4120560031,https://github.com/alexdantas/snake4.debian,https://github.com/alexdantas/snake4.debian,10.4776388889,5,4,0,0,2,0,0,2 +sndfile-tools,0.7443837151,2.9271900432,0.0039892841,https://salsa.debian.org/multimedia-team/sndfile-tools, https://github.com/libsndfile/sndfile-tools.git,5283.239212963,10,6,0,14,26,0,0,26 +debian-snetz,-0.1935171339,3.2904821975,-1.2264363982,https://github.com/paniagua-gustavo/debian-snetz,https://github.com/paniagua-gustavo/debian-snetz,0.188125,0,2,0,1,0,0,0,1 +sord,0.6196290047,2.4503028479,0.0661140316,https://salsa.debian.org/multimedia-team/sord, https://github.com/drobilla/sord.git ,4651.0402893519,0,1,0,1,9,0,0,9 +python-sortedcollections,0.0282138035,2.5630571401,-0.4563520078,https://salsa.debian.org/python-team/packages/sortedcollections, https://github.com/grantjenks/python-sortedcollections,2101.4924884259,2,4,0,4,19,0,0,19 +sosi2osm,-0.0665032677,2.7414888103,-0.7399578074,https://salsa.debian.org/debian-gis-team/sosi2osm, https://github.com/Gnonthgol/sosi2osm.git,3689.8328125,3,10,0,6,9,0,0,11 +soundconverter,0.4540740816,1.0143004971,0.117664665,https://salsa.debian.org/multimedia-team/soundconverter, https://github.com/kassoulet/soundconverter/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +spacefm,0.0215364285,0.7019135888,-0.2802976133,https://github.com/mati75/spacefm.git,https://github.com/mati75/spacefm.git,3876.4630671296,0,4,0,2,1,0,0,2 +SparkleShare,0.9167518699,2.534959747,0.0535700536,https://salsa.debian.org/debian/sparkleshare, https://github.com/hbons/SparkleShare,4856.867974537,90,134,3,141,8,0,73,221 +speechd-up,-1.2789607706,1.2929705527,-2.0775310838,https://salsa.debian.org/a11y-team/speechd-up, https://github.com/williamh/speechd-up.git,1059.3273726852,1,4,0,2,3,0,0,5 +speedpad-debian,-0.3911902301,0.972185266,-0.6939336088,https://github.com/ltworf/speedpad-debian,https://github.com/ltworf/speedpad-debian,829.1033101852,0,2,0,1,0,0,0,1 +sphinx-argparse,-0.7549373494,1.0088944933,-1.2169968655,https://salsa.debian.org/python-team/packages/sphinx-argparse, https://github.com/ribozz/sphinx-argparse,2938.5171412037,2,31,0,22,35,0,0,46 +sphinx-astropy,-1.4271235012,-0.7867770371,-1.5421845699,https://salsa.debian.org/debian-astro-team/sphinx-astropy, https://github.com/astropy/sphinx-astropy,4334.9151736111,3,25,1,17,25,0,1,31 +sphinx-autorun,-1.0917758526,1.7268550032,-1.8045400627,https://salsa.debian.org/python-team/packages/sphinx-autorun, https://github.com/hobarrera/sphinx-autorun,4960.1845949074,3,8,0,6,17,0,0,20 +sphinx_celery,-1.2937827686,0.4938075079,-1.9951471611,https://salsa.debian.org/python-team/packages/sphinx-celery, https://github.com/celery/sphinx_celery,2803.725,12,7,1,15,21,0,0,21 +sphinx-paramlinks,-1.1682253235,0.3868734443,-1.5684932781,https://salsa.debian.org/python-team/packages/sphinx-paramlinks, https://github.com/sqlalchemyorg/sphinx-paramlinks,3511.5527777778,5,5,0,7,18,0,0,19 +autoprogram,-1.4560452615,-0.2596772946,-1.6612142206,https://salsa.debian.org/python-team/packages/sphinxcontrib-autoprogram, https://github.com/sphinx-contrib/autoprogram.git,3291.9937962963,8,16,0,20,46,0,0,53 +sratom,0.5401649761,2.8512138953,0.0136305168,https://salsa.debian.org/multimedia-team/sratom, https://github.com/lv2/sratom.git ,4263.558912037,3,1,0,4,5,0,0,6 +python-sshpubkeys,-1.9121140748,-0.1894818509,-2.3312629201,https://salsa.debian.org/python-team/packages/sshpubkeys, https://github.com/ojarva/python-sshpubkeys.git,3267.3521759259,3,17,0,14,29,0,0,36 +sslsniff,0.7229167902,2.7591250777,-0.184867548,https://salsa.debian.org/pkg-security-team/sslsniff, https://github.com/moxie0/sslsniff.git,177.084849537,0,2,0,1,0,0,1,2 +st,-1.7905650767,0.6769505545,-2.3325670973,https://salsa.debian.org/debian/st-console, https://github.com/nferraz/st,3551.6255439815,0,6,0,4,35,0,0,36 +starfighter,1.1315056363,2.4483606179,0.4071420536,https://salsa.debian.org/fmneto-guest/starfighter, https://github.com/pr-starfighter/starfighter,4492.0575231482,7,18,0,11,15,0,0,17 +starjava,-0.5484854258,1.0238215507,-0.8398906165,https://salsa.debian.org/debian-astro-team/starjava-topcat, https://github.com/Starlink/starjava/issues/new,2746.3319791667,2,17,0,0,0,0,0,29 +starjava,-0.6975561907,0.0612089874,-0.8309402362,https://salsa.debian.org/debian-astro-team/starjava-ttools, https://github.com/Starlink/starjava/issues/new,2746.3319791667,2,17,0,0,0,0,0,29 +starjava,-0.5724217622,0.5167921554,-0.7890780686,https://salsa.debian.org/debian-astro-team/starjava-util, https://github.com/Starlink/starjava,5785.0740046296,2,26,0,10,26,0,0,29 +Starman,-0.4167370479,0.4887372311,-0.5755472783,https://salsa.debian.org/perl-team/modules/packages/starman, https://github.com/miyagawa/Starman/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +staticsite,-0.4550445168,2.6259534139,-1.4004015176,https://salsa.debian.org/enrico/staticsite, https://github.com/spanezz/staticsite,2745.0971527778,0,7,1,5,10,0,0,11 +stex,-4.0668315454,-2.4954928101,-4.3496245401,https://salsa.debian.org/debian/stex, https://github.com/dybvig/stex,1828.8861226852,1,7,0,3,5,0,0,6 +stlink,0.2330578642,3.0498837848,-0.4676802192,https://github.com/bluca/stlink,https://github.com/bluca/stlink,4380.0284722222,78,192,0,121,3,0,0,124 +stress,0.7791794941,3.5368026661,-0.027963401,https://salsa.debian.org/debian/stress, https://github.com/resurrecting-open-source-projects/stress,489.8052893519,0,3,0,2,7,0,0,7 +subdownloader,0.2576738138,1.416208065,-0.2677955961,https://salsa.debian.org/python-team/packages/subdownloader, https://github.com/subdownloader/subdownloader,4731.6769560185,4,22,3,10,23,0,0,27 +subtitleeditor,0.4715189003,1.2173077891,0.045958129,https://salsa.debian.org/debian/subtitleeditor, https://github.com/kitone/subtitleeditor,5679.7465856482,2,6,0,6,54,0,1,55 +pkg-subtle,-0.1057456347,2.6291844345,-1.1261393388,http://github.com/formorer/pkg-subtle,http://github.com/formorer/pkg-subtle,305.3167708333,0,1,0,0,0,0,0,0 +subvertpy,-0.0856463379,0.9174986859,-0.5281506467,https://salsa.debian.org/python-team/packages/subvertpy, https://github.com/jelmer/subvertpy,3827.0174421296,14,36,0,29,16,0,0,41 +suil,0.6666244731,2.9498824035,0.0198598554,https://salsa.debian.org/multimedia-team/suil, https://github.com/lv2/suil.git ,4625.665625,6,1,0,7,14,0,0,15 +sway,-0.0003144281,1.8211497146,-0.4602739815,https://salsa.debian.org/swaywm-team/sway, https://github.com/swaywm/sway/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +lv2,0.0271485834,2.3196893623,-0.405826923,https://salsa.debian.org/multimedia-team/swh-lv2, https://github.com/swh/lv2,4769.9272800926,1,14,0,7,17,0,1,19 +ladspa,0.7083949622,1.4520571608,0.2842081476,https://salsa.debian.org/multimedia-team/swh-plugins, https://github.com/swh/ladspa.git,5572.5839930556,1,25,0,15,58,0,0,58 +swift-bench,-3.6971618893,-0.9738891515,-4.3114902928,https://salsa.debian.org/openstack-team/services/swift-bench, https://github.com/openstack/swift-bench.git,4746.0268287037,8,47,0,37,2,0,0,39 +swupdate,-4.1380420208,-0.3765046535,-5.2410349606,https://salsa.debian.org/debian/swupdate, https://github.com/sbabic/swupdate,3657.1083217593,179,6,0,128,0,0,1,129 +sxid,0.3383169662,2.494076504,-0.6427792124,https://salsa.debian.org/debian/sxid, https://github.com/taem/sxid,1429.0293865741,0,1,0,1,2,0,0,3 +synthv1,0.0241434868,1.3740935149,-0.399365925,https://salsa.debian.org/multimedia-team/synthv1, https://github.com/rncbc/synthv1.git,4117.1360763889,0,14,0,3,15,0,0,15 +syrep,-0.3840410127,1.5663799383,-1.1500496799,https://github.com/JonathonReinhart/syrep,https://github.com/JonathonReinhart/syrep,0.0023611111,1,1,0,1,2,0,0,3 +sysfsutils,1.4604939319,2.5043938068,0.8202891312,https://git.hadrons.org/cgit/debian/pkgs/sysfsutils.git, https://github.com/linux-ras/sysfsutils/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +syslog-ng-debian,0.3360880552,0.5117634173,0.1859714072,https://github.com/gcsideal/syslog-ng-debian,https://github.com/gcsideal/syslog-ng-debian,4178.4473842593,0,12,0,6,7,0,0,8 +ocaml-syslog,-0.9966573409,1.2541731317,-1.7322570063,https://salsa.debian.org/ocaml-team/syslog-ocaml, https://github.com/geneanet/ocaml-syslog.git,690.8139351852,1,3,0,2,3,0,0,3 +system-config-printer,2.3553472865,3.3297611296,1.7170434503,https://salsa.debian.org/gnome-team/system-config-printer, https://github.com/OpenPrinting/system-config-printer/commits/master,5185.326875,55,11,0,0,0,0,0,0 +systemd-bootchart,0.0589352376,2.4948219717,-0.5217369948,https://salsa.debian.org/systemd-team/systemd-bootchart, https://github.com/systemd/systemd-bootchart,2813.8079282408,13,11,0,15,41,0,0,41 +systemd-cron,0.2435713073,1.0673184216,-0.1917909328,https://salsa.debian.org/systemd-team/systemd-cron, https://github.com/systemd-cron/systemd-cron.git,3852.6322916667,2,17,0,15,36,0,0,42 +systemfixtures,-2.6293231508,-0.9364247044,-3.0058243691,https://salsa.debian.org/python-team/modules/systemfixtures, https://github.com/testing-cabal/systemfixtures.git,2181.1332638889,4,4,0,5,9,0,0,9 +systray-mdstat,-0.4934338937,2.3728697502,-1.2391690443,https://github.com/xtaran/systray-mdstat,https://github.com/xtaran/systray-mdstat,1731.2023611111,1,1,0,2,1,0,0,2 +systune,-0.2655422679,0.9388013102,-0.7018488457,https://github.com/sudipm-mukherjee/systune.git,https://github.com/sudipm-mukherjee/systune.git,176.0601736111,1,4,0,2,3,0,0,3 +sysvinit,1.5203549982,1.687243769,1.3661977311,https://salsa.debian.org/debian/sysvinit, https://github.com/slicer69/sysvinit,5198.3006944445,2,8,0,4,17,0,0,19 +PEGTL,-2.2004802085,0.2251806172,-2.7633878882,https://salsa.debian.org/birger/tao-pegtl, https://github.com/taocpp/PEGTL/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +tap-plugins,0.09238064,1.3104592411,-0.1802167379,https://salsa.debian.org/multimedia-team/tap-plugins, https://github.com/tomszilagyi/tap-plugins.git,5078.9168287037,3,8,0,0,2,0,0,2 +tclsignal,0.119740533,2.2371868408,-0.3075114676,https://salsa.debian.org/tcltk-team/tcl-signal, https://github.com/wjoye/tclsignal,2449.858275463,1,4,0,3,4,0,0,4 +terminaltables,0.4124929606,3.3980129071,-0.3182990743,https://git.progress-linux.org/users/daniel.baumann/debian/packages/terminaltables, https://github.com/matthewdeanmartin/terminaltables,2707.668125,1,11,0,9,4,0,0,12 +termrec,-0.546232522,1.7238998812,-0.9959233042,https://github.com/kilobyte/termrec/tree/debian,https://github.com/kilobyte/termrec,5312.9533564815,0,2,0,1,8,0,0,8 +tesseract-lang-debian,0.323928139,1.2279995331,-0.0238272916,https://github.com/AlexanderP/tesseract-lang-debian,https://github.com/AlexanderP/tesseract-lang-debian,1566.6614814815,0,5,0,3,2,0,0,3 +test-kitchen,-0.9210414384,1.3276246051,-1.6015563224,https://salsa.debian.org/ruby-team/test-kitchen, https://github.com/test-kitchen/test-kitchen/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +testpath,0.178377175,1.4251577183,-0.1467982799,https://salsa.debian.org/python-team/packages/testpath, https://github.com/jupyter/testpath.git,2578.9209490741,1,9,0,7,23,0,0,23 +brev-cls,-0.9042148426,0.8986607838,-1.4914577347,https://salsa.debian.org/debian/tetex-brev, https://github.com/asgeirn/brev-cls.git,3127.5767708333,2,4,0,3,3,0,0,3 +tex-common,0.1512318896,0.2576765609,0.0745875585,https://github.com/debian-tex/tex-common,https://github.com/debian-tex/tex-common,5410.6258333333,2,8,0,3,1,0,0,3 +tex-gyre,1.3108709384,3.2134416841,0.4567270817,https://github.com/debian-tex/tex-gyre,https://github.com/debian-tex/tex-gyre,5218.6495833333,2,7,0,3,2,0,0,3 +texext,-0.4966012771,2.4692944946,-1.3814646844,https://salsa.debian.org/python-team/packages/texext, https://github.com/matthew-brett/texext.git,2951.8081134259,0,5,0,4,11,0,0,11 +texinfo,1.2380835186,1.5944121073,0.9657638025,https://github.com/debian-tex/texinfo,https://github.com/debian-tex/texinfo,5779.8813425926,3,9,0,5,6,0,0,6 +texlive-nonbin,1.1567962942,1.3629616108,0.9821522688,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-base,https://github.com/debian-tex/texlive-nonbin,4319.3633101852,4,9,0,6,2,0,0,6 +texlive-bin,0.977654239,1.2601203851,0.7506196709,https://github.com/debian-tex/texlive-bin,https://github.com/debian-tex/texlive-bin,4308.437662037,3,11,0,5,3,0,0,5 +texlive-nonbin,0.8703298986,1.0658084365,0.7081177712,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-extra,https://github.com/debian-tex/texlive-nonbin,4319.3633101852,4,9,0,6,2,0,0,6 +texlive-nonbin,0.7296144256,1.0788261732,0.4593754059,https://github.com/debian-tex/texlive-nonbin/tree/master/texlive-lang,https://github.com/debian-tex/texlive-nonbin,4319.3633101852,4,9,0,6,2,0,0,6 +texworks,0.3457955776,1.3076412249,-0.0653044306,https://github.com/debian-tex/texworks,https://github.com/debian-tex/texworks,4991.6789583333,1,9,0,5,2,0,0,5 +texworks-manual,0.1987398847,2.5940035152,-0.3212280071,https://github.com/debian-tex/texworks-manual,https://github.com/debian-tex/texworks-manual,1933.1899652778,2,5,0,3,1,0,0,3 +thaixfonts,0.1281624612,0.8719218593,-0.2256916476,https://salsa.debian.org/debian/thaixfonts, https://github.com/tlwg/thaixfonts/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +three.js,0.1158900848,1.6807050834,-0.3114096336,https://salsa.debian.org/js-team/three.js, https://github.com/mrdoob/three.js/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +thunar-dropbox,0.1154555368,2.1832206667,-0.4180527247,https://salsa.debian.org/xfce-extras-team/thunar-dropbox-plugin, https://github.com/jeinzi/thunar-dropbox.git,3052.1741319445,2,6,0,4,6,0,0,9 +timbl,-0.4012992985,1.3917222421,-0.9206654469,https://salsa.debian.org/science-team/timbl, https://github.com/LanguageMachines/timbl.git,2913.2087384259,0,8,0,2,8,0,0,8 +tinyssh,-1.473292065,0.8649169728,-1.916526544,https://salsa.debian.org/debian/tinyssh, https://github.com/janmojzis/tinyssh.git,3264.9232175926,1,18,0,10,66,0,0,67 +tp_smapi,0.8443233686,2.0576796454,0.2538706265,https://salsa.debian.org/debian/tp-smapi, https://github.com/linux-thinkpad/tp_smapi,4476.6966550926,6,7,0,5,90,0,2,92 +tpm2-initramfs-tool,-1.4035912508,1.8041112115,-2.1934256167,https://github.com/timchen119/tpm2-initramfs-tool,https://github.com/timchen119/tpm2-initramfs-tool,486.0112962963,0,2,0,0,6,0,0,6 +trace-cmd,0.0998974637,1.3978799562,-0.3546480844,https://github.com/sudipm-mukherjee/trace-cmd.git,https://github.com/sudipm-mukherjee/trace-cmd.git,1314.92875,139,17,0,90,1,0,0,90 +trackballs,0.2450481241,1.0347559155,-0.1842061844,https://salsa.debian.org/games-team/trackballs, https://github.com/trackballs/trackballs.git,2063.1770717593,6,7,0,7,20,0,0,20 +tran,-0.5507488829,1.9378847892,-1.0913812007,https://github.com/kilobyte/tran/tree/debian,https://github.com/kilobyte/tran,4999.4501736111,0,1,0,1,3,0,0,3 +trayer-srg,0.7960935453,2.2360852153,0.1224095274,https://salsa.debian.org/skangas/trayer, https://github.com/sargon/trayer-srg/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +triangle,-0.1711886516,3.1308185907,-1.215472085,https://salsa.debian.org/science-team/triangle, https://github.com/libigl/triangle.git,2528.1501736111,2,7,0,5,8,0,0,8 +triggerhappy,1.5982884158,4.4832077788,0.3890624079,https://github.com/wertarbyte/triggerhappy,https://github.com/wertarbyte/triggerhappy,2171.0642708333,5,5,0,7,41,0,0,44 +Trimage,1.2553852758,3.9585208411,0.1886888721,https://salsa.debian.org/debian-phototools-team/trimage, https://github.com/Kilian/Trimage,4077.9117708333,2,17,0,9,64,0,0,66 +trinityrnaseq,-0.3652446175,1.4159966432,-0.9745313296,https://salsa.debian.org/med-team/trinityrnaseq, https://github.com/trinityrnaseq/trinityrnaseq/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +trivial-features,0.2637949915,3.2767480587,-0.566814757,https://salsa.debian.org/common-lisp-team/trivial-features, https://github.com/trivial-features/trivial-features,5548.6738657407,11,9,0,15,24,0,0,24 +trivial-gray-streams,-0.0499196075,1.9477808571,-0.5052595662,https://salsa.debian.org/common-lisp-team/trivial-gray-streams, https://github.com/trivial-gray-streams/trivial-gray-streams/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +trocla,-1.1282943752,1.854915092,-2.1296966635,https://salsa.debian.org/ruby-team/trocla, https://github.com/duritong/trocla,4222.9344444445,2,25,0,16,33,0,0,34 +trollsift,-2.0282713827,0.319975344,-2.4783042686,https://salsa.debian.org/debian-gis-team/trollsift, https://github.com/pytroll/trollsift,3470.9592824074,4,15,0,12,21,0,0,22 +tslib-debian,0.1336789289,0.9994750001,-0.093473923,https://github.com/merge/tslib-debian,https://github.com/merge/tslib-debian,1295.9506018519,2,3,0,1,1,0,0,1 +tty-clock,-0.284505417,0.4575702587,-0.4967187932,https://github.com/anarcat/tty-clock/tree/debian,https://github.com/anarcat/tty-clock,3142.1821759259,0,24,0,13,1,0,0,14 +tweepy,0.3014929332,2.3332026362,-0.5274701476,https://salsa.debian.org/python-team/packages/tweepy, https://github.com/tweepy/tweepy.git,5164.9313194445,72,189,0,197,21,0,0,215 +Twiggy,0.3100508018,4.0880000737,-0.8527826044,https://salsa.debian.org/perl-team/modules/packages/twiggy, https://github.com/miyagawa/Twiggy/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +twms,-0.5922081551,1.2383570594,-1.1972199961,https://salsa.debian.org/debian/twms, https://github.com/Komzpa/twms.git,2177.2821875,3,11,0,4,5,0,0,5 +uhub-debian,-0.2796838226,3.5742395891,-1.580799445,https://github.com/tehnick/uhub-debian,https://github.com/tehnick/uhub-debian,4037.2023148148,0,1,0,1,1,0,0,2 +uim-chewing,-2.5213043929,-0.416096965,-2.9868668,https://salsa.debian.org/debian/uim-chewing, https://github.com/uim/uim-chewing,1095.7200231482,0,1,0,0,0,0,0,0 +ukui-biometric-auth,-1.2310843043,0.7537049181,-1.6740612047,https://github.com/ukui/ukui-biometric-auth,https://github.com/ukui/ukui-biometric-auth,1260.5815625,5,11,0,8,6,0,0,10 +ukui-control-center,-2.2036628317,0.0511944606,-2.8931977038,https://github.com/ukui/ukui-control-center,https://github.com/ukui/ukui-control-center,1921.8410069445,76,81,0,41,13,0,0,52 +ukui-indicators,-1.377804594,1.2157849638,-2.1158896015,https://github.com/ukui/ukui-indicators,https://github.com/ukui/ukui-indicators,1239.8214814815,3,9,0,5,4,0,0,5 +ukui-power-manager,-0.3190978856,2.9128539736,-1.1219811752,https://github.com/ukui/ukui-power-manager,https://github.com/ukui/ukui-power-manager,1544.224537037,3,19,0,9,9,0,0,14 +ukui-settings-daemon,0.1219875774,3.2976507371,-0.6818364877,https://github.com/ukui/ukui-settings-daemon,https://github.com/ukui/ukui-settings-daemon,1595.2230439815,10,31,0,10,21,0,0,26 +ukui-themes,-0.5826962952,2.2384569095,-1.2986461297,https://github.com/ukui/ukui-themes,https://github.com/ukui/ukui-themes,1509.1822916667,6,9,0,8,12,0,0,13 +umoci,-1.5049797774,0.5808986769,-2.0306653344,https://salsa.debian.org/go-team/packages/umoci, https://github.com/opencontainers/umoci/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +unburden-home-dir,-0.501169023,0.195057165,-0.7613384703,https://github.com/xtaran/unburden-home-dir,https://github.com/xtaran/unburden-home-dir,4201.5461342593,1,10,2,6,17,0,0,17 +underscore,0.5577202877,2.1670034109,0.0619794849,https://salsa.debian.org/js-team/underscore, https://github.com/jashkenas/underscore.git,5084.8093171296,25,336,0,261,27,0,52,334 +Unhide,1.7061388819,3.8742874975,0.7376306506,https://salsa.debian.org/pkg-security-team/unhide, https://github.com/YJesus/Unhide.git,991.7221296296,2,5,0,5,6,0,0,8 +unorm,-1.3130104406,0.8981282809,-1.8444156842,https://salsa.debian.org/js-team/unorm.js, https://github.com/walling/unorm/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +unrar-nonfree,1.8473265605,3.1989063054,1.0595588445,https://github.com/debian-calibre/unrar-nonfree,https://github.com/debian-calibre/unrar-nonfree,1876.6905902778,7,5,0,5,3,0,0,5 +unrardll,-0.7960021888,0.5888362105,-1.105938125,https://github.com/debian-calibre/unrardll,https://github.com/debian-calibre/unrardll,1864.0022916667,0,4,0,3,1,0,0,3 +vagalume,-1.4511274237,-0.9732880608,-1.5424132302,https://salsa.debian.org/berto/vagalume, https://github.com/bertogg/vagalume,2090.3450578704,26,3,0,19,0,0,0,19 +vagrant,0.2299619618,0.6284669987,0.0013114431,https://salsa.debian.org/ruby-team/vagrant, https://github.com/hashicorp/vagrant/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +valabind,-1.2435397352,-0.3428907439,-1.6087950787,https://salsa.debian.org/debian/valabind, https://github.com/radare/valabind,4839.9819560185,6,19,0,15,41,0,0,42 +valinor,-2.9368505692,-1.1020102649,-3.3193721608,https://salsa.debian.org/python-team/packages/valinor, https://github.com/ARMmbed/valinor.git,1839.1786805556,3,12,0,9,17,0,0,17 +variantslib,-2.0986968646,0.447590858,-2.6103147834,https://salsa.debian.org/ocaml-team/variantslib, https://github.com/janestreet/variantslib.git,3865.5561921296,0,7,0,5,3,0,0,8 +vcversioner,0.242716431,2.8314661474,-0.3332608567,https://salsa.debian.org/python-team/packages/vcversioner, https://github.com/habnabit/vcversioner,1010.4509143519,0,4,0,2,18,0,0,18 +vfu-deb,0.7502192139,2.4194817119,-0.0549697238,https://github.com/bbonev/vfu-deb,https://github.com/bbonev/vfu-deb,1063.877025463,0,1,0,1,0,0,0,1 +vim-autopep8,0.2098655728,3.1531229671,-0.5592658877,https://salsa.debian.org/python-team/packages/vim-autopep8, https://github.com/tell-k/vim-autopep8.git,1821.7416782407,1,10,0,7,52,0,0,52 +command-t,-0.281217187,1.711936341,-0.8034960415,https://github.com/yrro/command-t,https://github.com/yrro/command-t,4589.5430092593,66,14,0,60,1,0,0,61 +volumeicon-debian,0.5582239179,2.4117054016,-0.1176545428,https://github.com/mati75/volumeicon-debian.git,https://github.com/mati75/volumeicon-debian.git,4377.0106597222,0,5,0,3,1,0,0,3 +csg,-1.3015984703,-0.1291946736,-1.7236921975,https://salsa.debian.org/debichem-team/votca-csg, https://github.com/votca/csg/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +vowpal_wabbit,1.6051587851,4.7879705553,0.3258945817,http://github.com/yarikoptic/vowpal_wabbit,http://github.com/yarikoptic/vowpal_wabbit,3692.4062037037,66,280,0,0,0,0,0,0 +vows,-1.3939497745,0.3324247114,-1.7950844541,https://salsa.debian.org/js-team/vows, https://github.com/cloudhead/vows/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +vpcs,0.5719602774,3.99052142,-0.2987031963,https://github.com/dlintott/vpcs,https://github.com/dlintott/vpcs,302.5271875,0,2,0,2,1,0,0,2 +vpnc,0.7552132496,1.2426452707,0.4176316467,https://salsa.debian.org/debian/vpnc, https://github.com/streambinder/vpnc,5629.8413888889,11,17,0,19,26,0,0,30 +vue-router,-2.7239892069,-0.137337361,-3.3068761493,https://salsa.debian.org/js-team/vue-router.js, https://github.com/vuejs/vue-router/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +vue,-1.0931356092,1.0186682685,-1.5343339016,https://salsa.debian.org/js-team/vue.js, https://github.com/vuejs/vue/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +link-checker,1.0779084142,3.0562972028,0.1151150994,https://salsa.debian.org/perl-team/modules/packages/w3c-linkchecker, https://github.com/w3c/link-checker/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +emacs-w3m,-0.0316215167,0.794577588,-0.429835318,https://salsa.debian.org/debian/w3m-el-snapshot, https://github.com/emacs-w3m/emacs-w3m,5732.8756134259,8,17,0,19,38,0,2,46 +wadc,-1.3114197782,1.1488153676,-1.8942921561,https://github.com/jmtd/wadc,https://github.com/jmtd/wadc,2669.3253125,2,7,0,3,5,0,0,5 +wajig,-0.2563640933,-0.2041280932,-0.289877151,https://github.com/gjwgit/wajig/wajig,https://github.com/gjwgit/wajig,4746.4752546296,1,8,0,5,1,0,0,5 +wakeonlan,0.5347762299,2.3981769483,-0.0392961396,https://salsa.debian.org/debian/wakeonlan, https://github.com/jpoliv/wakeonlan/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +wavbreaker,-0.3043692646,1.3080197333,-0.6434518402,https://salsa.debian.org/multimedia-team/wavbreaker, https://github.com/thp/wavbreaker.git,5680.2477546296,3,6,0,9,15,12,0,28 +wbar,0.7206963622,2.6363178504,-0.1640676109,https://salsa.debian.org/debian/wbar, https://github.com/rodolf0/wbar,1881.7045949074,0,2,0,1,2,0,0,3 +wcc,-2.4281741601,-0.9182887345,-2.9205469788,https://salsa.debian.org/pkg-security-team/wcc, https://github.com/endrazine/wcc.git,2370.6538888889,7,12,0,16,41,0,4,45 +whysynth,1.6273877466,4.7945023636,0.3840495858,https://salsa.debian.org/multimedia-team/whysynth, https://github.com/smbolton/whysynth.git,2132.1219444445,2,3,0,3,12,0,0,12 +wifite2,0.0691397747,1.3596647886,-0.2821965899,https://salsa.debian.org/pkg-security-team/wifite, https://github.com/kimocoder/wifite2.git,3100.7875578704,19,31,0,35,28,0,0,57 +wiki2beamer,0.1072484039,2.9680033901,-0.7874436627,https://salsa.debian.org/debian/wiki2beamer, https://github.com/wiki2beamer/wiki2beamer/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +wildmidi,1.1220449003,2.8689328624,0.3931106893,https://salsa.debian.org/games-team/WildMIDI, https://github.com/psi29a/wildmidi.git,5284.7473726852,7,25,0,19,8,0,2,25 +Willow,-0.3050026421,2.6837460292,-1.2006814281,https://salsa.debian.org/python-team/packages/willow, https://github.com/torchbox/Willow/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +win-iconv,-0.1253180043,3.3611034506,-1.2784857777,https://salsa.debian.org/debian/win-iconv, https://github.com/win-iconv/win-iconv,2428.4399189815,1,14,0,10,21,0,0,25 +winregfs,0.1505432946,2.5663630742,-0.3792554253,https://salsa.debian.org/pkg-security-team/winregfs, https://github.com/jbruchon/winregfs,3358.8025694445,0,4,0,1,4,0,0,4 +wipe,0.0654274281,0.5099289571,-0.121010634,https://salsa.debian.org/pkg-security-team/wipe, https://github.com/berke/wipe,5088.8252430556,3,5,0,3,11,0,0,12 +wiimms-iso-tools,-0.0137410528,2.2594017696,-0.6295812818,https://salsa.debian.org/debian/wit, https://github.com/Wiimm/wiimms-iso-tools,764.4320717593,0,4,0,1,29,0,0,29 +with-simulated-input,-1.6136419534,0.6542791635,-2.0643984034,https://salsa.debian.org/emacsen-team/with-simulated-input-el, https://github.com/DarwinAwardWinner/with-simulated-input.git,1593.3461921296,0,2,0,2,10,0,0,10 +wmaker,3.0318169815,3.5049705647,2.6333575748,https://salsa.debian.org/wmaker-team/wmaker, https://github.com/window-maker/wmaker/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +wmbubble,0.3313340448,2.0551511806,-0.5004056988,https://salsa.debian.org/wmaker-team/wmbubble, https://github.com/rnjacobs/wmbubble.git,3203.1598148148,0,5,0,2,5,0,0,5 +wmcoincoin,-1.1120470309,0.9428298773,-1.8126592182,https://salsa.debian.org/wmaker-team/wmcoincoin, https://github.com/seeschloss/wmcoincoin/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +wmfrog,-0.6195008592,0.7362802602,-1.1251650057,https://salsa.debian.org/wmaker-team/wmfrog, https://github.com/tcolar/wmfrog,4191.3952777778,0,7,0,2,2,0,0,2 +dockapps,0.2210226862,1.7529658495,-0.3718627509,https://salsa.debian.org/wmaker-team/wmhdplop, https://github.com/window-maker/dockapps/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +wmpinboard,0.329930821,2.2481564254,-0.5833982398,https://salsa.debian.org/wmaker-team/wmpinboard, https://github.com/bbidulock/wmpinboard.git,274.6021412037,0,3,0,2,2,0,0,3 +wmsysmon,3.6819786619,6.9497194781,2.2222684502,https://salsa.debian.org/wmaker-team/wmsysmon, https://github.com/voyageur/wmsysmon.git,1940.3190625,0,3,0,2,3,0,0,3 +wokkel,-0.7494414246,1.5960211892,-1.3587677327,https://salsa.debian.org/python-team/packages/wokkel, https://github.com/ralphm/wokkel.git,4842.8803125,0,5,0,5,26,0,0,27 +wondershaper,2.1493592104,4.1791752632,1.0723154812,https://github.com/leggewie-DM/wondershaper,https://github.com/leggewie-DM/wondershaper,3187.6698263889,2,1,0,2,2,0,0,4 +wreport,-0.1794776423,1.6143054556,-0.8172719944,https://github.com/ARPA-SIMC/wreport,https://github.com/ARPA-SIMC/wreport,4700.94625,2,14,0,5,11,0,0,11 +wslay,-0.3233505839,2.0096579304,-1.031639712,https://salsa.debian.org/debian/wslay, https://github.com/tatsuhiro-t/wslay,2229.7935185185,3,18,1,17,70,0,0,71 +wtf-peewee,-1.1933920451,1.3018762525,-1.741694338,https://salsa.debian.org/python-team/packages/wtf-peewee, https://github.com/coleifer/wtf-peewee,4437.0799652778,3,18,0,15,46,0,0,46 +wxAstroCapture,0.3727354069,3.1734912044,-0.4080125191,https://salsa.debian.org/science-team/wxastrocapture, https://github.com/wxAstro/wxAstroCapture,45.0595833333,0,3,0,2,2,0,0,3 +wxGlade,-0.2335267372,0.1233893747,-0.4233597056,https://salsa.debian.org/georgesk/wxglade, https://github.com/wxGlade/wxGlade/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +x11-touchscreen-calibrator,-0.1154983302,2.6722200137,-0.7875374212,https://github.com/fourdollars/x11-touchscreen-calibrator,https://github.com/fourdollars/x11-touchscreen-calibrator,2225.1995717593,0,4,0,2,5,0,0,6 +x42-plugins,-0.1526190502,0.5990375172,-0.384890654,https://salsa.debian.org/multimedia-team/x42-plugins, https://github.com/x42/x42-plugins,3642.2395023148,0,1,0,1,0,0,0,1 +xandikos,-1.700889354,-1.3947312282,-1.7687283402,https://salsa.debian.org/jelmer/xandikos, https://github.com/jelmer/xandikos/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +xbomb.debian,2.5167931875,5.6510697336,1.1667397783,https://github.com/alexdantas/xbomb.debian,https://github.com/alexdantas/xbomb.debian,472.1825347222,1,2,0,0,3,0,0,3 +xindy,0.1823763954,0.8822842515,-0.1274514217,https://github.com/debian-tex/xindy,https://github.com/debian-tex/xindy,2719.8550694445,2,6,0,4,1,0,0,4 +xlsx2csv,0.199802941,2.3048255107,-0.3946294711,https://salsa.debian.org/science-team/xlsx2csv, https://github.com/dilshod/xlsx2csv/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +xml-light,-0.3592724135,1.1896469114,-0.7772314943,https://salsa.debian.org/ocaml-team/xml-light, https://github.com/ncannasse/xml-light.git,3963.0315046296,3,8,0,8,13,0,0,15 +xmountains,-0.6473598122,-0.4080618043,-0.6985149403,https://salsa.debian.org/debian/xmountains, https://github.com/spbooth/xmountains/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +xnec2c,-0.2433745776,0.7919844064,-0.4889064627,https://salsa.debian.org/debian-hamradio-team/xnec2c, https://github.com/KJ7LNW/xnec2c.git,5761.7881944445,5,7,0,8,22,0,0,22 +xplc,0.065119078,1.5804093595,-0.5441876363,https://salsa.debian.org/debian/xplc, https://github.com/xplc/xplc/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +pkg-xppaut,0.480332333,2.5873961644,-0.4615269769,https://github.com/neurodebian/pkg-xppaut,https://github.com/neurodebian/pkg-xppaut,171.362349537,6,2,0,3,0,0,0,3 +xprintidle,-0.1422188392,0.6249787453,-0.3518989739,https://salsa.debian.org/debian/xprintidle, https://github.com/g0hl1n/xprintidle,3448.9179861111,2,6,2,2,15,0,0,15 +xsecurelock,-0.4681598236,2.8900823642,-1.3517451123,https://github.com/google/xsecurelock/tree/debian,https://github.com/google/xsecurelock,3375.8872453704,17,12,2,18,50,0,0,63 +xtermcontrol,-0.0117403008,1.5858545623,-0.4569548478,https://salsa.debian.org/debian/xtermcontrol, https://github.com/JessThrysoee/xtermcontrol.git,3429.399525463,0,2,0,1,17,0,0,17 +xtl,-4.7040789559,-1.5856206073,-5.4305613286,https://github.com/quantstack-debian/xtl,https://github.com/quantstack-debian/xtl,1473.7952662037,0,3,0,2,1,0,0,3 +xttitle,0.8939077507,4.2706568139,-0.3819440692,https://salsa.debian.org/debian/xttitle, https://github.com/mojotx/xttitle,2181.5912731482,2,3,0,2,2,0,0,2 +xwax,-0.5636629334,0.7271414205,-0.9498118303,https://salsa.debian.org/multimedia-team/xwax, https://github.com/xwax/xwax.git,5550.8656712963,5,3,0,3,9,0,0,11 +xxdiff,0.9061004175,1.6510647261,0.4413690153,https://salsa.debian.org/debian/xxdiff, https://github.com/blais/xxdiff.git,5451.0281134259,4,11,0,8,19,0,0,21 +xylib,0.6962815791,3.868426766,-0.2796991398,https://salsa.debian.org/science-team/xylib, https://github.com/wojdyr/xylib,5291.0453703704,4,4,0,3,17,0,0,17 +yafc,-0.0272314962,0.4916391321,-0.3253666512,https://salsa.debian.org/debian/yafc, https://github.com/sebastinas/yafc.git,4536.1716550926,4,14,0,13,27,0,0,28 +yagf-debian,1.2564818045,3.6319506109,0.2577483716,https://github.com/tehnick/yagf-debian,https://github.com/tehnick/yagf-debian,2966.796875,2,1,0,2,3,0,0,3 +yagv,-0.2493109691,1.6805451528,-0.758268769,https://salsa.debian.org/3dprinting-team/yagv, https://github.com/jonathanwin/yagv.git,1848.8749421296,0,6,0,2,24,0,0,24 +yajl,0.1436910943,0.8155419647,-0.0099540163,https://github.com/jstamp/yajl,https://github.com/jstamp/yajl,5069.733125,7,28,0,22,4,0,0,23 +yubikey-personalization-gui-dpkg,1.0660214443,4.6214252569,-0.0477907414,https://github.com/Yubico/yubikey-personalization-gui-dpkg,https://github.com/Yubico/yubikey-personalization-gui-dpkg,1527.8557986111,0,2,0,2,5,0,0,6 +yubikey-val-dpkg,-1.5796758821,0.5230579445,-2.2238855851,https://github.com/Yubico/yubikey-val-dpkg,https://github.com/Yubico/yubikey-val-dpkg,2518.4995601852,1,7,0,6,3,0,0,6 +jay-yydebug,-2.4807565791,0.0572661247,-3.0016851771,https://salsa.debian.org/java-team/yydebug, https://github.com/jruby/jay-yydebug,0.0429513889,0,1,0,1,2,0,0,3 +zc.lockfile,-0.0210256384,1.5379599647,-0.4550360225,https://salsa.debian.org/python-team/packages/zc-lockfile, https://github.com/zopefoundation/zc.lockfile,5245.5974305556,1,13,0,10,19,0,0,22 +zed,-0.7636785221,-0.0586954945,-1.0152692364,https://salsa.debian.org/ocaml-team/zed, https://github.com/ocaml-community/zed.git,4544.7564699074,9,14,0,17,38,0,0,40 +ice-debian-packaging,-0.2246270386,-0.0796274635,-0.3178149444,https://github.com/zeroc-ice/ice-debian-packaging.git,https://github.com/zeroc-ice/ice-debian-packaging.git,2730.2990046296,3,11,0,8,6,0,0,13 +0install-debian,-0.1790173309,0.2373414985,-0.3531189648,https://github.com/0install/0install-debian,https://github.com/0install/0install-debian,5324.6795949074,19,12,0,3,0,0,0,3 +zfSnap,0.4772336214,3.1494825406,-0.4433726935,https://github.com/jgoerzen/zfSnap,https://github.com/jgoerzen/zfSnap,4429.3288888889,1,13,0,2,1,0,0,3 +zktop,-1.6834481359,1.4483848388,-2.5079762953,https://salsa.debian.org/python-team/packages/zktop, https://github.com/phunt/zktop.git,4096.6100115741,1,12,0,7,20,0,0,20 +zope.deprecation,-0.4002923161,1.2950694538,-0.80228492,https://salsa.debian.org/python-team/packages/zope.deprecation, https://github.com/zopefoundation/zope.deprecation.git,5564.8963541667,6,19,0,22,15,0,0,26 +zope.event,0.48012603,2.4451618465,-0.0440353103,https://salsa.debian.org/debian/zope.event, https://github.com/zopefoundation/zope.event,5503.5143634259,6,21,0,23,14,0,0,26 +zope.i18nmessageid,-0.5047792742,1.175715823,-1.0038159767,https://salsa.debian.org/detiste-guest/zope.i18nmessageid, https://github.com/zopefoundation/zope.i18nmessageid,5530.7271759259,3,23,0,23,15,0,0,30 +zope.schema,-0.6711277163,0.5898602563,-1.0326400015,https://salsa.debian.org/python-team/packages/zope.schema, https://github.com/zopefoundation/zope.schema,5503.5836458333,8,46,0,42,30,0,0,56 +zope.testing,-0.8046398038,0.1932317872,-1.1600868609,https://salsa.debian.org/python-team/packages/zope.testing, https://github.com/zopefoundation/zope.testing,5685.8682638889,3,42,0,37,13,0,0,40 +zope.testrunner,-1.5178214231,-0.9479425765,-1.6556150569,https://salsa.debian.org/python-team/packages/zope.testrunner, https://github.com/zopefoundation/zope.testrunner,4988.3216666667,11,30,0,30,32,0,0,40 +zpb-ttf,-0.5400082597,2.49952862,-1.5901447095,https://salsa.debian.org/debian/zpb-ttf, https://github.com/xach/zpb-ttf,4273.1460416667,0,6,0,4,14,0,0,14 +7kaa,0.8733439141,3.7651893226,-0.0927531106,https://salsa.debian.org/games-team/7kaa, https://github.com/the3dfxdude/7kaa,5126.7096643519,24,23,0,27,66,0,0,78 +acmetool,0.6219434866,2.6875450321,-0.2336905662,https://salsa.debian.org/go-team/packages/acmetool, https://github.com/hlandau/acmetool,2727.716875,7,20,1,21,258,0,5,263 +actiona,0.2685921276,2.3898449586,-0.5658267823,https://salsa.debian.org/debian/actiona, https://github.com/Jmgr/actiona,4932.3205439815,3,17,0,3,94,0,0,95 +activemq,-0.707743979,-0.252194711,-0.929017814,https://salsa.debian.org/java-team/activemq, https://github.com/apache/activemq,5739.1228356482,56,141,2,130,160,0,0,217 +allegro5,-0.4762686219,-0.2153924343,-0.5311269802,https://salsa.debian.org/games-team/allegro5, https://github.com/liballeg/allegro5.git,5772.8158680556,110,47,0,79,223,0,5,242 +ariba,-0.7249708667,0.7497238838,-1.1789923052,https://salsa.debian.org/med-team/ariba, https://github.com/sanger-pathogens/ariba,3026.1963541667,10,22,0,16,112,0,8,122 +asn1crypto,0.9740729842,4.1853024005,0.0865816737,https://salsa.debian.org/python-team/packages/asn1crypto, https://github.com/wbond/asn1crypto.git,3074.7355092593,14,27,0,32,181,0,0,181 +asymptote,0.2396900664,0.5861261584,0.0399132445,https://github.com/debian-tex/asymptote,https://github.com/debian-tex/asymptote,4223.6715162037,6,28,0,5,4,0,0,6 +aranym800-debian,0.2438262875,1.4111848908,-0.3223074512,https://github.com/bobek/aranym800-debian,https://github.com/bobek/aranym800-debian,4083.2988773148,1,3,0,2,2,0,0,2 +atril,0.5207732379,1.2869272543,0.1522121334,https://salsa.debian.org/debian-mate-team/atril, https://github.com/mate-desktop/atril.git,4392.8799768519,62,42,0,70,244,0,0,278 +audacity,2.0595760921,2.587904003,1.6528933115,https://salsa.debian.org/multimedia-team/audacity, https://github.com/audacity/audacity.git,5069.8878125,215,104,0,197,438,0,8,538 +audioread,0.4790726237,2.8379723664,-0.2363043324,https://salsa.debian.org/python-team/packages/audioread, https://github.com/sampsyo/audioread.git,4407.0006944445,7,21,0,23,126,0,0,127 +autorandr,-0.3527152165,0.3171262846,-0.518389331,https://salsa.debian.org/debian/autorandr, https://github.com/phillipberndt/autorandr.git,4779.7076736111,55,58,0,90,351,0,0,363 +autosuspend,-1.9250458428,0.6278109958,-2.4672708111,https://salsa.debian.org/python-team/packages/autosuspend, https://github.com/languitar/autosuspend.git,3337.5962847222,6,9,0,13,40,0,0,46 +backuppc,0.439136868,0.738905733,0.2133448427,https://salsa.debian.org/debian/backuppc, https://github.com/backuppc/backuppc,4883.1674305556,21,39,0,40,225,0,31,267 +rsync-bpc,-2.9537265247,0.2336355318,-3.706230506,https://salsa.debian.org/debian/backuppc-rsync, https://github.com/backuppc/rsync-bpc,2751.3212037037,2,9,0,6,43,0,0,43 +bambam,0.3070932851,2.5075958172,-0.3413586452,https://github.com/porridge/bambam,https://github.com/porridge/bambam,5711.2973958333,24,13,0,23,24,0,1,35 +barclay,0.1851801588,3.0141581768,-0.6020424346,https://salsa.debian.org/java-team/barclay, https://github.com/broadinstitute/barclay.git,2356.7614351852,7,7,0,8,27,0,1,28 +bart,-0.177815138,2.1254373642,-0.6372145565,https://salsa.debian.org/med-team/bart, https://github.com/mrirecon/bart,3390.8110185185,61,30,0,41,83,0,0,89 +bd,-0.5709314067,1.7639710855,-1.0717735964,https://salsa.debian.org/debian/bd, https://github.com/vigneshwaranr/bd.git,3272.7792476852,3,12,0,10,56,0,0,57 +Bear,-0.3900185941,0.5954929997,-0.59709973,https://salsa.debian.org/sramacher/bear, https://github.com/rizsotto/Bear,3987.655787037,44,19,0,53,142,0,2,183 +beginend,-0.9812054474,1.1475644093,-1.4790757004,https://salsa.debian.org/emacsen-team/beginend-el, https://github.com/DamienCassou/beginend.git,3077.3105208333,8,12,0,15,21,0,0,21 +benchmark,-0.4007419552,1.9221150293,-1.2040622803,https://salsa.debian.org/science-team/benchmark, https://github.com/google/benchmark,3640.5849537037,257,68,3,283,68,0,0,319 +abc,-0.0691799173,1.1526418635,-0.3926880632,https://salsa.debian.org/science-team/berkeley-abc, https://github.com/berkeley-abc/abc.git,5782.9116666667,8,47,0,40,75,0,0,104 +bernhard,-3.8249138229,-1.4329465737,-4.33451812,https://salsa.debian.org/python-team/packages/bernhard, https://github.com/b20n/bernhard.git,2059.4699652778,0,14,0,11,32,0,0,32 +betamax,-2.6186759503,-1.7111544465,-2.7929647164,https://salsa.debian.org/python-team/packages/betamax, https://github.com/sigmavirus24/betamax,3448.4558796296,7,33,2,31,93,0,0,97 +bfs,-1.1164889975,-0.5498955731,-1.1990984125,https://salsa.debian.org/lamby/pkg-bfs, https://github.com/tavianator/bfs.git,2311.7626273148,11,10,0,19,35,0,0,42 +birdfont,0.1539215818,1.5207071994,-0.3971310294,https://salsa.debian.org/fonts-team/birdfont, https://github.com/johanmattssonm/birdfont.git,4158.8272222222,6,15,0,15,135,0,0,138 +bitlbee,0.610414917,1.1334179745,0.2390336103,https://github.com/bitlbee/bitlbee,https://github.com/bitlbee/bitlbee,5775.5242824074,54,55,0,72,85,0,0,108 +black,-0.2598583165,0.6526555806,-0.4835804983,https://salsa.debian.org/python-team/packages/black, https://github.com/psf/black.git,2098.4397453704,441,11,0,416,699,0,0,1009 +BOSSA,0.0893999446,1.6612263593,-0.4163524525,https://salsa.debian.org/science-team/bossa, https://github.com/shumatech/BOSSA.git,3233.4649537037,7,26,0,19,214,0,0,214 +bowtie2,-0.4173214178,-0.233072452,-0.4693075159,https://salsa.debian.org/med-team/bowtie2, https://github.com/BenLangmead/bowtie2,4656.6302777778,6,51,0,28,425,0,1,427 +boxbackup,-0.8371100115,0.0115481538,-1.3264648158,https://salsa.debian.org/debian/boxbackup, https://github.com/boxbackup/boxbackup.git,5737.3015625,2,18,0,6,16,0,3,21 +breathe,-0.9912135008,-0.8309389737,-1.0391354827,https://salsa.debian.org/python-team/packages/breathe, https://github.com/michaeljones/breathe.git,5375.5645949074,34,85,0,91,286,0,0,313 +brewtarget,0.484432121,2.8570200814,-0.426583819,https://salsa.debian.org/debian/brewtarget, https://github.com/Brewtarget/brewtarget.git,5451.574212963,13,84,0,55,134,0,15,163 +brise,-0.3080442577,1.0357450106,-0.6873683492,https://salsa.debian.org/debian/brise, https://github.com/rime/brise,2544.8862615741,5,23,0,12,45,0,0,45 +brlaser,0.4072432263,2.1541552875,-0.0102827943,https://salsa.debian.org/printing-team/brlaser, https://github.com/pdewacht/brlaser,3342.2059837963,4,11,0,13,27,0,3,40 +brotli,0.1260775007,0.5454426052,-0.0083599615,https://salsa.debian.org/debian/brotli, https://github.com/google/brotli,3713.0230555556,77,45,0,97,42,0,5,134 +bruteforce-luks,0.4506857269,3.9309060924,-0.3441057365,https://salsa.debian.org/pkg-security-team/bruteforce-luks, https://github.com/glv2/bruteforce-luks,1977.6153125,2,8,0,3,38,0,0,39 +brutespray,-0.0085744737,2.0622651196,-0.445603786,https://salsa.debian.org/pkg-security-team/brutespray, https://github.com/x90skysn3k/brutespray,2174.873599537,7,10,0,8,19,0,0,21 +bump2version,-0.6601711919,1.365143433,-1.1463637777,https://salsa.debian.org/debian/bumpversion, https://github.com/c4urself/bump2version,3866.5811574074,20,43,3,48,254,0,0,265 +bundler,0.575011715,1.5392481898,0.1010337669,https://salsa.debian.org/ruby-team/bundler, https://github.com/carlhuda/bundler,4417.961099537,292,766,15,370,17,0,0,383 +bzflag,0.8319129626,1.4300701689,0.417821043,https://salsa.debian.org/games-team/bzflag, https://github.com/BZFlag-Dev/bzflag.git,5782.5434259259,11,63,0,19,30,0,4,39 +c-ares,0.3441298781,1.1916406284,0.0308943148,https://salsa.debian.org/debian/c-ares, https://github.com/c-ares/c-ares.git,5778.6172222222,133,22,0,136,66,0,0,177 +caja,1.057062654,1.8090309876,0.5578935766,https://salsa.debian.org/debian-mate-team/caja, https://github.com/mate-desktop/caja.git,4392.0400925926,58,63,0,86,70,0,0,143 +caja-actions,0.1964661335,2.0196315905,-0.3640114639,https://salsa.debian.org/debian-mate-team/caja-actions, https://github.com/mate-desktop/caja-actions,4195.368599537,3,13,0,7,3,0,0,8 +caja-admin,0.3402863165,2.9173444791,-0.2366884449,https://salsa.debian.org/debian-mate-team/caja-admin, https://github.com/infirit/caja-admin,2910.0051851852,15,12,0,17,15,0,0,24 +caja-dropbox,1.4193798685,4.6529613875,0.2366380339,https://salsa.debian.org/debian-mate-team/caja-dropbox, https://github.com/mate-desktop/caja-dropbox.git,4038.0196990741,13,26,0,25,33,0,0,46 +caja-extensions,0.9911860003,3.1294289964,0.1496506623,https://salsa.debian.org/debian-mate-team/caja-extensions, https://github.com/mate-desktop/caja-extensions.git,3680.0453125,11,27,0,20,70,0,0,72 +caja-mediainfo-tab,-0.6346427686,1.4919485733,-1.2169751217,https://salsa.debian.org/debian-mate-team/caja-mediainfo, https://github.com/linux-man/caja-mediainfo-tab,1186.6267013889,1,3,0,1,4,0,0,4 +caja-rename,0.3395336681,2.9850659825,-0.2433789434,https://salsa.debian.org/debian-mate-team/caja-rename, https://github.com/tari01/caja-rename,1145.7519328704,25,4,0,19,9,0,0,26 +camlp4,0.1711187334,1.4277083804,-0.1545568318,https://salsa.debian.org/ocaml-team/camlp4, https://github.com/ocaml/camlp4.git,5404.4002199074,6,40,0,37,92,0,7,112 +Camomile,-0.1749647414,0.504631672,-0.4116548857,https://salsa.debian.org/ocaml-team/camomile, https://github.com/yoriyuki/Camomile.git,3699.9040972222,2,16,0,11,42,0,0,43 +camp,-0.0635736976,2.2422646477,-0.8678185189,https://salsa.debian.org/med-team/camp, https://github.com/IRCAD/camp.git,3917.821412037,2,16,0,8,2,0,0,9 +can-utils,-0.3151818427,1.0524810842,-0.6128426897,https://salsa.debian.org/debian/can-utils, https://github.com/linux-can/can-utils.git,5750.4572916667,42,46,0,66,298,0,0,305 +cftime,-0.053984567,2.1351568503,-0.4726880086,https://salsa.debian.org/debian-gis-team/cftime/, https://github.com/Unidata/cftime,5698.2503472222,7,40,1,25,111,0,0,112 +Charm,-0.4441384118,1.2230812043,-0.8796829957,https://salsa.debian.org/qt-kde-team/extras/charmtimetracker, https://github.com/KDAB/Charm,5169.2869097222,10,73,1,44,89,0,0,100 +chaussette,-2.3973132585,0.1079287529,-3.3352905378,https://github.com/circus-tent/chaussette,https://github.com/circus-tent/chaussette,1782.6774768519,1,42,0,30,80,0,0,81 +selinux,-0.0767985152,0.1858102911,-0.1733620099,https://salsa.debian.org/selinux-team/checkpolicy, https://github.com/SELinuxProject/selinux,5592.8363425926,179,30,0,124,83,0,12,182 +CheeseCutter,-0.8909922436,1.8346147461,-1.5014964432,https://salsa.debian.org/multimedia-team/cheesecutter, https://github.com/theyamo/CheeseCutter,2936.8167824074,4,11,0,7,20,0,0,21 +cheetah3,0.2580754956,1.2098434945,-0.0894485619,https://salsa.debian.org/python-team/packages/cheetah, https://github.com/CheetahTemplate3/cheetah3.git,5732.7751157407,17,23,0,34,45,0,0,61 +chemical-mime,0.9334467969,3.3064633303,0.1037865392,https://salsa.debian.org/debichem-team/chemical-mime-data, https://github.com/dleidert/chemical-mime,3567.6745833333,0,2,0,1,4,0,0,5 +CheMPS2,-1.0331384848,-0.1979810762,-1.3111906152,https://salsa.debian.org/debichem-team/chemps2, https://github.com/SebWouters/CheMPS2,3010.6861342593,0,9,0,4,35,0,0,35 +chromaprint,0.3600324626,1.3936683063,0.0316097075,https://salsa.debian.org/multimedia-team/chromaprint, https://github.com/acoustid/chromaprint,4607.495162037,12,19,3,25,78,0,3,89 +chuck,1.0629400647,3.5097730621,-0.0355368923,https://salsa.debian.org/debian/chuck, https://github.com/ccrma/chuck,4777.8660300926,19,55,0,45,92,0,1,108 +CiderWebmail,-0.6952594282,1.439044732,-1.4225189003,https://salsa.debian.org/perl-team/modules/packages/ciderwebmail, https://github.com/CiderWebmail/CiderWebmail.git,5148.9571990741,1,13,0,5,11,0,0,12 +CiftiLib,-2.2337114106,-0.584429453,-2.6009802633,https://salsa.debian.org/med-team/ciftilib, https://github.com/Washington-University/CiftiLib,3498.0756944445,2,7,0,5,8,0,0,8 +CImg,-0.3086549748,0.4682516606,-0.6897965127,https://salsa.debian.org/science-team/cimg, https://github.com/GreycLab/CImg.git,3104.3731481482,1,34,0,11,150,0,2,161 +cinnamon-session,0.2019726211,0.7003204043,-0.0198993963,https://salsa.debian.org/cinnamon-team/cinnamon-session, https://github.com/linuxmint/cinnamon-session.git,3830.8484259259,16,29,0,34,77,0,0,77 +citeproc-py,0.2650734109,3.200403032,-0.5379993649,https://salsa.debian.org/python-team/packages/citeproc-py, https://github.com/brechtm/citeproc-py,4168.381087963,3,13,0,14,52,0,0,53 +cJSON,-0.6378303304,1.1377366916,-1.0824295673,https://salsa.debian.org/debian/cjson, https://github.com/DaveGamble/cJSON.git,4334.9435300926,37,63,0,76,105,0,0,162 +clasp,-0.3006037836,-0.1147250554,-0.3428180636,https://salsa.debian.org/science-team/clasp, https://github.com/potassco/clasp,3296.9262847222,3,6,0,2,37,0,0,37 +classified-ads,-2.2983699343,-0.0320591619,-2.7796278861,https://github.com/operatornormal/classified-ads,https://github.com/operatornormal/classified-ads,3053.9196180556,5,9,0,8,10,0,0,12 +cld2,0.6043981268,3.0399456446,-0.1481790802,https://salsa.debian.org/debian/cld2, https://github.com/CLD2Owners/cld2,808.2021875,0,8,0,2,41,0,1,42 +clinfo,0.3372645422,1.6891188178,-0.1400560842,https://salsa.debian.org/opencl-team/clinfo, https://github.com/Oblomov/clinfo,3809.3789236111,7,13,0,14,92,0,0,93 +ClipIt,1.4937392865,3.438028355,0.6071495445,https://salsa.debian.org/debian/clipit, https://github.com/CristianHenzel/ClipIt.git,3780.8276736111,15,24,0,21,246,0,0,247 +cloc,0.3407193618,2.1059135948,-0.1842658951,https://salsa.debian.org/debian/cloc, https://github.com/AlDanial/cloc.git,3014.5104282408,24,101,0,108,550,0,2,569 +cm-super,0.5096098115,1.5619464554,0.0498213871,https://github.com/debian-tex/cm-super,https://github.com/debian-tex/cm-super,5018.3687962963,2,6,0,3,1,0,0,3 +cmatrix,1.2823687579,3.3153936495,0.3805014383,https://salsa.debian.org/debian/cmatrix, https://github.com/abishekvashok/cmatrix.git,2359.866400463,20,18,0,32,137,0,2,148 +colmap,-0.7206786583,0.6412726598,-1.2145608955,https://salsa.debian.org/tar/colmap, https://github.com/colmap/colmap,2802.2067824074,103,16,0,103,432,0,0,503 +comitup,-1.522007504,0.0892141487,-1.9480210845,https://github.com/davesteele/comitup,https://github.com/davesteele/comitup,2830.0050115741,9,13,0,8,73,0,1,78 +cool-retro-term,-0.1638065917,2.2338371828,-0.670026222,https://salsa.debian.org/tar/cool-retro-term, https://github.com/Swordfish90/cool-retro-term,3050.8032175926,23,53,0,57,1087,0,26,1115 +coq,1.0112440064,1.8992232667,0.4540481704,https://salsa.debian.org/ocaml-team/coq, https://github.com/coq/coq,5785.2775347222,56,228,4,231,16,0,362,596 +CppAD,-0.3030038415,2.0775944536,-0.851490117,https://salsa.debian.org/science-team/cppad, https://github.com/coin-or/CppAD,5756.9988773148,3,15,0,12,46,0,0,50 +cppo,-1.4562480515,0.6841532188,-1.9614183142,https://salsa.debian.org/ocaml-team/cppo, https://github.com/mjambon/cppo.git,1459.7919444445,3,28,0,18,53,0,0,53 +cppreference-doc-debian,0.7174863837,3.9751588838,-0.3114715055,https://github.com/p12tic/cppreference-doc-debian,https://github.com/p12tic/cppreference-doc-debian,3405.6815740741,2,6,0,5,7,0,0,8 +CPU-X,-0.1831351513,2.2662774746,-0.7177695187,https://salsa.debian.org/debian/cpu-x, https://github.com/X0rg/CPU-X.git,2770.4909606482,196,13,0,145,32,0,3,177 +cqrlib,-0.1411361724,1.4544569834,-0.4267040837,https://salsa.debian.org/science-team/cqrlib, https://github.com/yayahjb/cqrlib.git,2926.9641203704,0,1,0,1,3,0,0,3 +critcl,0.1685050423,4.7425882465,-1.273547806,https://salsa.debian.org/tcltk-team/critcl, https://github.com/andreas-kupries/critcl,5635.5840046296,1,15,2,12,40,0,0,43 +CsoundQt,-0.414726718,0.4957472098,-0.6101873218,https://salsa.debian.org/multimedia-team/csoundqt, https://github.com/CsoundQt/CsoundQt,5612.1172222222,7,49,3,16,87,0,7,97 +ctemplate,0.2254790855,1.2754696215,-0.1533076819,https://salsa.debian.org/qt-kde-team/3rdparty/ctemplate, https://github.com/OlafvdSpek/ctemplate.git,5604.6906481482,3,11,0,8,43,0,0,44 +CubicSDR,0.1018461625,2.3388993412,-0.4986845369,https://salsa.debian.org/debian-hamradio-team/cubicsdr, https://github.com/cjcliffe/CubicSDR.git,3287.5204976852,11,22,0,0,330,0,18,348 +custodia,-1.6751213621,-0.0779781476,-2.2266335422,https://salsa.debian.org/freeipa-team/custodia, https://github.com/latchset/custodia.git,2105.2031134259,10,5,0,11,30,0,0,30 +cvxopt,0.2544257296,0.9059783526,-0.0500804801,https://salsa.debian.org/science-team/cvxopt, https://github.com/cvxopt/cvxopt,3827.9446875,7,5,0,7,228,0,0,228 +cyrus-sasl,1.1677078747,1.456798419,0.9287245609,https://salsa.debian.org/debian/cyrus-sasl2, https://github.com/cyrusimap/cyrus-sasl.git,5510.1634606482,61,36,0,68,147,0,0,171 +dashel,-0.5070603207,1.8556035661,-1.0587894431,https://salsa.debian.org/science-team/dashel.git, https://github.com/aseba-community/dashel.git,4686.2267708333,3,17,0,11,13,0,0,15 +dbab,-1.9903650996,-0.4617475154,-2.5099356053,https://salsa.debian.org/debian/dbab, https://github.com/suntong/dbab.git,3490.7212037037,1,6,0,4,7,0,1,10 +dcfldd,0.243299676,1.5128715597,-0.1742035117,https://salsa.debian.org/debian/dcfldd, https://github.com/resurrecting-open-source-projects/dcfldd,1555.0382175926,1,5,0,4,11,0,0,11 +dcmstack,-0.2179064003,2.3843724616,-1.1543074519,https://salsa.debian.org/med-team/dcmstack, https://github.com/moloney/dcmstack.git,4236.057650463,2,11,0,8,50,0,0,51 +ddccontrol-db,0.5375899278,3.040666398,-0.2040495598,https://salsa.debian.org/debian/ddccontrol-db, https://github.com/ddccontrol/ddccontrol-db,5706.4213541667,83,21,0,89,218,0,0,220 +ddclient,2.2300979217,3.0092386237,1.6657756531,https://salsa.debian.org/debian/ddclient, https://github.com/ddclient/ddclient.git,5769.1157986111,45,69,0,89,144,0,7,199 +debiman,-2.0205023232,-0.3691368262,-2.3529854163,https://salsa.debian.org/go-team/packages/debiman, https://github.com/Debian/debiman.git,2469.6214583333,11,3,0,12,58,0,0,61 +deepdiff,-0.60032076,1.9943773022,-1.1853796171,https://salsa.debian.org/python-team/packages/deepdiff, https://github.com/seperman/deepdiff.git,3349.8121875,21,67,0,59,387,0,0,390 +dehydrated-hook-ddns-tsig,-1.1498688177,0.3234067787,-1.4723938378,https://salsa.debian.org/letsencrypt-team/dehydrated-hook-ddns-tsig, https://github.com/eferdman/dehydrated-hook-ddns-tsig.git,613.6095601852,3,7,0,5,13,0,0,13 +deken,-0.1773993382,1.8798950337,-0.6127948533,https://salsa.debian.org/multimedia-team/pd/deken, https://github.com/pure-data/deken,3169.7776041667,5,17,1,9,50,0,0,50 +derpconf,-2.1632661335,-0.2479529966,-2.7160545081,https://salsa.debian.org/python-team/packages/derpconf, https://github.com/globocom/derpconf,4088.1859490741,0,19,0,10,21,0,0,23 +detachtty,0.7286668661,3.7996202071,-0.4663424257,https://salsa.debian.org/debian/detachtty, https://github.com/cosmos72/detachtty.git,5063.0382175926,2,3,0,4,4,0,0,5 +detox,0.0760137719,1.2444609771,-0.236573077,https://salsa.debian.org/debian/detox, https://github.com/dharple/detox,2472.5849305556,3,6,0,5,44,0,0,44 +devtodo,-0.0964373601,0.5231337283,-0.4667575617,https://salsa.debian.org/debian/devtodo, https://github.com/alecthomas/devtodo,4517.7004398148,2,2,0,1,5,0,0,5 +dfc,0.6249482733,2.6923246378,-0.1060154397,https://salsa.debian.org/debian/dfc, https://github.com/rolinh/dfc,3944.7026157408,10,7,0,15,23,0,0,28 +dhcpcd-dbus,0.116885126,3.4089949811,-0.7932984933,https://salsa.debian.org/debian/dhcpcd-dbus, https://github.com/kobolabs/dhcpcd-dbus.git,4098.2566550926,2,6,0,3,0,0,0,3 +dhcpcd-ui,-0.0122872414,2.5695283858,-0.8367345755,https://salsa.debian.org/debian/dhcpcd-ui, https://github.com/NetworkConfiguration/dhcpcd-ui,5203.8271875,4,2,0,5,0,0,0,5 +dhcpcd,0.6815852227,1.5374108,0.1969854249,https://salsa.debian.org/debian/dhcpcd, https://github.com/NetworkConfiguration/dhcpcd.git,5784.3856944445,64,17,0,56,18,0,0,59 +dhcpdump,1.4490750412,4.1456331911,0.3872406438,https://github.com/bbonev/dhcpdump,https://github.com/bbonev/dhcpdump,112.9948032407,0,3,0,2,3,0,0,3 +DHCPig,-0.9872435316,1.3324162128,-1.5205038766,https://salsa.debian.org/pkg-security-team/dhcpig, https://github.com/kamorin/DHCPig,1930.9329398148,0,7,0,7,22,0,0,24 +dhewm3,-0.2903203144,1.9161738096,-0.7863581959,https://salsa.debian.org/games-team/dhewm3, https://github.com/dhewm/dhewm3.git,4378.332974537,36,21,0,41,120,0,7,144 +diffuse,0.6569991928,3.1825265926,-0.1258422859,https://salsa.debian.org/debian/diffuse, https://github.com/MightyCreak/diffuse.git,2779.0936226852,15,12,0,21,61,0,0,61 +dill,-0.0692957122,2.3594211277,-0.5014890362,https://salsa.debian.org/python-team/packages/dill, https://github.com/uqfoundation/dill,5216.8620486111,22,27,2,41,513,0,0,513 +direwolf,-0.1430216901,1.3707430635,-0.6200279656,https://salsa.debian.org/debian-hamradio-team/direwolf, https://github.com/wb2osz/direwolf,2351.9412615741,7,18,1,0,251,0,1,252 +django-auth-ldap,-0.7351113605,0.589742959,-1.162005947,https://salsa.debian.org/python-team/packages/django-auth-ldap, https://github.com/django-auth-ldap/django-auth-ldap.git,5095.4516550926,18,22,0,24,215,0,0,223 +django-classy-tags,-0.7401841635,0.9848619547,-1.3980531867,https://salsa.debian.org/python-team/packages/django-classy-tags, https://github.com/django-cms/django-classy-tags,4877.1677893519,15,16,2,22,70,0,0,70 +django-countries,-0.5347084486,1.3547470964,-1.2788572175,https://salsa.debian.org/python-team/packages/django-countries, https://github.com/SmileyChris/django-countries,4972.680625,16,45,0,50,303,0,0,314 +django-fsm,-1.2455924049,1.7684823777,-1.9508426508,https://salsa.debian.org/python-team/packages/django-fsm, https://github.com/viewflow/django-fsm,4622.1760763889,28,45,0,58,257,0,0,258 +django-haystack,-0.3668845966,1.4515254842,-0.931809609,https://salsa.debian.org/python-team/packages/django-haystack, https://github.com/django-haystack/django-haystack,5440.2651388889,100,135,5,183,156,0,0,323 +pkg-django-hijack,-2.1622270176,0.0257030995,-2.8657585957,https://github.com/Linaro/pkg-django-hijack.git,https://github.com/Linaro/pkg-django-hijack.git,1013.9897106482,0,2,0,1,0,0,0,1 +django-housekeeping,-0.869454572,1.948090224,-1.6153462575,https://salsa.debian.org/python-team/packages/django-housekeeping, https://github.com/spanezz/django-housekeeping.git,2311.2066087963,0,4,0,3,4,0,0,5 +django-ipware,-0.186701027,3.4775277787,-1.1364140371,https://salsa.debian.org/python-team/packages/django-ipware, https://github.com/un33k/django-ipware,3876.7555324074,23,8,0,26,86,0,1,87 +django-modeltranslation,-1.5133383269,0.6332844289,-2.2136337591,https://salsa.debian.org/python-team/packages/django-modeltranslation, https://github.com/deschler/django-modeltranslation.git,5393.628900463,39,78,0,93,559,0,1,562 +django-polymorphic,-0.9862725279,0.7261077657,-1.6214857875,https://salsa.debian.org/python-team/packages/django-polymorphic, https://github.com/django-polymorphic/django-polymorphic,5078.6096990741,41,80,1,100,253,0,0,305 +django-prometheus,-2.2603160573,-0.4381341974,-2.7422527304,https://salsa.debian.org/python-team/packages/django-prometheus, https://github.com/korfuri/django-prometheus,3173.3548148148,32,30,0,50,294,0,0,294 +django-python3-ldap,-1.220695241,0.9816108419,-1.7104148484,https://salsa.debian.org/python-team/packages/django-python3-ldap, https://github.com/etianen/django-python3-ldap,3090.7084259259,4,28,0,25,204,0,0,208 +django-sitetree,-1.1970109861,0.3805270522,-1.67880198,https://salsa.debian.org/python-team/packages/django-sitetree, https://github.com/idlesign/django-sitetree,4549.666712963,6,42,0,36,185,0,0,185 +django-sortedm2m,-2.3457198242,-0.0825384392,-2.7865717155,https://salsa.debian.org/python-team/packages/django-sortedm2m, https://github.com/jazzband/django-sortedm2m.git,4988.0868287037,13,51,0,48,177,0,0,178 +dma,0.9255897857,2.1311120692,0.2618365609,https://salsa.debian.org/debian/dma, https://github.com/corecode/dma.git,4350.2836574074,26,18,0,30,98,0,0,99 +dmrconfig,-4.4180298219,-0.9106394342,-5.3737002754,https://salsa.debian.org/debian-hamradio-team/dmrconfig, https://github.com/OpenRTX/dmrconfig.git,1907.596412037,5,9,0,11,74,0,2,76 +dnspython,1.1275058498,2.6742605707,0.4158531709,https://salsa.debian.org/python-team/packages/dnspython, https://github.com/rthalley/dnspython.git,5665.3041087963,41,93,0,107,427,0,2,460 +dnsruby,-0.234176424,1.5390828902,-0.6784148131,https://salsa.debian.org/ruby-team/ruby-dnsruby, https://github.com/alexdalitz/dnsruby.git,5594.1314467593,4,31,0,23,77,0,3,82 +Doris,-3.2514630416,-2.7560514844,-3.3329815998,https://salsa.debian.org/debian-gis-team/doris, https://github.com/TUDelftGeodesy/Doris,371.9438888889,0,6,0,3,31,0,0,33 +dosage,-0.7866623156,0.1614581475,-1.1313932158,https://salsa.debian.org/debian/dosage, https://github.com/webcomics/dosage,4186.6960185185,22,40,1,51,112,0,0,122 +dosfstools,0.9576699829,1.4464254542,0.6170237773,https://salsa.debian.org/debian/dosfstools, https://github.com/dosfstools/dosfstools.git,3911.4083101852,49,15,0,39,137,0,0,155 +dpmb,-0.6691898306,1.5148767963,-1.1659559787,https://github.com/dpmb/dpmb,https://github.com/dpmb/dpmb,3025.1458101852,5,11,1,7,14,0,0,15 +dq,-0.1834293154,2.1580450192,-0.7499592676,https://salsa.debian.org/debian/dq, https://github.com/janmojzis/dq.git,2922.0256712963,0,7,0,1,3,0,0,3 +drf-extensions,-1.5711074271,0.582669346,-2.2334265763,https://salsa.debian.org/python-team/packages/drf-extensions, https://github.com/chibisov/drf-extensions.git,3758.3081018519,37,33,0,52,293,0,0,293 +drf-generators,-1.0791841561,1.9108535938,-1.8015507649,https://salsa.debian.org/python-team/packages/drf-generators, https://github.com/brobin/drf-generators,1981.457962963,4,10,0,9,39,0,0,39 +driftnet,-0.3021441377,0.4582796981,-0.6160981524,https://github.com/deiv/driftnet,https://github.com/deiv/driftnet,3936.0659722222,4,6,0,5,58,0,0,58 +drmaa-python,-0.9229869282,0.8943517279,-1.5388923357,https://salsa.debian.org/med-team/drmaa, https://github.com/pygridtools/drmaa-python,3564.105462963,9,12,0,13,58,0,4,63 +drmips,-0.9190476493,1.6685906624,-1.6412123268,https://github.com/brunonova/drmips/tree/debian,https://github.com/brunonova/drmips,3165.66125,3,3,0,4,0,0,0,4 +dropbear,0.4812175514,0.9754576643,0.1540354658,https://salsa.debian.org/debian/dropbear, https://github.com/mkj/dropbear,5772.037037037,39,54,0,67,213,0,0,225 +dropwatch,-1.1991262604,1.5250708737,-1.8285406941,https://salsa.debian.org/debian/dropwatch, https://github.com/nhorman/dropwatch,5326.1496296296,3,24,0,17,70,0,0,72 +dunst,0.3669983163,1.1637822615,0.0070676604,https://salsa.debian.org/debian/dunst, https://github.com/dunst-project/dunst,4447.0045601852,43,111,1,126,562,0,26,653 +DustRacing2D,0.1730330143,3.1219082568,-0.6411485316,https://salsa.debian.org/pino/dustrac, https://github.com/juzzlin/DustRacing2D.git,4428.4226851852,8,9,0,11,36,0,1,37 +e2guardian,-0.4962046033,0.8559279449,-0.8848150366,https://salsa.debian.org/debian-edu-pkg-team/e2guardian, https://github.com/e2guardian/e2guardian,3743.8510416667,10,60,4,20,68,0,4,84 +editorconfig-core-c,1.5887281662,4.6075180153,0.4803432984,https://salsa.debian.org/debian/editorconfig-core, https://github.com/editorconfig/editorconfig-core-c.git,4345.1404861111,23,19,0,32,52,0,2,54 +editra,-0.2633359349,1.1859959258,-0.7394398489,https://github.com/mogaal/editra,https://github.com/mogaal/editra,1762.9254398148,0,2,0,1,2,0,0,3 +efivar,1.2395472847,3.1409084649,0.4366490781,https://salsa.debian.org/efi-team/efivar, https://github.com/rhinstaller/efivar.git,3854.9068634259,62,9,0,62,181,0,0,184 +eggdrop-debian,0.690268777,1.6966766009,0.0747126473,https://github.com/yastupin/eggdrop-debian,https://github.com/yastupin/eggdrop-debian,1023.9554166667,0,1,0,1,2,0,0,2 +egl-wayland,0.0316178932,1.8159648449,-0.3538526989,https://salsa.debian.org/debian/egl-wayland, https://github.com/NVIDIA/egl-wayland.git,2464.5272800926,13,9,0,14,170,0,0,172 +eiciel,-0.3913934912,0.2845531206,-0.6225036497,https://salsa.debian.org/debian/eiciel, https://github.com/rofirrim/eiciel,4391.8161689815,58,10,0,42,13,0,0,46 +eiskaltdcpp-debian,0.4505650107,2.0973490193,-0.2886793088,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,https://github.com/eiskaltdcpp/eiskaltdcpp-debian,3513.9242361111,0,2,0,2,3,0,0,3 +eja,-2.7925237394,1.0154047624,-3.9912920842,https://github.com/ubaldus/eja,https://github.com/ubaldus/eja,3036.7696296296,0,5,0,3,3,0,0,4 +elastalert,-2.7490522153,-1.0382477163,-3.253107753,https://salsa.debian.org/debian/elastalert, https://github.com/Yelp/elastalert.git,2822.0809490741,46,241,0,181,234,0,4,371 +emacs-git-messenger,-0.7394110957,1.3440255665,-1.1759453412,https://salsa.debian.org/emacsen-team/emacs-git-messenger, https://github.com/syohex/emacs-git-messenger.git,3062.6,2,8,0,7,23,0,0,23 +git-modes,-0.5095691095,1.8818747091,-0.9450708252,https://salsa.debian.org/emacsen-team/emacs-git-modes, https://github.com/magit/git-modes.git,4898.4598032408,8,34,0,39,64,0,0,75 +emacs-jedi,-0.5925564326,1.6685968963,-1.0626804159,https://salsa.debian.org/emacsen-team/emacs-jedi, https://github.com/tkf/emacs-jedi.git,3462.8411458333,5,28,0,30,288,0,2,290 +emacspeak,-0.3098123339,0.154967146,-0.6063949443,https://salsa.debian.org/a11y-team/emacspeak, https://github.com/tvraman/emacspeak.git,5784.5154976852,1,16,0,7,53,0,0,53 +enchant,0.4671232701,2.6138489169,-0.0641062097,https://salsa.debian.org/gnome-team/enchant-2/, https://github.com/AbiWord/enchant.git,5773.2183333333,7,27,0,26,105,0,1,112 +engrampa,0.3364707225,1.2009801373,-0.0018104828,https://salsa.debian.org/debian-mate-team/engrampa, https://github.com/mate-desktop/engrampa.git,4345.1016319445,27,39,0,38,189,0,0,191 +erlware_commons,-1.8744095819,0.8786023846,-2.6652549432,https://salsa.debian.org/erlang-team/packages/erlang-erlware-commons, https://github.com/erlware/erlware_commons.git,4657.9532060185,8,37,0,28,72,0,0,72 +folsom,-1.800386042,0.5181389354,-2.3318647887,https://salsa.debian.org/erlang-team/packages/erlang-folsom, https://github.com/boundary/folsom.git,1470.0027777778,3,37,0,30,72,0,0,75 +jiffy,0.1668501203,2.4255381931,-0.3758394191,https://salsa.debian.org/erlang-team/packages/erlang-jiffy, https://github.com/davisp/jiffy.git,3978.8049884259,23,14,0,27,227,0,0,227 +erlang-jose,-0.0923635531,2.3327857993,-0.5705493125,https://salsa.debian.org/ejabberd-packaging-team/erlang-jose, https://github.com/potatosalad/erlang-jose.git,3054.6266782407,10,30,0,29,125,0,0,125 +lager,0.1330257958,2.1705993041,-0.3821435959,https://salsa.debian.org/ejabberd-packaging-team/erlang-lager, https://github.com/erlang-lager/lager.git,4513.8316435185,17,130,0,101,372,0,1,377 +meck,-1.7847622485,-0.6288022984,-2.0590391976,https://salsa.debian.org/erlang-team/packages/erlang-meck, https://github.com/eproxus/meck.git,4901.9858333333,34,45,0,52,158,0,9,176 +fast_tls,-0.157152573,1.1095215195,-0.4106607165,https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-tls, https://github.com/processone/fast_tls.git,3904.2279282408,5,26,0,18,52,0,0,56 +eredis,-0.9857886966,1.2120613864,-1.431244437,https://salsa.debian.org/ejabberd-packaging-team/erlang-redis-client, https://github.com/wooga/eredis.git,2851.9773842593,2,48,0,34,122,0,0,123 +eshell-git-prompt,-0.9609411721,1.6959194934,-1.5424020682,https://salsa.debian.org/emacsen-team/eshell-git-prompt, https://github.com/xuchunyang/eshell-git-prompt.git,2545.7433564815,1,11,0,6,11,0,0,11 +espeakup,-0.5060781696,0.017914626,-0.7493763311,https://salsa.debian.org/a11y-team/espeakup, https://github.com/williamh/espeakup,4725.7581134259,2,6,0,4,0,0,0,4 +ettercap,0.3516997318,0.9604770242,0.005454292,https://salsa.debian.org/pkg-security-team/ettercap, https://github.com/Ettercap/ettercap.git,4364.9420717593,13,80,0,48,36,0,12,84 +evilwm,0.1058350749,1.7709141502,-0.5887613795,https://github.com/mati75/evilwm.git,https://github.com/mati75/evilwm.git,3558.3624189815,0,7,0,4,4,0,0,5 +evqueue-core,-3.8008904307,0.0055401804,-5.0310894983,https://github.com/coldsource/evqueue-core,https://github.com/coldsource/evqueue-core,3176.9503935185,0,23,0,4,7,0,1,9 +exabgp,-0.5661496323,0.4143666278,-0.9529715,https://github.com/Exa-Networks/exabgp/tree/debian/sid,https://github.com/Exa-Networks/exabgp,5211.7322222222,28,135,5,103,93,0,40,211 +f3,0.2679415625,2.6534869606,-0.2923376765,https://salsa.debian.org/debian/f3, https://github.com/AltraMayor/f3.git,4281.9233912037,11,29,0,36,202,0,0,206 +fabric,0.2361201884,1.1224452265,-0.2395604756,https://salsa.debian.org/python-team/packages/fabric, https://github.com/fabric/fabric.git,5703.0252199074,79,121,0,17,660,0,0,672 +fastkml,-1.1512391887,1.6385429324,-1.936594667,https://salsa.debian.org/python-team/packages/fastkml, https://github.com/cleder/fastkml,4190.9523148148,13,36,2,36,109,0,0,110 +fceux,3.1366942055,8.4703461382,1.4758017291,https://salsa.debian.org/games-team/fceux, https://github.com/TASEmulators/fceux.git,5697.8923611111,20,74,0,39,179,0,0,185 +fence-agents,-0.0526755775,0.7306960785,-0.3413654082,https://salsa.debian.org/ha-team/fence-agents, https://github.com/ClusterLabs/fence-agents,5742.9759722222,67,106,0,112,160,0,0,195 +pkg-ferm,1.1755791706,1.9154949013,0.6944760141,https://github.com/formorer/pkg-ferm,https://github.com/formorer/pkg-ferm,1766.1921643519,3,2,0,3,7,0,0,9 +ffindex,-0.3841947458,0.7848746806,-0.7256317717,https://salsa.debian.org/med-team/ffindex, https://github.com/ahcm/ffindex.git,4107.5377777778,1,9,0,2,4,0,1,6 +ffmpegthumbnailer,0.6218339,1.7026039531,0.1299334729,https://salsa.debian.org/multimedia-team/ffmpegthumbnailer, https://github.com/dirkvdb/ffmpegthumbnailer,5750.9852893519,2,26,0,21,32,0,0,49 +fftw3,0.5606957848,1.057025995,0.2642840796,https://salsa.debian.org/science-team/fftw3, https://github.com/FFTW/fftw3.git,5716.0486458333,17,23,0,31,333,0,2,338 +FileTea,-1.4880291168,-0.5976104943,-1.6869426547,https://salsa.debian.org/berto/filetea, https://github.com/elima/FileTea,2414.4586111111,4,1,0,2,17,0,0,18 +filtergen,-1.4900593021,-0.2527170414,-2.0161816495,https://github.com/jaqx0r/filtergen/tree/debian,https://github.com/jaqx0r/filtergen,4988.9503125,3,6,0,2,5,0,0,5 +findimagedupes,0.1571397257,1.014130714,-0.2428383842,https://salsa.debian.org/science-team/findimagedupes, https://github.com/jhnc/findimagedupes.git,5609.2984837963,0,1,0,0,16,0,0,16 +Fiona,-0.4518295489,0.0316996689,-0.548290247,https://salsa.debian.org/debian-gis-team/fiona, https://github.com/Toblerity/Fiona.git,2732.0256712963,42,33,0,64,34,0,1,91 +firehol,0.2337473723,0.6567606394,-0.0568826659,https://salsa.debian.org/debian/firehol, https://github.com/firehol/firehol,5475.3480324074,8,33,1,24,278,0,16,297 +flask-mongoengine,-1.2847143273,1.6755709624,-2.0678485801,https://salsa.debian.org/python-team/packages/flask-mongoengine, https://github.com/mongoengine/flask-mongoengine,4513.2838078704,18,81,5,71,356,0,0,361 +flask-openid,0.228453383,2.6597609885,-0.3213084888,https://salsa.debian.org/python-team/packages/flask-openid, https://github.com/mitsuhiko/flask-openid.git,4219.2356481482,6,12,0,12,96,0,0,97 +flask-restful,0.34791132,1.6712629803,-0.0854278525,https://salsa.debian.org/python-team/packages/flask-restful, https://github.com/flask-restful/flask-restful,3867.9860763889,52,124,0,135,573,0,0,611 +flatbuffers,-1.160445057,0.9112660212,-1.581988532,https://salsa.debian.org/debian/flatbuffers, https://github.com/google/flatbuffers.git,3592.7395138889,597,121,0,431,19,0,6,452 +flim,0.7666961285,1.9591073504,0.1611787583,https://salsa.debian.org/debian/flim, https://github.com/wanderlust/flim,5370.129212963,4,13,0,8,10,0,0,12 +arb,0.2828492531,2.1064015572,-0.2652901459,https://salsa.debian.org/math-team/flint-arb, https://github.com/fredrik-johansson/arb,4241.2918865741,4,42,0,34,106,0,1,108 +FlintQS,0.8705325607,4.2184408876,-0.1229863815,https://salsa.debian.org/science-team/flintqs, https://github.com/sagemath/FlintQS,2671.3606365741,0,2,0,2,2,0,0,3 +flite,0.3744081413,0.8157223595,0.1404183728,https://salsa.debian.org/a11y-team/flite, https://github.com/festvox/flite.git,1668.0555208333,9,16,0,21,106,0,0,106 +fmit,1.0288892251,2.9965682542,0.1345537728,https://salsa.debian.org/debian/fmit, https://github.com/gillesdegottex/fmit.git,2966.0915162037,22,10,0,21,45,0,0,56 +fntsample,-1.2332590184,-0.5969756101,-1.356176006,https://salsa.debian.org/debian/fntsample, https://github.com/eugmes/fntsample.git,4121.0789467593,2,4,0,4,10,0,0,10 +master,0.5018954955,1.5987261482,0.0085779359,https://salsa.debian.org/fonts-team/font-manager, https://github.com/FontManager/master,5185.326875,55,11,1,48,170,0,0,191 +Hack,0.3465705045,2.2081920487,-0.0730912243,https://salsa.debian.org/fonts-team/fonts-hack, https://github.com/source-foundry/Hack,1976.7616666667,7,26,5,23,227,0,0,243 +amiri,0.0448942076,0.9201808842,-0.1302579721,https://salsa.debian.org/fonts-team/fonts-hosny-amiri, https://github.com/alif-type/amiri.git,5474.3578935185,5,10,0,8,97,0,0,98 +inter,0.0129835005,2.785802699,-0.6565554603,https://salsa.debian.org/fonts-team/fonts-inter, https://github.com/rsms/inter,2281.2912847222,23,7,3,20,124,0,0,141 +frogatto,0.2316946335,1.7654688811,-0.3927779946,https://salsa.debian.org/games-team/frogatto, https://github.com/frogatto/frogatto.git,5646.0325115741,6,89,0,29,83,0,17,104 +Frozen-Flask,-1.5052476806,0.5681861838,-1.9677533136,https://github.com/SimonSapin/Frozen-Flask/,https://github.com/SimonSapin/Frozen-Flask,4711.306712963,2,29,0,26,105,0,1,106 +fsvs,-0.0088293976,2.3566933183,-1.0467726594,https://salsa.debian.org/debian/fsvs, https://github.com/phmarek/fsvs.git,2690.6840972222,8,4,0,3,6,0,0,7 +fswatch,0.0801114642,1.6766491485,-0.5710250772,https://salsa.debian.org/debian/fswatch, https://github.com/emcrisostomo/fswatch.git,4816.5607060185,6,27,0,22,362,0,6,368 +ftgl,1.2143599406,2.1964355506,0.6199512905,https://salsa.debian.org/ftgl-team/ftgl, https://github.com/frankheckenbach/ftgl,5371.3004976852,3,17,0,10,18,0,0,23 +funcoeszz,1.014177301,3.1202339314,0.1028457996,https://salsa.debian.org/debian/funcoeszz, https://github.com//funcoeszz/funcoeszz,5372.2990972222,4,52,0,0,0,0,6,6 +fusioninventory-agent,0.4127421594,1.2756692416,0.0042753938,https://salsa.debian.org/perl-team/modules/packages/fusioninventory-agent, https://github.com/fusioninventory/fusioninventory-agent.git,5660.8499537037,88,75,0,69,277,0,0,307 +fuzzylite,0.0236301475,2.058515685,-0.6491075451,https://salsa.debian.org/debian/fuzzylite, https://github.com/fuzzylite/fuzzylite,3931.5160648148,3,20,0,8,30,0,0,30 +fuzzywuzzy,-0.4399858222,1.3206226327,-0.8570537668,https://salsa.debian.org/python-team/packages/fuzzywuzzy, https://github.com/seatgeek/fuzzywuzzy,3716.0564236111,14,64,0,61,347,0,2,353 +fvwm2-debian,0.3091526029,0.4698895246,0.1811764904,https://github.com/somiaj/fvwm2-debian,https://github.com/somiaj/fvwm2-debian,699.9356018519,1,3,0,1,0,0,0,1 +sight,-0.1731785778,1.2619602504,-0.8211865446,https://salsa.debian.org/med-team/fw4spl, https://github.com/IRCAD/sight,5192.8487268519,18,189,0,40,13,0,0,45 +fwupdate,-0.0344756086,2.1966931571,-0.4710643437,https://salsa.debian.org/efi-team/fwupdate, https://github.com/rhinstaller/fwupdate.git,2299.0056365741,21,5,0,15,40,0,3,49 +fzy,-0.3762088336,1.9399715065,-0.8640459444,https://salsa.debian.org/debian/fzy, https://github.com/jhawthorn/fzy,2752.1003125,14,25,0,30,165,0,3,168 +g810-led,-0.8841874287,0.5790349373,-1.1503333071,https://salsa.debian.org/debian/g810-led, https://github.com/MatMoul/g810-led.git,2361.9422453704,17,31,0,31,369,0,2,376 +monitor-core,1.9418594289,3.110187068,1.2272175248,https://salsa.debian.org/debian/ganglia, https://github.com/ganglia/monitor-core.git,5029.4003703704,5,128,0,60,190,0,20,215 +ganglia-web,2.9867677001,5.9425493751,1.6513889403,https://salsa.debian.org/debian/ganglia-web, https://github.com/ganglia/ganglia-web,3989.7465162037,9,91,0,54,144,0,10,160 +garglk,0.3494600276,1.5754786967,-0.2152021362,https://salsa.debian.org/games-team/gargoyle-free, https://github.com/garglk/garglk.git,5517.4756134259,6,35,0,30,137,0,4,145 +gaupol,0.4507268429,1.4194389083,0.0001075777,https://salsa.debian.org/python-team/packages/gaupol, https://github.com/otsaloma/gaupol,5574.4414699074,17,10,0,13,96,0,0,102 +geographiclib,-0.2708682617,0.4210044305,-0.5188380677,https://salsa.debian.org/debian-gis-team/geographiclib, https://github.com/geographiclib/geographiclib.git,5589.1283333333,0,17,0,9,0,0,0,9 +geoipupdate,0.0025717488,1.6500054943,-0.358124043,https://salsa.debian.org/debian/geoipupdate, https://github.com/maxmind/geoipupdate,3751.8112615741,25,42,0,34,57,0,0,77 +geolinks,-0.181262941,2.4550244029,-0.7445474906,https://salsa.debian.org/debian-gis-team/geolinks, https://github.com/geopython/geolinks.git,3405.8642361111,2,3,0,4,8,0,0,8 +geophar,-0.941493032,-0.2177195536,-1.1312469677,https://salsa.debian.org/georgesk/geophar, https://github.com/wxgeo/geophar,4439.4260185185,0,6,0,3,5,0,0,7 +geopy,-0.1987709641,1.3312828211,-0.5312977883,https://salsa.debian.org/python-team/packages/geopy, https://github.com/geopy/geopy,5485.118125,94,49,3,101,381,0,0,395 +gerbv,0.7065741787,1.742115916,0.1740178886,https://salsa.debian.org/electronics-team/gerbv, https://github.com/gerbv/gerbv.git,5724.3901851852,29,11,0,24,49,0,0,64 +ghp-import,-0.4929741774,2.5133796067,-1.274122331,https://salsa.debian.org/python-team/packages/ghp-import, https://github.com/c-w/ghp-import.git,4494.8705092593,15,11,0,21,78,0,0,84 +git-big-picture,0.3518387907,3.3166834133,-0.4853412989,https://salsa.debian.org/python-team/packages/git-big-picture, https://github.com/git-big-picture/git-big-picture.git,5024.3069097222,14,10,0,14,46,0,0,48 +git-ftp,-0.1788027121,1.7435604018,-0.6973926208,https://salsa.debian.org/debian/git-ftp, https://github.com/git-ftp/git-ftp,4532.203599537,24,92,3,82,432,0,0,479 +gitinspector,-0.5400481096,0.210511756,-0.7012239295,https://salsa.debian.org/python-team/packages/gitinspector, https://github.com/ejwa/gitinspector,3089.9889236111,14,6,3,18,213,0,0,217 +gitsome,-1.5867602711,-1.1930128544,-1.6624023004,https://salsa.debian.org/debian/gitsome, https://github.com/donnemartin/gitsome,1294.2226388889,14,16,0,27,199,0,0,199 +givaro,0.5117865646,1.6258650747,-0.0135088131,https://salsa.debian.org/math-team/givaro, https://github.com/linbox-team/givaro,5710.7340740741,9,44,0,21,43,0,0,44 +lieer,-1.7520281461,0.654977795,-2.4063141302,https://salsa.debian.org/debian/lieer, https://github.com/gauteh/lieer,2464.2436689815,23,14,0,29,147,0,7,154 +gmrender-resurrect,-0.6885555604,0.4388812357,-0.9886243591,https://salsa.debian.org/debian/gmrender-resurrect, https://github.com/hzeller/gmrender-resurrect.git,3933.2407407407,9,14,0,17,244,0,41,286 +gnome-gmail,0.1152563841,1.2377514132,-0.3137068328,https://github.com/davesteele/gnome-gmail/tree/debian,https://github.com/davesteele/gnome-gmail,5107.0565740741,6,30,0,8,52,0,0,53 +gnome-hwp-support,-0.1527039415,2.6330164164,-0.8636063871,https://salsa.debian.org/l10n-korean-team/gnome-hwp-support, https://github.com/changwoo/gnome-hwp-support.git,4275.4146296296,1,2,0,1,2,0,0,2 +gnome-keysign,-0.6319731543,0.8678564413,-0.9085456046,https://salsa.debian.org/debian/gnome-keysign, https://github.com/gnome-keysign/gnome-keysign,3520.8003356482,42,26,0,52,24,0,0,62 +gnome-mastermind,0.1896631142,2.1249915571,-0.4064733165,https://salsa.debian.org/debian/gnome-mastermind, https://github.com/fargiolas/gnome-mastermind,5420.9395486111,1,6,0,3,2,0,0,3 +googler,-0.3686431402,0.6283580924,-0.5542725364,https://salsa.debian.org/debian/googler, https://github.com/jarun/googler.git,4778.9107060185,15,26,0,29,68,0,6,94 +GPaste,-0.3060429164,-0.2513668941,-0.3230260451,https://salsa.debian.org/debian/gpaste, https://github.com/Keruspe/GPaste,4709.6430092593,65,21,2,60,352,0,0,376 +gpick,0.3287244142,1.9268349477,-0.1661653459,https://salsa.debian.org/elias/gpick, https://github.com/thezbyg/gpick.git,5237.0590625,5,6,0,8,64,0,1,67 +grabserial,-0.534268649,2.390246914,-1.2967244647,https://salsa.debian.org/debian/grabserial, https://github.com/tbird20d/grabserial,3634.0012152778,11,19,0,17,53,0,1,55 +grantlee,0.8850917122,2.9819943474,0.1506454305,https://salsa.debian.org/qt-kde-team/extras/grantlee, https://github.com/steveire/grantlee.git,4939.9756481482,29,11,0,23,19,0,1,37 +graphite,0.3733807726,1.1779395242,0.0796158429,https://salsa.debian.org/libreoffice-team/graphite2, https://github.com/silnrsi/graphite.git,4797.7791319445,6,20,0,12,63,0,0,66 +gravit,0.6045580957,3.2029078171,-0.2991692425,https://salsa.debian.org/debian-astro-team/gravit, https://github.com/gak/gravit,4467.9773263889,1,15,2,3,13,0,0,13 +grcompiler,-0.2033731514,1.6514805751,-0.9604435457,https://salsa.debian.org/fonts-team/grcompiler, https://github.com/silnrsi/grcompiler.git,4870.0000925926,3,20,0,10,14,0,0,15 +gsa,0.417412477,2.9619681562,-0.4656797598,https://salsa.debian.org/pkg-security-team/greenbone-security-assistant, https://github.com/greenbone/gsa,5193.7357407407,22,54,0,37,36,0,0,62 +grepcidr-pkg-debian,-0.000512138,1.8231074226,-0.4693331824,https://github.com/rfinnie/grepcidr-pkg-debian,https://github.com/rfinnie/grepcidr-pkg-debian,3175.8474652778,0,1,0,1,0,0,0,1 +grok,0.7555036124,3.2549577139,-0.2949948657,https://salsa.debian.org/debian/grok, https://github.com/jordansissel/grok,2851.8223263889,0,12,0,5,47,0,0,47 +gromit-mpx,-0.1368392632,2.3961082606,-0.7236856316,https://salsa.debian.org/debian/gromit-mpx, https://github.com/bk138/gromit-mpx.git,5287.5376388889,14,15,0,22,52,0,0,63 +grun,3.4314737452,6.9914396992,1.9512456029,https://salsa.debian.org/debian/grun, https://github.com/lrgc/grun.git,1780.0517708333,1,4,0,2,2,0,0,3 +textfsm,-1.959276856,0.4998119958,-2.4671799826,https://salsa.debian.org/python-team/packages/gtextfsm, https://github.com/google/textfsm.git,4331.1065625,11,7,0,12,114,0,11,125 +gtimelog,-0.3131503011,0.4195928542,-0.6469396999,https://salsa.debian.org/python-team/packages/gtimelog, https://github.com/gtimelog/gtimelog,5699.091412037,18,41,2,31,102,0,0,108 +gtkhash,-0.0470549768,0.3813091669,-0.1959531443,https://salsa.debian.org/debian/gtkhash, https://github.com/tristanheaven/gtkhash,4558.9808449074,79,10,0,62,43,0,0,96 +guessit,0.5092433942,2.4339696308,-0.2792039187,https://salsa.debian.org/python-team/packages/guessit, https://github.com/guessit-io/guessit.git,2993.2388078704,14,29,0,17,232,0,0,242 +guidata,0.226943724,2.7660796551,-0.444547265,https://salsa.debian.org/science-team/guidata, https://github.com/Codra-Ingenierie-Informatique/guidata,4839.0752893519,0,24,0,9,22,0,0,27 +guile-json,-0.447679014,2.3175980112,-1.1284049069,https://salsa.debian.org/debian/guile-json, https://github.com/aconchillo/guile-json.git,3764.8305324074,3,17,0,14,43,0,0,45 +harminv,-0.2633327682,0.7959993879,-0.5621576388,https://salsa.debian.org/alteholz/harminv, https://github.com/NanoComp/harminv,2906.4731712963,1,5,0,4,15,0,0,15 +harvid,0.172456355,1.3037883065,-0.1734116499,https://salsa.debian.org/multimedia-team/harvid, https://github.com/x42/harvid.git,3621.9749189815,0,4,0,4,14,0,0,14 +hashcat,0.6568099259,2.9193273288,-0.0688683154,https://salsa.debian.org/pkg-security-team/hashcat, https://github.com/hashcat/hashcat.git,2915.0251851852,48,153,0,135,297,0,0,392 +haveged,0.9608769092,1.929900484,0.4239904529,https://salsa.debian.org/debian/haveged, https://github.com/jirka-h/haveged,1886.382650463,9,23,0,22,68,0,1,73 +haxe-debian,-0.5201211998,0.2916566292,-0.8543651007,https://github.com/HaxeFoundation/haxe-debian,https://github.com/HaxeFoundation/haxe-debian,5039.1597916667,3,5,0,5,4,0,0,7 +hcxdumptool,0.1119022392,3.6410156171,-0.7455348999,https://salsa.debian.org/pkg-security-team/hcxdumptool, https://github.com/ZerBea/hcxdumptool,2117.0106134259,10,18,0,22,84,0,7,102 +hdapsd,0.6538996291,2.6942351149,-0.1231193096,https://salsa.debian.org/debian/hdapsd, https://github.com/evgeni/hdapsd.git,2619.5010416667,2,5,0,5,12,0,0,13 +HDMI2USB-mode-switch,-0.1979989796,2.8942330744,-1.0013410785,https://salsa.debian.org/debian/hdmi2usb-mode-switch, https://github.com/timvideos/HDMI2USB-mode-switch.git,1539.4512152778,3,11,0,8,15,0,0,15 +hesiod,1.3520798772,2.882041099,0.5698299795,https://github.com/achernya/hesiod,https://github.com/achernya/hesiod,2444.8183564815,0,5,0,6,15,0,0,17 +hexchat,0.4113463635,1.0763225756,0.0766285755,https://salsa.debian.org/debian/hexchat, https://github.com/hexchat/hexchat,4968.6586458333,146,71,1,160,5,0,0,162 +hg-git,0.321128458,1.270139629,-0.1895586953,https://salsa.debian.org/python-team/packages/hg-git, https://github.com/schacon/hg-git.git,2615.4964467593,1,76,0,52,117,0,4,163 +hidapi,0.225542389,1.7475434274,-0.1119105457,https://salsa.debian.org/debian/hidapi, https://github.com/libusb/hidapi.git,4972.5820717593,120,14,0,103,49,0,4,137 +hippomocks,-1.8899787337,1.9694566517,-3.0475420799,https://salsa.debian.org/debian-iot-team/hippomocks, https://github.com/dascandy/hippomocks,3806.1184837963,0,35,0,21,73,0,1,77 +hitch,-0.5288912788,2.1847591306,-1.4438568394,https://salsa.debian.org/debian/hitch, https://github.com/varnish/hitch,4466.179224537,30,59,0,59,215,0,20,260 +hol-light,0.6740208455,3.3227951452,-0.2913969773,https://salsa.debian.org/ocaml-team/hol-light, https://github.com/jrh13/hol-light.git,2937.7842708333,2,18,0,10,39,0,0,39 +htmldoc,0.7571165722,1.6423946949,0.2768464827,https://salsa.debian.org/haava/htmldoc, https://github.com/michaelrsweet/htmldoc.git,5679.7610416667,3,12,0,7,61,0,0,65 +htmlmin,0.3749839326,3.8009648796,-0.4061989629,https://salsa.debian.org/python-team/packages/htmlmin, https://github.com/mankyd/htmlmin,1758.1454050926,0,22,0,16,60,0,0,60 +htpdate,-0.4445412636,1.6194045516,-0.91888023,https://salsa.debian.org/debian/htpdate, https://github.com/twekkel/htpdate,706.8257407407,6,5,0,5,17,0,0,17 +hubicfuse,-0.6743910684,0.4155398958,-0.9708496832,https://salsa.debian.org/debian/hubicfuse, https://github.com/TurboGit/hubicfuse,4598.8082291667,5,42,0,32,165,0,1,182 +hunspell-kk,0.1699792789,2.5686056687,-0.3539934531,http://github.com/taem/hunspell-kk/tree/master,http://github.com/taem/hunspell-kk,1009.2540509259,0,1,0,0,0,0,0,0 +hw-probe,-0.2705391309,2.1366348662,-0.8036350878,https://salsa.debian.org/debian/hw-probe, https://github.com/linuxhw/hw-probe,2812.8207638889,5,13,0,14,115,0,0,116 +hwdata,0.2497218136,0.8673309736,-0.0033926663,https://salsa.debian.org/pino/hwdata, https://github.com/vcrhonek/hwdata.git,5761.1231481482,4,18,0,12,14,0,0,19 +hwinfo,1.0352583411,1.8703572076,0.5288235361,https://salsa.debian.org/debian/hwinfo, https://github.com/openSUSE/hwinfo,5630.0100347222,11,25,0,19,74,0,0,77 +hwloc,0.034853164,0.3073992793,-0.0657896516,https://salsa.debian.org/debian/hwloc, https://github.com/open-mpi/hwloc.git,5420.947349537,40,25,0,39,173,0,7,189 +hyperlink,0.844118141,3.90404712,0.0109391917,https://salsa.debian.org/python-team/packages/hyperlink, https://github.com/python-hyper/hyperlink,1636.1480324074,8,24,0,21,47,0,0,49 +hyperscan,-0.1939906796,1.1323195527,-0.5069001368,https://salsa.debian.org/debian/hyperscan, https://github.com/intel/hyperscan.git,2738.472962963,25,11,0,26,361,0,0,365 +ibus-libpinyin,0.0745339719,1.4965685521,-0.4552149234,https://salsa.debian.org/debian/ibus-libpinyin, https://github.com/libpinyin/ibus-libpinyin,5637.8364236111,33,12,0,32,417,0,2,432 +icdiff,-0.1438152922,1.9369823287,-0.574052024,https://salsa.debian.org/debian/icdiff, https://github.com/jeffkaufman/icdiff.git,4767.043599537,37,19,0,47,225,0,0,225 +icecream,0.3064642839,1.1295017582,-0.1573898799,https://salsa.debian.org/qt-kde-team/extras/icecc, https://github.com/icecc/icecream,5413.4717939815,34,86,1,89,308,0,0,324 +ifcplusplus,-4.714020503,-1.546680493,-5.4430250217,https://salsa.debian.org/science-team/ifcplusplus, https://github.com/ifcquery/ifcplusplus,3159.9779050926,3,29,0,17,119,0,1,120 +ign-cmake,-0.0672943203,2.4451918145,-0.7211880559,https://salsa.debian.org/science-team/ignition-cmake, https://github.com/ignitionrobotics/ign-cmake.git,2275.0046990741,21,38,0,34,52,0,0,56 +imexam,-0.5291204946,0.5693013221,-0.7719216675,https://salsa.debian.org/debian-astro-team/imexam, https://github.com/spacetelescope/imexam,3485.9386226852,6,15,1,15,95,0,0,95 +imgp,-0.6548311047,1.5722939063,-1.0887948485,https://salsa.debian.org/debian/imgp, https://github.com/jarun/imgp.git,2588.4491782407,7,6,0,8,44,0,2,47 +indicator-sensors,-0.5585654847,1.870631377,-1.1666724793,https://salsa.debian.org/debian/indicator-sensors, https://github.com/alexmurray/indicator-sensors.git,4448.0518287037,1,8,0,6,33,0,1,36 +influxdb-python,0.5184399777,1.9994055882,-0.0609733668,https://salsa.debian.org/python-team/packages/influxdb-python, https://github.com/influxdata/influxdb-python,3542.0853240741,64,90,1,124,596,0,0,618 +infnoise,-0.8043001603,2.0102163079,-1.7895799595,https://salsa.debian.org/debian/infnoise, https://github.com/13-37-org/infnoise.git,3061.3638078704,9,32,0,27,33,0,1,52 +inkscape-open-symbols,0.1399161023,2.3946994301,-0.296432736,https://salsa.debian.org/felix-guest/inkscape-open-symbols, https://github.com/Xaviju/inkscape-open-symbols,2971.3217939815,9,20,0,20,58,0,2,60 +compute-runtime,-0.3353488286,2.5434327002,-1.0380631241,https://salsa.debian.org/opencl-team/intel-compute-runtime, https://github.com/intel/compute-runtime,2183.6453703704,160,87,0,159,86,0,0,220 +intelhex,-0.7181174872,1.5303194974,-1.1558028433,https://salsa.debian.org/python-team/packages/intelhex, https://github.com/bialix/intelhex.git,2882.7775578704,4,21,0,12,61,0,0,63 +invesalius3,-0.365553699,0.412659255,-0.6585148784,https://salsa.debian.org/med-team/invesalius, https://github.com/invesalius/invesalius3.git,5269.8872106482,20,33,0,28,105,0,9,123 +ioq3,0.2457529541,0.9626997446,-0.0891553792,https://salsa.debian.org/games-team/ioquake3, https://github.com/ioquake/ioq3,5764.2156828704,42,58,0,65,301,0,0,310 +iortcw,-0.3609137722,1.7540737172,-0.8999552481,https://salsa.debian.org/games-team/iortcw, https://github.com/iortcw/iortcw.git,3601.8735763889,5,20,0,13,129,0,0,131 +irssi,1.759294185,2.3625896628,1.3052149799,https://salsa.debian.org/rhonda/irssi, https://github.com/irssi/irssi.git,5749.0144675926,36,142,0,114,230,0,5,301 +irssi-xmpp,0.6035691601,1.5557972582,0.0980337918,https://salsa.debian.org/debian/irssi-plugin-xmpp, https://github.com/cdidier/irssi-xmpp,4266.8623958333,7,12,0,12,44,0,0,46 +irstlm,-0.5699998346,2.5734688359,-1.3621281388,https://salsa.debian.org/science-team/irstlm, https://github.com/irstlm-team/irstlm.git,1268.8947337963,1,9,0,3,31,0,0,33 +islamic-menus,-0.8360403457,1.8927666646,-1.5208014105,https://salsa.debian.org/islamic-team/islamic-menus, https://github.com/ojuba-org/islamic-menus,1447.6479050926,0,9,0,5,1,0,0,5 +ismrmrd,-0.4211375034,0.8719718551,-0.792919077,https://salsa.debian.org/med-team/ismrmrd, https://github.com/ismrmrd/ismrmrd.git,4121.9187384259,23,44,0,33,72,0,1,77 +flags,1.0476074347,4.844542624,0.0451502018,https://salsa.debian.org/cinnamon-team/iso-flags-svg, https://github.com/linuxmint/flags.git,563.1795833333,0,2,0,1,0,0,0,1 +isodate,0.7844107872,3.6859500169,-0.0654948523,https://salsa.debian.org/python-team/packages/isodate, https://github.com/gweis/isodate,4815.1887152778,2,29,0,18,81,0,0,82 +ivtools,0.3988011669,1.0923186651,-0.0474693289,https://salsa.debian.org/debian/ivtools, https://github.com/vectaport/ivtools,4623.9669328704,2,10,0,4,7,0,1,8 +include-what-you-use,0.2936470135,1.7756158607,-0.3256054834,https://salsa.debian.org/pkg-llvm-team/iwyu, https://github.com/include-what-you-use/include-what-you-use,4692.8704050926,67,17,1,60,285,0,1,306 +jabberd2,-0.0340967947,0.9124576514,-0.5754415701,https://salsa.debian.org/xmpp-team/jabberd2, https://github.com/jabberd2/jabberd2,3913.9184490741,17,25,0,26,119,0,5,129 +jansson,0.1407028183,0.668384438,-0.002779965,https://salsa.debian.org/debian/jansson, https://github.com/akheron/jansson.git,5159.4155902778,29,84,0,80,127,0,3,188 +janus-gateway,-1.0533724499,0.8744335289,-1.6790293476,https://salsa.debian.org/pkg-voip-team/janus, https://github.com/meetecho/janus-gateway,3591.8742708333,192,158,0,273,152,0,0,393 +jimtcl,0.0276014571,0.4709064501,-0.0432191953,https://salsa.debian.org/debian/jimtcl, https://github.com/msteveb/jimtcl.git,5640.2291087963,31,13,0,32,66,0,2,79 +Jool,-2.1435730131,-0.0424378709,-2.6129119375,https://github.com/NICMx/Jool,https://github.com/NICMx/Jool,4435.2104050926,8,57,3,37,162,0,6,172 +jopt-simple,-0.2557722008,1.1092730965,-0.5210596763,https://salsa.debian.org/java-team/joptsimple, https://github.com/jopt-simple/jopt-simple.git,3771.2237962963,2,25,0,24,63,0,0,70 +jpy,-0.2335047706,1.5585712074,-0.6921580176,https://salsa.debian.org/python-team/packages/jpy, https://github.com/jpy-consortium/jpy,3656.2358564815,16,28,3,25,27,0,0,44 +jpylyzer,-1.218476643,-0.4298985846,-1.4717139107,https://salsa.debian.org/python-team/packages/jpylyzer, https://github.com/openpreserve/jpylyzer.git,3586.5846064815,2,28,0,16,31,0,2,37 +jq,0.9075077567,2.0772581347,0.3378546024,https://salsa.debian.org/debian/jq, https://github.com/jqlang/jq,4164.9958796296,128,79,5,168,233,0,76,457 +jquery-i18n-properties,-0.8429862877,1.002530129,-1.1610901473,https://salsa.debian.org/js-team/jquery-i18n-properties/, https://github.com/jquery-i18n-properties/jquery-i18n-properties.git,2244.4631597222,1,17,0,13,101,0,3,106 +JSJaC,-0.3265912384,2.0049639122,-1.1507866217,https://salsa.debian.org/xmpp-team/jsjac, https://github.com/sstrigler/JSJaC.git,3682.6423958333,1,21,0,12,56,0,0,56 +json-c,0.7000238519,1.5684181486,0.2497560899,https://salsa.debian.org/debian/json-c, https://github.com/json-c/json-c,5592.2949652778,18,150,0,130,463,0,13,500 +JSON-js,0.6358541009,3.1706913966,-0.0862776907,https://salsa.debian.org/js-team/json-js, https://github.com/douglascrockford/JSON-js,4556.1964236111,1,4,0,2,14,0,0,15 +jsonlint,0.1283791193,1.6136347642,-0.1615279631,https://salsa.debian.org/php-team/pear/jsonlint, https://github.com/Seldaek/jsonlint,4166.9388888889,11,28,0,34,62,0,0,62 +jsonpickle,-0.0589038511,1.6549477485,-0.6288474464,https://salsa.debian.org/python-team/packages/jsonpickle, https://github.com/jsonpickle/jsonpickle,5737.1075462963,18,67,1,58,346,0,5,359 +jsusfx,-0.4818415459,1.4674471205,-0.8815812329,https://salsa.debian.org/multimedia-team/pd/jsusfx, https://github.com/asb2m10/jsusfx.git,2697.3649768519,1,8,0,4,11,0,1,12 +keepassxc,0.077500136,0.7662262759,-0.1344432376,https://salsa.debian.org/debian/keepassxc, https://github.com/keepassxreboot/keepassxc.git,4876.4075,354,94,0,352,4,0,6,360 +keras,0.5999454369,3.4232399441,-0.326875434,https://salsa.debian.org/science-team/keras, https://github.com/keras-team/keras,3182.8412268519,1036,333,0,411,453,0,19,839 +klaus,-1.7963750896,-1.1425182339,-1.9244411722,https://salsa.debian.org/jelmer/klaus, https://github.com/jonashaag/klaus,4576.8670717593,13,28,0,23,110,0,20,131 +klystrack,-0.5775196532,1.4334446874,-1.0926907229,https://salsa.debian.org/multimedia-team/klystrack, https://github.com/kometbomb/klystrack,3882.7988194445,10,13,4,10,56,0,1,57 +pvr.dvbviewer,-0.2612255055,1.7338835217,-0.6785034929,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-dvbviewer, https://github.com/kodi-pvr/pvr.dvbviewer.git,4026.1822916667,9,44,0,32,52,0,0,65 +pvr.hdhomerun,0.5662601343,3.972730551,-0.5089735041,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-hdhomerun, https://github.com/kodi-pvr/pvr.hdhomerun.git,2925.247337963,9,28,0,19,39,0,0,42 +pvr.iptvsimple,0.0810763451,2.1337559183,-0.4122427721,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-iptvsimple, https://github.com/kodi-pvr/pvr.iptvsimple.git,3805.7589236111,16,66,0,49,379,0,0,389 +pvr.njoy,-0.3919469766,1.5882858351,-0.7945898934,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-njoy, https://github.com/kodi-pvr/pvr.njoy.git,4095.3650578704,9,40,0,28,19,0,0,33 +pvr.vdr.vnsi,-0.2767088162,1.1621317981,-0.6036919178,https://salsa.debian.org/multimedia-team/kodi-media-center/kodi-pvr-vdr-vnsi, https://github.com/kodi-pvr/pvr.vdr.vnsi.git,4099.2902199074,12,57,0,44,64,0,0,80 +KWStyle,-0.5443680459,1.2886528987,-0.9977067271,https://salsa.debian.org/eikel/kwstyle, https://github.com/Kitware/KWStyle,2816.187662037,4,44,0,30,32,0,0,49 +lablgtk,-0.5519683235,1.0254829683,-0.8566505829,https://salsa.debian.org/ocaml-team/lablgtk3, https://github.com/garrigue/lablgtk.git,5750.3717824074,18,30,0,25,73,0,0,77 +lastpass-cli,-0.0433153425,1.3416622465,-0.5860041677,https://salsa.debian.org/lamby/pkg-lastpass-cli, https://github.com/lastpass/lastpass-cli,3306.0089351852,30,62,0,67,0,0,1,68 +python-lazy-object-proxy,0.3043618863,2.7233170407,-0.1702005445,https://salsa.debian.org/python-team/packages/lazy-object-proxy, https://github.com/ionelmc/python-lazy-object-proxy.git,3850.5882523148,8,10,0,14,87,0,0,89 +lcdproc,0.0416533252,0.5981870264,-0.2982890351,https://salsa.debian.org/debian/lcdproc, https://github.com/lcdproc/lcdproc,1977.3798148148,39,20,0,41,113,0,0,115 +ldap-git-backup,-1.373786898,-0.3569713865,-1.6171841836,https://github.com/elmar/ldap-git-backup,https://github.com/elmar/ldap-git-backup,3900.9497222222,1,9,0,6,10,0,0,10 +ldap2dns,0.4410660379,3.2730345751,-0.8182558109,https://salsa.debian.org/debian/ldap2dns, https://github.com/bklang/ldap2dns,1032.2710185185,0,4,0,1,4,0,0,4 +ldapscripts,0.4789463026,1.4448695661,0.0155611927,https://github.com/gerasiov/ldapscripts,https://github.com/gerasiov/ldapscripts,4203.2921643519,3,5,0,3,2,0,0,3 +pkg-ledgersmb,-1.9768906241,-1.2384100445,-2.32818406,https://github.com/ledgersmb/pkg-ledgersmb,https://github.com/ledgersmb/pkg-ledgersmb,5388.1821643519,1,9,0,4,4,0,1,7 +ledmon,-0.0267359746,1.6972099329,-0.5787233435,https://salsa.debian.org/debian/ledmon, https://github.com/intel/ledmon,4704.5067592593,35,24,0,32,75,0,0,79 +legit,-1.3724471459,-0.9914117218,-1.4783160816,https://salsa.debian.org/python-team/packages/legit, https://github.com/frostming/legit,4465.0884027778,8,56,0,47,233,0,2,238 +mod_auth_openidc,0.2336891928,2.1536731239,-0.5343344056,https://salsa.debian.org/debian/libapache2-mod-auth-openidc, https://github.com/zmartzone/mod_auth_openidc.git,3541.8657638889,12,50,0,46,138,0,41,214 +libappimage,-0.1632051649,2.0657738619,-0.6650493915,https://salsa.debian.org/qt-kde-team/3rdparty/libappimage, https://github.com/AppImageCommunity/libappimage.git,1789.5842476852,9,6,0,11,54,0,0,54 +attean,-1.3143281259,1.0491513887,-1.7605023994,https://salsa.debian.org/perl-team/modules/packages/libattean-perl, https://github.com/kasei/attean.git,3387.9902314815,2,10,0,9,20,0,0,20 +libcec,0.2382725094,0.9041078801,-0.0486730427,https://salsa.debian.org/debian/libcec, https://github.com/Pulse-Eight/libcec.git,3960.8179282408,30,52,0,62,729,0,2,741 +cereal,-1.0094893182,-0.4350648989,-1.165390033,https://salsa.debian.org/med-team/libcereal, https://github.com/USCiLab/cereal,3631.1027546296,36,60,3,68,151,0,4,201 +CGI--Application--Dispatch,0.204830766,4.1969078733,-0.9847022953,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-dispatch-perl, https://github.com/markstos/CGI--Application--Dispatch.git,1893.6213773148,0,9,0,8,9,0,0,9 +CGI-Application-Plugin-Session,-0.4119679947,2.4410793318,-1.1626629958,https://salsa.debian.org/perl-team/modules/packages/libcgi-application-plugin-session-perl, https://github.com/frioux/CGI-Application-Plugin-Session,1734.1852083333,2,2,0,2,1,0,0,3 +libcgroup,0.8905633465,1.7409188519,0.3692553148,https://salsa.debian.org/debian/libcgroup, https://github.com/libcgroup/libcgroup,5745.3289930556,43,20,2,31,36,0,0,52 +libdnet,0.6447638804,1.8645884536,0.1303098815,https://salsa.debian.org/debian/libdumbnet, https://github.com/ofalk/libdnet,3068.4848032407,6,20,0,16,42,0,0,44 +libebur128,0.4008800859,2.5097823396,-0.0483144637,https://salsa.debian.org/multimedia-team/libebur128, https://github.com/jiixyj/libebur128,3690.6439930556,1,22,0,19,70,0,0,71 +ejml,-1.6145518294,1.0936860376,-2.2108976925,https://salsa.debian.org/java-team/libejml-java, https://github.com/lessthanoptimal/ejml,5141.1358564815,14,15,0,17,85,0,0,85 +p5-encode,0.0933708639,1.2559525686,-0.1937815459,https://salsa.debian.org/perl-team/modules/packages/libencode-perl, https://github.com/dankogai/p5-encode.git,5752.78,4,51,0,42,88,0,0,90 +libepoxy,0.3100507455,1.1926379346,0.0363222284,https://salsa.debian.org/xorg-team/lib/libepoxy, https://github.com/anholt/libepoxy.git,3236.6618981482,11,45,0,45,212,0,0,215 +liberasurecode,-0.4839675188,1.1970872377,-0.8694804348,https://salsa.debian.org/openstack-team/libs/liberasurecode, https://github.com/openstack/liberasurecode.git,3370.5594560185,7,23,0,19,7,0,0,26 +perl-error.pm,1.2535323608,3.335171802,0.4397835194,https://salsa.debian.org/perl-team/modules/packages/liberror-perl, https://github.com/shlomif/perl-error.pm.git,4521.3125694445,0,3,0,2,3,0,0,4 +libesedb,-0.0038540304,1.3424306865,-0.3777859111,https://salsa.debian.org/pkg-security-team/libesedb, https://github.com/libyal/libesedb,2793.913912037,0,1,0,1,61,0,2,63 +libesmtp,0.2677621782,0.8388085609,-0.0156401267,https://github.com/jbouse-debian/libesmtp,https://github.com/jbouse-debian/libesmtp,4730.7607986111,1,4,0,2,1,0,0,2 +libestr,0.2583326289,1.2734255517,0.0106705212,https://salsa.debian.org/debian/libestr, https://github.com/rsyslog/libestr.git,2916.1839236111,6,7,0,9,8,0,0,13 +libevent,0.7674583301,1.6743727385,0.314106766,https://salsa.debian.org/debian/libevent, https://github.com/libevent/libevent,5769.2016435185,214,125,1,240,0,0,6,246 +libgeotiff,0.3969402517,2.1076539482,-0.0842600623,https://salsa.debian.org/debian-gis-team/libgeotiff, https://github.com/OSGeo/libgeotiff.git,5753.8535763889,6,17,0,21,54,0,0,58 +libglvnd,0.3742764654,1.2232824361,0.0505144955,https://salsa.debian.org/xorg-team/lib/libglvnd.git, https://github.com/NVIDIA/libglvnd.git,3760.105162037,9,47,0,41,117,0,0,133 +libgroove,-0.5717771357,0.9386669616,-0.9657138035,https://salsa.debian.org/multimedia-team/libgroove, https://github.com/andrewrk/libgroove,3739.9100810185,3,10,1,10,62,0,2,65 +hdf4,0.7482393831,1.3419798784,0.3704858112,https://salsa.debian.org/debian-gis-team/hdf4, https://github.com/HDFGroup/hdf4.git,5770.0810416667,9,27,0,20,22,0,2,34 +libheif,0.7756133995,3.7562106714,0.0328408592,https://salsa.debian.org/multimedia-team/libheif, https://github.com/strukturag/libheif.git,2185.1827314815,30,67,0,79,121,0,1,182 +hpptools,-2.8766583863,-0.6777605247,-3.3195064784,https://salsa.debian.org/med-team/libhpptools, https://github.com/mateidavid/hpptools.git,498.7340625,0,2,0,2,3,0,0,3 +HTML-Clean,-0.1024783024,1.2552104643,-0.471169751,https://salsa.debian.org/perl-team/modules/packages/libhtml-clean-perl, https://github.com/poizon/HTML-Clean.git,1155.8983796296,1,3,0,2,2,0,0,2 +p5-html-embedded-turtle,-2.1754143328,0.1122982625,-2.6152678827,https://salsa.debian.org/perl-team/modules/packages/libhtml-embedded-turtle-perl, https://github.com/tobyink/p5-html-embedded-turtle,1183.7536805556,0,1,0,1,0,0,0,1 +html-formhandler-model-dbic,-1.4203781466,0.7927422874,-1.859585529,https://salsa.debian.org/perl-team/modules/packages/libhtml-formhandler-model-dbic-perl, http://github.com/gshank/html-formhandler-model-dbic,1856.3547106482,2,11,0,0,0,0,0,0 +p5-html-html5-entities,-0.3934618041,1.0242081172,-0.6537250647,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-entities-perl, https://github.com/tobyink/p5-html-html5-entities.git,1072.6158333333,0,1,0,1,1,0,0,2 +p5-html-html5-parser,0.8137592838,4.383181915,-0.3515590143,https://salsa.debian.org/perl-team/modules/packages/libhtml-html5-parser-perl, https://github.com/tobyink/p5-html-html5-parser,4302.9721412037,1,7,0,5,9,0,0,10 +libhtp,0.266072694,2.5728754227,-0.5638059217,https://salsa.debian.org/pkg-suricata-team/pkg-libhtp, https://github.com/OISF/libhtp,5122.0736226852,15,26,2,25,31,0,0,43 +isa-l,-0.6533940488,1.7011237676,-1.0694298788,https://salsa.debian.org/openstack-team/third-party/libisal, https://github.com/01org/isa-l.git,2846.4837615741,29,18,0,38,96,0,3,119 +libjpeg-turbo,0.8208594826,1.6678864112,0.3714003986,https://salsa.debian.org/debian/libjpeg-turbo/, https://github.com/libjpeg-turbo/libjpeg-turbo,5541.3943171296,44,10,2,41,501,0,0,509 +p5-JSON-WebToken,-0.1644580581,1.9565513103,-0.5873542729,https://salsa.debian.org/perl-team/modules/packages/libjson-webtoken-perl, https://github.com/xaicron/p5-JSON-WebToken.git,993.7868981481,0,6,0,2,16,0,0,16 +p5-kavorka,-1.1158599676,1.8699475451,-1.8919945693,https://salsa.debian.org/perl-team/modules/packages/libkavorka-perl, https://github.com/tobyink/p5-kavorka,2218.7228703704,0,8,0,5,29,0,0,29 +p5-latex-table,-0.7020862971,0.7997073577,-0.9848467916,https://salsa.debian.org/perl-team/modules/packages/liblatex-table-perl, https://github.com/lima1/p5-latex-table.git,556.2399421296,0,2,0,1,0,0,0,1 +liblbfgs,-0.1459606149,2.0255666612,-0.6194709752,https://salsa.debian.org/science-team/liblbfgs, https://github.com/chokkan/liblbfgs,5534.0610763889,8,10,0,13,32,0,0,32 +p5-lexical-underscore,-0.1208593875,2.7968625617,-0.887693709,https://salsa.debian.org/perl-team/modules/packages/liblexical-underscore-perl, https://github.com/tobyink/p5-lexical-underscore,2933.2191203704,0,1,0,1,4,0,0,4 +liblognorm,0.9012585102,2.3010415095,0.3051975451,https://salsa.debian.org/debian/liblognorm, https://github.com/rsyslog/liblognorm.git,4686.8326273148,7,31,0,23,111,0,0,111 +libmateweather,0.1284830495,0.843121277,-0.0753011191,https://salsa.debian.org/debian-mate-team/libmateweather, https://github.com/mate-desktop/libmateweather.git,4345.3109837963,19,32,0,32,92,0,0,94 +libmaxminddb,0.5075375731,2.425458321,-0.014814615,https://salsa.debian.org/debian/libmaxminddb, https://github.com/maxmind/libmaxminddb,3984.2393634259,21,43,0,49,64,0,0,98 +method-signatures,-1.1413649114,1.1667964397,-1.6439970781,https://salsa.debian.org/perl-team/modules/packages/libmethod-signatures-perl, https://github.com/evalEmpire/method-signatures.git,4206.6153935185,3,21,0,18,41,0,1,42 +miglayout,0.0140581375,1.0961315638,-0.2200314501,https://salsa.debian.org/java-team/libmiglayout-java, https://github.com/mikaelgrev/miglayout,3114.6859375,4,24,0,17,57,0,0,59 +libminc,-0.2431199399,0.9558742118,-0.5877175902,https://salsa.debian.org/med-team/libminc, https://github.com/BIC-MNI/libminc.git,5746.5411342593,3,34,0,18,29,0,0,33 +libmodbus,0.4081348938,2.0101967387,-0.0931762571,https://salsa.debian.org/debian/libmodbus, https://github.com/stephane/libmodbus.git,5746.5321180556,58,15,0,55,615,0,25,649 +moosex-compiletime-traits,-1.5653963424,0.9933122892,-2.1997931366,https://salsa.debian.org/perl-team/modules/packages/libmoosex-compiletime-traits-perl, https://github.com/nperez/moosex-compiletime-traits.git,0.0730787037,0,1,0,0,0,0,0,0 +MooseX-MultiInitArg,-1.070754038,1.0835902153,-1.5042988332,https://salsa.debian.org/perl-team/modules/packages/libmoosex-multiinitarg-perl, https://github.com/frodwith/MooseX-MultiInitArg.git,0.0628703704,0,1,0,1,0,0,0,1 +p5-moosex-mungehas,-1.7054687669,0.6551084355,-2.1489172119,https://salsa.debian.org/perl-team/modules/packages/libmoosex-mungehas-perl, https://github.com/tobyink/p5-moosex-mungehas,2044.5397800926,1,6,0,4,6,0,0,6 +MooseX-Runnable,-1.5770222755,1.133906618,-2.3498416952,https://salsa.debian.org/perl-team/modules/packages/libmoosex-runnable-perl, https://github.com/moose/MooseX-Runnable,3541.9794097222,1,4,0,4,4,0,0,6 +p5-moosex-xsaccessor,-1.7969930844,0.6221995894,-2.237446435,https://salsa.debian.org/perl-team/modules/packages/libmoosex-xsaccessor-perl, https://github.com/tobyink/p5-moosex-xsaccessor,3461.6608333333,0,1,0,1,1,0,0,2 +p5-moox-cmd,-1.7714724432,0.7389635101,-2.3287224021,https://salsa.debian.org/perl-team/modules/packages/libmoox-cmd-perl, https://github.com/Getty/p5-moox-cmd,2141.9085532407,4,4,0,7,9,0,0,11 +p5-moox-struct,1.100399874,4.7268638235,0.0231138942,https://salsa.debian.org/perl-team/modules/packages/libmoox-struct-perl, https://github.com/tobyink/p5-moox-struct,3679.9237037037,1,2,0,2,4,0,0,4 +MooX-Types-MooseLike,0.2188487287,2.4276236186,-0.2341829878,https://salsa.debian.org/perl-team/modules/packages/libmoox-types-mooselike-perl, https://github.com/mateu/MooX-Types-MooseLike.git,1382.0588888889,0,16,0,12,20,0,0,21 +p5-MouseX-NativeTraits,0.451797092,3.5585079183,-0.2632252957,https://salsa.debian.org/perl-team/modules/packages/libmousex-nativetraits-perl, https://github.com/gfx/p5-MouseX-NativeTraits.git,1010.1283101852,1,4,0,2,2,0,0,4 +p5-mousex-types,-0.9002059228,2.4281097906,-1.6194395424,https://salsa.debian.org/perl-team/modules/packages/libmousex-types-perl, https://github.com/yappo/p5-mousex-types.git,984.7711226852,0,8,0,2,5,0,0,7 +libmpdclient,0.2085560362,1.356457434,-0.1176167234,https://salsa.debian.org/mpd-team/libmpdclient, https://github.com/MusicPlayerDaemon/libmpdclient,5726.394375,18,26,0,31,41,0,0,60 +libofx,0.2034150256,0.6532722257,-0.0343613081,https://salsa.debian.org/debian/libofx, https://github.com/libofx/libofx,5174.00625,8,16,0,16,48,0,0,49 +OpenHMD,0.1127945014,1.854847445,-0.28253551,https://salsa.debian.org/debian/libopenhmd, https://github.com/OpenHMD/OpenHMD,3515.7873958333,18,41,1,36,258,0,18,277 +Pandoc-Elements,-1.2178305762,1.3066890827,-1.790496828,https://salsa.debian.org/perl-team/modules/packages/libpandoc-elements-perl, https://github.com/nichtich/Pandoc-Elements.git,2600.5557175926,2,3,0,3,9,0,2,12 +Pandoc-Wrapper,-1.1913578813,0.8972995069,-1.7262399697,https://salsa.debian.org/perl-team/modules/packages/libpandoc-wrapper-perl, https://github.com/nichtich/Pandoc-Wrapper.git,1879.2412037037,2,4,0,5,16,0,0,17 +params-callbackrequest,-1.3155087057,0.9970633758,-1.7603650909,https://salsa.debian.org/perl-team/modules/packages/libparams-callbackrequest-perl, https://github.com/theory/params-callbackrequest.git,1199.2313657407,0,2,0,1,0,0,0,1 +Params-Util,0.5669557248,2.7095409025,0.0183304165,https://salsa.debian.org/perl-team/modules/packages/libparams-util-perl, https://github.com/perl5-utils/Params-Util,4635.8917939815,2,6,0,2,5,0,0,5 +parse-cpan-packages,-1.3162623238,0.055729798,-1.5930972954,https://salsa.debian.org/perl-team/modules/packages/libparse-cpan-packages-perl, https://github.com/wchristian/parse-cpan-packages,2213.1126273148,1,3,0,4,6,0,0,8 +Parse-Method-Signatures,-0.3098675421,2.1520892101,-0.7857930491,https://salsa.debian.org/perl-team/modules/packages/libparse-method-signatures-perl, https://github.com/ashb/Parse-Method-Signatures.git,3028.8479166667,2,10,0,8,5,0,0,10 +perl-Parse-Netstat,-1.2901506305,0.9707747961,-1.7179336241,https://salsa.debian.org/perl-team/modules/packages/libparse-netstat-perl, https://github.com/perlancar/perl-Parse-Netstat.git,4083.673275463,0,11,0,2,0,0,0,2 +Parse-RecDescent,-0.0286467306,0.2229895206,-0.1007582655,https://salsa.debian.org/perl-team/modules/packages/libparse-recdescent-perl, https://github.com/jtbraun/Parse-RecDescent.git,2082.3553240741,1,5,0,2,7,0,0,7 +perl-pdf-report,-1.1407475711,-0.7317783117,-1.2346814292,https://salsa.debian.org/perl-team/modules/packages/libpdf-report-perl, https://github.com/hashbangperl/perl-pdf-report.git,159.7184490741,0,1,0,1,2,0,0,2 +PDL-IO-Matlab,-1.8122896746,0.3558570995,-2.2370761422,https://salsa.debian.org/perl-team/modules/packages/libpdl-io-matlab-perl, https://github.com/jlapeyre/PDL-IO-Matlab.git,3358.4244907408,1,2,0,2,4,0,0,4 +perl-Perinci-Sub-Normalize,-2.9327731106,-0.9162267093,-3.3201523401,https://salsa.debian.org/perl-team/modules/packages/libperinci-sub-normalize-perl, https://github.com/perlancar/perl-Perinci-Sub-Normalize.git,3147.5333564815,0,11,0,2,0,0,0,2 +p5-perlx-assert,-1.0193446605,1.5425032533,-1.8362395319,https://salsa.debian.org/perl-team/modules/packages/libperlx-assert-perl, https://github.com/tobyink/p5-perlx-assert,1111.6440162037,0,1,0,1,1,0,0,1 +p5-perlx-define,-2.1678337344,0.0459215725,-2.6131874891,https://salsa.debian.org/perl-team/modules/packages/libperlx-define-perl, https://github.com/tobyink/p5-perlx-define,0.0109259259,0,1,0,1,1,0,0,1 +libplist,0.2890151668,0.7751330361,0.068106781,https://salsa.debian.org/imobiledevice-team/libplist, https://github.com/libimobiledevice/libplist.git,5614.0678125,41,20,0,42,98,0,0,127 +libpng,0.1677990695,0.4257948453,0.0473446327,https://salsa.debian.org/debian/libpng1.6, https://github.com/glennrp/libpng,5354.1097106482,66,26,0,71,29,0,1,92 +quazip,0.2146838323,0.9284953049,-0.0650262981,https://salsa.debian.org/debian/libquazip, https://github.com/stachenov/quazip.git,5295.4944097222,19,25,0,36,147,0,0,150 +rabbitmq-c,0.5937450624,2.3238703606,-0.0094513193,https://salsa.debian.org/debian/librabbitmq, https://github.com/alanxz/rabbitmq-c.git,5294.5360185185,63,49,0,77,513,0,0,520 +librarian-puppet,-1.4485786469,-0.1256063685,-1.863254572,https://salsa.debian.org/ruby-team/librarian-puppet, https://github.com/voxpupuli/librarian-puppet.git,4114.1364930556,12,65,0,51,102,0,0,135 +p5-rdf-trinex-functions,-0.3154319143,2.3378879966,-0.9704018341,https://salsa.debian.org/perl-team/modules/packages/librdf-trinex-functions-perl, https://github.com/tobyink/p5-rdf-trinex-functions,833.4788657407,0,1,0,1,0,0,0,1 +p5-rdf-vcard,-1.1506651259,1.2441236911,-1.5912534228,https://salsa.debian.org/perl-team/modules/packages/librdf-vcard-perl, https://github.com/tobyink/p5-rdf-vcard,1350.944537037,0,1,0,1,3,0,0,3 +re-engine-RE2,0.0664274847,1.5519335001,-0.198667675,https://salsa.debian.org/perl-team/modules/packages/libre-engine-re2-perl, https://github.com/dgl/re-engine-RE2.git,4711.6157638889,4,2,0,5,11,0,0,11 +Regexp-Assemble,0.1956519681,1.1975556345,-0.0657051088,https://salsa.debian.org/perl-team/modules/packages/libregexp-assemble-perl, https://github.com/ronsavage/Regexp-Assemble.git,3022.0175347222,1,7,0,6,10,0,0,10 +Regexp--Common,0.425402964,2.6846898207,-0.0434398169,https://salsa.debian.org/perl-team/modules/packages/libregexp-common-perl, https://github.com/Abigail/Regexp--Common.git,2712.1816087963,4,1,0,3,10,0,0,12 +libregf,0.4815110403,3.4273810655,-0.3192521911,https://salsa.debian.org/pkg-security-team/libregf, https://github.com/libyal/libregf,3351.514375,0,1,0,1,10,0,2,12 +librelp,0.3314612484,2.0471916806,-0.1848777948,https://salsa.debian.org/debian/librelp, https://github.com/rsyslog/librelp,5591.5436921296,9,32,1,25,70,0,0,74 +libreswan,-0.4685289799,0.1790588169,-0.7335988012,https://salsa.debian.org/debian/libreswan, https://github.com/libreswan/libreswan.git,5780.1473263889,145,62,0,96,291,0,0,336 +rose,-0.5901790776,0.7613087197,-0.8838877593,https://salsa.debian.org/perl-team/modules/packages/librose-db-object-perl, https://github.com/siracusa/rose.git,5666.5254166667,1,13,0,5,15,0,1,16 +librsync,1.0536449912,2.2531278593,0.4172888316,https://salsa.debian.org/wrar/librsync, https://github.com/librsync/librsync,3224.9778472222,6,27,0,28,97,0,0,99 +libsamplerate,1.1293768908,2.270076752,0.5189548422,https://salsa.debian.org/multimedia-team/libsamplerate, https://github.com/libsndfile/libsamplerate,5747.2226851852,38,5,1,34,55,0,0,67 +libsass-python,-0.2696522517,0.8271709552,-0.6027229138,https://salsa.debian.org/debian/libsass-python, https://github.com/dahlia/libsass-python.git,4268.9750925926,7,93,0,77,129,0,0,180 +libseccomp,0.1381369347,0.416274215,0.0228352343,https://salsa.debian.org/debian/libseccomp, https://github.com/seccomp/libseccomp,4323.2139467593,71,4,2,57,206,0,1,215 +libserial,-1.1010178283,1.6867209629,-1.6981926712,https://salsa.debian.org/debian/libserial, https://github.com/crayzeewulf/libserial.git,5587.6811226852,3,17,0,12,68,0,2,71 +libsigcplusplus,1.039682316,2.0456143837,0.5117249183,https://salsa.debian.org/gnome-team/libsigcplusplus, https://github.com/libsigcplusplus/libsigcplusplus.git,5770.9372800926,22,19,0,30,50,0,0,65 +smali,0.051369828,1.8568435409,-0.3306485602,https://salsa.debian.org/android-tools-team/libsmali-java, https://github.com/JesusFreke/smali,4709.8444212963,28,24,0,34,365,0,10,381 +libsoundio,0.7102350676,3.6650448533,-0.2050801471,https://salsa.debian.org/debian-hamradio-team/libsoundio, https://github.com/andrewrk/libsoundio.git,3080.119837963,16,23,0,26,120,0,4,127 +libspiro,0.131579132,1.3992780483,-0.1906866674,https://salsa.debian.org/fonts-team/libspiro, https://github.com/fontforge/libspiro.git,4925.1799537037,1,10,0,7,21,0,0,21 +spreadsheet-parseexcel,0.0390044504,0.8094712372,-0.1827268471,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-parseexcel-perl, https://github.com/runrig/spreadsheet-parseexcel.git,1902.0376851852,1,6,0,6,33,0,0,36 +spreadsheet-writeexcel,-0.0847103732,0.3100125622,-0.1871342632,https://salsa.debian.org/perl-team/modules/packages/libspreadsheet-writeexcel-perl, https://github.com/jmcnamara/spreadsheet-writeexcel,5025.7453819445,1,5,0,5,0,0,1,6 +libssh2,0.4762440748,1.2465942901,0.1442247779,https://salsa.debian.org/debian/libssh2, https://github.com/libssh2/libssh2,5758.7769328704,166,33,1,147,60,0,1,189 +libStatGen,-0.975335451,0.4820429389,-1.3209080132,https://salsa.debian.org/med-team/libstatgen, https://github.com/statgen/libStatGen,3791.9891319445,4,17,0,10,34,0,0,36 +statistics--basic,-0.339509548,1.3960758717,-0.6303620815,https://salsa.debian.org/perl-team/modules/packages/libstatistics-basic-perl, https://github.com/jettero/statistics--basic,2331.8967939815,1,4,0,2,4,0,0,5 +stb,0.0260953725,0.614834907,-0.1332118971,https://salsa.debian.org/yangfl-guest/stb, https://github.com/nothings/stb,3489.7656944445,45,185,0,183,533,0,0,592 +p5-String-Diff,-1.3455951871,1.0906833724,-1.8998963909,https://salsa.debian.org/perl-team/modules/packages/libstring-diff-perl, https://github.com/yappo/p5-String-Diff.git,2495.2807060185,0,3,0,2,16,0,0,16 +string-mkpasswd,-0.4901797022,1.4058339509,-0.8573438246,https://salsa.debian.org/perl-team/modules/packages/libstring-mkpasswd-perl, https://github.com/sirhc/string-mkpasswd.git,1997.6768055556,0,4,0,2,7,0,0,7 +Switch,1.122027291,3.2876087875,0.2909942207,https://salsa.debian.org/perl-team/modules/packages/libswitch-perl, https://github.com/chorny/Switch.git,4065.2442592593,3,4,0,4,3,0,0,6 +Sys-Filesystem,-1.1120417075,0.3703683235,-1.5493480129,https://salsa.debian.org/perl-team/modules/packages/libsys-filesystem-perl, https://github.com/rehsack/Sys-Filesystem,4021.0829050926,2,3,0,2,3,0,0,3 +CPAN-Sys-Info-Base,-1.1657354635,0.2469375973,-1.4547896136,https://salsa.debian.org/perl-team/modules/packages/libsys-info-base-perl, https://github.com/burak/CPAN-Sys-Info-Base.git,4472.8146643519,0,2,0,1,2,0,0,2 +tabixpp,-0.5609418279,1.5681864899,-0.9903141087,https://salsa.debian.org/med-team/libtabixpp, https://github.com/ekg/tabixpp.git,4263.7660069445,1,12,0,9,27,0,0,27 +libteam,0.3146115396,1.3119743537,0.0101461881,https://salsa.debian.org/debian/libteam, https://github.com/jpirko/libteam,4358.8268634259,40,5,0,31,78,0,3,102 +TermReadKey,0.6441757313,1.6725134495,0.1757431378,https://salsa.debian.org/perl-team/modules/packages/libterm-readkey-perl, https://github.com/jonathanstowe/TermReadKey.git,4734.9570717593,8,17,0,18,40,0,0,42 +Term-Table,-0.9505327372,1.4037764096,-1.390637121,https://salsa.debian.org/perl-team/modules/packages/libterm-table-perl, https://github.com/exodist/Term-Table.git,2498.9135185185,1,5,0,5,16,0,0,16 +Test-Harness,-1.5063742807,-0.2541479391,-1.8715013961,https://salsa.debian.org/perl-team/modules/packages/libtest-harness-perl, https://github.com/Perl-Toolchain-Gang/Test-Harness.git,5734.1103356482,27,47,0,51,97,0,2,113 +URI,0.1589529919,0.4832194601,0.0298109637,https://salsa.debian.org/perl-team/modules/packages/liburi-perl, https://github.com/libwww-perl/URI.git,5620.9042939815,27,14,0,37,89,0,1,98 +libusbmuxd,0.7289206284,2.7086807014,0.1072945241,https://salsa.debian.org/imobiledevice-team/libusbmuxd, https://github.com/libimobiledevice/libusbmuxd.git,3636.013275463,9,9,0,14,171,0,0,173 +libvslvm,0.4972132182,3.5752748687,-0.3065187033,https://salsa.debian.org/pkg-security-team/libvslvm, https://github.com/libyal/libvslvm,3338.937025463,0,1,0,1,10,0,2,12 +p5-web-id,-1.7090564746,0.8941936847,-2.3119612886,https://salsa.debian.org/perl-team/modules/packages/libweb-id-perl, https://github.com/tobyink/p5-web-id,743.3495023148,0,1,0,1,1,0,0,1 +libwfut,-0.3722932827,1.182465359,-1.0373316516,https://salsa.debian.org/games-team/libwfut, https://github.com/worldforge/libwfut,5568.6978240741,0,9,0,6,3,0,0,6 +libwmf,1.6375319104,2.6900330531,0.986051197,https://salsa.debian.org/yangfl-guest/libwmf, https://github.com/caolanm/libwmf,1783.8275231482,5,6,0,8,12,0,0,14 +perl-wfa,-1.3338913453,0.3424607166,-1.6281493484,https://salsa.debian.org/perl-team/modules/packages/libwww-facebook-api-perl, https://github.com/unobe/perl-wfa.git,3078.4910185185,2,7,0,4,7,0,0,8 +p5-www-finger,-1.969235679,0.3956899207,-2.5687445665,https://salsa.debian.org/perl-team/modules/packages/libwww-finger-perl, https://github.com/tobyink/p5-www-finger,1316.1418171296,0,1,0,1,0,0,0,1 +www-google-calculator-perl,-1.995767031,-0.963482599,-2.1565335627,https://salsa.debian.org/perl-team/modules/packages/libwww-google-calculator-perl, https://github.com/typester/www-google-calculator-perl.git,8.9802893519,0,2,0,1,1,0,0,2 +libx86emu,0.2882621713,2.1510294765,-0.1187700994,https://salsa.debian.org/debian/libx86emu, https://github.com/wfeldt/libx86emu,5028.2515972222,1,8,0,5,16,0,1,17 +libxcrypt,0.6294336301,1.8917972899,0.1100717419,https://salsa.debian.org/md/libxcrypt, https://github.com/besser82/libxcrypt.git,2976.0054050926,9,14,0,21,95,0,0,97 +libxmlb,0.6508495345,3.3286264453,-0.0130638591,https://salsa.debian.org/efi-team/libxmlb, https://github.com/hughsie/libxmlb.git,1900.0449074074,20,6,0,18,36,0,0,36 +libxsmm,-0.2346624326,4.5583780245,-1.7957714951,https://salsa.debian.org/science-team/libxsmm, https://github.com/libxsmm/libxsmm,2814.5005324074,23,91,3,47,120,0,3,130 +xstream,0.3400487245,1.4508992999,-0.0600865184,https://salsa.debian.org/java-team/libxstream-java, https://github.com/x-stream/xstream.git,5706.9961921296,29,7,0,35,375,0,0,383 +light,0.5032985546,2.4196884631,-0.3115474994,https://salsa.debian.org/debian/light, https://github.com/haikarainen/light.git,3160.1600115741,4,28,0,25,51,0,0,66 +light-locker,2.0302690876,3.664096529,1.142878255,https://salsa.debian.org/xfce-extras-team/light-locker, https://github.com/the-cavalry/light-locker,4227.1496643519,82,214,2,128,275,0,0,390 +lightdm,2.2443975037,2.9446010571,1.7397776964,https://salsa.debian.org/xfce-extras-team/lightdm, https://github.com/canonical/lightdm.git,4834.5447222222,52,64,0,73,415,0,0,449 +linux-minidisc,-0.9631872604,1.8387133413,-1.6378120208,https://github.com/glaubitz/linux-minidisc,https://github.com/glaubitz/linux-minidisc,4847.712349537,36,17,0,20,3,0,0,23 +linux_logo,3.6168427209,4.8502382947,2.8124057325,https://salsa.debian.org/debian/linuxlogo, https://github.com/deater/linux_logo.git,3761.5540393519,1,11,0,8,26,0,0,26 +LiTL,-1.9126650133,-1.5671586884,-1.990034954,https://salsa.debian.org/debian/litl, https://github.com/trahay/LiTL.git,3099.0093171296,0,7,0,3,1,0,0,3 +lksctp-tools,0.0452198518,0.3695750173,-0.0618537574,https://salsa.debian.org/debian/lksctp-tools, https://github.com/sctp/lksctp-tools,5515.8208912037,27,6,1,22,37,0,1,51 +llgal,-0.3872692626,0.4151216759,-0.6843175914,https://github.com/bgoglin/llgal,https://github.com/bgoglin/llgal,4534.9444212963,2,4,0,1,11,0,0,11 +lltag,0.046755981,1.4904215665,-0.4505269549,https://github.com/bgoglin/lltag,https://github.com/bgoglin/lltag,4379.0269328704,3,3,0,2,9,0,0,9 +lmodern,0.1884866384,0.5510456421,0.0188158223,https://github.com/debian-tex/lmodern,https://github.com/debian-tex/lmodern,5129.2031828704,1,7,0,2,1,0,0,3 +lnav,0.5353667256,1.9342081999,-0.0323395042,https://salsa.debian.org/carnil/lnav, https://github.com/tstack/lnav,5194.1560648148,17,59,0,51,384,0,4,404 +logging-log4cxx,0.4346363558,1.6002502027,-0.0917843487,https://salsa.debian.org/debian/log4cxx, https://github.com/apache/logging-log4cxx.git,3632.7022222222,22,27,0,28,7,0,0,31 +logbook,-0.4896324695,1.3303979826,-1.0513067414,https://salsa.debian.org/debian/logbook, https://github.com/getlogbook/logbook.git,4893.8917824074,11,77,0,65,189,0,0,192 +logging_tree,-1.6414264559,0.7777898237,-2.2813478865,https://salsa.debian.org/debian/python-logging-tree, https://github.com/brandon-rhodes/logging_tree.git,3349.1260532407,5,7,0,10,25,0,0,25 +redis-lua,-0.3995562839,2.3401321656,-1.0679040964,https://salsa.debian.org/lua-team/lua-redis, https://github.com/nrk/redis-lua,2064.0116898148,2,10,0,8,80,0,0,80 +lxctl,1.456465586,5.0051312044,0.180488606,https://salsa.debian.org/debian/lxctl, https://github.com/lxctl/lxctl,2540.4811342593,0,29,1,12,21,0,5,28 +lxde-icon-theme,0.3420036946,2.5520871,-0.0935522829,https://salsa.debian.org/lxde-team/lxde-icon-theme, https://github.com/lxde/lxde-icon-theme,1739.474375,0,4,0,3,0,0,0,3 +lxhotkey,1.1410291912,4.8144910554,0.0876782474,https://salsa.debian.org/lxde-team/lxhotkey, https://github.com/lxde/lxhotkey.git,2759.3632291667,8,4,0,8,27,0,0,32 +lxinput,0.7555106667,3.0338681034,0.062981082,https://salsa.debian.org/lxde-team/lxinput, https://github.com/lxde/lxinput.git,5254.8770717593,78,26,0,55,0,0,0,55 +lxqt-globalkeys,0.2347991986,1.8204555607,-0.1421664419,https://salsa.debian.org/lxqt-team/lxqt-globalkeys, https://github.com/lxqt/lxqt-globalkeys.git,4146.0372916667,56,46,0,78,0,0,0,78 +lxqt-openssh-askpass,0.2639701586,2.0558849821,-0.1403263445,https://salsa.debian.org/lxqt-team/lxqt-openssh-askpass, https://github.com/lxqt/lxqt-openssh-askpass.git,4154.121712963,34,30,0,50,29,0,0,59 +lz4,0.2140600439,0.6954425453,0.0384684269,https://salsa.debian.org/debian/lz4, https://github.com/lz4/lz4,3549.3137037037,30,172,0,147,393,0,5,456 +mako,0.9607195824,2.3152903989,0.3300125847,https://salsa.debian.org/python-team/packages/mako, https://github.com/sqlalchemy/mako,5744.8817476852,23,45,7,53,64,0,6,98 +variant,0.159782488,3.7315023577,-0.6830233266,https://salsa.debian.org/debian-gis-team/mapbox-variant/, https://github.com/mapbox/variant.git,2484.9211689815,4,25,0,18,52,0,1,55 +mapcache,-0.6849497052,1.4775793478,-1.119704947,https://salsa.debian.org/debian-gis-team/mapcache, https://github.com/mapserver/mapcache.git,4429.8413773148,24,38,0,33,160,0,2,163 +mate-common,0.2236781765,1.5441453615,-0.2936941102,https://salsa.debian.org/debian-mate-team/mate-common, https://github.com/mate-desktop/mate-common.git,4289.5348032407,4,19,0,14,26,0,0,28 +mate-control-center,0.442807422,1.1267913622,0.085872745,https://salsa.debian.org/debian-mate-team/mate-control-center, https://github.com/mate-desktop/mate-control-center.git,4382.2688194445,31,51,0,48,319,0,0,321 +mate-desktop,1.4429678874,2.800379976,0.7048624548,https://salsa.debian.org/debian-mate-team/mate-desktop, https://github.com/mate-desktop/mate-desktop.git,4339.3214814815,30,45,0,44,57,0,0,90 +dock-applet,0.3881982435,2.2401761238,-0.1688322569,https://salsa.debian.org/debian-mate-team/mate-dock-applet, https://github.com/robint99/dock-applet.git,2711.5333680556,9,12,0,13,168,0,0,169 +mate-icon-theme,0.4087889597,2.4988457726,-0.055212655,https://salsa.debian.org/debian-mate-team/mate-icon-theme, https://github.com/mate-desktop/mate-icon-theme.git,3997.7458217593,7,25,0,19,36,0,0,38 +mate-icon-theme-faenza,0.5142431191,2.3829279771,-0.0287099151,https://salsa.debian.org/debian-mate-team/mate-icon-theme-faenza, https://github.com/mate-desktop/mate-icon-theme-faenza.git,2081.9641898148,2,15,0,10,19,0,0,20 +mate-netbook,-0.1990739498,0.92545311,-0.5547977915,https://salsa.debian.org/debian-mate-team/mate-netbook, https://github.com/mate-desktop/mate-netbook.git,4033.4643981482,4,20,0,14,35,0,0,37 +mate-notification-daemon,0.294431484,1.2443680719,-0.0375475363,https://salsa.debian.org/debian-mate-team/mate-notification-daemon, https://github.com/mate-desktop/mate-notification-daemon.git,4376.8075462963,19,34,0,34,136,0,0,140 +mate-polkit,0.0844204987,0.7139928108,-0.078912062,https://salsa.debian.org/debian-mate-team/mate-polkit, https://github.com/mate-desktop/mate-polkit.git,4293.1045717593,9,23,0,18,42,0,0,47 +mate-settings-daemon,0.1815646983,0.7203109893,-0.0328315734,https://salsa.debian.org/debian-mate-team/mate-settings-daemon, https://github.com/mate-desktop/mate-settings-daemon.git,4342.2338425926,28,45,0,46,189,0,0,200 +selinux,-1.9181882041,-0.1416609992,-2.339014847,https://salsa.debian.org/selinux-team/mcstrans, https://github.com/SELinuxProject/selinux.git,5593.8026157407,179,30,0,124,83,0,12,182 +mdbtools,0.6161871039,1.1807658317,0.2302864182,https://salsa.debian.org/debian/mdbtools, https://github.com/mdbtools/mdbtools,4863.4037152778,30,60,0,60,195,0,0,220 +mdk4,-0.0590321422,2.244566977,-0.6808566672,https://salsa.debian.org/pkg-security-team/mdk4, https://github.com/aircrack-ng/mdk4,1545.4045949074,4,9,0,11,96,0,0,97 +metapixel,1.7970234478,4.4178259899,0.5633223634,https://salsa.debian.org/debian/metapixel, https://github.com/schani/metapixel.git,3264.7618171296,2,6,0,4,25,0,0,25 +metastore,-0.4597261727,0.6466323956,-0.8107792072,https://salsa.debian.org/rfrancoise/metastore, https://github.com/przemoc/metastore,5431.9336689815,7,2,1,8,30,0,2,33 +meteo-qt,0.8698899777,3.6161721459,0.0040074202,https://salsa.debian.org/lxqt-team/meteo-qt, https://github.com/dglent/meteo-qt.git,3275.9305092593,3,17,0,16,53,0,0,53 +Mew,-0.487761537,-0.3514010061,-0.554001036,https://salsa.debian.org/debian/mew, https://github.com/kazu-yamamoto/Mew,5007.0253703704,7,24,0,25,45,0,0,46 +Mew,-0.8388830323,-0.1260459264,-1.0270915103,https://salsa.debian.org/debian/mew-beta, https://github.com/kazu-yamamoto/Mew,5007.0253703704,7,24,0,25,45,0,0,46 +mg,0.8626842283,2.0640170714,0.2148718944,https://salsa.debian.org/debian/mg, https://github.com/hboetes/mg.git,2838.9768518519,3,9,0,3,25,0,0,25 +mhc,-0.8884000458,-0.3595274014,-1.157500378,https://salsa.debian.org/debian/mhc, https://github.com/yoshinari-nomura/mhc,4808.1619907407,0,12,0,8,12,0,0,12 +mhwaveedit,-0.0845847669,0.9517864727,-0.4200690155,https://salsa.debian.org/multimedia-team/mhwaveedit, https://github.com/magnush/mhwaveedit,4171.9324305556,3,7,0,6,15,0,0,16 +micro-httpd,-0.3300074474,1.1160734611,-0.9308283084,https://github.com/sudipm-mukherjee/micro-httpd.git,https://github.com/sudipm-mukherjee/micro-httpd.git,4120.3943287037,0,4,0,1,1,0,0,2 +MilkyTracker,0.2927952476,1.359126964,-0.1661437741,https://salsa.debian.org/multimedia-team/milkytracker, https://github.com/milkytracker/MilkyTracker,5764.1453472222,35,32,1,44,68,0,5,92 +miller,-0.6485962999,1.145337313,-1.0224618063,https://salsa.debian.org/debian/miller, https://github.com/johnkerl/miller.git,3146.11875,32,28,0,52,128,0,1,155 +mimetic,-1.0569767141,-0.8952643698,-1.0963723389,https://git.toastfreeware.priv.at/debian/mimetic.git, https://github.com/tat/mimetic.git,2612.777962963,3,10,0,8,26,0,0,26 +Minder,-0.4197168251,2.1005562235,-0.9632919414,https://salsa.debian.org/yangfl-guest/Minder, https://github.com/phase1geo/Minder.git,2148.0431712963,20,27,0,36,96,0,1,112 +minimodem,-0.3250415773,2.1360118932,-0.8562976169,https://github.com/kamalmostafa/minimodem,https://github.com/kamalmostafa/minimodem,3742.1687037037,10,6,0,12,71,0,0,76 +mininet,-0.586251107,1.2693023429,-1.2259353746,https://salsa.debian.org/debian/mininet, https://github.com/mininet/mininet,5029.9877777778,22,77,1,61,58,0,97,202 +mootools-core,0.7471893128,2.8560605859,0.0458469775,https://salsa.debian.org/js-team/mootools, https://github.com/mootools/mootools-core.git,2900.1052662037,27,88,0,63,54,0,136,231 +mopidy-internetarchive,-0.2187337791,2.3088703355,-0.8028100126,https://salsa.debian.org/mopidy-team/mopidy-internetarchive, https://github.com/tkem/mopidy-internetarchive,2991.6193171296,0,3,1,2,13,0,0,13 +mopidy-mpris,-0.2110446145,2.461940178,-1.1114345149,https://salsa.debian.org/mopidy-team/mopidy-mpris, https://github.com/mopidy/mopidy-mpris.git,3543.9779050926,2,7,0,6,34,0,0,35 +mopidy-podcast,-0.2941570726,1.7690171184,-0.7388669271,https://salsa.debian.org/mopidy-team/mopidy-podcast, https://github.com/tkem/mopidy-podcast.git,2983.3689236111,2,1,0,3,30,0,0,30 +mopidy-podcast-itunes,-0.2467767179,2.4591937682,-0.834541946,https://salsa.debian.org/mopidy-team/mopidy-podcast-itunes, https://github.com/tkem/mopidy-podcast-itunes,2949.6816087963,0,2,0,1,9,0,0,9 +mopidy-scrobbler,-0.2517299962,2.1335156702,-1.0325443783,https://salsa.debian.org/mopidy-team/mopidy-scrobbler, https://github.com/mopidy/mopidy-scrobbler.git,3546.3970023148,0,2,0,1,49,0,0,49 +mopidy-somafm,-0.2746325835,2.1609819918,-0.859324666,https://salsa.debian.org/mopidy-team/mopidy-somafm, https://github.com/AlexandrePTJ/mopidy-somafm,2714.300787037,0,6,2,4,27,0,0,27 +mopidy-soundcloud,-0.2546570011,2.1558962885,-0.9457836601,https://salsa.debian.org/mopidy-team/mopidy-soundcloud, https://github.com/mopidy/mopidy-soundcloud,3733.2794212963,4,17,2,16,160,0,0,161 +mopidy-tunein,-0.3236002892,2.6224531521,-1.0905202326,https://salsa.debian.org/mopidy-team/mopidy-tunein, https://github.com/kingosticks/mopidy-tunein,2521.2538657407,2,14,1,8,41,0,0,41 +mp3fs,0.9163678404,4.5727174058,-0.2047299256,https://salsa.debian.org/multimedia-team/mp3fs, https://github.com/khenriks/mp3fs.git,5444.4987847222,4,13,0,8,77,0,1,80 +mpDris2,-0.9856715769,-0.7754968336,-1.0277106449,https://salsa.debian.org/debian/mpdris2, https://github.com/eonpatapon/mpDris2.git,4512.1038657407,12,20,0,28,118,0,0,119 +mpv,0.5363042562,0.8628802276,0.3101358986,https://salsa.debian.org/multimedia-team/mpv, https://github.com/mpv-player/mpv,5787.7142361111,512,145,0,277,26,0,383,675 +mrboom-libretro,-0.241313948,1.6810544874,-0.7335121433,https://salsa.debian.org/games-team/mrboom, https://github.com/Javanaise/mrboom-libretro,2489.0620833333,22,22,0,31,43,0,0,54 +msktutil,-0.1662803901,1.2423651932,-0.5841886377,https://salsa.debian.org/debian/msktutil, https://github.com/msktutil/msktutil,4695.5949305556,8,21,2,11,34,0,1,38 +mtr,2.0179049728,2.8158196867,1.452557991,https://salsa.debian.org/debian/mtr, https://github.com/traviscross/mtr,3917.0060648148,16,90,0,75,432,0,0,433 +mupen64plus-ui-console,0.7264116732,3.6995007165,-0.1670734867,https://salsa.debian.org/games-team/mupen64plus-ui-console, https://github.com/mupen64plus/mupen64plus-ui-console.git,4990.6788773148,5,31,0,19,34,0,0,39 +mupen64plus-video-glide64mk2,0.1293389165,2.4637475631,-0.3196538821,https://salsa.debian.org/games-team/mupen64plus-video-glide64mk2, https://github.com/mupen64plus/mupen64plus-video-glide64mk2.git,4126.6609027778,7,35,0,24,59,0,0,64 +mupen64plus-video-rice,0.1071841352,2.1766235067,-0.3149398833,https://salsa.debian.org/games-team/mupen64plus-video-rice, https://github.com/mupen64plus/mupen64plus-video-rice.git,4977.9831481482,5,34,0,21,49,0,0,56 +muse,0.3513323565,0.8924420388,0.0076925385,https://salsa.debian.org/multimedia-team/muse, https://github.com/muse-sequencer/muse.git,5773.0492476852,5,55,0,31,49,0,5,76 +python-musicbrainz-ngs,0.5076678121,2.1969185222,-0.005881406,https://salsa.debian.org/python-team/packages/musicbrainzngs, https://github.com/alastair/python-musicbrainz-ngs,3992.7430092593,1,28,3,24,83,0,3,88 +mypaint,0.3480815429,1.0170198092,-0.0287146792,https://salsa.debian.org/python-team/packages/mypaint, https://github.com/mypaint/mypaint,5559.7677199074,333,53,2,235,44,0,30,291 +mysecureshell,-0.4842069771,1.8606131049,-0.9637054818,https://github.com/mysecureshell/mysecureshell,https://github.com/mysecureshell/mysecureshell,2575.5671990741,3,14,1,9,102,0,0,104 +MySQLTuner-perl,1.4500845033,4.4623073775,0.3464758377,https://salsa.debian.org/debian/mysqltuner, https://github.com/major/MySQLTuner-perl,4651.9533217593,46,119,0,115,371,0,0,407 +n2n,0.1542450391,2.8427672865,-0.655319557,https://github.com/leggewie-DM/n2n,https://github.com/leggewie-DM/n2n,3071.9561111111,2,3,0,3,2,0,0,5 +nabi,-1.1181697355,0.3411872046,-1.5057188398,https://salsa.debian.org/l10n-korean-team/nabi, https://github.com/libhangul/nabi.git,5305.1766782407,0,3,0,1,5,0,1,6 +nadoka,-4.0224516234,-0.7310921121,-5.1260106864,https://salsa.debian.org/ruby-team/nadoka, https://github.com/nadoka/nadoka,4550.0664351852,0,9,0,8,6,0,4,13 +nagvis,0.2016649842,1.2173315085,-0.3600392025,https://salsa.debian.org/nagios-team/nagvis, https://github.com/NagVis/nagvis,5779.6260648148,42,38,0,37,263,0,0,268 +ndppd,-0.5295407302,1.6070155277,-1.0766996059,https://salsa.debian.org/debian/ndppd, https://github.com/DanielAdolfsson/ndppd,4471.5943171296,7,15,1,11,75,0,0,77 +netcdf-cxx4,-0.359140508,1.3957561161,-0.7913195086,https://salsa.debian.org/debian-gis-team/netcdf-cxx, https://github.com/Unidata/netcdf-cxx4.git,4438.9411805556,3,28,0,22,99,0,0,100 +netcdf-fortran,-0.1482258041,0.751301518,-0.2962965499,https://salsa.debian.org/debian/netcdf-fortran, https://github.com/Unidata/netcdf-fortran.git,4488.0650115741,7,39,0,30,150,0,0,153 +netdiscover,0.2541652433,1.9765761262,-0.2111939526,https://salsa.debian.org/debian/netdiscover, https://github.com/netdiscover-scanner/netdiscover,5323.4166087963,1,5,0,3,24,0,0,24 +netplan,0.0413337826,1.5404784729,-0.3486539272,https://salsa.debian.org/debian/netplan.io, https://github.com/canonical/netplan/commits/master,5185.326875,55,11,0,0,0,0,0,0 +debian,0.1730522588,2.4986742151,-0.2783909483,https://github.com/nm-l2tp/debian.git,https://github.com/nm-l2tp/debian.git,2347.114224537,1,1,0,2,0,0,0,2 +NetworkManager-ssh,-0.0086320792,1.1414433729,-0.2761809158,https://salsa.debian.org/lhw-guest/network-manager-ssh, https://github.com/danfruehauf/NetworkManager-ssh,3197.1808449074,4,7,0,12,101,0,1,103 +nixnote2,-0.3647270032,0.4002965512,-0.4904591503,https://salsa.debian.org/debian/nixnote2, https://github.com/robert7/nixnote2,4104.4428587963,11,48,0,37,124,0,4,152 +nmrpflash,-3.9117966743,-1.8322545897,-4.343551647,https://salsa.debian.org/debian/nmrpflash, https://github.com/jclehner/nmrpflash,2833.1074768519,10,8,0,14,32,0,0,45 +babel-plugin-add-module-exports,-1.4169325387,1.5441837408,-2.1700991878,https://salsa.debian.org/js-team/node-babel-plugin-add-module-exports, https://github.com/59naga/babel-plugin-add-module-exports,2579.5546180556,2,7,0,4,98,0,0,98 +base64url,-1.8861246737,0.890181623,-2.5677734916,https://salsa.debian.org/js-team/node-base64url, https://github.com/brianloveswords/base64url.git,3614.4876388889,6,11,0,12,83,0,0,83 +node-bindings,-0.3124286212,2.605717497,-1.0137570127,https://salsa.debian.org/js-team/node-bindings, https://github.com/TooTallNate/node-bindings,2587.1395949074,4,8,0,8,5,0,0,12 +bluebird,0.0584203533,1.0937802889,-0.1343492494,https://salsa.debian.org/js-team/node-bluebird, https://github.com/petkaantonov/bluebird.git,3418.3106597222,121,152,0,212,654,0,64,848 +clean-css,0.1880139003,2.7123268564,-0.4696783378,https://salsa.debian.org/js-team/node-clean-css, https://github.com/GoalSmashers/clean-css.git,4686.8824537037,63,58,0,89,14,0,9,111 +co,0.4601096377,2.8630730353,-0.1003269721,https://salsa.debian.org/js-team/node-co, https://github.com/tj/co,1229.0172106482,17,46,0,49,211,0,49,264 +code,-4.7551646559,-1.4632937686,-5.4545700188,https://salsa.debian.org/js-team/node-code, https://github.com/hapijs/code.git,3316.1678125,19,23,0,28,93,0,0,93 +coffeeify,-1.4017605239,1.4637076784,-2.2159952345,https://salsa.debian.org/js-team/node-coffeeify, https://github.com/jnordberg/coffeeify.git,1705.9137731482,1,13,0,10,64,0,0,69 +colormin,-3.5089164725,-0.6840024754,-4.2685005942,https://salsa.debian.org/js-team/node-colormin, https://github.com/ben-eb/colormin,2228.6048148148,0,6,0,2,15,0,0,15 +combine-source-map,-2.1067627582,1.451088997,-3.1431542202,https://salsa.debian.org/js-team/node-combine-source-map, https://github.com/thlorenz/combine-source-map.git,1465.4289583333,4,5,0,8,33,0,0,33 +concat-stream,0.3435827993,2.8106720089,-0.124130821,https://salsa.debian.org/js-team/node-concat-stream, https://github.com/maxogden/concat-stream.git,2331.5214583333,5,21,0,18,3,0,0,20 +constants-browserify,-0.11940227,2.8343540596,-0.9198546616,https://salsa.debian.org/js-team/node-constants-browserify, https://github.com/juliangruber/constants-browserify,3669.6149189815,0,3,0,1,5,0,0,5 +content-disposition,-0.1498091429,2.3260602113,-0.8520258644,https://salsa.debian.org/js-team/node-content-disposition, https://github.com/jshttp/content-disposition.git,2639.7443518519,6,2,0,6,32,0,0,32 +convert-source-map,0.0871772545,2.7765163193,-0.5756792774,https://salsa.debian.org/js-team/node-convert-source-map, https://github.com/thlorenz/convert-source-map,3505.4009953704,16,11,0,22,67,0,0,67 +node-cookie-signature,0.0990081923,2.8247812735,-0.6845514149,https://salsa.debian.org/js-team/node-cookie-signature, https://github.com/visionmedia/node-cookie-signature.git,3831.3145486111,2,13,0,7,47,0,0,48 +core-js,-0.0701104518,1.8860340205,-0.4290715682,https://salsa.debian.org/js-team/node-core-js, https://github.com/zloirock/core-js.git,3801.3871990741,67,73,0,121,289,0,0,376 +d3-dsv,-0.6792934342,2.1613351331,-1.3775271458,https://salsa.debian.org/js-team/node-d3-dsv, https://github.com/d3/d3-dsv,3863.8892013889,14,6,0,17,65,0,0,65 +node-dateformat,-0.01865954,1.6506546912,-0.4323251957,https://salsa.debian.org/js-team/node-dateformat, https://github.com/felixge/node-dateformat,3995.8592476852,8,37,0,33,231,0,3,235 +execa,0.7079961346,3.9551483175,-0.0722137493,https://salsa.debian.org/js-team/node-execa, https://github.com/sindresorhus/execa,2926.6958680556,49,7,0,53,128,0,0,157 +node-expat,-0.4080781453,2.3530029048,-1.5150203534,https://salsa.debian.org/js-team/node-expat, https://github.com/astro/node-expat,4931.3002893519,7,34,0,29,341,0,1,344 +node-formidable,-1.0478352411,1.3329643424,-1.6311123883,https://salsa.debian.org/js-team/node-formidable, https://github.com/felixge/node-formidable.git,4861.6687384259,45,72,0,80,292,0,0,334 +fuzzaldrin-plus,-0.9739589777,1.136573322,-1.4594019089,https://salsa.debian.org/js-team/node-fuzzaldrin-plus, https://github.com/jeancroy/fuzzaldrin-plus,751.1080902778,2,6,0,3,29,0,0,29 +grunt-babel,-2.3567896079,-0.2595823007,-2.786480601,https://salsa.debian.org/js-team/node-grunt-babel, https://github.com/babel/grunt-babel.git,3011.4746296296,8,12,0,13,152,0,0,152 +grunt-cli,1.2110710947,4.4921332971,4.42152270994788e-05,https://salsa.debian.org/js-team/node-grunt-cli, https://github.com/gruntjs/grunt-cli.git,3126.2931944445,8,16,0,20,171,0,0,171 +gulp-babel,-1.6753037226,0.7240298055,-2.2929274971,https://salsa.debian.org/js-team/node-gulp-babel, https://github.com/babel/gulp-babel.git,3018.4431018519,10,21,0,25,301,0,0,304 +gulp-flatten,-2.894365887,-0.8111009229,-3.321955765,https://salsa.debian.org/js-team/node-gulp-flatten, https://github.com/armed/gulp-flatten,3247.6037152778,2,7,0,6,17,0,1,18 +gulp-load-plugins,-1.2725888367,2.2883154102,-2.2151032496,https://salsa.debian.org/js-team/node-gulp-load-plugins, https://github.com/jackfranklin/gulp-load-plugins,3321.8455787037,10,29,0,26,138,0,0,138 +node-gyp,0.0377305117,0.6211458053,-0.1173242042,https://salsa.debian.org/js-team/node-gyp, https://github.com/nodejs/node-gyp.git,4297.5489699074,197,73,0,223,832,0,50,1053 +has-flag,0.3334743676,2.4592111562,-0.1192014058,https://salsa.debian.org/js-team/node-has-flag, https://github.com/sindresorhus/has-flag,2203.7011111111,6,2,0,7,17,0,0,17 +inline-source-map,-1.7253778479,0.3256715997,-2.1428170788,https://salsa.debian.org/js-team/node-inline-source-map, https://github.com/thlorenz/inline-source-map.git,3126.5302314815,5,5,0,9,25,0,0,25 +node-ip,0.5473402205,3.0729874251,-0.1357528421,https://salsa.debian.org/js-team/node-ip, https://github.com/indutny/node-ip,3990.2488194445,6,20,0,17,172,0,0,173 +node-is-arrayish,-0.0113184631,2.4802704151,-0.5878636382,https://salsa.debian.org/js-team/node-is-arrayish, https://github.com/qix-/node-is-arrayish,1162.9688194445,2,9,0,3,10,0,0,10 +is-glob,0.6638373369,3.8445632106,-0.214727985,https://salsa.debian.org/js-team/node-is-glob, https://github.com/jonschlinkert/is-glob,2500.3032986111,3,9,0,5,18,0,0,18 +iscroll,0.3236470898,2.6334834534,-0.1547197624,https://salsa.debian.org/js-team/node-iscroll, https://github.com/cubiq/iscroll,2222.4944791667,9,37,0,11,375,0,5,391 +jison,-2.8705191059,-0.5904861053,-3.3214497471,https://salsa.debian.org/js-team/node-jison, https://github.com/zaach/jison,3961.6974305556,7,59,1,40,368,0,51,421 +jquery-mousewheel,0.2686821158,2.6543019787,-0.1911219866,https://salsa.debian.org/js-team/node-jquery-mousewheel, https://github.com/jquery/jquery-mousewheel,5390.8646296296,6,15,1,14,292,0,0,293 +millstone,-1.4457365806,1.0910699973,-2.0387356121,https://salsa.debian.org/js-team/node-millstone, https://github.com/mapbox/millstone,4176.2971875,3,21,0,13,36,0,0,37 +mqtt-packet,-2.1961592069,0.0425211631,-2.6185433222,https://salsa.debian.org/js-team/node-mqtt-packet, https://github.com/mqttjs/mqtt-packet,3391.8497337963,19,27,0,34,71,0,0,77 +on-finished,0.0613223619,2.8531731142,-0.6913305342,https://salsa.debian.org/js-team/node-on-finished, https://github.com/jshttp/on-finished,3350.0634259259,5,3,0,7,4,0,0,9 +once,-0.1226053888,-0.1171397715,-0.1237821835,https://salsa.debian.org/js-team/node-once, https://github.com/isaacs/once.git,4074.419212963,2,6,0,6,15,0,0,15 +os-browserify,-0.3268262004,2.3252681953,-0.9671784701,https://salsa.debian.org/js-team/node-os-browserify, https://github.com/CoderPuppy/os-browserify,1580.0713425926,1,7,0,3,9,0,0,9 +parse-glob,0.6847833884,3.868282575,-0.2490532696,https://salsa.debian.org/js-team/node-parse-glob, https://github.com/micromatch/parse-glob,1589.2864351852,1,5,0,3,6,0,0,6 +parseurl,0.275713727,3.6232142368,-0.6473483724,https://salsa.debian.org/js-team/node-parseurl, https://github.com/expressjs/parseurl.git,3251.1265972222,2,3,0,5,12,0,0,12 +FlashPolicyFileServer,-0.9515002748,1.7831825682,-1.7365256836,https://salsa.debian.org/js-team/node-policyfile, https://github.com/3rd-Eden/FlashPolicyFileServer,2142.8337037037,0,3,0,3,14,0,0,14 +react-audio-player,-4.8100583491,-2.4298503474,-5.420558223,https://salsa.debian.org/js-team/node-react-audio-player, https://github.com/justinmc/react-audio-player.git,2489.7878125,9,20,0,18,119,0,0,119 +regenerate-unicode-properties,-0.6674866267,0.9618352502,-1.0118784845,https://salsa.debian.org/js-team/node-regenerate-unicode-properties, https://github.com/mathiasbynens/regenerate-unicode-properties,2664.7656597222,3,2,0,4,7,0,0,7 +regjsparser,-0.7798404163,1.2003365063,-1.1962820592,https://salsa.debian.org/js-team/node-regjsparser, https://github.com/jviereck/regjsparser.git,3676.996875,2,16,0,12,27,0,0,27 +node-resolve,0.5575663073,3.2984179044,-0.1407771771,https://salsa.debian.org/js-team/node-resolve, https://github.com/substack/node-resolve.git,4523.8015162037,39,26,0,50,258,0,0,259 +sprintf.js,0.4014290609,3.1578856064,-0.2132993373,https://salsa.debian.org/js-team/node-sprintf-js, https://github.com/alexei/sprintf.js,3813.8363078704,3,28,0,21,190,0,0,191 +static-module,-2.9295084562,0.0141965632,-3.6919322552,https://salsa.debian.org/js-team/node-static-module, https://github.com/substack/static-module.git,3102.503912037,8,14,0,17,66,0,0,66 +node-stringprep,-1.25858701,1.4295408548,-2.2227266177,https://salsa.debian.org/js-team/node-stringprep, https://github.com/node-xmpp/node-stringprep,2104.0097800926,2,22,0,18,115,0,1,118 +tape,-1.3533456222,0.8230887097,-1.8448352117,https://salsa.debian.org/js-team/node-tape, https://github.com/ljharb/tape.git,4022.1372916667,54,62,0,96,488,0,0,500 +node-tar,0.10092401,1.1554569611,-0.1194951399,https://salsa.debian.org/js-team/node-tar, https://github.com/npm/node-tar,4544.3033449074,24,18,1,38,142,0,0,162 +node-temp,-0.8998725735,2.4095798708,-1.9534582368,https://salsa.debian.org/js-team/node-temp, https://github.com/bruce/node-temp,4595.6285416667,2,39,2,31,105,0,0,109 +json-document,-4.9532456218,-2.9019375195,-5.4554167334,https://salsa.debian.org/js-team/node-trust-json-document, https://github.com/anvilresearch/json-document.git,471.8604513889,0,5,0,4,7,0,0,7 +tunnel-agent,1.1792785071,4.9631632678,0.1110924805,https://salsa.debian.org/js-team/node-tunnel-agent, https://github.com/mikeal/tunnel-agent,1464.1568634259,0,12,0,9,131,0,0,132 +type-check,-0.619856367,1.5719870744,-1.0599876067,https://salsa.debian.org/js-team/node-type-check, https://github.com/gkz/type-check.git,3579.125787037,2,5,0,3,20,0,1,21 +ultron,-2.7813197419,-0.4758682807,-3.3070168453,https://salsa.debian.org/js-team/node-ultron, https://github.com/unshiftio/ultron,2972.2796527778,1,7,0,5,13,0,0,13 +node-unicode-data,-2.4986839661,-1.5066066307,-2.7694541364,https://salsa.debian.org/js-team/node-unicode-data, https://github.com/mathiasbynens/node-unicode-data.git,3658.0537962963,6,3,0,7,29,0,0,29 +unicode-property-aliases,-2.1224965726,0.5054136483,-2.7508821504,https://salsa.debian.org/js-team/node-unicode-property-aliases, https://github.com/mathiasbynens/unicode-property-aliases,2644.0663657408,2,1,0,3,4,0,0,4 +unicode-property-aliases-ecmascript,-0.4930241449,2.1362080223,-1.1371319719,https://salsa.debian.org/js-team/node-unicode-property-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-aliases-ecmascript,1978.1429398148,1,2,0,2,3,0,0,3 +unicode-property-value-aliases,-2.108074165,0.5458957808,-2.7511821006,https://salsa.debian.org/js-team/node-unicode-property-value-aliases, https://github.com/mathiasbynens/unicode-property-value-aliases.git,2643.9666898148,2,2,0,3,3,0,0,3 +unicode-property-value-aliases-ecmascript,-2.6459525399,-0.0300807748,-3.2844645306,https://salsa.debian.org/js-team/node-unicode-property-value-aliases-ecmascript, https://github.com/mathiasbynens/unicode-property-value-aliases-ecmascript,1977.9928009259,0,1,0,1,0,0,0,1 +unicode-tr51,-2.8970799304,-0.9087592402,-3.3116008945,https://salsa.debian.org/js-team/node-unicode-tr51, https://github.com/mathiasbynens/unicode-tr51,1619.1367939815,1,1,0,2,6,0,0,6 +utilities,0.7510248514,4.5416704471,-0.5676243448,https://salsa.debian.org/js-team/node-utilities, https://github.com/mde/utilities.git,3873.0201388889,1,19,0,12,22,0,0,22 +node-uuid,0.283624179,1.6049599044,-0.0900742762,https://salsa.debian.org/js-team/node-uuid, https://github.com/kelektiv/node-uuid,4670.2036805556,41,41,2,59,325,0,0,354 +node-v8flags,0.1190291187,2.504747846,-0.5070823362,https://salsa.debian.org/js-team/node-v8flags, https://github.com/tkellen/node-v8flags.git,1721.1332407407,15,3,0,11,73,0,0,73 +vhost,-1.6545263406,0.6845370117,-2.2878465779,https://salsa.debian.org/js-team/node-vhost, https://github.com/expressjs/vhost.git,3246.905150463,1,3,0,2,0,0,0,2 +vue-resource,-1.8045687517,-0.3856069237,-2.0705983161,https://salsa.debian.org/js-team/node-vue-resource, https://github.com/pagekit/vue-resource,2754.4118518519,8,21,0,22,133,0,6,153 +webpack-merge,-3.8493072011,-1.380862227,-4.3376760901,https://salsa.debian.org/js-team/node-webpack-merge, https://github.com/survivejs/webpack-merge.git,3033.8957060185,15,23,0,32,63,0,0,78 +node-ytdl-core,-0.1246800443,2.4581193839,-0.8183512675,https://salsa.debian.org/js-team/node-ytdl-core, https://github.com/fent/node-ytdl-core.git,4096.004525463,70,23,0,76,490,0,0,521 +ntirpc,-0.5951678873,1.6658190607,-1.2552045305,https://salsa.debian.org/debian/libntirpc, https://github.com/nfs-ganesha/ntirpc.git,4521.189837963,43,88,0,41,65,0,0,76 +Nuitka,-0.0866725521,0.7058083517,-0.4988086801,https://github.com/Nuitka/Nuitka,https://github.com/Nuitka/Nuitka,4857.7762847222,166,5,3,152,130,0,0,253 +nvidia-xconfig,0.9734320248,2.4417272676,0.2943686593,https://salsa.debian.org/nvidia-team/nvidia-xconfig, https://github.com/NVIDIA/nvidia-xconfig,5775.9081134259,1,3,0,4,2,0,0,6 +nvpy,-0.3144467073,2.8922861575,-1.2852911447,https://github.com/stefanv/nvpy/tree/debian,https://github.com/stefanv/nvpy,2724.1981134259,2,29,0,16,0,0,0,16 +O-Saft,-0.0182736193,2.1999044406,-0.4504212317,https://salsa.debian.org/pkg-security-team/o-saft, https://github.com/OWASP/O-Saft,4011.0202777778,3,10,0,9,40,0,0,40 +oar,-1.4634945941,-0.6606837191,-1.7817291006,https://github.com/oar-team/oar,https://github.com/oar-team/oar,5765.8415856482,5,46,5,15,43,0,0,45 +obconf-debian,0.7475755733,1.7842164637,0.2203904311,https://github.com/mati75/obconf-debian.git,https://github.com/mati75/obconf-debian.git,3725.6903935185,0,5,0,3,2,0,0,4 +obs-studio,0.1312922919,0.962234072,-0.1232421438,https://salsa.debian.org/multimedia-team/obs-studio, https://github.com/jp9000/obs-studio.git,3726.9157986111,426,253,0,412,244,0,264,855 +obus,-3.5252462011,-1.6650389666,-4.1632184213,https://salsa.debian.org/ocaml-team/obus, https://github.com/ocaml-community/obus,5340.5275115741,3,16,1,12,20,0,0,22 +ocaml-alsa,-0.6651242782,1.2653797989,-1.038375358,https://salsa.debian.org/ocaml-team/ocaml-alsa, https://github.com/savonet/ocaml-alsa.git,460.5193634259,2,8,0,5,4,0,0,6 +ocaml-duppy,-1.3054931735,1.4664487385,-2.0959619861,https://salsa.debian.org/ocaml-team/ocaml-duppy, https://github.com/savonet/ocaml-duppy.git,5432.8347337963,2,8,0,6,6,0,0,8 +ocaml-expect,-1.1271032549,2.7923660814,-2.3065192266,https://salsa.debian.org/ocaml-team/ocaml-expect, https://github.com/gildor478/ocaml-expect.git,3170.2275231482,0,3,0,1,2,0,0,2 +extunix,-2.1872917146,-0.3028149378,-2.608406683,https://salsa.debian.org/ocaml-team/ocaml-extunix, https://github.com/ygrek/extunix.git,4849.8496064815,10,12,0,18,30,0,0,33 +ocaml-ipaddr,-1.0446018994,1.8622042043,-1.7854758695,https://salsa.debian.org/ocaml-team/ocaml-ipaddr, https://github.com/mirage/ocaml-ipaddr.git,3725.5192476852,9,20,0,22,40,0,0,40 +ocaml-re,-1.0950401153,1.1685448483,-1.5345632117,https://salsa.debian.org/ocaml-team/ocaml-re, https://github.com/ocaml/ocaml-re,4365.6594907407,11,42,1,39,72,0,0,79 +sedlex,-2.795399504,0.6121377346,-3.6635666836,https://salsa.debian.org/ocaml-team/ocaml-sedlex, https://github.com/ocaml-community/sedlex,5659.0575925926,13,22,0,27,81,0,0,81 +ocamlbuild,0.83301295,3.604633508,-0.2606702303,https://salsa.debian.org/ocaml-team/ocamlbuild, https://github.com/ocaml/ocamlbuild.git,5691.866099537,18,45,0,44,121,0,0,131 +opencubicplayer,0.7353360216,1.8994727767,0.1001948826,https://salsa.debian.org/multimedia-team/ocp, https://github.com/mywave82/opencubicplayer,4416.0663310185,9,13,0,12,37,0,0,38 +open-ath9k-htc-firmware,0.7603141973,2.9426626321,-0.0525201094,https://salsa.debian.org/debian/open-ath9k-htc-firmware, https://github.com/qca/open-ath9k-htc-firmware.git,3892.0404398148,5,21,0,17,37,0,4,51 +openbox-debian,0.3587708308,0.5696355779,0.2001738591,https://github.com/mati75/openbox-debian,https://github.com/mati75/openbox-debian,3123.4283217593,2,10,0,8,12,0,0,12 +openbox-menu,0.6431292738,3.0088710056,-0.1389880185,https://github.com/mati75/openbox-menu.git,https://github.com/mati75/openbox-menu.git,2669.041875,1,4,0,4,3,0,0,4 +OpenCC,0.0219092289,0.4824222963,-0.1611861662,https://salsa.debian.org/debian/opencc, https://github.com/BYVoid/OpenCC,3838.8327430556,56,72,0,83,474,0,3,480 +opendht,-1.502253613,-0.1124423197,-1.9255361455,https://salsa.debian.org/debian/opendht, https://github.com/savoirfairelinux/opendht.git,3308.8721527778,32,40,0,40,23,0,13,63 +orocos_kinematics_dynamics,-0.4945558152,0.6669109207,-0.7546541561,https://salsa.debian.org/science-team/orocos-kdl, https://github.com/orocos/orocos_kinematics_dynamics.git,5760.2385532407,20,61,0,49,251,0,0,254 +osdlyrics,-1.0107652487,2.5410275398,-1.9364271071,https://salsa.debian.org/debian/osdlyrics, https://github.com/osdlyrics/osdlyrics.git,5185.1183796296,14,35,0,23,0,0,1,24 +osm-gps-map,0.4852394822,1.6315652979,0.0288716929,https://salsa.debian.org/debian-gis-team/osm-gps-map, https://github.com/nzjrs/osm-gps-map,5396.5783564815,12,33,1,30,59,0,0,67 +ossim,0.2194206159,1.4101222421,-0.3093741078,https://salsa.debian.org/debian-gis-team/ossim, https://github.com/ossimlabs/ossim.git,2917.9942824074,12,49,0,31,11,0,1,36 +osslsigncode,0.169238484,2.9087642476,-0.725862886,https://salsa.debian.org/debian/osslsigncode, https://github.com/mtrojnar/osslsigncode.git,3941.3454282407,25,12,0,28,157,0,0,162 +ostinato,-0.1569756889,1.8345639417,-0.7645775616,https://salsa.debian.org/debian/ostinato, https://github.com/pstavirs/ostinato,3046.7549884259,4,10,3,11,90,0,2,95 +othman,-1.2792306,0.9010183816,-1.7193110897,https://salsa.debian.org/islamic-team/othman, https://github.com/ojuba-org/othman.git,4827.9828240741,2,13,0,8,20,0,0,21 +ounit,-0.3627412562,0.4497117871,-0.6191203191,https://salsa.debian.org/ocaml-team/ounit, https://github.com/gildor478/ounit.git,1284.2142476852,12,7,0,14,26,0,0,26 +outguess,0.1497827549,1.0974956579,-0.226083673,https://salsa.debian.org/pkg-security-team/outguess, https://github.com/resurrecting-open-source-projects/outguess,1029.0813888889,1,3,0,2,9,0,0,9 +overpass-api-python-wrapper,-0.0322169908,2.6635478479,-0.7275603387,https://salsa.debian.org/python-team/packages/overpass, https://github.com/mvexel/overpass-api-python-wrapper.git,2968.0383449074,4,26,0,24,100,0,0,102 +papi,0.1648741367,1.7494996599,-0.3472045276,https://salsa.debian.org/hpc-team/papi, https://github.com/icl-utk-edu/papi,5785.0656134259,65,102,1,48,33,0,13,73 +par2cmdline,0.20056085,0.9463023937,-0.114418384,https://salsa.debian.org/jcfp/par2cmdline, https://github.com/Parchive/par2cmdline.git,4198.3890972222,9,27,0,27,115,0,0,117 +parsedatetime,1.1943669328,3.3711848516,0.3370468439,https://salsa.debian.org/python-team/packages/parsedatetime, https://github.com/bear/parsedatetime,3739.2471990741,8,57,2,39,150,0,0,150 +patsy,0.2674917865,1.4192573153,-0.1261483397,https://salsa.debian.org/med-team/patsy, https://github.com/pydata/patsy,4676.8131944445,3,15,0,17,197,0,0,199 +pavucontrol-qt,1.2464488625,4.8736917607,0.1529128395,https://salsa.debian.org/lxqt-team/pavucontrol-qt, https://github.com/lxqt/pavucontrol-qt.git,5699.7374189815,142,57,0,110,74,0,0,152 +pbcopper,-1.3874159842,-0.0972708879,-1.836455251,https://salsa.debian.org/med-team/pbcopper, https://github.com/PacificBiosciences/pbcopper.git,2608.9496875,0,25,0,9,5,0,0,11 +pcapfix,0.0933295762,2.1324165499,-0.3712900504,https://salsa.debian.org/debian/pcapfix, https://github.com/Rup0rt/pcapfix,3586.925,0,13,0,6,14,0,0,14 +pcapy,0.0349538125,1.2547992825,-0.3075562935,https://salsa.debian.org/python-team/packages/pcapy, https://github.com/CoreSecurity/pcapy.git,1937.2327893519,7,20,0,17,91,0,6,99 +pcl,-0.4344154152,-0.1858665736,-0.5376364213,https://salsa.debian.org/science-team/pcl, https://github.com/PointCloudLibrary/pcl,4663.6967824074,183,548,3,326,69,0,19,379 +pcmanfm,0.9104711528,1.3106826431,0.6098723045,https://salsa.debian.org/lxde-team/pcmanfm, https://github.com/lxde/pcmanfm,5014.9549074074,162,27,0,87,11,0,0,91 +flext,-0.0850254405,1.799559297,-0.6918728933,https://salsa.debian.org/multimedia-team/pd/pd-flext, https://github.com/grrrr/flext.git,5601.7882986111,3,10,0,6,23,0,0,23 +ggee,0.2137381335,2.1051137101,-0.4192763849,https://salsa.debian.org/multimedia-team/pd/pd-ggee, https://github.com/pd-externals/ggee,5602.6691782407,2,15,0,6,8,0,0,10 +pd-iemmatrix,-0.3267928639,1.4162291626,-0.7027745657,https://salsa.debian.org/multimedia-team/pd/pd-iemmatrix, https://github.com/iem-projects/pd-iemmatrix,5648.0384606482,0,11,0,2,0,0,0,2 +pdfminer.six,0.0208023168,1.0139403963,-0.2584702373,https://salsa.debian.org/python-team/packages/pdfminer, https://github.com/pdfminer/pdfminer.six.git,5691.1447916667,73,66,0,116,635,0,0,663 +peek,0.2213731786,2.283866536,-0.2790469573,https://salsa.debian.org/debian/peek, https://github.com/phw/peek.git,2556.2171064815,148,23,0,127,504,0,0,601 +perftest,-0.25506659,1.1624795547,-0.6480880894,https://salsa.debian.org/hpc-team/perftest, https://github.com/linux-rdma/perftest.git,5766.2372222222,45,67,0,63,139,0,1,158 +perl-cross-debian,0.5442661596,4.5107736512,-0.7462109296,https://github.com/codehelp/perl-cross-debian,https://github.com/codehelp/perl-cross-debian,413.1343634259,0,1,2,1,2,0,1,3 +project--perl-depends,-0.098094395,2.6971113742,-0.7916189031,https://salsa.debian.org/perl-team/modules/packages/perl-depends, https://github.com/jaalto/project--perl-depends.git,2417.02125,0,1,0,1,0,0,0,1 +perl6-readline,0.2335812759,2.6358883052,-0.5015207605,https://salsa.debian.org/perl6-team/modules/perl6-readline, https://github.com/drforr/perl6-readline.git,1710.4289351852,3,11,0,10,39,0,0,39 +zef,-0.1589879333,1.6245616073,-0.6015634669,https://salsa.debian.org/perl6-team/modules/perl6-zef, https://github.com/ugexe/zef.git,3805.8422569445,19,20,0,23,111,0,0,113 +persp-projectile,-0.639585185,3.286323439,-1.7735281377,https://salsa.debian.org/emacsen-team/persp-projectile, https://github.com/bbatsov/persp-projectile.git,2006.7800810185,9,2,0,10,40,0,0,40 +pev,0.3261969594,2.6071816741,-0.2973930728,https://salsa.debian.org/debian/pev, https://github.com/merces/pev,0.0019791667,1,1,0,1,0,0,0,1 +pexpect,0.8141215364,1.9888952072,0.2667748433,https://salsa.debian.org/python-team/packages/pexpect, https://github.com/pexpect/pexpect,5767.4715740741,21,92,0,85,558,0,0,562 +pg_checksums,-1.8213442024,-0.1372969868,-2.2303187848,https://salsa.debian.org/postgresql/pg-checksums, https://github.com/credativ/pg_checksums.git,1977.03125,1,6,0,4,9,0,0,9 +pg_fact_loader,-1.8451499975,1.7612439253,-2.8557684329,https://salsa.debian.org/postgresql/pg-fact-loader, https://github.com/enova/pg_fact_loader.git,1795.1245717593,2,6,0,5,3,0,0,5 +pg8000,-0.425873307,2.4793925595,-1.2002236195,https://salsa.debian.org/python-team/packages/pg8000, https://github.com/mfenniak/pg8000,3962.2166666667,11,25,0,20,142,0,0,145 +pgbadger,-0.3152167506,1.8941783522,-0.7500435836,https://salsa.debian.org/postgresql/pgbadger, https://github.com/darold/pgbadger.git,4259.9847222222,12,88,0,68,205,0,7,250 +pgsql-ogr-fdw,-1.597217053,1.098990575,-2.2031431994,https://salsa.debian.org/debian-gis-team/pgsql-ogr-fdw, https://github.com/pramsey/pgsql-ogr-fdw.git,3285.0248958333,8,10,0,9,59,0,0,59 +semver,0.409271213,2.8658685018,-0.146438012,https://salsa.debian.org/php-team/pear/php-composer-semver, https://github.com/composer/semver,2969.0927777778,37,21,0,44,78,0,1,97 +Console_Table,-0.0495487945,1.7830511717,-0.4127695523,https://salsa.debian.org/php-team/pear/php-console-table, https://github.com/pear/Console_Table.git,2649.3105555556,1,12,0,9,14,0,0,16 +constant_time_encoding,-2.0834505626,2.1057169386,-3.3638483931,https://salsa.debian.org/php-team/pear/php-constant-time, https://github.com/paragonie/constant_time_encoding,2771.7821296296,7,11,0,13,33,0,0,33 +Crypt_GPG,0.9210658037,4.3264478549,-0.3696792994,https://salsa.debian.org/php-team/pear/php-crypt-gpg, https://github.com/pear/Crypt_GPG.git,5743.4965972222,6,19,0,16,21,0,0,22 +DirectoryScanner,-0.4493402088,1.855270065,-0.9050981717,https://salsa.debian.org/php-team/pear/php-directory-scanner, https://github.com/theseer/DirectoryScanner.git,4264.1542361111,0,7,0,2,12,0,0,12 +link-util,-0.4425381847,2.4746022946,-1.2653714987,https://salsa.debian.org/php-team/pear/php-fig-link-util, https://github.com/php-fig/link-util,1680.1398148148,5,2,0,5,11,0,0,12 +php-file-iterator,0.3114533151,2.1129587477,-0.2420172005,https://salsa.debian.org/php-team/pear/php-file-iterator, https://github.com/sebastianbergmann/php-file-iterator,5147.3262731482,9,12,0,16,79,0,0,80 +horde,-0.4754819462,0.1936727976,-0.7289488029,https://salsa.debian.org/horde-team/php-horde, https://github.com/horde/horde.git,3269.665474537,81,80,0,67,71,0,0,99 +ActiveSync,-0.0745412838,1.9029925216,-0.5969694129,https://salsa.debian.org/horde-team/php-horde-activesync, https://github.com/horde/ActiveSync.git,4982.0443055556,9,18,0,13,5,0,0,14 +html5-php,-0.3208200552,2.1227649729,-0.8298475571,https://salsa.debian.org/php-team/pear/php-masterminds-html5, https://github.com/Masterminds/html5-php,3846.3884953704,7,39,1,37,85,0,6,98 +vfsStream,-3.8146826401,-1.3125722962,-4.3356315795,https://salsa.debian.org/php-team/pear/php-mikey179-vfsstream, https://github.com/bovigo/vfsStream,5683.6370138889,11,48,1,35,196,0,26,222 +monolog,0.5054135947,3.1708681094,-0.3793108578,https://salsa.debian.org/php-team/pear/php-monolog, https://github.com/Seldaek/monolog,4676.6184375,183,372,3,397,405,0,63,719 +TypeResolver,0.0218360214,2.3125319388,-0.4129888352,https://salsa.debian.org/php-team/pear/php-phpdocumentor-type-resolver, https://github.com/phpDocumentor/TypeResolver,3092.0947569445,18,31,1,40,91,0,0,91 +phpseclib,0.1530214382,1.601109808,-0.1147352727,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.2331828704,80,98,0,135,155,0,5,268 +sql-formatter,-0.407920411,2.2773849827,-1.1530054701,https://salsa.debian.org/php-team/pear/php-sql-formatter, https://github.com/doctrine/sql-formatter.git,4125.6360300926,10,31,0,25,28,0,0,42 +contracts,0.6071508908,3.5307618183,-0.1882490235,https://salsa.debian.org/php-team/pear/php-symfony-contracts, https://github.com/symfony/contracts,1906.8477083333,28,26,0,51,11,0,0,57 +polyfill,0.5936130532,2.9045150589,-0.1004774059,https://salsa.debian.org/php-team/pear/php-symfony-polyfill, https://github.com/symfony/polyfill,2902.2220949074,100,47,0,117,227,0,0,263 +text_password,0.8003864076,3.7354461105,-0.2651582454,https://salsa.debian.org/php-team/pear/php-text-password, https://github.com/pear/text_password.git,3427.7869097222,0,13,0,7,6,0,0,8 +php-text-template,0.2735156083,2.2577473237,-0.2649626383,https://salsa.debian.org/php-team/pear/php-text-template, https://github.com/sebastianbergmann/php-text-template,5133.0452083333,0,8,0,5,13,0,0,13 +CssToInlineStyles,-4.9581043824,-2.5632479534,-5.4701338922,https://salsa.debian.org/php-team/pear/php-tijsverkoyen-css-to-inline-styles, https://github.com/tijsverkoyen/CssToInlineStyles,4791.6600810185,7,34,0,31,149,0,0,158 +php-timer,0.0545002782,1.7354029969,-0.3034123852,https://salsa.debian.org/php-team/pear/php-timer, https://github.com/sebastianbergmann/php-timer,4962.9242824074,4,10,0,11,38,0,0,38 +php-token-stream,-0.077539845,1.0314574326,-0.3184738926,https://salsa.debian.org/php-team/pear/php-token-stream, https://github.com/sebastianbergmann/php-token-stream,4281.2169675926,15,15,0,18,77,0,0,77 +phpdox,-1.0964679734,0.6066407752,-1.5664870339,https://salsa.debian.org/php-team/pear/phpdox, https://github.com/theseer/phpdox,4604.8372800926,11,44,0,36,366,0,0,368 +phpLDAPadmin,0.9538106411,1.6007846261,0.5030751444,https://salsa.debian.org/php-team/pear/phpldapadmin, https://github.com/leenooks/phpLDAPadmin,5264.4283796296,42,25,0,26,189,0,1,192 +phploc,-0.6743294156,1.1227196643,-1.1328550897,https://salsa.debian.org/php-team/pear/phploc, https://github.com/sebastianbergmann/phploc,5362.0425347222,18,31,0,38,226,0,0,226 +phpseclib,-0.073403609,1.2483282321,-0.3161589858,https://salsa.debian.org/php-team/pear/phpseclib, https://github.com/phpseclib/phpseclib.git,5749.2331828704,80,98,0,135,155,0,5,268 +comparator,0.1016908786,2.3398889578,-0.3301518045,https://salsa.debian.org/php-team/pear/phpunit-comparator, https://github.com/sebastianbergmann/comparator,3686.3957291667,20,9,0,25,105,0,0,105 +pidcat,-0.2348175331,2.8745190447,-1.069688066,https://salsa.debian.org/python-team/packages/pidcat, https://github.com/JakeWharton/pidcat.git,3155.524837963,4,40,0,30,259,0,0,261 +Piexif,-0.8041956898,1.6330932338,-1.3844176603,https://salsa.debian.org/python-team/packages/piexif, https://github.com/hMatoba/Piexif,3307.7984837963,5,12,0,10,155,0,0,155 +pipewalker,0.5020627732,3.1638761301,-0.3613058019,https://salsa.debian.org/debian/pipewalker, https://github.com/artemsen/pipewalker,2088.9552662037,1,4,0,3,6,0,0,6 +pipexec,-0.2552786974,1.5523174274,-0.6883958099,https://salsa.debian.org/alteholz/pipexec, https://github.com/flonatel/pipexec.git,3308.5569560185,0,11,0,6,12,0,0,13 +pk4,-1.8075865154,0.2000705346,-2.2307798324,https://github.com/Debian/pk4,https://github.com/Debian/pk4,1044.0391203704,0,1,0,1,4,0,0,4 +pkcs11-helper,1.2104032601,4.0753663669,0.2461129198,https://salsa.debian.org/opensc-team/pkcs11-helper, https://github.com/OpenSC/pkcs11-helper,5754.4088194445,16,2,0,13,58,0,3,61 +pkgconf,-0.0511523264,0.6206735889,-0.2703346973,https://salsa.debian.org/debian/pkgconf, https://github.com/pkgconf/pkgconf,4516.657650463,52,29,1,67,201,0,9,219 +pktstat,2.3338787395,6.0502882403,0.926044188,https://salsa.debian.org/debian/pktstat, https://github.com/dleonard0/pktstat,2938.7848958333,0,4,0,2,5,0,0,5 +planetblupi,-0.2798326789,2.3368636861,-0.892136731,https://salsa.debian.org/games-team/planetblupi, https://github.com/blupi-games/planetblupi,2504.3208449074,5,7,1,9,18,0,0,20 +gmailfeed,-0.9078350467,1.5377434382,-1.4604242885,https://salsa.debian.org/qt-kde-team/extras/plasma-gmailfeed, https://github.com/anthon38/gmailfeed.git,2727.0607638889,3,4,0,4,17,0,0,17 +plastex,0.2432695472,2.6132312475,-0.7011641781,https://salsa.debian.org/python-team/packages/plastex, https://github.com/plastex/plastex,5539.2969907407,17,19,1,19,79,0,1,80 +pngquant,0.5997315487,2.7135905645,-0.2341425934,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.0383333333,23,38,0,41,383,0,0,386 +pngquant,0.7530300912,2.4617924213,0.0694002171,https://salsa.debian.org/debian-phototools-team/pngquant, https://github.com/kornelski/pngquant.git,4325.0383333333,23,38,0,41,383,0,0,386 +pocketsphinx,-0.1321092966,0.4767106106,-0.3322064688,https://salsa.debian.org/a11y-team/pocketsphinx, https://github.com/cmusphinx/pocketsphinx,5652.4787847222,5,30,2,19,191,0,5,206 +pocl,0.0943083762,0.5327681562,-0.1315933389,https://salsa.debian.org/opencl-team/pocl, https://github.com/pocl/pocl,4689.6507291667,26,119,2,96,172,0,16,235 +popt,0.8457741179,1.4698340745,0.461614112,https://salsa.debian.org/debian/popt, https://github.com/rpm-software-management/popt.git,5739.6746643519,38,10,0,43,33,0,0,60 +portalocker,-0.6761775694,1.2289979494,-1.0819015205,https://salsa.debian.org/python-team/packages/portalocker, https://github.com/WoLpH/portalocker,4590.8550231482,5,21,0,17,76,0,0,76 +postfixadmin,1.3718594968,2.8225561724,0.562614351,https://salsa.debian.org/debian/postfixadmin, https://github.com/postfixadmin/postfixadmin,5760.0218055556,53,77,1,94,124,0,0,183 +postgis-java,-0.2249511782,0.6204972087,-0.4368391732,https://salsa.debian.org/debian-gis-team/postgis-java, https://github.com/postgis/postgis-java.git,5635.3241319445,8,12,0,15,32,0,1,39 +autodoc,0.4941840875,2.0445546371,-0.1932500455,https://salsa.debian.org/debian/postgresql-autodoc, https://github.com/cbbrowne/autodoc.git,4575.8853587963,5,13,0,11,24,0,0,24 +pg_filedump,-0.6115611941,1.2319618721,-1.0974123114,https://salsa.debian.org/postgresql/postgresql-filedump, https://github.com/df7cb/pg_filedump.git,4622.5029861111,3,6,0,6,19,0,0,21 +postgresql-hll,-1.5534816636,0.6872065961,-2.2881681018,https://salsa.debian.org/postgresql/postgresql-hll, https://github.com/citusdata/postgresql-hll.git,3859.4959259259,23,21,0,27,124,0,0,126 +mysql_fdw,-1.2606174982,0.3226021522,-1.7176084858,https://salsa.debian.org/postgresql/postgresql-mysql-fdw, https://github.com/EnterpriseDB/mysql_fdw.git,4475.7229861111,5,27,0,22,248,0,0,249 +postgresql-numeral,-1.5134522364,1.6243431313,-2.293706422,https://github.com/df7cb/postgresql-numeral,https://github.com/df7cb/postgresql-numeral,2361.1246527778,0,4,0,2,3,0,0,3 +plsh,-1.6026559782,-0.4185729412,-1.9028536338,https://salsa.debian.org/postgresql/postgresql-plsh, https://github.com/petere/plsh.git,3969.9145023148,1,1,0,2,23,0,0,23 +postgrey,0.4162125811,0.8007795616,0.16790509,https://salsa.debian.org/debian/postgrey, https://github.com/schweikert/postgrey.git,5469.9499074074,10,14,0,22,75,0,0,83 +postsrsd,0.10383995,2.0191274283,-0.4773257062,https://salsa.debian.org/debian/postsrsd, https://github.com/roehling/postsrsd.git,4014.2085648148,10,17,0,4,30,0,0,33 +potool,-0.5814294404,0.0587787858,-0.834772415,https://github.com/porridge/potool/tree/debian,https://github.com/porridge/potool,4430.2149884259,2,3,0,2,1,0,0,3 +povray,0.9584216742,1.6940449747,0.4892724706,https://salsa.debian.org/debian/povray, https://github.com/POV-Ray/povray,2833.0740740741,8,15,7,14,45,0,2,50 +powa-archivist,-1.3322892717,0.6277535501,-1.7515157782,https://github.com/powa-team/powa-archivist,https://github.com/powa-team/powa-archivist,3471.9301967593,10,15,2,15,40,0,0,42 +powercap,-0.3284328359,2.6169095108,-1.1283456001,https://github.com/connorimes/powercap/tree/debian,https://github.com/connorimes/powercap,2525.9958912037,0,4,0,2,2,0,0,3 +pqiv,-0.1638813895,0.7585584788,-0.4540092183,https://salsa.debian.org/pberndt-guest/pqiv, https://github.com/phillipberndt/pqiv,5604.8415509259,11,12,0,15,127,0,0,127 +prboom-plus,0.97864662,1.8842985584,0.4320575143,https://salsa.debian.org/games-team/prboom-plus, https://github.com/coelckers/prboom-plus,5585.983912037,42,11,1,41,53,0,1,73 +primus,0.2729569091,1.2481073389,-0.1134531508,https://salsa.debian.org/nvidia-team/primus, https://github.com/amonakov/primus,937.9013425926,3,6,0,6,216,0,0,216 +bird_exporter,-3.477178786,-0.0329330544,-4.2892202007,https://salsa.debian.org/go-team/packages/prometheus-bird-exporter, https://github.com/czerwonk/bird_exporter,2542.4624768519,10,16,6,19,56,0,0,57 +haproxy_exporter,-3.8607213348,-2.0700503351,-4.3161894613,https://salsa.debian.org/go-team/packages/prometheus-haproxy-exporter, https://github.com/prometheus/haproxy_exporter,3672.0941203704,21,40,0,41,166,0,0,171 +postfix_exporter,-2.309018579,-0.0678780093,-2.9354675488,https://salsa.debian.org/go-team/packages/prometheus-postfix-exporter, https://github.com/kumina/postfix_exporter,2274.256712963,7,24,0,20,129,0,0,130 +pushgateway,-0.8937395968,2.0265228669,-1.5977918562,https://salsa.debian.org/go-team/packages/prometheus-pushgateway, https://github.com/prometheus/pushgateway,3606.187337963,18,76,1,58,280,0,0,292 +proot-debian,1.0920103364,3.4894212371,0.1526188422,https://github.com/ivoire/proot-debian,https://github.com/ivoire/proot-debian,508.0834837963,0,2,0,1,3,0,0,3 +prospector,-0.1396414973,2.1237521604,-0.9708127034,https://salsa.debian.org/python-team/packages/prospector, https://github.com/PyCQA/prospector,3767.6942939815,36,66,2,76,313,0,0,327 +ps2eps,1.532120796,4.5656897613,0.4495361846,https://salsa.debian.org/debian/ps2eps, https://github.com/roland-bless/ps2eps.git,0.1197453704,1,2,0,1,1,0,0,2 +psad,-0.1576432836,0.28089801,-0.427371641,https://salsa.debian.org/debian/psad, https://github.com/mrash/psad/commits/master,5185.326875,55,11,0,0,0,0,0,0 +pudb,0.5652873271,3.503587652,-0.3825137639,https://salsa.debian.org/debian/pudb, https://github.com/inducer/pudb.git,5292.8559490741,32,73,0,84,306,0,0,318 +puppetlabs-ntp,-1.6019329854,0.0840048992,-1.9766118562,https://salsa.debian.org/puppet-team/puppet-module-puppetlabs-ntp, https://github.com/puppetlabs/puppetlabs-ntp.git,4661.5050231482,40,171,0,118,228,0,0,234 +py-lmdb,-0.075515578,2.3670377588,-0.9569815252,https://salsa.debian.org/debian/py-lmdb, https://github.com/jnwatson/py-lmdb,3712.4741898148,18,23,0,26,205,0,0,207 +fe,0.0569254607,2.238596245,-0.7405534191,https://salsa.debian.org/python-team/packages/py-postgresql, https://github.com/python-postgres/fe,5231.8056712963,1,11,0,5,69,0,0,69 +py-radix,-0.2347152131,1.2849195969,-0.668352957,https://salsa.debian.org/python-team/packages/py-radix, https://github.com/mjschultz/py-radix,1374.4915856482,3,11,0,9,39,0,0,40 +py-ubjson,0.3258683606,2.3051690362,-0.1923435128,https://salsa.debian.org/python-team/packages/py-ubjson, https://github.com/Iotic-Labs/py-ubjson,2987.1609027778,3,4,0,5,12,0,0,13 +pycairo,1.8611353266,3.0551049835,1.1479506832,https://salsa.debian.org/python-team/packages/pycairo, https://github.com/pygobject/pycairo,2389.8532175926,13,23,2,28,234,0,0,236 +pychm,0.1959778752,1.6504366967,-0.1847897986,https://salsa.debian.org/python-team/packages/pychm, https://github.com/dottedmag/pychm.git,3381.7747222222,2,4,0,3,19,0,0,19 +pychromecast,0.0550333172,1.8645058973,-0.3583381658,https://salsa.debian.org/python-team/packages/pychromecast, https://github.com/home-assistant-libs/pychromecast.git,3717.1753935185,57,30,0,74,318,0,0,345 +pycoast,-0.9264089102,1.0445653141,-1.3282069805,https://salsa.debian.org/debian-gis-team/pycoast, https://github.com/pytroll/pycoast,3185.132662037,7,21,0,12,29,0,0,30 +pydenticon,-0.865220641,1.8522581651,-1.5367272325,https://salsa.debian.org/python-team/packages/pydenticon, https://github.com/azaghal/pydenticon,1376.6938657407,2,1,0,2,13,0,0,13 +pydicom,0.3543730908,1.939756419,-0.1871292016,https://salsa.debian.org/med-team/pydicom, https://github.com/pydicom/pydicom.git,5576.1416435185,69,58,0,87,155,0,4,210 +pydocstyle,0.5531580789,3.8832816133,-0.434312514,https://salsa.debian.org/python-team/packages/pydocstyle, https://github.com/PyCQA/pydocstyle.git,4295.4277893519,58,44,0,86,381,0,0,394 +PyHamcrest,0.4770044067,2.0276091701,-0.0667553805,https://salsa.debian.org/python-team/packages/pyhamcrest, https://github.com/hamcrest/PyHamcrest,5756.5347222222,18,36,0,32,112,0,0,113 +pylama,-0.1685043243,2.3124561576,-0.8358206635,https://salsa.debian.org/python-team/packages/pylama, https://github.com/klen/pylama,3643.0438888889,6,46,0,37,127,0,0,134 +pylast,0.1007769388,2.2899648047,-0.3798195506,https://salsa.debian.org/python-team/packages/pylast, https://github.com/pylast/pylast,5565.5985532407,8,38,2,32,125,0,0,130 +pylibtiff,0.0190555879,2.1644424074,-0.7692360791,https://salsa.debian.org/debian-gis-team/pylibtiff, https://github.com/pearu/pylibtiff.git,3040.1433796296,10,20,0,22,100,0,1,103 +pymca,-0.4153476895,-0.1437047675,-0.5016872933,https://salsa.debian.org/science-team/pymca, https://github.com/vasole/pymca,5785.8055439815,7,32,0,17,52,0,0,52 +pymediainfo,0.3813327313,2.7232285427,-0.3112268398,https://salsa.debian.org/python-team/packages/pymediainfo, https://github.com/sbraz/pymediainfo,4970.7511111111,10,7,0,12,111,0,0,112 +pymodbus,0.0732799109,1.8646692265,-0.5844401794,https://salsa.debian.org/python-team/packages/pymodbus, https://github.com/pymodbus-dev/pymodbus.git,5499.738599537,102,63,0,125,552,0,0,603 +pyopencl,0.1782677537,0.865226367,-0.1694455174,https://salsa.debian.org/opencl-team/python-pyopencl, https://github.com/inducer/pyopencl,5374.16875,28,83,0,77,238,0,0,251 +pyorbital,-0.835136266,1.1503801119,-1.2127768903,https://salsa.debian.org/debian-gis-team/pyorbital, https://github.com/pytroll/pyorbital.git,4467.5734606482,9,33,0,26,73,0,0,75 +pypuppetdb,-1.329401636,2.4185219671,-2.4698360721,https://salsa.debian.org/python-team/packages/pypuppetdb, https://github.com/voxpupuli/pypuppetdb,3781.8189814815,18,46,2,46,103,0,0,106 +pyqi,-0.6659052808,0.4267300657,-0.9064389106,https://salsa.debian.org/med-team/pyqi, https://github.com/biocore/pyqi,1051.0106481482,0,13,1,7,17,0,0,17 +pyquery,0.2533160207,2.1476722718,-0.276904445,https://salsa.debian.org/python-team/packages/pyquery, https://github.com/gawel/pyquery.git,5354.1741550926,7,50,0,45,213,0,0,222 +pysodium,-0.9250342629,1.6337160906,-1.6304178321,https://salsa.debian.org/python-team/packages/pysodium, https://github.com/stef/pysodium.git,3761.6783217593,9,38,0,33,63,0,0,66 +python-soundfile,-0.4259563033,1.9817809485,-0.87334628,https://salsa.debian.org/multimedia-team/pysoundfile, https://github.com/bastibe/python-soundfile.git,3757.2281481482,8,31,0,27,287,0,0,287 +pysph,-0.1957650825,0.8352828367,-0.6085553873,https://salsa.debian.org/science-team/pysph, https://github.com/pypr/pysph,3944.0042824074,12,53,0,27,60,0,0,66 +pysrs,-2.5865636963,-0.2466583264,-3.0140171336,https://salsa.debian.org/python-team/packages/pysrs, https://github.com/sdgathman/pysrs.git,5232.0373842593,2,4,0,2,7,0,0,7 +pyssim,-1.4493782429,1.5830189811,-2.3198514231,https://salsa.debian.org/python-team/packages/pyssim, https://github.com/jterrace/pyssim,4069.879375,2,12,0,7,3,0,0,8 +PyStaticConfiguration,-2.0472160299,0.7630493618,-2.7265555606,https://salsa.debian.org/python-team/packages/pystaticconfiguration, https://github.com/dnephin/PyStaticConfiguration,3745.7102662037,3,26,2,20,44,0,0,45 +pysubnettree,-0.9461476097,1.2999152117,-1.5398813128,https://salsa.debian.org/python-team/packages/pysubnettree, https://github.com/zeek/pysubnettree.git,4655.7478587963,1,18,0,11,28,0,0,30 +pytest-arraydiff,0.1898441175,2.3416228263,-0.2394386956,https://salsa.debian.org/python-team/packages/pytest-arraydiff, https://github.com/astrofrog/pytest-arraydiff,2688.582349537,5,12,0,11,0,0,0,11 +pytest-bdd,-3.4287681139,-0.5039458847,-4.2303785564,https://salsa.debian.org/python-team/packages/pytest-bdd, https://github.com/pytest-dev/pytest-bdd.git,3909.5599768519,26,45,0,50,355,0,0,365 +pytest-expect,-1.4175585643,1.7604433826,-2.2515689023,https://salsa.debian.org/python-team/packages/pytest-expect, https://github.com/gsnedders/pytest-expect,1755.9376273148,2,3,0,2,13,0,0,13 +pytest-pylint,-0.8320096401,0.1532890227,-1.1006353608,https://salsa.debian.org/python-team/packages/pytest-pylint, https://github.com/carsongee/pytest-pylint,3089.6046180556,5,20,0,19,97,0,0,97 +pytest-remotedata,0.030168843,1.6486281266,-0.2466155852,https://salsa.debian.org/python-team/packages/pytest-remotedata, https://github.com/astropy/pytest-remotedata,4372.8560069445,4,28,1,27,27,0,1,44 +pytest-sugar,-1.9343898664,0.0895529374,-2.5336128329,https://salsa.debian.org/python-team/packages/pytest-sugar, https://github.com/Teemu/pytest-sugar.git,3774.5057060185,13,48,0,45,191,0,0,199 +py-amqp,0.4927928639,2.9780373711,-0.1037801308,https://salsa.debian.org/python-team/packages/python-amqp, https://github.com/celery/py-amqp.git,5725.5644791667,68,43,0,82,220,0,0,249 +argh,0.2339030674,2.0159100899,-0.2686508718,https://salsa.debian.org/python-team/packages/python-argh, https://github.com/neithere/argh.git,4744.0471875,5,24,0,22,102,0,0,107 +asyncssh,-1.1827053689,0.2562433063,-1.6493196582,https://salsa.debian.org/python-team/packages/python-asyncssh, https://github.com/ronf/asyncssh,3723.8668634259,18,9,0,23,71,0,0,87 +python-atomicwrites,0.8071747449,3.936888395,-0.0360579534,https://salsa.debian.org/python-team/packages/python-atomicwrites, https://github.com/untitaker/python-atomicwrites,2718.0744907407,9,8,0,15,53,0,0,53 +avro,-0.6764070684,0.594195245,-0.9704692662,https://salsa.debian.org/python-team/packages/python-avro, https://github.com/apache/avro,5362.5630555556,342,76,0,310,0,0,0,310 +aws-xray-sdk-python,-0.6565672961,2.2186104229,-1.3887187484,https://salsa.debian.org/science-team/python-aws-xray-sdk, https://github.com/aws/aws-xray-sdk-python,2264.9942939815,64,31,0,69,93,0,0,126 +azure-python-devtools,-1.8877692262,1.0407212341,-2.6897741774,https://salsa.debian.org/python-team/packages/python-azure-devtools, https://github.com/Azure/azure-python-devtools,1688.8337962963,6,14,0,12,28,0,0,31 +b2-sdk-python,-2.7091203496,0.0195888217,-3.2985895116,https://salsa.debian.org/python-team/packages/python-b2sdk, https://github.com/Backblaze/b2-sdk-python.git,2948.6294907407,24,86,0,77,61,0,0,112 +babel,0.4571086267,1.1252224199,0.1143783436,https://salsa.debian.org/python-team/packages/python-babel, https://github.com/python-babel/babel,5776.7216782407,75,93,2,137,127,0,0,236 +base58,-0.6380025418,1.8870432293,-1.1948721512,https://salsa.debian.org/python-team/packages/python-base58, https://github.com/keis/base58,3504.7240046296,9,12,0,15,37,0,0,38 +bayespy,-0.4133726859,2.2939543254,-1.2809021253,https://salsa.debian.org/science-team/python-bayespy, https://github.com/bayespy/bayespy,4227.6050231482,4,9,0,7,68,0,0,68 +bcrypt,0.720872399,2.4323524124,0.0873154337,https://salsa.debian.org/python-team/packages/python-bcrypt, https://github.com/pyca/bcrypt.git,3870.0652083333,26,10,0,30,196,0,0,198 +python-blosc,0.4104792893,2.7209909901,-0.2401314247,https://salsa.debian.org/python-team/packages/python-blosc, https://github.com/Blosc/python-blosc.git,4736.2912268519,17,36,0,37,120,0,0,121 +boltons,-0.0997518599,2.672673187,-0.8614154477,https://salsa.debian.org/python-team/packages/python-boltons, https://github.com/mahmoud/boltons,3938.2483333333,42,55,0,73,206,0,0,206 +bumps,-0.8935367246,0.0933032097,-1.1605313205,https://salsa.debian.org/science-team/python-bumps, https://github.com/bumps/bumps,4409.9511574074,1,19,0,10,22,0,0,24 +cachetools,0.5221597712,3.3731185733,-0.2589146292,https://salsa.debian.org/python-team/packages/python-cachetools, https://github.com/tkem/cachetools,3511.0841203704,2,11,0,11,206,0,0,206 +certbot,-2.2720142983,0.1157477766,-2.775909363,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-dnsimple, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0,391,635,0,143,1074 +certbot,-0.8998199839,1.9089794558,-1.5782805062,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-google, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0,391,635,0,143,1074 +certbot,-0.2811377468,1.8247084979,-0.7514361439,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0,391,635,0,143,1074 +certbot,-1.1000615706,1.1834717942,-1.6727445902,https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-route53, https://github.com/certbot/certbot.git,4226.9669907407,268,343,0,391,635,0,143,1074 +cmarkgfm,-1.3150135933,1.231941831,-1.8951479522,https://salsa.debian.org/python-team/packages/python-cmarkgfm, https://github.com/theacodes/cmarkgfm,1977.4600578704,18,8,0,20,50,0,0,50 +colorama,0.7784754841,2.4846627407,0.147974244,https://salsa.debian.org/python-team/packages/python-colorama, https://github.com/tartley/colorama,3514.6796527778,15,42,0,45,341,0,1,348 +python-colorlog,0.0760601286,2.176247301,-0.417655582,https://salsa.debian.org/python-team/packages/python-colorlog, https://github.com/borntyping/python-colorlog.git,4104.9554398148,10,24,0,30,43,0,0,56 +colormap,-0.8079814337,1.468837378,-1.3890414287,https://salsa.debian.org/python-team/packages/python-colormap, https://github.com/cokelaer/colormap,3308.9144444445,1,7,0,6,15,0,0,15 +pythonfutures,0.253069403,1.4926901749,-0.0680161382,https://salsa.debian.org/python-team/modules/python-concurrent.futures, https://github.com/agronholm/pythonfutures.git,4929.1742592593,10,12,0,14,86,0,0,86 +ConfigArgParse,0.6238780174,3.3511057459,-0.0441913435,https://salsa.debian.org/python-team/packages/configargparse, https://github.com/bw2/ConfigArgParse,3315.6581828704,8,51,0,44,239,0,1,240 +css-parser,0.7375204292,3.6525325545,-0.047073823,https://salsa.debian.org/python-team/packages/python-css-parser, https://github.com/ebook-utils/css-parser,1765.7022685185,2,7,0,7,11,0,0,11 +cssselect,0.7663890486,3.666235057,-0.0218050513,https://salsa.debian.org/python-team/packages/python-cssselect, https://github.com/scrapy/cssselect,5713.5145601852,8,23,0,24,65,0,1,68 +pycups,0.7229281241,2.1065141416,0.1579248085,https://salsa.debian.org/python-team/packages/python-cups, https://github.com/OpenPrinting/pycups.git,5524.6673842593,4,9,0,9,62,0,1,68 +curtsies,0.3166501906,2.6067653967,-0.304611589,https://salsa.debian.org/sramacher/python-curtsies, https://github.com/bpython/curtsies,3799.8890277778,15,32,1,35,70,0,0,73 +cycler,0.6283830281,2.4968734847,0.0195972629,https://salsa.debian.org/python-team/packages/python-cycler, https://github.com/matplotlib/cycler,2790.0141087963,6,19,2,21,28,0,0,35 +cytoolz,-0.3584848,2.3538098789,-1.0758303941,https://salsa.debian.org/python-team/packages/python-cytoolz, https://github.com/pytoolz/cytoolz,3395.421412037,2,21,0,16,68,0,0,71 +python-darkslide,0.9320448351,4.4954117391,-0.2883231751,https://salsa.debian.org/debian/darkslide, https://github.com/ionelmc/python-darkslide.git,4282.7612268519,4,56,0,42,23,0,0,55 +DartsPyLRU,-1.8927494334,0.2922334772,-2.3461638638,https://salsa.debian.org/pkg-security-team/python-darts.lib.utils.lru, https://github.com/deterministic-arts/DartsPyLRU.git,362.9079398148,0,2,0,1,5,0,0,5 +datrie,-0.50605789,1.3803188391,-0.9784823552,https://salsa.debian.org/python-team/packages/python-datrie, https://github.com/kmike/datrie.git,2978.6536226852,7,11,0,14,90,0,2,92 +python-dbusmock,-0.627944788,0.3000038238,-0.8505709773,https://salsa.debian.org/python-team/packages/python-dbusmock, https://github.com/martinpitt/python-dbusmock,4100.7724189815,32,16,0,31,57,0,0,63 +decorator,0.4704212561,1.7923957087,0.0135959484,https://salsa.debian.org/python-team/packages/python-decorator, https://github.com/micheles/decorator.git,5376.3999537037,6,23,0,23,131,0,0,131 +django-braces,-1.2510273472,0.3406489189,-1.6388153686,https://salsa.debian.org/python-team/packages/python-django-braces, https://github.com/brack3t/django-braces.git,4108.7193865741,10,79,0,65,196,0,0,196 +django-cas,-1.1534352121,1.6719173633,-2.0695177654,https://salsa.debian.org/python-team/packages/python-django-casclient, https://github.com/kstateome/django-cas,2792.0546875,7,19,0,16,53,0,0,54 +django-extra-views,-1.2587713718,1.08523072,-1.8662212132,https://salsa.debian.org/python-team/packages/python-django-extra-views, https://github.com/AndrewIngram/django-extra-views,4072.4001041667,12,61,1,51,205,0,0,208 +django-imagekit,-1.3510241486,0.3749851789,-1.7864034212,https://salsa.debian.org/python-team/packages/python-django-imagekit, https://github.com/matthewwithanm/django-imagekit.git,5386.1103935185,18,69,0,65,458,0,0,463 +django-modelcluster,-3.9620317451,-2.0344269896,-4.3414266404,https://salsa.debian.org/python-team/packages/python-django-modelcluster, https://github.com/wagtail/django-modelcluster.git,3534.2000347222,21,13,0,29,118,0,0,119 +django-rest-framework-guardian,-3.3209075154,-1.1464196518,-3.751236078,https://salsa.debian.org/python-team/packages/python-django-rest-framework-guardian, https://github.com/rpkilby/django-rest-framework-guardian.git,626.7550231481,2,4,0,4,14,0,0,14 +django-rest-hooks,-1.5050875724,1.1869723949,-2.1906025512,https://salsa.debian.org/python-team/packages/python-django-rest-hooks, https://github.com/zapier/django-rest-hooks,2693.6027777778,12,13,0,20,56,0,0,57 +django-split-settings,-2.7895751152,-0.3987847133,-3.3101515707,https://salsa.debian.org/python-team/packages/python-django-split-settings, https://github.com/sobolevn/django-split-settings,3860.1584027778,17,13,0,20,39,0,0,46 +django-storages,-3.1386978641,-0.5967779923,-3.725863839,https://salsa.debian.org/python-team/packages/python-django-storages, https://github.com/jschneier/django-storages.git,4486.1115740741,175,96,0,225,717,0,2,835 +django-treebeard,-1.4430134685,-0.7351656258,-1.6842741632,https://salsa.debian.org/python-team/packages/python-django-treebeard, https://github.com/django-treebeard/django-treebeard.git,5493.911400463,24,59,0,65,267,0,0,278 +python-dmidecode,0.6965127554,2.3773186195,-0.1244349613,https://salsa.debian.org/python-team/packages/python-dmidecode, https://github.com/nima/python-dmidecode,5342.5758333333,10,17,0,11,26,0,0,28 +dnsq,-0.8493777922,1.6513810932,-1.4106021621,https://salsa.debian.org/python-team/packages/python-dnsq, https://github.com/mailgun/dnsq.git,1028.9045138889,1,6,0,4,14,0,0,15 +python-dotenv,-0.0646647075,2.8616640278,-0.9758026604,https://salsa.debian.org/debian/python-dotenv, https://github.com/theskumar/python-dotenv.git,3676.0798726852,81,18,0,84,565,0,1,569 +dpkt,0.019610667,2.4762696052,-0.5848881328,https://salsa.debian.org/python-team/packages/python-dpkt, https://github.com/kbandla/dpkt,3886.9183680556,36,43,1,56,220,0,1,222 +dropbox-sdk-python,-0.1301813578,2.8452134881,-0.8655819935,https://salsa.debian.org/python-team/packages/python-dropbox, https://github.com/dropbox/dropbox-sdk-python,2984.0770833333,28,31,0,31,49,0,0,71 +python-dugong,-0.5914713911,0.3761740468,-0.8252986097,https://salsa.debian.org/python-team/packages/python-dugong, https://github.com/python-dugong/python-dugong.git,3200.2688541667,4,5,0,7,9,0,0,11 +easydev,-1.0634186539,0.4092421308,-1.417126244,https://salsa.debian.org/python-team/packages/python-easydev, https://github.com/cokelaer/easydev.git,3717.344375,0,5,0,1,10,0,0,10 +easywebdav,-0.193448412,1.9590581698,-0.6371910366,https://salsa.debian.org/python-team/packages/python-easywebdav, https://github.com/amnong/easywebdav,813.3765625,1,13,0,8,75,0,0,75 +exif-py,0.0156493175,1.0036035588,-0.2489350249,https://salsa.debian.org/python-team/packages/python-exif, https://github.com/ianare/exif-py,3998.0291898148,34,23,0,51,195,0,0,195 +fabio,0.0104950221,1.2100758664,-0.4380511126,https://salsa.debian.org/science-team/python-fabio, https://github.com/silx-kit/fabio.git,5765.1214351852,18,45,0,33,54,0,0,60 +fitsio,-0.4610557174,0.3940574407,-0.637876907,https://salsa.debian.org/debian-astro-team/python-fitsio, https://github.com/esheldon/fitsio,4439.4105671296,4,32,0,25,107,0,0,108 +flaky,-0.8238726702,2.0811606782,-1.6526698831,https://salsa.debian.org/python-team/packages/python-flaky, https://github.com/box/flaky.git,3089.6002083333,11,23,0,21,145,0,0,145 +fysom,-0.7585603333,1.38289184,-1.1858234109,https://salsa.debian.org/debian/python-fysom, https://github.com/mriehl/fysom.git,3641.9876967593,3,22,0,13,39,0,0,40 +geneimpacts,-1.8069134623,0.4508156575,-2.2387477164,https://salsa.debian.org/med-team/python-geneimpacts, https://github.com/brentp/geneimpacts/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +genty,-1.5312416046,1.7202436984,-2.3792600782,https://salsa.debian.org/python-team/packages/python-genty, https://github.com/box/genty.git,701.8032986111,0,10,0,5,15,0,0,15 +glad,-1.3457272309,1.093467749,-1.9015379081,https://salsa.debian.org/python-team/packages/glad, https://github.com/Dav1dde/glad.git,3530.1536458333,54,19,0,28,255,0,3,266 +python-gnupg,0.3458917214,1.220869917,-0.050061794,https://salsa.debian.org/python-team/packages/python-gnupg, https://github.com/vsajip/python-gnupg.git,3594.9863773148,6,12,0,14,52,0,0,58 +gnuplotlib,-0.5540723096,1.9911774543,-1.1225767623,https://salsa.debian.org/python-team/packages/python-gnuplotlib, https://github.com/dkogan/gnuplotlib,3062.559849537,1,2,0,2,29,0,0,29 +graphviz,-0.2775267395,1.2889253499,-0.6503415057,https://salsa.debian.org/python-team/packages/python-graphviz, https://github.com/xflr6/graphviz,3612.6320833333,12,12,0,22,48,0,0,60 +greenlet,0.8047616843,1.7061049423,0.3070462935,https://salsa.debian.org/python-team/packages/python-greenlet, https://github.com/python-greenlet/greenlet,5315.6529166667,21,53,1,60,350,0,0,351 +python-gssapi,0.3289179765,2.3550255223,-0.2500485627,https://salsa.debian.org/python-team/packages/python-gssapi, https://github.com/pythongssapi/python-gssapi,3263.0338078704,18,17,0,25,97,0,0,99 +h11,0.0628463609,2.5298903305,-0.3966248627,https://salsa.debian.org/python-team/packages/python-h11, https://github.com/python-hyper/h11.git,2700.4708217593,21,14,0,28,99,0,0,99 +httplib2,0.5220301337,1.5281004855,0.118057713,https://salsa.debian.org/python-team/packages/python-httplib2, https://github.com/httplib2/httplib2.git,5422.7818402778,50,36,0,58,150,0,9,186 +httptools,-1.016257232,1.5255190337,-1.6306842731,https://salsa.debian.org/python-team/packages/python-httptools, https://github.com/MagicStack/httptools.git,2908.9019444445,11,7,0,15,96,0,0,97 +idna,0.428827323,2.3998733008,0.0023232441,https://salsa.debian.org/python-team/packages/python-idna, https://github.com/kjd/idna,3836.1993865741,12,16,2,22,107,0,0,107 +ijson,-0.7882494907,1.6183503032,-1.3435678266,https://salsa.debian.org/debian/python-ijson, https://github.com/ICRAR/ijson.git,4844.9471180556,7,21,0,19,91,0,0,100 +intervaltree-bio,-0.5864931947,1.6648991521,-1.1805901394,https://salsa.debian.org/med-team/python-intervaltree-bio, https://github.com/konstantint/intervaltree-bio.git,961.9282638889,0,5,0,4,7,0,0,7 +ipaddr-py,0.6433933144,3.2903739444,-0.0419910302,https://salsa.debian.org/python-team/modules/python-ipaddr, https://github.com/google/ipaddr-py/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ipaddress,0.6123592223,3.1947690745,-0.0003839016,https://salsa.debian.org/python-team/modules/python-ipaddress, https://github.com/phihag/ipaddress,2728.476099537,1,7,0,6,56,0,0,56 +python-ipcalc,0.7141016308,3.4398389904,-0.255334424,https://github.com/craneworks/python-ipcalc,https://github.com/craneworks/python-ipcalc,756.8280324074,1,1,0,0,1,0,0,1 +python-iptables,-1.3768945792,-0.1620145007,-1.5972298957,https://salsa.debian.org/python-team/packages/python-iptables, https://github.com/ldx/python-iptables,4469.2364236111,3,51,0,40,238,0,0,240 +python-isc-dhcp-leases,-1.2144164676,1.3723753572,-1.7887539722,https://salsa.debian.org/python-team/packages/python-isc-dhcp-leases, https://github.com/MartijnBraam/python-isc-dhcp-leases,3184.8126041667,4,9,0,8,31,0,0,31 +itsdangerous,0.6642302819,3.2169189216,-0.0415160477,https://salsa.debian.org/python-team/packages/python-itsdangerous, https://github.com/pallets/itsdangerous,4546.9291435185,24,19,0,40,182,0,0,188 +jellyfish,0.0674101012,2.0051276836,-0.4205869787,https://salsa.debian.org/python-team/packages/python-jellyfish, https://github.com/jamesturk/jellyfish,4902.3308101852,15,24,0,27,148,0,0,148 +jira,-0.3980829938,2.423176583,-1.0411208861,https://salsa.debian.org/python-team/packages/python-jira, https://github.com/pycontribs/jira,4267.40125,111,155,3,195,572,0,0,670 +jmespath.py,0.3629172949,2.0686645362,-0.1003834425,https://salsa.debian.org/python-team/packages/python-jmespath, https://github.com/jmespath/jmespath.py,3691.1897222222,12,21,0,28,14,0,1,37 +josepy,0.3513511179,2.2923963637,-0.0869215969,https://salsa.debian.org/letsencrypt-team/certbot/josepy, https://github.com/certbot/josepy,4184.7847685185,104,276,0,285,46,0,0,308 +python-junit-xml,-0.4874384495,3.2461576764,-1.4580304291,https://salsa.debian.org/python-team/packages/python-junit-xml, https://github.com/kyrus/python-junit-xml.git,2595.0297685185,5,18,0,13,67,0,0,69 +kajiki,-2.3594950912,-1.2299434314,-2.6159157482,https://salsa.debian.org/python-team/packages/python-kajiki, https://github.com/jackrosenthal/kajiki,4546.9668518519,3,22,0,18,30,0,0,33 +kaptan,-0.238361389,2.3964025525,-0.8063707104,https://salsa.debian.org/debian/python-kaptan, https://github.com/emre/kaptan.git,3814.6996064815,6,17,0,16,32,0,0,32 +python-libarchive-c,0.2084355293,1.8864921166,-0.3011849402,https://salsa.debian.org/debian/python-libarchive-c, https://github.com/Changaco/python-libarchive-c.git,3365.1853587963,15,18,0,22,69,0,0,71 +libnacl,-0.5748525142,1.055075496,-0.9944771692,https://salsa.debian.org/python-team/packages/python-libnacl, https://github.com/saltstack/libnacl.git,3360.8544791667,4,45,0,34,71,0,0,72 +python-libusb1,0.2265462586,3.5735295241,-0.6911313873,https://salsa.debian.org/python-team/packages/python-libusb1, https://github.com/vpelletier/python-libusb1.git,5022.3082060185,13,14,0,21,84,0,0,85 +python-lz4,0.2828189113,1.8016304752,-0.1138420548,https://salsa.debian.org/python-team/packages/python-lz4, https://github.com/python-lz4/python-lz4.git,3988.215625,8,43,0,37,148,0,0,158 +python-lzo,0.6457852422,3.6246917685,-0.1788164823,https://salsa.debian.org/python-team/packages/python-lzo, https://github.com/jd-boyd/python-lzo,4282.0784259259,2,13,0,10,69,0,0,70 +python-mapnik,-0.22946102,0.3549703224,-0.441137685,https://salsa.debian.org/debian-gis-team/python-mapnik, https://github.com/mapnik/python-mapnik.git,5494.8782638889,10,101,0,63,101,0,0,150 +MechanicalSoup,-0.5139427981,1.6546261984,-1.0099675897,https://salsa.debian.org/python-team/packages/python-mechanicalsoup, https://github.com/hickford/MechanicalSoup,3488.7486574074,39,28,0,46,149,0,0,164 +mechanize,0.5587118446,1.5296801165,0.1098543172,https://salsa.debian.org/python-team/packages/python-mechanize, https://github.com/python-mechanize/mechanize.git,5735.6054513889,5,12,0,14,81,0,0,548 +meld3,1.4808008162,4.1711738218,0.4100529738,https://salsa.debian.org/python-team/packages/python-meld3, https://github.com/supervisor/meld3.git,4279.117650463,0,8,0,7,27,0,0,27 +PyMemoize,-1.6877152559,1.1203038488,-2.4079093642,https://salsa.debian.org/debian/python-memoize, https://github.com/mikeboers/PyMemoize,4629.8626388889,2,6,0,5,18,0,0,19 +memprof,-1.0055408653,0.6195771117,-1.559509906,https://salsa.debian.org/python-team/packages/python-memprof, https://github.com/jmdana/memprof,2110.1480324074,1,8,0,5,18,0,0,18 +MIDIUtil,-0.4550519333,2.0970578814,-0.9760105027,https://salsa.debian.org/multimedia-team/python-midiutil, https://github.com/MarkCWirt/MIDIUtil.git,532.2564583333,2,4,0,2,47,0,0,47 +python-miio,-2.4535132218,0.0572909827,-2.9975615853,https://salsa.debian.org/python-team/packages/miio, https://github.com/rytilahti/python-miio.git,2467.2539236111,163,5,0,156,136,0,0,270 +python-mimeparse,0.635087679,2.3635412747,-0.0635295991,https://salsa.debian.org/python-team/modules/python-mimeparse, https://github.com/dbtsai/python-mimeparse.git,3368.8721296296,9,11,0,12,20,0,0,23 +motor,-1.6905579654,-0.1116236972,-2.117236641,https://salsa.debian.org/python-team/packages/python-motor, https://github.com/mongodb/motor,3986.9431365741,28,30,0,47,2,0,0,47 +pymox,-0.4239911007,2.121473449,-1.1839102652,https://salsa.debian.org/debian/python-mox, https://github.com/ivancrneto/pymox,3025.5165856482,3,7,0,5,8,0,0,10 +python-mpd2,-0.2990738247,0.3266786344,-0.4283928832,https://salsa.debian.org/mpd-team/python-mpd, https://github.com/Mic92/python-mpd2,5765.5434143519,16,38,0,43,139,0,0,139 +mplexporter,-0.1464208389,2.3064325181,-0.9188944106,https://salsa.debian.org/python-team/packages/python-mplexporter, https://github.com/mpld3/mplexporter,3220.5932523148,4,24,0,17,29,0,0,31 +pynacl,0.3194025143,1.5580852197,-0.0692227421,https://salsa.debian.org/python-team/packages/python-nacl, https://github.com/pyca/pynacl,3948.360462963,44,26,1,61,44,0,0,91 +python-nameparser,-2.0123667482,0.1499038072,-2.4759914091,https://salsa.debian.org/python-team/packages/python-nameparser, https://github.com/derek73/python-nameparser,4612.1091203704,9,18,1,23,121,0,0,123 +nest_asyncio,-3.3220087743,0.2652013224,-4.2429827404,https://salsa.debian.org/python-team/packages/python-nest-asyncio, https://github.com/erdewit/nest_asyncio,1907.2440740741,4,10,0,12,92,0,0,92 +python-networkmanager,-0.3294740738,1.4731534732,-0.9543699399,https://salsa.debian.org/python-team/packages/python-networkmanager, https://github.com/seveas/python-networkmanager,4090.3196759259,12,3,0,11,104,0,0,104 +oauthlib,0.3884344854,2.2364514825,-0.0809544139,https://salsa.debian.org/python-team/packages/python-oauthlib, https://github.com/oauthlib/oauthlib,4357.2754050926,51,167,2,168,249,0,0,316 +odfpy,-0.1752613644,1.26653294,-0.4678571818,https://salsa.debian.org/python-team/packages/python-odf, https://github.com/eea/odfpy,4744.619375,6,27,0,24,129,0,10,140 +python-pam,0.7194661619,3.5092607756,-0.0318286678,https://salsa.debian.org/python-team/packages/python-pampy, https://github.com/FirefighterBlu3/python-pam,2926.9394907408,2,10,0,8,42,0,0,42 +pandocfilters,0.4325771732,2.9731648905,-0.1436774117,https://salsa.debian.org/python-team/packages/python-pandocfilters, https://github.com/jgm/pandocfilters,2924.0615740741,12,31,0,34,69,0,0,74 +parameterized,-0.0852476016,1.7634629159,-0.4735189307,https://salsa.debian.org/python-team/packages/python-parameterized, https://github.com/wolever/parameterized,4033.873125,6,29,0,26,199,0,0,201 +parse_type,-0.7766894785,2.2657323306,-1.6027471957,https://salsa.debian.org/python-team/packages/python-parse-type, https://github.com/jenisys/parse_type,3544.3490162037,0,4,0,1,16,0,0,16 +periodictable,-1.0615188189,0.0399913751,-1.3403053026,https://salsa.debian.org/science-team/python-periodictable, https://github.com/pkienzle/periodictable.git,5457.176412037,0,18,0,9,27,0,0,27 +pex,-0.7476267621,1.4651691422,-1.6685430991,https://salsa.debian.org/python-team/packages/python-pex, https://github.com/pantsbuild/pex.git,3433.3294212963,95,47,0,104,155,0,0,220 +python-pgpdump,-0.1879378602,2.3259223777,-0.7707539804,https://salsa.debian.org/python-team/packages/python-pgpdump, https://github.com/toofishes/python-pgpdump,826.806712963,5,2,0,5,24,0,0,24 +PGPy,-0.2430201905,2.4059068222,-1.197889114,https://salsa.debian.org/debian/pgpy, https://github.com/SecurityInnovation/PGPy,3246.9911458333,11,33,2,35,91,0,1,103 +pgspecial,0.3830684523,3.0333672127,-0.3897890378,https://salsa.debian.org/python-team/packages/python-pgspecial, https://github.com/dbcli/pgspecial,2959.9866319445,21,33,0,38,60,0,0,60 +phply,-0.0136994366,0.8386196269,-0.2146141125,https://salsa.debian.org/debian/python-phply, https://github.com/viraptor/phply.git,4545.3284143519,2,13,0,9,35,0,0,37 +picklable-itertools,-1.9017855155,0.0686564891,-2.3399948958,https://salsa.debian.org/python-team/packages/python-picklable-itertools, https://github.com/mila-iqia/picklable-itertools,176.1980324074,0,5,0,3,4,0,0,4 +pika,0.6194442951,2.792024793,-0.1295291186,https://salsa.debian.org/python-team/packages/python-pika, https://github.com/pika/pika,5099.3438078704,52,181,1,165,190,0,0,319 +pyftpdlib,-0.1028969973,1.6271806139,-0.7069948318,https://salsa.debian.org/python-team/packages/python-pyftpdlib, https://github.com/giampaolo/pyftpdlib,5695.2602314815,16,22,1,30,82,0,0,100 +pymeasure,-0.0345798255,2.662684469,-0.7066701418,https://salsa.debian.org/science-team/python-pymeasure, https://github.com/ralph-group/pymeasure/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +pynvim,0.1793262124,2.0167259674,-0.2014913603,https://salsa.debian.org/python-team/packages/python-pynvim, https://github.com/neovim/pynvim,3504.5291782407,26,35,0,55,243,0,0,250 +pyotp,-0.1936486463,2.043929727,-0.7744180298,https://salsa.debian.org/python-team/packages/python-pyotp, https://github.com/pyauth/pyotp.git,4631.6125462963,26,20,0,33,124,0,0,130 +pyperclip,0.520944025,2.1523556396,-0.0782247035,https://salsa.debian.org/sramacher/python-pyperclip, https://github.com/asweigart/pyperclip,3772.0925925926,7,31,0,31,330,0,0,330 +pyproj,-0.1814047386,0.2461708969,-0.2576178377,https://salsa.debian.org/debian-gis-team/python-pyproj, https://github.com/pyproj4/pyproj.git,5681.2389236111,30,46,0,61,327,0,0,350 +pypubsub,-1.763743949,-0.068250645,-2.0677092705,https://salsa.debian.org/python-team/packages/python-pypubsub, https://github.com/schollii/pypubsub,1788.0433680556,4,5,0,6,42,0,0,42 +pyramid_multiauth,-1.9341240314,0.3100051717,-2.4480383752,https://github.com/douardda/pyramid_multiauth,https://github.com/douardda/pyramid_multiauth,1636.4991203704,0,10,0,6,0,0,0,6 +pysnmp,0.6296288884,1.9466089716,0.0848638325,https://salsa.debian.org/python-team/packages/python-pysnmp4, https://github.com/etingof/pysnmp,4346.8111226852,17,11,0,21,393,0,0,394 +qtpy,0.3491974082,2.2294676618,-0.1435114165,https://salsa.debian.org/python-team/packages/python-qtpy, https://github.com/spyder-ide/qtpy,3201.4270949074,20,62,3,59,61,0,1,101 +python-quantities,-0.0106025798,1.9580121766,-0.690445939,https://salsa.debian.org/science-team/python-quantities, https://github.com/python-quantities/python-quantities.git,5020.6635069445,7,39,0,28,134,0,0,135 +PythonQwt,0.5933841457,3.6301488353,-0.4097779828,https://salsa.debian.org/science-team/python-qwt, https://github.com/PierreRaybaut/PythonQwt.git,1193.9426967593,2,6,0,5,29,0,0,29 +rarfile,0.2024927767,3.0961464994,-0.5861303229,https://salsa.debian.org/python-team/packages/python-rarfile, https://github.com/markokr/rarfile.git,5495.9042361111,8,13,0,16,102,0,0,103 +rdflib-jsonld,-0.0904254945,1.6642685449,-0.4956744476,https://salsa.debian.org/python-team/packages/python-rdflib-jsonld, https://github.com/RDFLib/rdflib-jsonld,3605.0071180556,4,18,0,13,106,0,0,106 +readme_renderer,-0.1456681528,2.207631483,-0.5831215172,https://salsa.debian.org/python-team/packages/python-readme-renderer, https://github.com/pypa/readme_renderer,3479.9030902778,12,22,0,30,133,0,0,141 +restless,-1.933361243,-0.9031369663,-2.2877460686,https://salsa.debian.org/python-team/packages/python-restless, https://github.com/toastdriven/restless,2872.2400231482,8,30,0,30,106,0,0,106 +rply,-0.0320431964,1.7010393246,-0.4724323632,https://salsa.debian.org/python-team/packages/python-rply, https://github.com/alex/rply,3096.8436689815,9,17,0,21,76,0,0,76 +python-rsa,0.3772367225,1.9634900436,-0.1098199505,https://salsa.debian.org/python-team/packages/python-rsa, https://github.com/sybrenstuvel/python-rsa,5670.1946296296,33,16,2,36,126,0,0,139 +rtree,-0.1090383067,2.131754724,-0.531642492,https://salsa.debian.org/debian-gis-team/python-rtree, https://github.com/Toblerity/rtree.git,5739.5775925926,25,24,0,39,225,0,1,231 +s3transfer,0.3673618005,2.5341337999,-0.1810184019,https://salsa.debian.org/python-team/packages/python-s3transfer, https://github.com/boto/s3transfer,2891.8518634259,24,28,0,32,161,0,0,165 +sabyenc,0.4522797507,3.6365145505,-0.3981014069,https://salsa.debian.org/python-team/packages/python-sabyenc, https://github.com/sabnzbd/sabyenc.git,2872.8934606482,9,4,0,8,28,0,0,28 +scandir,0.8273012672,3.7868324648,0.0056074744,https://salsa.debian.org/python-team/packages/python-scandir, https://github.com/benhoyt/scandir,3760.0535185185,8,20,0,22,123,0,0,123 +scrapy-djangoitem,-1.8401324548,0.5412820006,-2.4359072724,https://salsa.debian.org/python-team/packages/python-scrapy-djangoitem, https://github.com/scrapy-plugins/scrapy-djangoitem,2837.1132523148,0,13,0,10,26,0,0,32 +scruffy,-0.8950842584,1.9677123819,-1.6884452058,https://salsa.debian.org/python-team/packages/python-scruffy, https://github.com/snare/scruffy,1665.7056828704,2,5,0,4,9,0,1,10 +secretstorage,0.3387544545,2.1308358714,-0.0585012825,https://salsa.debian.org/python-team/packages/python-secretstorage, https://github.com/mitya57/secretstorage,3916.1693055556,4,7,0,7,50,0,0,50 +serverfiles,-3.270914062,-0.0867153,-4.1789525946,https://salsa.debian.org/python-team/packages/python-serverfiles, https://github.com/biolab/serverfiles,2007.9058333333,1,6,0,6,0,0,0,6 +setoptconf,-0.6718962402,1.1532142556,-1.127131302,https://salsa.debian.org/python-team/packages/python-setoptconf, https://github.com/jayclassless/setoptconf.git,2788.0056365741,0,3,0,2,3,0,0,3 +py-setproctitle,1.0838445468,3.2588810317,0.2442150847,https://salsa.debian.org/python-team/packages/python-setproctitle, https://github.com/dvarrazzo/py-setproctitle,5054.5442361111,9,10,0,12,86,0,0,89 +python-sfml,-0.3784249777,0.2624085655,-0.5818259297,https://salsa.debian.org/games-team/python-sfml, https://github.com/intjelic/python-sfml,3326.0384143519,1,21,2,14,97,0,5,107 +sh,0.0684316621,2.7449205881,-0.5744266283,https://salsa.debian.org/python-team/packages/python-sh, https://github.com/amoffat/sh,4327.6361689815,29,75,2,77,438,0,0,456 +python-slugify,-0.1216991783,1.414032002,-0.4325012299,https://salsa.debian.org/python-team/packages/python-slugify, https://github.com/un33k/python-slugify,4027.6128240741,29,16,0,32,109,0,0,111 +socketIO-client,0.9390849724,4.9112952662,-0.4668774995,https://salsa.debian.org/debian/python-socketio-client, https://github.com/invisibleroads/socketIO-client,1970.3003472222,0,39,2,22,294,0,0,294 +PySocks,1.0550621894,3.7043852987,0.1526077193,https://salsa.debian.org/python-team/packages/python-socksipy, https://github.com/Anorov/PySocks,2386.177962963,3,31,0,28,172,0,0,173 +python-systemd,0.186853671,1.4520714492,-0.0787581662,https://salsa.debian.org/systemd-team/python-systemd, https://github.com/systemd/python-systemd,3925.6328356482,47,10,0,47,124,0,0,134 +python-tabulate,0.4140804306,2.807860448,-0.2305820053,https://salsa.debian.org/python-team/packages/python-tabulate, https://github.com/astanin/python-tabulate.git,3791.7183796296,22,72,0,74,329,0,0,365 +tasklib,0.0418096657,2.4101943872,-0.7381367832,https://salsa.debian.org/tasktools-team/python-tasklib, https://github.com/GothenburgBitFactory/tasklib.git,3516.4481481482,7,15,0,12,63,0,0,64 +tesserocr,-0.0713400087,2.5040315407,-0.9645789788,https://salsa.debian.org/python-team/packages/python-tesserocr, https://github.com/sirfz/tesserocr.git,2852.5099537037,21,18,0,26,295,0,0,297 +testfixtures,-1.2559497362,1.6255436778,-1.9966424136,https://salsa.debian.org/python-team/packages/python-testfixtures, https://github.com/Simplistix/testfixtures,5484.404849537,6,35,0,28,106,0,0,106 +python-textile,0.3424022956,1.7744319252,-0.1804144888,https://salsa.debian.org/python-team/packages/python-textile, https://github.com/textile/python-textile.git,3971.2575578704,0,25,0,16,50,0,0,57 +translationstring,-0.284062414,1.4802740524,-0.7286152652,https://salsa.debian.org/python-team/packages/python-translationstring, https://github.com/Pylons/translationstring.git,3733.753599537,2,15,0,14,26,0,0,27 +transliterate,-1.5052976672,1.0843261213,-2.1168561972,https://salsa.debian.org/python-team/packages/python-transliterate, https://github.com/barseghyanartur/transliterate,3701.1602314815,5,13,0,12,48,0,1,49 +tzlocal,0.2105199468,2.3487549308,-0.2866926628,https://salsa.debian.org/python-team/packages/python-tzlocal, https://github.com/regebro/tzlocal,4104.7635185185,12,22,0,27,150,0,0,150 +python-uinput,-0.4895299649,2.0822444703,-1.2154886237,https://salsa.debian.org/python-team/packages/python-uinput, https://github.com/tuomasjjrasanen/python-uinput,2471.1649768519,3,17,0,9,71,0,0,76 +python-unicodecsv,0.2177173313,2.0742154186,-0.2503122986,https://salsa.debian.org/python-team/packages/python-unicodecsv, https://github.com/jdunck/python-unicodecsv,1788.5991550926,0,17,0,12,93,0,0,93 +uritools,0.5665608671,3.6360712032,-0.2250089468,https://salsa.debian.org/python-team/packages/python-uritools, https://github.com/tkem/uritools,3490.5498032407,0,3,1,3,16,0,0,16 +venusian,-0.2389886502,1.4708114679,-0.7217668025,https://salsa.debian.org/python-team/packages/python-venusian, https://github.com/Pylons/venusian,5042.1797800926,6,25,0,24,62,0,0,62 +werkzeug,0.6469808555,1.6210316055,0.1636782742,https://salsa.debian.org/python-team/packages/python-werkzeug, https://github.com/pallets/werkzeug,5778.3072453704,256,251,0,409,438,0,0,737 +WebSocket-for-Python,-0.3061877909,1.5232020738,-1.0477652346,https://salsa.debian.org/python-team/packages/python-ws4py, https://github.com/Lawouach/WebSocket-for-Python.git,4476.5480902778,6,66,0,48,280,0,0,280 +xapian-haystack,-1.109004629,0.9965388597,-1.7612034563,https://salsa.debian.org/python-team/packages/python-xapian-haystack, https://github.com/notanumber/xapian-haystack,5023.7127662037,14,13,1,15,127,0,4,133 +pytrainer,-0.1492986337,0.6667449272,-0.6246450089,https://salsa.debian.org/python-team/packages/pytrainer, https://github.com/pytrainer/pytrainer.git,5724.7457175926,2,26,0,20,59,0,3,64 +pytsk,-0.0170924765,1.3661578979,-0.4069676209,https://salsa.debian.org/pkg-security-team/pytsk, https://github.com/py4n6/pytsk.git,4730.6620833333,5,8,0,6,36,0,2,38 +pyuca,-1.879124707,0.4546058772,-2.3447337433,https://salsa.debian.org/python-team/packages/pyuca, https://github.com/jtauber/pyuca,2863.4539467593,0,6,0,5,24,0,1,26 +pyudev,0.3052041709,1.5797390647,-0.0988792966,https://salsa.debian.org/python-team/packages/pyudev, https://github.com/pyudev/pyudev,4959.3462037037,7,18,0,18,85,0,1,90 +pyutilib,-0.2260212517,1.9708399125,-0.6584040073,https://salsa.debian.org/python-team/packages/pyutilib, https://github.com/pyutilib/pyutilib,3833.6739467593,5,24,4,10,35,0,0,35 +pyvirtualdisplay,-0.7443150581,1.4769132038,-1.1764950176,https://salsa.debian.org/python-team/packages/pyvirtualdisplay, https://github.com/ponty/pyvirtualdisplay.git,4649.3207175926,4,15,0,10,24,0,0,30 +PyWebDAV3,-0.4415298354,0.1562199484,-0.5984518002,https://salsa.debian.org/tryton-team/pywebdav, https://github.com/andrewleech/PyWebDAV3.git,5191.6373958333,7,13,0,13,12,0,0,21 +pywinrm,1.3688605787,4.5307310299,0.2477962041,https://salsa.debian.org/python-team/packages/python-winrm, https://github.com/diyan/pywinrm.git,3968.3538425926,2,35,0,22,257,0,0,259 +pywws,-2.0058814842,0.4297872508,-2.5845945208,https://salsa.debian.org/debian-iot-team/pywws, https://github.com/jim-easterbrook/pywws,5328.5947916667,7,19,0,21,75,0,0,75 +pyx,-0.4214323147,0.0635788825,-0.526071945,https://salsa.debian.org/debian/pyx3, https://github.com/pyx-project/pyx,5502.6121064815,6,10,0,9,36,0,0,36 +pyxid,-1.0618344074,1.7377650499,-1.9813829645,https://salsa.debian.org/med-team/pyxid, https://github.com/cedrus-opensource/pyxid/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +pyxnat,0.8029079218,3.9217278842,-0.2730026627,https://salsa.debian.org/med-team/pyxnat, https://github.com/pyxnat/pyxnat.git,4754.1324652778,6,37,0,24,63,0,0,65 +pyyaml,0.295656714,0.9675344795,0.0168556096,https://salsa.debian.org/python-team/packages/pyyaml, https://github.com/yaml/pyyaml.git,5656.1894444445,35,19,0,38,575,0,2,583 +qstat,1.4847469863,3.5445875957,0.5684335793,https://salsa.debian.org/debian/qstat, https://github.com/Unity-Technologies/qstat,4992.716099537,11,11,0,10,43,0,0,43 +QtPass,-0.2443828761,0.6069592093,-0.421666166,https://salsa.debian.org/debian/qtpass, https://github.com/IJHack/QtPass,3407.0546643519,102,101,0,112,378,0,0,421 +qtractor,0.2052424785,1.081754113,-0.1776083366,https://salsa.debian.org/multimedia-team/qtractor, https://github.com/rncbc/qtractor.git,5788.915474537,11,33,0,25,122,0,0,125 +qtspell,-1.1174264874,0.8182545984,-1.5529339,https://salsa.debian.org/qt-kde-team/extras/qtspell, https://github.com/manisandro/qtspell.git,2705.0642476852,0,4,0,3,14,0,1,15 +quickroute-linux,-0.1342848887,2.9572779507,-1.1039128379,https://github.com/ralovich/quickroute-linux.git,https://github.com/ralovich/quickroute-linux.git,5000.8862152778,1,8,0,2,9,0,0,9 +qxgedit,0.0309448749,2.6946289528,-0.6152383196,https://salsa.debian.org/multimedia-team/qxgedit, https://github.com/rncbc/qxgedit.git,5219.9988078704,1,11,0,3,3,0,0,3 +qxmpp,-0.5119300912,1.2450413293,-0.9220194723,https://salsa.debian.org/xmpp-team/qxmpp, https://github.com/qxmpp-project/qxmpp.git,5420.5084722222,31,20,0,35,124,0,4,138 +AnnotationDbi,0.0182386654,2.4812782442,-0.5700140917,https://salsa.debian.org/r-pkg-team/r-bioc-annotationdbi, https://github.com/Bioconductor/AnnotationDbi.git,5746.8815509259,1,33,0,12,20,0,0,25 +BiocParallel,-0.3260931785,0.8473313885,-0.5919329079,https://salsa.debian.org/r-pkg-team/r-bioc-biocparallel, https://github.com/Bioconductor/BiocParallel,3995.750625,8,26,0,20,99,0,2,102 +Biostrings,-0.3434817294,1.1478032448,-0.6149383263,https://salsa.debian.org/r-pkg-team/r-bioc-biostrings, https://github.com/Bioconductor/Biostrings.git,5738.5090740741,8,24,0,13,81,0,0,84 +checkmate,0.0859378554,2.3942389138,-0.3501105734,https://salsa.debian.org/r-pkg-team/r-cran-checkmate, https://github.com/mllg/checkmate.git,3631.5784722222,11,53,0,13,94,0,0,94 +crosstalk,0.1167413716,2.2666840084,-0.3491412979,https://salsa.debian.org/r-pkg-team/r-cran-crosstalk, https://github.com/rstudio/crosstalk.git,2973.0628472222,5,12,0,11,160,0,0,160 +crul,-0.379530865,2.0620312007,-0.8847066541,https://salsa.debian.org/r-pkg-team/r-cran-crul, https://github.com/ropensci/crul.git,2488.6026967593,12,5,0,14,41,0,0,41 +eaf,-0.4302337125,1.8302163149,-0.875193303,https://salsa.debian.org/r-pkg-team/r-cran-eaf, https://github.com/MLopez-Ibanez/eaf/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +filehash,0.2805937396,2.9173226699,-0.2488806021,https://salsa.debian.org/r-pkg-team/r-cran-filehash, https://github.com/rdpeng/filehash/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +fs,0.5160636344,3.5162528692,-0.2653989308,https://salsa.debian.org/r-pkg-team/r-cran-fs, https://github.com/r-lib/fs/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +gbm,0.3279916789,3.2242802977,-0.4462694205,https://salsa.debian.org/r-pkg-team/r-cran-gbm, https://github.com/gbm-developers/gbm/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ggeffects,-0.4101115748,1.6625213011,-0.8467537951,https://salsa.debian.org/r-pkg-team/r-cran-ggeffects, https://github.com/strengejacke/ggeffects.git,2388.1511805556,6,17,0,11,238,0,0,240 +gnm,-0.0730492729,2.200175057,-0.5474121482,https://salsa.debian.org/r-pkg-team/r-cran-gnm, https://github.com/hturner/gnm.git,5664.8181712963,2,3,0,4,13,0,0,14 +gtable,0.3604619903,2.5918478385,-0.180163877,https://salsa.debian.org/r-pkg-team/r-cran-gtable, https://github.com/r-lib/gtable.git,4252.7226967593,3,15,0,11,32,0,0,32 +hms,0.2803130949,2.6915633826,-0.2371947898,https://salsa.debian.org/r-pkg-team/r-cran-hms, https://github.com/tidyverse/hms,2747.6862152778,3,21,1,13,45,0,0,46 +htmlwidgets,0.2223804836,2.4523082161,-0.2245513837,https://salsa.debian.org/r-pkg-team/r-cran-htmlwidgets, https://github.com/ramnathv/htmlwidgets.git,3428.7835185185,9,25,0,23,280,0,3,283 +httpuv,0.3875945435,2.2228957646,-0.1562790757,https://salsa.debian.org/r-pkg-team/r-cran-httpuv, https://github.com/rstudio/httpuv.git,3956.9682986111,10,30,0,24,220,0,0,220 +lmerTestR,-0.2259054579,2.0342017389,-0.6812216469,https://salsa.debian.org/r-pkg-team/r-cran-lmertest, https://github.com/runehaubo/lmerTestR.git,1009.6075115741,2,4,0,3,48,0,0,48 +memoise,0.1925230273,2.3898049253,-0.2410666252,https://salsa.debian.org/r-pkg-team/r-cran-memoise, https://github.com/hadley/memoise.git,1189.1777777778,16,15,0,25,125,0,0,126 +openssl,0.1408311251,1.9736821031,-0.3054590509,https://salsa.debian.org/r-pkg-team/r-cran-openssl, https://github.com/jeroen/openssl.git,3340.7487152778,9,9,0,11,104,0,0,105 +repr,-0.4200486236,1.3653979876,-0.7931488934,https://salsa.debian.org/r-pkg-team/r-cran-repr, https://github.com/IRkernel/repr.git,3009.4312615741,13,11,0,19,107,0,5,113 +rhandsontable,-0.5116959513,1.6967263903,-0.9527875743,https://salsa.debian.org/r-pkg-team/r-cran-rhandsontable, https://github.com/jrowen/rhandsontable.git,2472.1080902778,10,16,0,13,398,0,0,399 +stringr,0.0964776845,1.6534181355,-0.1881647637,https://salsa.debian.org/r-pkg-team/r-cran-stringr, https://github.com/tidyverse/stringr/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +svglite,-0.1885587375,2.5890472118,-0.9181907319,https://salsa.debian.org/r-pkg-team/r-cran-svglite, https://github.com/r-lib/svglite.git,4029.9752546296,5,22,0,17,93,0,0,94 +taxize,-0.5524366287,0.9514376137,-0.8175241604,https://salsa.debian.org/r-pkg-team/r-cran-taxize, https://github.com/ropensci/taxize.git,4557.2839467593,10,50,0,33,204,0,0,205 +uwot,-2.1360077927,0.1637273439,-2.6156421022,https://salsa.debian.org/r-pkg-team/r-cran-uwot, https://github.com/jlmelville/uwot.git,2010.5388078704,2,8,0,7,92,0,0,93 +webmockr,-0.4310376105,1.8277386609,-0.9299279762,https://salsa.debian.org/r-pkg-team/r-cran-webmockr, https://github.com/ropensci/webmockr.git,3289.3273726852,4,4,0,5,17,0,0,18 +rabbitvcs,1.6714946058,3.5426783719,0.7068248862,https://salsa.debian.org/python-team/packages/rabbitvcs, https://github.com/rabbitvcs/rabbitvcs.git,5506.5331481482,17,45,0,47,171,0,0,202 +radeontop,0.7905156023,3.9954216105,-0.1328982237,https://salsa.debian.org/debian/radeontop, https://github.com/clbr/radeontop.git,3881.8500231482,5,20,0,19,110,0,0,114 +radio_beam,0.0745073319,3.00372116,-0.6555904149,https://salsa.debian.org/debian-astro-team/radio-beam, https://github.com/radio-astro-tools/radio_beam,3526.8169791667,2,17,0,12,23,0,0,24 +radon,-1.263648812,0.2952439103,-1.5392083653,https://salsa.debian.org/python-team/packages/radon, https://github.com/rubik/radon.git,4032.6238773148,45,20,0,51,208,0,0,208 +radsecproxy,-1.2258402548,0.3482737763,-1.8643939562,https://salsa.debian.org/debian/radsecproxy, https://github.com/radsecproxy/radsecproxy.git,5771.4660069445,15,23,0,18,53,0,0,57 +nqp,0.9566218472,2.1033155845,0.3242094037,https://salsa.debian.org/perl6-team/rakudo, https://github.com/Raku/nqp.git,5159.1587847222,24,165,0,111,165,0,3,181 +raspell,0.0344606053,2.1888191814,-0.7015258119,https://salsa.debian.org/ruby-team/raspell, https://github.com/evan/raspell/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rasterio,-0.1071898305,2.015565348,-0.6779665658,https://salsa.debian.org/debian-gis-team/rasterio, https://github.com/rasterio/rasterio.git,3692.9866550926,96,61,0,141,10,0,13,158 +ratt,-0.4370630128,1.1211106019,-0.8710659773,https://salsa.debian.org/go-team/packages/ratt, https://github.com/Debian/ratt,2545.9663194445,4,6,0,7,15,0,0,15 +openrdate,0.4382808092,1.3203416533,0.0177798963,https://salsa.debian.org/debian/rdate, https://github.com/resurrecting-open-source-projects/openrdate,876.4736111111,0,4,0,3,6,0,0,6 +rdiff-backup,1.0568039762,1.5664048612,0.6904043618,https://salsa.debian.org/python-team/applications/rdiff-backup, https://github.com/rdiff-backup/rdiff-backup.git,5728.7282407408,45,27,0,46,61,0,0,90 +redis-py-cluster,-1.8001809263,0.773142511,-2.5308098382,https://salsa.debian.org/python-team/packages/redis-py-cluster, https://github.com/Grokzen/redis-py-cluster,3217.2146527778,55,25,3,58,325,0,0,330 +r.js,0.307781271,1.8450766211,-0.1061121379,https://salsa.debian.org/js-team/requirejs, https://github.com/requirejs/r.js.git,4511.8290740741,2,70,0,53,645,0,3,658 +ripe.atlas.sagan,-0.8350788458,1.3446746037,-1.3262997043,https://salsa.debian.org/python-team/packages/ripe-atlas-sagan, https://github.com/RIPE-NCC/ripe.atlas.sagan,2585.8181481482,2,22,0,13,17,0,0,19 +rlwrap,-0.017815457,0.2341200643,-0.1189260094,https://salsa.debian.org/debian/rlwrap, https://github.com/hanslub42/rlwrap,3317.1894560185,6,18,2,18,111,0,2,113 +rope,1.5978468361,3.9671998177,0.5551935604,https://salsa.debian.org/python-team/packages/rope, https://github.com/python-rope/rope,5713.8836458333,27,64,1,64,166,0,6,193 +bond_core,-0.4557919444,0.8030863044,-0.7461613445,https://salsa.debian.org/science-team/ros-bond-core, https://github.com/ros/bond_core,5161.8582291667,13,47,0,19,71,0,0,72 +genmsg,-0.0171725935,2.3757962259,-0.5825726576,https://salsa.debian.org/science-team/ros-genmsg, https://github.com/ros/genmsg,4008.1554976852,10,28,1,20,69,0,0,71 +genpy,-0.6136991201,-0.6108271088,-0.6141657046,https://salsa.debian.org/science-team/ros-genpy, https://github.com/ros/genpy.git,4178.1003472222,21,31,0,33,89,0,0,91 +geometry,-0.5506557748,0.4058218051,-0.730025317,https://salsa.debian.org/science-team/ros-geometry, https://github.com/ros/geometry,5094.8150694445,26,84,1,57,212,0,0,217 +image_common,-0.4587743218,0.0450984941,-0.6096991982,https://salsa.debian.org/science-team/ros-image-common, https://github.com/ros-perception/image_common.git,5179.6323611111,38,47,0,28,228,0,2,230 +interactive_markers,-0.2522280854,2.1257586459,-0.8003900423,https://salsa.debian.org/science-team/ros-interactive-markers, https://github.com/ros-visualization/interactive_markers.git,5635.5972685185,21,62,0,25,70,0,0,72 +kdl_parser,-0.3386572847,2.2780300935,-0.9138488719,https://salsa.debian.org/science-team/ros-kdl-parser, https://github.com/ros/kdl_parser,4840.7517013889,32,70,0,45,47,0,0,80 +laser_geometry,-0.418947578,0.783831601,-0.6760367366,https://salsa.debian.org/science-team/ros-laser-geometry, https://github.com/ros-perception/laser_geometry,5200.3426388889,9,44,0,21,63,0,0,65 +message_runtime,-0.2905975286,1.6300481977,-0.6771923217,https://salsa.debian.org/science-team/ros-message-runtime, https://github.com/ros/message_runtime.git,2931.9169212963,1,6,0,3,1,0,0,3 +navigation_msgs,-0.585376458,1.338109234,-0.9801897126,https://salsa.debian.org/science-team/ros-navigation-msgs, https://github.com/ros-planning/navigation_msgs,4055.7909027778,6,14,0,6,18,0,0,20 +nodelet_core,-0.0806493057,2.3062700037,-0.6511678143,https://salsa.debian.org/science-team/ros-nodelet-core, https://github.com/ros/nodelet_core,4750.0362731482,13,47,1,29,90,0,0,92 +pluginlib,-0.6634443823,0.7184010327,-0.9470101264,https://salsa.debian.org/science-team/ros-pluginlib, https://github.com/ros/pluginlib.git,5189.6688194445,29,44,0,22,130,0,0,131 +vision_opencv,-0.5521042677,0.5682460886,-0.8284518786,https://salsa.debian.org/science-team/ros-vision-opencv, https://github.com/ros-perception/vision_opencv,5223.1408680556,33,82,0,61,435,0,0,437 +rss2email,0.3314855505,0.7157681983,0.0455417284,https://salsa.debian.org/python-team/packages/rss2email, https://github.com/rss2email/rss2email.git,3888.6072916667,25,44,0,51,130,0,0,145 +actionpack-xml_parser,-0.2996184364,1.3428057072,-0.5955184752,https://salsa.debian.org/ruby-team/ruby-actionpack-xml-parser, https://github.com/rails/actionpack-xml_parser,1540.6708333333,2,13,0,9,34,0,0,34 +active_model_serializers,-2.6276778243,-0.1926975438,-3.2592310267,https://salsa.debian.org/ruby-team/ruby-active-model-serializers, https://github.com/rails-api/active_model_serializers/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +activeldap,-1.4156697614,-0.4511022965,-1.5988774793,https://salsa.debian.org/ruby-team/ruby-activeldap, https://github.com/activeldap/activeldap/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +activerecord-import,-1.9687719488,1.0512667089,-2.7168041881,https://salsa.debian.org/ruby-team/ruby-activerecord-import, https://github.com/zdennis/activerecord-import/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +nulldb,-2.9231293508,0.23307279,-3.9919104886,https://salsa.debian.org/ruby-team/ruby-activerecord-nulldb-adapter, https://github.com/nulldb/nulldb/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +acts_as_list,-1.8199662912,-1.4681851633,-1.8707866646,https://salsa.debian.org/ruby-team/ruby-acts-as-list, https://github.com/swanandp/acts_as_list,4913.7026157407,58,72,1,107,411,0,3,423 +addressable,0.4108416878,2.8755637332,-0.1685908494,https://salsa.debian.org/ruby-team/ruby-addressable, https://github.com/sporkmonger/addressable/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ahoy_email,-4.4435950424,-0.9410641928,-5.3641400248,https://salsa.debian.org/ruby-team/ruby-ahoy-email, https://github.com/ankane/ahoy_email/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +amqp,-1.8149935347,0.3288060449,-2.3239990954,https://salsa.debian.org/ruby-team/ruby-amqp, https://github.com/ruby-amqp/amqp.git,4994.8880787037,18,59,0,41,137,0,0,146 +api-pagination,-3.3044182875,-0.0567093294,-4.1951110602,https://salsa.debian.org/ruby-team/ruby-api-pagination, https://github.com/davidcelis/api-pagination.git,3040.7300578704,2,39,0,31,10,0,0,37 +arbre,-4.8029050341,-2.1273433872,-5.4412019806,https://salsa.debian.org/ruby-team/ruby-arbre, https://github.com/activeadmin/arbre/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +autoprefixer-rails,-0.2315449554,2.8349504609,-1.0454191857,https://salsa.debian.org/ruby-team/ruby-autoprefixer-rails, https://github.com/ai/autoprefixer-rails/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +awesome_print,-0.1589005828,2.0284975516,-0.8426752553,https://salsa.debian.org/ruby-team/ruby-awesome-print, https://github.com/awesome-print/awesome_print/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +backports,0.1539156176,2.1183447847,-0.4562399385,https://salsa.debian.org/ruby-team/ruby-backports, https://github.com/marcandre/backports/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +beaneater,-1.3606359648,1.1630055771,-2.0175948675,https://salsa.debian.org/ruby-team/ruby-beaneater, https://github.com/beanstalkd/beaneater,3900.0326736111,5,29,1,26,71,0,2,73 +browser,-0.1660846663,3.3869132145,-1.1464271076,https://salsa.debian.org/ruby-team/ruby-browser, https://github.com/fnando/browser.git,4214.4159027778,56,56,0,92,148,0,0,210 +clockwork,-1.6175893707,0.2897910827,-2.1048468681,https://salsa.debian.org/ruby-team/ruby-clockwork, https://github.com/Rykian/clockwork,4663.0759143519,22,47,0,52,93,0,0,126 +coffee-rails,0.3091824065,2.8142114504,-0.2736133929,https://salsa.debian.org/ruby-team/ruby-coffee-rails, https://github.com/rails/coffee-rails,3619.3450231482,7,34,0,31,141,0,0,142 +concurrent-ruby,0.5566030605,2.9441693658,-0.0717542554,https://salsa.debian.org/ruby-team/ruby-concurrent, https://github.com/ruby-concurrency/concurrent-ruby.git,3789.0811458333,43,132,0,147,281,0,0,329 +crack,-0.2561449098,2.087316532,-0.8772440851,https://salsa.debian.org/ruby-team/ruby-crack, https://github.com/jnunemaker/crack,4290.8581481482,10,28,0,32,97,0,0,104 +cri,-0.2343045243,2.3306711919,-0.7929491714,https://salsa.debian.org/ruby-team/ruby-cri, https://github.com/ddfreyne/cri,5399.7816666667,2,13,0,10,43,0,0,43 +curses,0.2397321091,3.7638726076,-0.6627285256,https://salsa.debian.org/ruby-team/ruby-curses, https://github.com/ruby/curses.git,5368.611724537,1,10,0,23,71,0,0,72 +dbf,-2.1729354458,-1.1249256758,-2.3569268761,https://salsa.debian.org/ruby-team/ruby-dbf, https://github.com/infused/dbf/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby-dbus,-0.5967981722,1.7453526545,-1.2803486489,https://salsa.debian.org/ruby-team/ruby-dbus, https://github.com/mvidner/ruby-dbus,4746.8070601852,9,33,0,28,89,0,0,93 +default_value_for,-0.8448203677,1.505826156,-1.3079220043,https://salsa.debian.org/ruby-team/ruby-default-value-for, https://github.com/FooBarWidget/default_value_for/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +delayed_job,-0.2286424071,2.470279089,-0.9617467357,https://salsa.debian.org/ruby-team/ruby-delayed-job, http://github.com/collectiveidea/delayed_job/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +devise-two-factor,-0.6624262185,1.6467126273,-1.2753154222,https://salsa.debian.org/ruby-team/ruby-devise-two-factor, https://github.com/tinfoil/devise-two-factor.git,3466.0953935185,20,37,0,43,252,0,0,258 +diaspora_federation,-4.7376054498,-2.2734066052,-5.4037842301,https://salsa.debian.org/ruby-team/ruby-diaspora-federation, https://github.com/diaspora/diaspora_federation/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +diff-lcs,0.3071796152,2.5635803467,-0.2628240016,https://salsa.debian.org/ruby-team/ruby-diff-lcs, https://github.com/halostatue/diff-lcs/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +diffy,-0.2255220294,2.8131844872,-1.0283299527,https://salsa.debian.org/ruby-team/ruby-diffy, https://github.com/samg/diffy,4494.6685763889,5,31,0,28,132,0,0,132 +distribution,-2.1011793074,0.9112617849,-3.0579162724,https://salsa.debian.org/ruby-team/ruby-distribution, https://github.com/sciruby/distribution/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +docker-api,0.2906321596,4.2039401292,-1.0121523475,https://salsa.debian.org/ruby-team/ruby-docker-api, https://github.com/swipely/docker-api,3249.0699421296,17,99,0,86,233,0,0,256 +ruby-domain_name,0.2651495015,2.3454735809,-0.1388653919,https://salsa.debian.org/ruby-team/ruby-domain-name, https://github.com/knu/ruby-domain_name/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +em-synchrony,-2.0598738156,0.4564215093,-2.9786603575,https://salsa.debian.org/ruby-team/ruby-em-synchrony, https://github.com/igrigorik/em-synchrony,2910.8221180556,2,57,0,41,186,0,1,190 +factory_girl,-1.4263061364,0.5433633199,-1.9953583847,https://salsa.debian.org/ruby-team/ruby-factory-girl, https://github.com/thoughtbot/factory_girl.git,4913.9169675926,224,76,0,233,139,0,74,424 +fakeredis,-3.9027611166,-1.9110018697,-4.3340476978,https://salsa.debian.org/ruby-team/ruby-fakeredis, https://github.com/guilleiguaran/fakeredis.git,3981.188900463,20,88,0,77,219,0,0,219 +fakeweb,-2.1455045277,-0.7731874586,-2.5667966225,https://salsa.debian.org/ruby-team/ruby-fakeweb, https://github.com/chrisk/fakeweb.git,3218.6643865741,6,19,0,19,136,0,0,145 +faraday_middleware,-0.2690476788,2.0619472224,-0.7696905372,https://salsa.debian.org/ruby-team/ruby-faraday-middleware, https://github.com/lostisland/faraday_middleware,4563.5818981482,47,29,1,58,244,0,14,260 +fast_gettext,-0.1209401725,1.2360688234,-0.5688307825,https://salsa.debian.org/ruby-team/ruby-fast-gettext, https://github.com/grosser/fast_gettext,5110.3340046296,3,48,0,29,84,0,4,90 +fastimage,-0.9259690851,1.7219406128,-1.4847810256,https://salsa.debian.org/ruby-team/ruby-fastimage, https://github.com/sdsykes/fastimage,5223.7173726852,7,44,0,46,117,0,0,125 +fog-rackspace,-0.4991371264,1.9082417738,-1.1448163084,https://salsa.debian.org/ruby-team/ruby-fog-rackspace, https://github.com/fog/fog-rackspace,1479.8924537037,3,5,0,4,40,0,0,40 +ruby-fogbugz,-0.712082495,1.9230578337,-1.2759846712,https://salsa.debian.org/ruby-team/ruby-fogbugz, https://github.com/firmafon/ruby-fogbugz,2091.2249884259,2,11,0,9,16,0,0,16 +font-awesome-rails,-0.8180755531,0.4347325375,-1.0809960447,https://salsa.debian.org/ruby-team/ruby-font-awesome-rails, https://github.com/bokmann/font-awesome-rails,4227.7840856482,7,30,0,28,346,0,2,349 +foreman,-0.8272618131,1.5097537204,-1.3755635236,https://salsa.debian.org/ruby-team/ruby-foreman, http://github.com/ddollar/foreman/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +fssm,-0.4348169171,2.3642288128,-1.1313798455,https://salsa.debian.org/ruby-team/ruby-fssm, https://github.com/ttilley/fssm.git,2641.9220023148,2,11,0,9,53,0,0,54 +gelf-rb,-2.0473403812,0.3850902599,-2.7168981677,https://salsa.debian.org/ruby-team/ruby-gelf, https://github.com/Graylog2/gelf-rb,4546.1701157407,9,25,0,21,141,0,0,142 +gettext_i18n_rails,-0.7613069529,2.0256293486,-1.5091771924,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails, https://github.com/grosser/gettext_i18n_rails,5235.7802546296,11,59,0,51,141,0,0,144 +gettext_i18n_rails_js,-0.9612583287,2.4872560383,-1.8785203213,https://salsa.debian.org/ruby-team/ruby-gettext-i18n-rails-js, https://github.com/webhippie/gettext_i18n_rails_js,4076.9871759259,2,24,0,18,7,0,0,22 +gettext-setup-gem,-0.5280470276,1.250073738,-0.9596386922,https://salsa.debian.org/puppet-team/ruby-gettext-setup, https://github.com/puppetlabs/gettext-setup-gem,2424.9263310185,17,20,0,23,43,0,0,44 +ruby-gir-ffi,-1.5231800876,0.4754387315,-2.1310553218,https://salsa.debian.org/ruby-team/ruby-gir-ffi, https://github.com/mvz/ruby-gir-ffi,5437.5734375,3,7,0,7,35,0,4,39 +ruby-git,-0.6108616509,1.212287958,-1.0441459189,https://salsa.debian.org/ruby-team/ruby-git, https://github.com/ruby-git/ruby-git/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby-team,-2.3136488279,0.3256391086,-2.9739498003,https://salsa.debian.org/ruby-team/ruby-github-api,https://salsa.debian.org/ruby-team/ruby-github-api,2392.4012268519,0,6,0,0,0,0,0,0 +ruby-team,-0.649517699,1.7591556518,-1.1632479129,https://salsa.debian.org/ruby-team/ruby-github-linguist,https://salsa.debian.org/ruby-team/ruby-github-linguist,3497.9967939815,0,11,0,0,0,0,0,0 +ruby-team,-1.105143203,0.5312271054,-1.4552026927,https://salsa.debian.org/ruby-team/ruby-github-markdown,https://salsa.debian.org/ruby-team/ruby-github-markdown,3170.9246875,0,7,0,0,0,0,0,0 +ruby-team,-0.0402315958,2.2658512207,-0.751462188,https://salsa.debian.org/ruby-team/ruby-github-markup,https://salsa.debian.org/ruby-team/ruby-github-markup,3514.5048263889,0,15,0,0,0,0,0,0 +globalid,0.5667944257,3.0518520834,-0.164807865,https://salsa.debian.org/ruby-team/ruby-globalid, https://github.com/rails/globalid/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +guard,-2.9807132483,-1.6178467609,-3.3128126957,https://salsa.debian.org/ruby-team/ruby-guard, https://github.com/guard/guard.git,4726.434537037,21,191,0,150,537,0,199,776 +hipchat-rb,-0.6566424992,1.6469892033,-1.2629040655,https://salsa.debian.org/ruby-team/ruby-hipchat, https://github.com/hipchat/hipchat-rb,2705.747349537,7,102,0,82,222,0,1,227 +hiredis-rb,-0.8641250548,1.2597163597,-1.3598436427,https://salsa.debian.org/ruby-team/ruby-hiredis, https://github.com/redis/hiredis-rb.git,4451.3495601852,10,19,0,20,124,0,1,127 +http.rb,0.5328919596,3.1587146036,-0.5041412503,https://salsa.debian.org/ruby-team/ruby-http, https://github.com/httprb/http.rb,4428.9060416667,68,68,2,106,42,0,37,169 +jquery-rails,0.4762916242,2.5289403929,-0.1671409996,https://salsa.debian.org/ruby-team/ruby-jquery-rails, https://github.com/rails/jquery-rails.git,4697.0958680556,14,69,0,65,417,0,1,425 +jquery-ui-rails,-0.5553100399,1.254748517,-1.1496297544,https://salsa.debian.org/ruby-team/ruby-jquery-ui-rails, https://github.com/joliss/jquery-ui-rails,4080.9697453704,4,20,0,18,217,0,0,217 +js-routes,-3.4644388809,-0.4489124279,-4.2577079397,https://salsa.debian.org/ruby-team/ruby-js-routes, https://github.com/railsware/js-routes,3471.607662037,19,61,0,62,240,0,0,242 +json-jwt,-0.6646781739,1.8243330124,-1.3376720774,https://salsa.debian.org/ruby-team/ruby-json-jwt, https://github.com/nov/json-jwt/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +json-schema,-2.1030941989,-0.2528356332,-2.4758055487,https://salsa.debian.org/ruby-team/ruby-json-schema, https://github.com/voxpupuli/json-schema/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +json_spec,-2.5962462222,0.2357466454,-3.2697648762,https://salsa.debian.org/ruby-team/ruby-json-spec, https://github.com/collectiveidea/json_spec,2153.749525463,1,19,0,16,121,0,0,122 +ruby-jwt,-0.0089310607,2.9299158213,-0.7358933013,https://salsa.debian.org/ruby-team/ruby-jwt, https://github.com/jwt/ruby-jwt/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +kakasi_ffi,-3.4351277044,-0.6639963768,-4.2188884559,https://salsa.debian.org/ruby-team/ruby-kakasi-ffi, https://github.com/knu/kakasi_ffi/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +kaminari,-0.5485185975,1.0463989901,-0.9640266374,https://salsa.debian.org/ruby-team/ruby-kaminari, https://github.com/kaminari/kaminari,4634.2992476852,35,152,3,153,70,0,47,257 +kitchen-salt,-5.0389266876,-2.9100359531,-5.4788025236,https://salsa.debian.org/ruby-team/ruby-kitchen-salt, https://github.com/saltstack/kitchen-salt/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +kramdown,0.1585424898,1.288591817,-0.1774821194,https://salsa.debian.org/ruby-team/ruby-kramdown, https://github.com/gettalong/kramdown/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby-ldap,0.9723697162,3.8411235557,-0.1487304827,https://salsa.debian.org/ruby-team/ruby-ldap, https://github.com/bearded/ruby-ldap,3395.5528703704,4,15,0,10,49,0,2,51 +libxml-ruby,-0.1652439642,1.5527354518,-0.7540442503,https://salsa.debian.org/ruby-team/ruby-libxml, https://github.com/xml4r/libxml-ruby/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +mechanize,-0.3858941786,1.2331276206,-0.8805502233,https://salsa.debian.org/ruby-team/ruby-mechanize, https://github.com/sparklemotion/mechanize.git,5735.6054513889,5,12,0,103,529,0,6,548 +moneta,-0.5640132497,0.2515905482,-0.8103956074,https://salsa.debian.org/ruby-team/ruby-moneta, https://github.com/moneta-rb/moneta,5182.1595023148,20,32,0,38,98,45,0,155 +msgpack-ruby,0.2893496157,2.7505742261,-0.3169362878,https://salsa.debian.org/ruby-team/ruby-msgpack, https://github.com/msgpack/msgpack-ruby,4471.1247453704,7,115,0,71,168,0,0,198 +multi_json,0.6582999616,3.1811345182,-0.0546345167,https://salsa.debian.org/ruby-team/ruby-multi-json, https://github.com/intridea/multi_json,3679.9527430556,10,44,1,48,209,0,1,218 +ruby-team,-0.6432733622,1.9225985539,-1.2230466394,https://salsa.debian.org/ruby-team/ruby-omniauth-github,https://salsa.debian.org/ruby-team/ruby-omniauth-github,3158.4246296296,0,8,0,0,0,0,0,0 +omniauth-gitlab,-0.8634553119,1.3390999825,-1.29446321,https://salsa.debian.org/ruby-team/ruby-omniauth-gitlab, https://github.com/linchus/omniauth-gitlab/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +omniauth-openid,-2.3993574129,-0.1716426742,-2.9778348021,https://salsa.debian.org/ruby-team/ruby-omniauth-openid, https://github.com/intridea/omniauth-openid,4671.7113888889,3,19,0,14,49,0,0,57 +omniauth-saml,-0.5579531725,2.353187853,-1.2497308047,https://salsa.debian.org/ruby-team/ruby-omniauth-saml, https://github.com/PracticallyGreen/omniauth-saml.git,4118.1158217593,12,46,0,40,204,0,0,207 +open4,0.0907349731,2.6591042616,-0.4921712465,https://salsa.debian.org/ruby-team/ruby-open4, https://github.com/ahoward/open4,1740.4206597222,2,8,0,7,38,0,0,40 +openid_connect,-1.1502490607,2.0041817142,-2.12720173,https://salsa.debian.org/ruby-team/ruby-openid-connect, https://github.com/nov/openid_connect,4182.9791435185,0,17,0,9,93,0,3,96 +packable,-3.0992250392,-0.7077744526,-3.6975414863,https://salsa.debian.org/ruby-team/ruby-packable, https://github.com/marcandre/packable/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +paint,0.0340746752,1.782920882,-0.2850565902,https://salsa.debian.org/ruby-team/ruby-paint, https://github.com/janlelis/paint.git,4285.910474537,4,14,0,14,30,0,0,31 +parallel,0.6193238415,3.5398365982,-0.3774990833,https://salsa.debian.org/ruby-team/ruby-parallel, https://github.com/grosser/parallel/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +paranoia,-0.1012866416,3.7176288674,-1.2611069956,https://salsa.debian.org/ruby-team/ruby-paranoia, https://github.com/rubysherpas/paranoia/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +ruby_parser,-0.2008414789,1.500579567,-0.6200732147,https://salsa.debian.org/ruby-team/ruby-parser, https://github.com/seattlerb/ruby_parser.git,5671.9061921296,0,3,0,2,215,0,0,216 +pathname2,-0.9624861378,1.7646456748,-1.5703348288,https://salsa.debian.org/ruby-team/ruby-pathname2, https://github.com/djberg96/pathname2,4825.4280902778,0,6,0,1,5,0,1,6 +pdf-reader,0.5615735066,2.9676531602,-0.1143510479,https://salsa.debian.org/ruby-team/ruby-pdf-reader, https://github.com/yob/pdf-reader,5741.4093981482,14,55,0,50,0,0,0,50 +posix-spawn,0.1309262243,1.6920070582,-0.2475689059,https://salsa.debian.org/ruby-team/ruby-posix-spawn, https://github.com/rtomayko/posix-spawn,3425.5233101852,3,31,0,26,114,0,0,116 +rack,0.5237066371,1.7902869998,0.0263794792,https://salsa.debian.org/ruby-team/ruby-rack, https://github.com/rack/rack,5772.4169444445,210,362,9,391,706,0,76,1026 +rack-cors,-0.412726661,2.4616028734,-1.1580055428,https://salsa.debian.org/ruby-team/ruby-rack-cors, https://github.com/cyu/rack-cors,4892.2220601852,37,39,0,61,338,0,0,361 +punycode.js,0.5843909394,4.0464162194,-0.4662308176,https://salsa.debian.org/ruby-team/ruby-rails-assets-punycode, https://github.com/bestiejs/punycode.js,4371.2037384259,18,3,0,19,151,0,0,151 +rails-dom-testing,1.1395257959,2.3186509997,0.452605243,https://salsa.debian.org/ruby-team/ruby-rails-dom-testing, https://github.com/rails/rails-dom-testing,3596.7865625,8,32,0,32,86,0,0,88 +rails-html-sanitizer,0.0035830645,1.4381559694,-0.2871912749,https://salsa.debian.org/ruby-team/ruby-rails-html-sanitizer, https://github.com/rails/rails-html-sanitizer,3530.5188078704,6,25,0,27,142,0,0,143 +rails-i18n,-0.8873907002,1.4792293029,-1.4400451677,https://salsa.debian.org/ruby-team/ruby-rails-i18n, https://github.com/svenfuchs/rails-i18n/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rainbow,-0.0554541407,2.1809136318,-0.4874876801,https://salsa.debian.org/ruby-team/ruby-rainbow, https://github.com/sickill/rainbow/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rbnacl,-0.5101798059,1.8184409822,-1.1442616342,https://salsa.debian.org/ruby-team/ruby-rbnacl, https://github.com/RubyCrypto/rbnacl,3765.2138425926,11,37,2,39,107,0,6,113 +rbpdf,0.3170747692,3.3087733487,-0.4838111804,https://salsa.debian.org/ruby-team/ruby-rbpdf, https://github.com/naitoh/rbpdf/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +rchardet,0.8898007893,4.3708723994,-0.1239109738,https://salsa.debian.org/ruby-team/ruby-rchardet, https://github.com/jmhodges/rchardet,5157.8658101852,2,16,0,14,39,0,0,42 +rdiscount,0.5400773203,2.7137511021,-0.1397503416,https://salsa.debian.org/ruby-team/ruby-rdiscount, https://github.com/rtomayko/rdiscount,5495.3965277778,14,23,3,28,170,0,9,190 +re2,-0.3975240745,2.0675577643,-1.080838045,https://salsa.debian.org/ruby-team/ruby-re2, https://github.com/mudge/re2.git,4891.9840277778,5,6,0,6,31,0,1,32 +recaptcha,-0.7227524813,1.5115844498,-1.1563133628,https://salsa.debian.org/ruby-team/ruby-recaptcha, https://github.com/ambethia/recaptcha,5167.5063425926,32,133,0,118,0,0,20,138 +recursive-open-struct,-0.9586694143,1.8658984093,-1.696474562,https://salsa.debian.org/ruby-team/ruby-recursive-open-struct, https://github.com/aetherknight/recursive-open-struct/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +redcarpet,0.0453332853,0.8616945524,-0.2027621969,https://salsa.debian.org/ruby-team/ruby-redcarpet, https://github.com/vmg/redcarpet/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +redcloth,0.3958422452,2.2802681181,-0.2616585591,https://salsa.debian.org/ruby-team/ruby-redcloth, https://github.com/jgarber/redcloth.git,5745.4538541667,8,27,0,31,85,0,2,99 +redis-rb,-0.1845294704,1.6465311996,-0.5725594934,https://salsa.debian.org/ruby-team/ruby-redis, https://github.com/redis/redis-rb/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +redis-actionpack,-0.8365151572,1.4579951576,-1.2916857062,https://salsa.debian.org/ruby-team/ruby-redis-actionpack, https://github.com/redis-store/redis-actionpack,3755.356412037,8,18,0,15,48,0,0,50 +redis-namespace,-0.5136949026,1.5651978248,-1.007887329,https://salsa.debian.org/ruby-team/ruby-redis-namespace, https://github.com/resque/redis-namespace,5080.3240046296,46,64,0,90,271,0,0,277 +ronn-ng,0.0051973803,1.3529280372,-0.5133229589,https://salsa.debian.org/ruby-team/ruby-ronn, https://github.com/apjanke/ronn-ng,5091.8833101852,3,20,4,19,40,0,0,50 +sass-rails,0.1295459675,2.3430805193,-0.2869628621,https://salsa.debian.org/ruby-team/ruby-sass-rails, https://github.com/rails/sass-rails,3032.8716550926,10,70,2,62,828,0,0,832 +seed-fu,-0.3406843156,2.6986297961,-1.1723771613,https://salsa.debian.org/ruby-team/ruby-seed-fu, https://github.com/mbleigh/seed-fu,3639.382974537,1,34,0,23,185,0,4,196 +select2-rails,0.0255233967,4.0170630036,-1.0829307262,https://salsa.debian.org/ruby-team/ruby-select2-rails, https://github.com/argerim/select2-rails,3178.7430787037,3,45,0,37,323,0,4,328 +signet,-0.6999934393,1.7242691265,-1.2316883956,https://salsa.debian.org/ruby-team/ruby-signet, https://github.com/googleapis/signet,4807.4255671296,28,44,4,52,165,0,1,167 +sinatra,0.3867492716,1.8300987882,-0.1759543833,https://salsa.debian.org/ruby-team/ruby-sinatra, https://github.com/sinatra/sinatra.git,5774.2084027778,157,401,0,368,41,0,0,396 +slack-notifier,-0.2300777475,2.6813920387,-0.9614495819,https://salsa.debian.org/ruby-team/ruby-slack-notifier, https://github.com/slack-notifier/slack-notifier.git,2800.9713773148,7,25,0,26,174,0,0,175 +solve,-1.8731536972,0.3722546164,-2.3421355548,https://salsa.debian.org/ruby-team/ruby-solve, https://github.com/berkshelf/solve,3205.9559722222,4,24,0,17,61,0,0,61 +sprockets,0.2127696789,2.1502629674,-0.2372190965,https://salsa.debian.org/ruby-team/ruby-sprockets, https://github.com/rails/sprockets.git,3278.0454050926,50,229,0,213,572,0,0,665 +stomp,-0.0622865151,2.2785748082,-0.5399267706,https://salsa.debian.org/ruby-team/ruby-stomp, https://github.com/stompgem/stomp.git,4485.6743055556,3,49,0,31,92,0,4,103 +svg-graph2,-0.3606208872,1.999901842,-1.0364827172,https://salsa.debian.org/ruby-team/ruby-svg-graph, https://github.com/lumean/svg-graph2,5000.5990393519,3,24,0,20,18,0,1,29 +task_list,-0.7972452731,1.5304821718,-1.2730429771,https://salsa.debian.org/ruby-team/ruby-task-list, https://github.com/deckar01/task_list.git,3500.9144675926,4,16,0,14,10,0,2,22 +test_declarative,-3.1861402959,-0.6802948039,-3.7322816142,https://salsa.debian.org/ruby-team/ruby-test-declarative, https://github.com/svenfuchs/test_declarative/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +test-unit,0.5083159182,3.1187784557,-0.0204072698,https://salsa.debian.org/ruby-team/ruby-test-unit, https://github.com/test-unit/test-unit/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +text,0.3951935457,2.8287836535,-0.1391551665,https://salsa.debian.org/ruby-team/ruby-text, https://github.com/threedaymonk/text,2533.6334375,0,20,0,9,25,0,0,26 +thor,0.4898388928,3.0323114244,-0.1082643553,https://salsa.debian.org/ruby-team/ruby-thor, https://github.com/erikhuda/thor/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +thread_safe,0.7899153314,3.4062016312,-0.0364056562,https://salsa.debian.org/ruby-team/ruby-thread-safe, https://github.com/ruby-concurrency/thread_safe,1914.5871759259,2,18,1,17,28,0,0,34 +timecop,-1.6249475535,-0.136572147,-1.9770285904,https://salsa.debian.org/ruby-team/ruby-timecop, https://github.com/travisjeffery/timecop/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +toml-rb,-1.0965997307,1.7054562066,-1.7254826934,https://salsa.debian.org/ruby-team/ruby-toml-rb, https://github.com/emancu/toml-rb.git,3791.6442361111,5,30,0,29,61,0,0,61 +ruby-unf_ext,0.5249786091,2.442343707,-0.0572331883,https://salsa.debian.org/ruby-team/ruby-unf-ext, https://github.com/knu/ruby-unf_ext,4837.9721180556,5,11,0,11,144,0,0,145 +validates_url,-1.5783095032,0.6947261226,-2.1729142188,https://salsa.debian.org/ruby-team/ruby-validate-url, https://github.com/perfectline/validates_url.git,4598.7266782407,25,34,0,47,141,0,0,144 +vcr,-1.8354081732,0.3458876474,-2.4299770711,https://salsa.debian.org/ruby-team/ruby-vcr, https://github.com/vcr/vcr,5026.1477083333,86,97,0,152,774,0,33,823 +xpath,0.2253924511,2.6354082514,-0.4532834945,https://salsa.debian.org/ruby-team/ruby-xpath, https://github.com/teamcapybara/xpath.git,4699.0999421296,4,29,0,22,77,0,0,77 +yajl-ruby,0.1342868737,1.2952090225,-0.1984486272,https://salsa.debian.org/ruby-team/ruby-yajl, https://github.com/brianmario/yajl-ruby,4761.9604282407,20,41,0,45,266,0,0,272 +yaml_db,-1.6914754372,0.8448802104,-2.2259427821,https://salsa.debian.org/ruby-team/ruby-yaml-db, https://github.com/yamldb/yaml_db,4943.5546759259,10,17,0,20,191,0,3,198 +yell,-2.2945770851,0.1365084458,-2.7815318187,https://salsa.debian.org/ruby-team/ruby-yell, https://github.com/rudionrails/yell,3852.7088541667,5,10,0,12,42,0,5,47 +rumur,-3.5360734663,-0.8290791088,-4.2689394833,https://github.com/Smattr/rumur.git,https://github.com/Smattr/rumur.git,3378.9262037037,0,5,0,2,8,0,0,8 +sagetex,-0.1549904573,0.5108732423,-0.363447528,https://salsa.debian.org/tex-team/sagetex, https://github.com/dandrake/sagetex/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +salmon,-0.3649631387,1.5121758625,-0.9283685843,https://salsa.debian.org/med-team/salmon, https://github.com/COMBINE-lab/salmon/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +samizdat,-2.1436226321,0.0590823844,-2.8619607448,https://salsa.debian.org/ruby-team/samizdat, https://github.com/angdraug/samizdat,3433.2320138889,0,3,0,1,2,0,0,2 +samplv1,0.1318819979,2.3880742784,-0.4301804768,https://salsa.debian.org/multimedia-team/samplv1, https://github.com/rncbc/samplv1.git,4120.8180671296,1,15,0,6,28,0,3,32 +sandsifter,-0.8702992262,1.6152724713,-1.5907539971,https://salsa.debian.org/pkg-security-team/sandsifter, https://github.com/rigred/sandsifter,736.7519907407,4,12,0,7,12,0,0,15 +sasview,-1.0627164618,0.2502972617,-1.4248935984,https://salsa.debian.org/science-team/sasview, https://github.com/SasView/sasview.git,5783.1973842593,20,119,0,59,30,0,22,86 +scap-workbench,-0.3629110649,2.6509329851,-1.2724650562,https://salsa.debian.org/debian/scap-workbench, https://github.com/OpenSCAP/scap-workbench.git,4660.2892824074,13,37,0,20,138,0,7,146 +schismtracker,0.2030503767,1.1666319026,-0.2400483232,https://salsa.debian.org/multimedia-team/schism, https://github.com/schismtracker/schismtracker,4666.6107291667,15,42,0,31,165,0,6,173 +coordgenlibs,-0.6657659236,1.5707387755,-1.125402023,https://salsa.debian.org/science-team/schroedinger-coordgenlibs, https://github.com/schrodinger/coordgenlibs.git,2268.1054282408,12,9,0,14,28,0,0,29 +scram,0.0112378447,2.4451248274,-0.690432285,https://salsa.debian.org/science-team/scram, https://github.com/rakhimov/scram.git,1943.5289930556,2,6,0,3,21,0,1,22 +scrcpy,-0.0596273247,2.3700526091,-0.5833876176,https://salsa.debian.org/yangfl-guest/scrcpy, https://github.com/Genymobile/scrcpy,2194.2825462963,140,11,2,121,680,0,13,788 +screenFetch,0.8393718554,3.4206935722,0.0064658687,https://salsa.debian.org/debian/screenfetch, https://github.com/KittyKatt/screenFetch.git,4948.5768518519,38,182,0,141,38,0,5,173 +screengrab,0.1432641642,1.1078243645,-0.1380237462,https://salsa.debian.org/lxqt-team/screengrab, https://github.com/lxqt/screengrab.git,4829.5888194445,59,21,0,54,65,0,0,87 +scrot,0.5207763404,1.4883547353,0.0924816727,https://salsa.debian.org/debian/scrot, https://github.com/resurrecting-open-source-projects/scrot,1711.9000347222,19,22,0,23,60,0,0,64 +scrypt,-0.3160075827,1.9170411595,-0.7532305313,https://salsa.debian.org/debian/scrypt, https://github.com/Tarsnap/scrypt.git,4121.4724652778,3,11,0,10,45,0,0,46 +sdate,-0.1644092081,1.9663758042,-0.7580677936,https://github.com/df7cb/sdate,https://github.com/df7cb/sdate,5170.3786689815,3,6,0,6,13,0,0,14 +seascope,0.1418549141,3.3764775459,-0.9515590832,https://salsa.debian.org/debian/seascope, https://github.com/anilFree/seascope.git,2921.7499305556,1,15,0,6,6,0,0,7 +selinux,-1.9466562158,0.7511457525,-2.5791957587,https://salsa.debian.org/selinux-team/secilc, https://github.com/SELinuxProject/selinux.git,5593.8026157407,179,30,0,124,83,0,12,182 +THC-Archive,1.9359167993,4.4474577245,0.8251568889,https://salsa.debian.org/debian/secure-delete, https://github.com/hackerschoice/THC-Archive,1834.166099537,2,3,0,3,7,0,0,8 +selinux,0.7649754209,3.3984155889,-0.1297129167,https://salsa.debian.org/selinux-team/selinux-python, https://github.com/SELinuxProject/selinux.git,5593.8026157407,179,30,0,124,83,0,12,182 +semi,-0.0012315826,0.7304306594,-0.3636303627,https://salsa.debian.org/debian/semi, https://github.com/wanderlust/semi,5270.9675347222,3,13,0,9,12,0,0,14 +sendemail,0.5149987593,2.580274247,-0.1001009863,https://github.com/mogaal/sendemail,https://github.com/mogaal/sendemail,1084.8616782407,0,2,0,2,42,0,0,43 +sendxmpp,1.6949802972,3.915419876,0.6723168015,https://salsa.debian.org/xmpp-team/sendxmpp, https://github.com/lhost/sendxmpp.git,3008.6224768519,2,6,0,3,52,0,0,52 +ser2net,0.6438108629,1.9333620158,-0.0355562238,https://salsa.debian.org/debian/ser2net, https://github.com/cminyard/ser2net,5671.7052083333,14,9,0,15,113,0,0,117 +serd,0.7042703147,2.9113947553,0.0669085772,https://salsa.debian.org/multimedia-team/serd, https://github.com/drobilla/serd.git ,4700.7071990741,5,1,0,6,28,0,0,29 +serverspec-runner,-1.6557747415,0.9321001072,-2.3818100795,https://salsa.debian.org/ruby-team/serverspec-runner, https://github.com/hiracy/serverspec-runner,3100.2933101852,2,5,0,2,5,0,0,5 +setBfree,0.0170022664,2.0259314608,-0.4587247273,https://salsa.debian.org/multimedia-team/setbfree, https://github.com/pantherb/setBfree.git,3675.3818055556,8,6,0,10,61,0,0,61 +shapelib,0.2832338511,1.1530187147,-0.0270271594,https://salsa.debian.org/debian-gis-team/shapelib, https://github.com/OSGeo/shapelib.git,5762.8618865741,4,13,0,16,34,0,0,36 +shellinabox,1.4229551917,3.5460511425,0.4536040301,https://github.com/shellinabox/shellinabox/,https://github.com/shellinabox/shellinabox,3681.1884027778,7,26,0,21,143,0,3,152 +shortuuid,-0.4574144902,1.8821725228,-1.1753645345,https://salsa.debian.org/python-team/packages/shortuuid, https://github.com/skorokithakis/shortuuid.git,4431.3497800926,19,17,0,30,96,0,0,97 +shotcut,-0.0371835128,1.3895028111,-0.3956647911,https://salsa.debian.org/multimedia-team/shotcut, https://github.com/mltframework/shotcut,4437.0470486111,40,29,1,54,300,0,0,337 +should.js,-1.54067697,-0.4927936502,-1.7632687804,https://salsa.debian.org/js-team/should.js, https://github.com/shouldjs/should.js.git,3267.8598842593,8,77,0,66,165,0,6,211 +simple-obfs,-0.4921488347,2.3362837337,-1.2782165107,https://salsa.debian.org/bridges-team/simple-obfs, https://github.com/shadowsocks/simple-obfs.git,958.8196412037,21,12,0,23,215,0,0,217 +simple-tpm-pk11,-0.6002403517,1.7339981128,-1.3361738434,https://salsa.debian.org/debian/simple-tpm-pk11, https://github.com/ThomasHabets/simple-tpm-pk11,3536.4266898148,8,13,0,16,52,0,1,53 +simpleburn,1.1321508597,4.0273397461,0.0153846721,https://github.com/mati75/simpleburn.git,https://github.com/mati75/simpleburn.git,1916.8323611111,0,3,0,2,4,0,0,5 +simpleeval,-1.0513943081,0.6565241205,-1.3725768937,https://salsa.debian.org/tryton-team/simpleeval, https://github.com/danthedeckie/simpleeval.git,3363.307037037,10,23,0,21,94,0,0,95 +simplejson,0.7781612347,2.530704791,0.1122369737,https://salsa.debian.org/python-team/packages/simplejson, https://github.com/simplejson/simplejson,5762.0850115741,6,42,0,35,85,0,0,111 +ssr,0.5074767944,2.5172653323,-0.0714681759,https://salsa.debian.org/multimedia-team/simplescreenrecorder, https://github.com/MaartenBaert/ssr,3464.0590972222,13,48,0,42,288,0,1,318 +simplesnap,-0.3478600805,2.4893157768,-1.2512484875,https://github.com/jgoerzen/simplesnap,https://github.com/jgoerzen/simplesnap,3116.7912384259,1,6,0,4,24,0,0,24 +sinntp,-0.7486132539,2.2241911903,-1.864431269,https://salsa.debian.org/python-team/packages/sinntp, https://github.com/jwilk/sinntp.git,5461.030625,0,2,0,2,3,0,0,4 +skiboot,-1.2267708754,0.8083409101,-1.8023566904,https://salsa.debian.org/debian/skiboot, https://github.com/open-power/skiboot.git,3435.5121180556,156,19,0,99,117,0,0,167 +dict,-0.1341965123,0.4940218282,-0.3529875318,https://salsa.debian.org/debian/skkdic, https://github.com/skk-dev/dict,2069.106724537,1,13,0,14,27,0,0,27 +skktools,-0.7739115557,-0.492281698,-0.8304382583,https://salsa.debian.org/debian/skktools, https://github.com/skk-dev/skktools,4603.9943402778,1,14,0,9,15,0,0,15 +sl,0.323098945,1.3268829075,-0.065447292,https://salsa.debian.org/debian/sl, https://github.com/mtoyoda/sl,1446.5538657407,0,15,0,10,116,0,0,116 +sleef,-2.2104947128,0.3306322864,-2.7673859805,https://salsa.debian.org/science-team/sleef, https://github.com/shibatch/sleef.git,2789.4703935185,24,7,0,30,20,0,2,45 +sleuthkit,0.248789794,0.7322070572,0.0073823657,https://salsa.debian.org/pkg-security-team/sleuthkit, https://github.com/sleuthkit/sleuthkit,5541.6815740741,21,144,0,79,39,0,2,97 +slowhttptest,-0.5285418268,1.6541713882,-0.9836957935,https://salsa.debian.org/debian/slowhttptest, https://github.com/shekyan/slowhttptest,4436.458900463,5,15,0,11,62,0,3,65 +smarty,0.3504374167,1.5540551587,-0.1505110391,https://salsa.debian.org/debian/smarty3, https://github.com/smarty-php/smarty.git,3318.9346180556,45,52,0,58,489,0,1,510 +smbmap,-0.0942111377,1.2729571655,-0.3894550484,https://salsa.debian.org/pkg-security-team/smbmap, https://github.com/ShawnDEvans/smbmap.git,3137.7212731482,5,16,0,14,95,0,2,99 +smcroute,-0.5495305171,0.137923259,-0.8122481411,https://salsa.debian.org/debian/smcroute, https://github.com/troglobit/smcroute.git,5055.7766087963,11,24,0,26,82,0,0,90 +SmokePing,0.1909583252,0.4951169655,-0.0114998503,https://salsa.debian.org/debian/smokeping, https://github.com/oetiker/SmokePing.git,5773.8930902778,41,36,0,63,259,0,13,284 +snap,-0.2880010482,1.7199246286,-0.9244808984,https://salsa.debian.org/med-team/snap-aligner, https://github.com/amplab/snap.git,3911.3341898148,1,64,0,10,89,0,0,89 +snimpy,-1.1710720581,-0.3633696382,-1.3515477674,https://salsa.debian.org/debian/snimpy, https://github.com/vincentbernat/snimpy/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +snoopy,1.1669824916,2.8753833581,0.3279585504,https://salsa.debian.org/pkg-security-team/snoopy, https://github.com/a2o/snoopy,3060.3719097222,6,34,4,21,133,0,0,138 +SoapyHackRF,0.1605098081,2.6673565763,-0.324555585,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyhackrf, https://github.com/pothosware/SoapyHackRF.git,2556.4767361111,1,9,0,7,36,0,5,41 +SoapyOsmo,0.1156871694,2.5406057768,-0.3339209238,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapyosmo, https://github.com/pothosware/SoapyOsmo.git,2779.5272569445,0,2,0,2,14,0,2,16 +SoapySDR,0.5757029294,3.2715487378,-0.2009342982,https://salsa.debian.org/debian-hamradio-team/soapysdr/soapysdr, https://github.com/pothosware/SoapySDR.git,3219.8508912037,4,27,0,26,135,0,20,166 +solarpowerlog,-1.7795970498,0.0950109385,-2.3705182782,https://github.com/coldtobi/solarpowerlog/tree/debian,https://github.com/coldtobi/solarpowerlog,5143.7188310185,1,8,0,1,1,0,1,3 +solvespace,0.3400078311,2.4750974835,-0.3014099682,https://salsa.debian.org/science-team/solvespace, https://github.com/solvespace/solvespace/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sombok,0.3006788873,1.8374945588,-0.0607142369,https://salsa.debian.org/kolter/sombok, https://github.com/hatukanezumi/sombok,1612.4445949074,0,1,0,1,4,0,0,4 +sonata,0.2905505595,0.9576245442,-0.0885666061,https://salsa.debian.org/mpd-team/sonata, https://github.com/multani/sonata,4950.7015162037,15,21,0,23,50,0,0,60 +sonic,0.3436339172,1.4474196373,0.0197565432,https://salsa.debian.org/a11y-team/sonic, https://github.com/waywardgeek/sonic,4727.1402199074,3,21,0,12,42,0,0,42 +sope,-0.250285844,0.9987661956,-0.7280518867,https://salsa.debian.org/debian/sope, https://github.com/inverse-inc/sope.git,4884.8710648148,9,32,0,24,32,0,0,35 +soundkonverter,1.0908472726,2.4748241992,0.3743578972,https://salsa.debian.org/qt-kde-team/extras/soundkonverter, https://github.com/dfaust/soundkonverter.git,4518.0852893519,5,14,0,15,97,0,5,103 +spectrwm,0.8740320474,3.3995660037,-0.1106287738,https://salsa.debian.org/debian/spectrwm, https://github.com/conformal/spectrwm,5428.7537962963,35,24,0,38,333,0,14,353 +sphinxcontrib-bibtex,0.111160598,2.1131827213,-0.4197298069,https://salsa.debian.org/science-team/sphinxcontrib-bibtex, https://github.com/mcmtroffaes/sphinxcontrib-bibtex.git,4544.6493055556,11,9,0,16,150,0,0,150 +restbuilder,-1.1764165162,1.2846690356,-1.6755940115,https://salsa.debian.org/python-team/packages/sphinxcontrib-restbuilder, https://github.com/sphinx-contrib/restbuilder.git,2987.8306828704,1,10,0,8,23,0,0,25 +spelling,-0.7874116783,1.0287481645,-1.4199296239,https://salsa.debian.org/python-team/packages/sphinxcontrib-spelling, https://github.com/sphinx-contrib/spelling,5270.8333333333,12,76,0,67,83,0,0,120 +sphinxcontrib-websupport,-1.489015386,0.092912366,-1.8959476069,https://salsa.debian.org/python-team/packages/sphinxcontrib-websupport, https://github.com/sphinx-doc/sphinxcontrib-websupport,4818.6938425926,8,17,0,18,21,0,0,29 +sphinxtesters,-1.0316070726,1.4478444724,-1.604600739,https://salsa.debian.org/python-team/packages/sphinxtesters, https://github.com/matthew-brett/sphinxtesters.git,2155.7952314815,0,3,0,2,5,0,0,5 +spin-debian,-0.5307239904,2.5263569152,-1.4016281412,https://github.com/thomaslee/spin-debian,https://github.com/thomaslee/spin-debian,1934.3454282407,2,4,0,2,3,0,0,3 +sqitch,-1.0987496818,-0.3717057014,-1.2899258645,https://salsa.debian.org/perl-team/modules/packages/sqitch, https://github.com/sqitchers/sqitch/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +sqldeveloper-package,0.3178462622,2.5512521122,-0.5498064554,https://github.com/lazarusllong/sqldeveloper-package.git,https://github.com/lazarusllong/sqldeveloper-package.git,2130.3049189815,0,3,0,1,6,0,0,6 +sqlgrey-debian,-0.447394697,1.287594037,-1.0928861268,https://github.com/bobek/sqlgrey-debian,https://github.com/bobek/sqlgrey-debian,4172.3835300926,1,3,0,2,1,0,0,2 +sqlmap,-0.0436656036,1.2298763794,-0.4076774194,https://salsa.debian.org/pkg-security-team/sqlmap, https://github.com/sqlmapproject/sqlmap.git,5537.8440625,75,67,0,118,120,0,6,236 +ssh-audit,0.2128051096,2.7100037355,-0.3787946632,https://salsa.debian.org/debian/ssh-audit, https://github.com/jtesta/ssh-audit.git,2897.0719328704,19,7,0,23,122,0,13,141 +sshuttle,0.4686212873,1.5902040128,-0.0562158764,https://salsa.debian.org/debian/sshuttle, https://github.com/sshuttle/sshuttle.git,4975.0844675926,104,46,0,119,319,0,1,380 +sslsplit,0.0482855639,2.1228996274,-0.6371278291,https://salsa.debian.org/debian/sslsplit, https://github.com/droe/sslsplit,4093.9351851852,9,20,2,17,164,0,0,170 +subliminal,0.7190070506,3.1421902787,-0.2079240806,https://salsa.debian.org/python-team/packages/subliminal, https://github.com/Diaoul/subliminal.git,3790.6726273148,11,36,0,30,562,0,0,566 +suds,-0.2061376952,0.1335002243,-0.2803381261,https://salsa.debian.org/python-team/packages/suds, https://github.com/suds-community/suds.git,3431.6421990741,14,23,0,26,80,0,0,87 +sundials,0.1304834937,1.329515137,-0.4214324267,https://salsa.debian.org/science-team/sundials, https://github.com/LLNL/sundials.git,5750.416412037,17,59,0,19,126,0,1,131 +sup,0.7289408703,1.645644064,0.2014294659,https://salsa.debian.org/ruby-team/sup-mail, https://github.com/sup-heliotrope/sup/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +svgpp,-1.8854559409,-0.5385173138,-2.2188275477,https://salsa.debian.org/debian/svgpp, https://github.com/svgpp/svgpp.git,3480.6248726852,6,8,0,8,55,0,1,56 +svgtune,0.1366019906,2.760378779,-0.708785107,http://github.com/yarikoptic/svgtune,http://github.com/yarikoptic/svgtune,4268.4841550926,0,2,0,0,0,0,0,0 +svgwrite,0.1630015143,2.8978314663,-0.6431657526,https://salsa.debian.org/python-team/packages/svgwrite, https://github.com/mozman/svgwrite.git,2562.4058912037,4,22,0,19,110,0,0,115 +svn2git,0.0735704043,2.214779927,-0.6989156967,https://salsa.debian.org/debian/svn-all-fast-export, https://github.com/svn-all-fast-export/svn2git.git,5311.2481365741,28,29,0,32,96,0,0,107 +svtplay-dl,-0.259583484,1.4909319758,-0.7330050577,https://salsa.debian.org/olof/svtplay-dl, https://github.com/spaam/svtplay-dl,4669.1490162037,48,26,3,52,53,0,0,92 +svxlink,-0.3635018341,1.3160115906,-0.862809513,https://salsa.debian.org/debian-hamradio-team/svxlink, https://github.com/sm0svx/svxlink/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +swaks,-0.0249524642,0.3218579009,-0.1486439733,https://salsa.debian.org/debian/swaks, https://github.com/jetmore/swaks,5448.0600694445,0,9,5,5,49,0,0,49 +swami,0.1476526288,1.5183148814,-0.4624982263,https://salsa.debian.org/multimedia-team/swami, https://github.com/swami/swami,4547.4787962963,6,10,0,8,16,0,0,19 +swauth,-2.4254901848,-0.8570793139,-2.7795442667,https://salsa.debian.org/openstack-team/services/swauth, https://github.com/openstack/swauth.git,3045.1673958333,5,41,0,20,0,0,0,20 +swayidle,-0.101420118,2.2036420089,-0.6198513899,https://salsa.debian.org/swaywm-team/swayidle, https://github.com/swaywm/swayidle,1867.500775463,24,22,0,36,149,0,0,156 +swift,-0.7448605494,-0.5081147887,-0.8497485173,https://salsa.debian.org/openstack-team/services/swift, https://github.com/openstack/swift.git,4902.7891898148,50,447,0,293,35,0,0,321 +synaptic,4.0786320856,4.6212205168,3.6414737103,https://github.com/mvo5/synaptic,https://github.com/mvo5/synaptic,5665.1249768519,20,60,0,45,96,0,2,108 +tappy,-0.7057840569,2.2385171659,-1.5015511284,https://salsa.debian.org/python-team/packages/tap.py, https://github.com/python-tap/tappy,3537.627025463,10,7,0,13,34,0,0,34 +tcpflow,0.1993321539,0.7688453693,-0.0915379508,https://salsa.debian.org/debian/tcpflow, https://github.com/simsong/tcpflow.git,4133.2346875,26,36,0,41,169,0,0,171 +tcpslice,0.3358455905,2.6360959654,-0.570915695,https://salsa.debian.org/debian/tcpslice, https://github.com/the-tcpdump-group/tcpslice,1218.7178356482,4,7,0,9,17,0,0,18 +tdc,-0.5860347644,1.7220497679,-1.1918576951,https://github.com/MTecknology/tdc,https://github.com/MTecknology/tdc,2078.2080208333,1,4,0,1,3,0,0,3 +tdiary-contrib,-1.4993548568,-0.3330069572,-2.0474169755,https://salsa.debian.org/ruby-team/tdiary-contrib, https://github.com/tdiary/tdiary-contrib,5617.5064699074,4,81,0,39,47,0,0,49 +tdiary-style-gfm,-3.85195761,-1.6209873018,-4.3352117054,https://salsa.debian.org/ruby-team/tdiary-style-gfm, https://github.com/tdiary/tdiary-style-gfm,3042.2103356482,2,13,0,10,14,0,0,14 +tea-qt,-0.2810310835,0.1682947168,-0.470037759,https://salsa.debian.org/debian/tea, https://github.com/psemiletov/tea-qt.git,2860.1480092593,4,9,0,7,18,0,1,21 +teckit,2.1261637138,6.076788803,0.7450555927,https://github.com/debian-tex/teckit,https://github.com/debian-tex/teckit,2563.6115277778,1,6,0,2,1,0,0,3 +tegaki,1.3618120507,5.4067459557,0.1410792866,https://salsa.debian.org/debian/tegaki-zinnia-japanese, https://github.com/tegaki/tegaki.git,5118.3927777778,1,17,0,7,18,0,0,21 +terminado,0.1170410576,1.292034871,-0.1639482973,https://salsa.debian.org/python-team/packages/terminado, https://github.com/jupyter/terminado,3771.3957407407,25,31,0,38,96,0,0,101 +termshark,-0.7902341917,1.4608630566,-1.2282898458,https://salsa.debian.org/go-team/packages/termshark, https://github.com/gcla/termshark.git,1476.2094328704,6,14,0,14,67,0,0,72 +tifffile,-0.4950191398,1.0954022518,-0.9432954038,https://salsa.debian.org/python-team/packages/tifffile, https://github.com/cgohlke/tifffile.git,1876.5951851852,0,2,0,1,107,0,0,107 +tigervnc,0.3860499518,0.9771386342,0.0684855341,https://salsa.debian.org/debian-remote-team/tigervnc, https://github.com/TigerVNC/tigervnc.git,5713.2161226852,57,92,0,111,563,0,20,660 +tikzit,-0.3160832668,1.7178404043,-0.77589652,https://salsa.debian.org/debian/tikzit, https://github.com/tikzit/tikzit.git,4273.8409027778,1,14,0,8,114,0,0,115 +tiledarray,-1.7374267908,0.1767686338,-2.351826242,https://salsa.debian.org/debichem-team/tiledarray, https://github.com/ValeevGroup/tiledarray.git,5618.1119675926,7,39,0,21,38,0,5,43 +tktable,0.3811226337,2.9724908262,-0.2247277525,https://salsa.debian.org/tcltk-team/tk-table, https://github.com/wjoye/tktable,2301.1677546296,2,6,0,3,5,0,0,5 +python-tldp,-2.9387752686,-1.0847198188,-3.3226946918,https://github.com/tLDP/python-tldp,https://github.com/tLDP/python-tldp,2447.0141319445,0,4,0,2,4,0,0,4 +tldr.py,-0.8494191178,1.5859020327,-1.3735854961,https://salsa.debian.org/python-team/packages/tldr-py, https://github.com/lord63/tldr.py,1740.1593055556,4,6,0,6,33,0,0,33 +tlf,-0.8747316419,-0.5145883819,-0.9886468624,https://salsa.debian.org/debian-hamradio-team/tlf, https://github.com/Tlf/tlf.git,5111.2798263889,15,21,0,19,45,0,2,47 +tootle,1.2711208148,4.7692261317,-0.0231156554,https://salsa.debian.org/debian/tootle, https://github.com/bleakgrey/tootle.git,1706.1450925926,21,13,0,23,214,0,0,214 +torbrowser-launcher,0.2254493944,0.4690081374,0.0615930109,https://salsa.debian.org/pkg-privacy-team/torbrowser-launcher, https://github.com/micahflee/torbrowser-launcher,3941.4624421296,20,66,6,66,20,0,1,80 +toro,-2.2006489719,0.2918073361,-2.7668191631,https://salsa.debian.org/debian/toro, https://github.com/ajdavis/toro/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +totalopenstation,-0.3889221766,1.015672648,-0.7332210243,https://salsa.debian.org/debian-gis-team/totalopenstation, https://github.com/totalopenstation/totalopenstation.git,3856.5791319445,6,8,0,10,14,0,0,20 +traitlets,0.2529500243,1.8629238208,-0.0962338622,https://salsa.debian.org/python-team/packages/traitlets, https://github.com/ipython/traitlets.git,5659.0350347222,36,89,0,97,252,0,0,265 +twolame,0.8417112782,2.6067569755,0.181912311,https://salsa.debian.org/multimedia-team/twolame, https://github.com/njh/twolame,5003.7664467593,10,10,2,13,33,0,0,33 +txt2html,0.7774259234,2.1221283602,0.106308761,https://salsa.debian.org/debian/txt2html, https://github.com/resurrecting-open-source-projects/txt2html,5316.6490856482,1,4,0,2,4,0,0,4 +txt2man,0.4090645621,1.519569464,-0.1442456476,https://salsa.debian.org/debian/txt2man, https://github.com/mvertes/txt2man,2424.6791435185,2,9,0,9,19,0,0,19 +txt2tags,0.0507302842,1.0615675266,-0.3853719858,https://salsa.debian.org/python-team/packages/txt2tags, https://github.com/txt2tags/txt2tags.git,5549.6046296296,9,22,0,3,36,0,1,37 +txWS,-1.4288081047,1.2079142338,-2.0336181053,https://salsa.debian.org/python-team/packages/txws, https://github.com/MostAwesomeDude/txWS,4288.2085763889,2,10,0,9,37,0,0,37 +txZMQ,-0.6021876626,0.9002822086,-1.0188293115,https://salsa.debian.org/python-team/packages/txzmq, https://github.com/smira/txZMQ,3989.2474074074,3,25,0,17,61,0,0,62 +typogrify,-0.5841407904,1.9099456866,-1.1786502144,https://salsa.debian.org/python-team/packages/typogrify, https://github.com/mintchaos/typogrify,4964.5992708333,2,13,0,12,50,0,0,50 +u-msgpack-python,0.71036009,3.6137824666,-0.1082167429,https://salsa.debian.org/python-team/packages/u-msgpack-python, https://github.com/vsergeev/u-msgpack-python,3518.0095949074,11,3,1,10,40,0,0,40 +uap-core,-1.4950577768,0.2195779264,-1.9007872982,https://salsa.debian.org/debian/uap-core, https://github.com/ua-parser/uap-core.git,3378.7186458333,35,224,0,172,383,0,0,428 +udisks,1.637930268,2.6755087394,1.0040393895,https://salsa.debian.org/utopia-team/udisks2, https://github.com/storaged-project/udisks,5742.1701388889,64,76,1,109,96,0,1,178 +ufo2otf-debian,-1.1799643582,1.8587549116,-1.9214944844,https://github.com/Rudloff/ufo2otf-debian,https://github.com/Rudloff/ufo2otf-debian,893.8441666667,1,3,0,3,1,0,0,3 +UglifyJS2,-0.4631278916,1.3138425047,-0.9110194583,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333,82,71,0,115,88,0,0,192 +UglifyJS2,1.1390181603,3.3421341091,0.221625202,https://salsa.debian.org/js-team/uglifyjs, https://github.com/mishoo/UglifyJS2,3886.0955208333,82,71,0,115,88,0,0,192 +ukui-sidebar,-3.8890227903,-1.5419346693,-4.3399549698,https://github.com/ukui/ukui-sidebar,https://github.com/ukui/ukui-sidebar,770.8421412037,16,52,0,28,0,0,0,28 +unshield,1.079201816,2.9040511207,0.2466958012,https://salsa.debian.org/games-team/unshield, https://github.com/twogood/unshield.git,5774.0918055556,2,32,0,28,33,0,0,49 +Unworkable,-0.495607915,1.1078529483,-1.0387863531,https://salsa.debian.org/debian/unworkable, https://github.com/niallo/Unworkable.git,3168.162650463,2,5,0,2,2,0,0,3 +usbauth-all,-0.84864584,2.3248338051,-1.5774396132,https://salsa.debian.org/debian/usbauth, https://github.com/kochstefan/usbauth-all.git,2917.2837384259,3,5,0,2,7,0,0,7 +usbauth-all,-1.3618380248,0.1189121883,-1.684268531,https://salsa.debian.org/debian/usbauth-notifier, https://github.com/kochstefan/usbauth-all.git,2917.2837384259,3,5,0,2,7,0,0,7 +usbguard,-0.21450453,0.5691395227,-0.5636553493,https://salsa.debian.org/birger/usbguard, https://github.com/dkopecek/usbguard,3141.3933796296,33,38,1,43,150,0,1,161 +usbmuxd,1.7018106669,3.399620343,0.8385492974,https://salsa.debian.org/imobiledevice-team/usbmuxd, https://github.com/libimobiledevice/usbmuxd,5280.2443287037,27,16,0,24,138,0,1,149 +usbview,0.2830288966,1.2165170826,-0.0945146744,https://salsa.debian.org/debian/usbview, https://github.com/gregkh/usbview.git,5596.9732407408,7,11,0,12,12,0,0,21 +uvloop,-0.4097803455,1.6193553491,-1.0751849943,https://salsa.debian.org/python-team/packages/uvloop, https://github.com/MagicStack/uvloop,2912.1617939815,58,10,0,57,542,0,1,543 +v4l2loopback,-0.1197314674,0.4069152495,-0.2587985427,https://salsa.debian.org/debian/v4l2loopback, https://github.com/umlaeute/v4l2loopback.git,5406.2159953704,26,63,0,57,94,0,35,176 +vagrant-libvirt,-0.1221442454,0.3185253091,-0.2416538921,https://salsa.debian.org/ruby-team/vagrant-libvirt, https://github.com/vagrant-libvirt/vagrant-libvirt,3827.3451388889,87,210,0,209,98,0,3,280 +vagrant-lxc,0.8034556285,4.6021026989,-0.412211374,https://salsa.debian.org/ruby-team/vagrant-lxc, https://github.com/fgrehm/vagrant-lxc,3559.775474537,9,55,2,46,129,0,31,186 +vagrant-mutate,-0.4801401485,1.7149444538,-0.9074989115,https://salsa.debian.org/ruby-team/vagrant-mutate, https://github.com/sciurus/vagrant-mutate,1407.9479166667,3,15,4,15,61,0,1,62 +vagrant-sshfs,-0.3177714786,2.0839099019,-0.8418425788,https://salsa.debian.org/ruby-team/vagrant-sshfs, https://github.com/dustymabe/vagrant-sshfs,2305.1928472222,2,14,0,15,132,0,0,132 +vcsh,1.141131609,4.2673996711,0.0261319499,https://github.com/RichiH/vcsh,https://github.com/RichiH/vcsh,4529.0101851852,11,57,0,53,153,63,2,223 +VOoM,-0.4785805602,0.6126802722,-0.659254773,https://salsa.debian.org/yyabuki/vim-voom, https://github.com/vim-voom/VOoM.git,1193.9262731482,0,1,0,1,20,0,0,20 +virtualjaguar-debian,-0.3323824959,1.6186130413,-0.7674058951,https://github.com/glaubitz/virtualjaguar-debian,https://github.com/glaubitz/virtualjaguar-debian,1293.0757291667,2,1,0,1,1,0,0,2 +vmtouch,0.0085288392,3.0675234726,-0.8067347383,https://salsa.debian.org/debian/vmtouch, https://github.com/hoytech/vmtouch,4266.5434837963,8,25,0,21,85,0,0,86 +voctomix,-0.3727468412,1.1810950571,-0.6494603735,https://salsa.debian.org/debian/voctomix, https://github.com/voc/voctomix.git,3329.1224189815,7,54,0,35,80,0,5,86 +voctomix-outcasts,-1.6893130475,-1.2420509413,-1.7699634447,https://salsa.debian.org/debian/voctomix-outcasts, https://github.com/CarlFK/voctomix-outcasts.git,2648.5362847222,0,9,0,6,7,0,0,7 +vokoscreenNG,0.2104121096,1.2955691942,-0.1531712498,https://salsa.debian.org/debian/vokoscreen-ng, https://github.com/vkohaupt/vokoscreenNG/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +volk,0.3490308455,1.9477412745,-0.157883478,https://salsa.debian.org/bottoms/pkg-volk, https://github.com/gnuradio/volk,4752.915,39,93,0,74,106,0,0,129 +voltron,-1.8139477845,1.3185040904,-2.8023383764,https://salsa.debian.org/python-team/packages/voltron, https://github.com/snare/voltron.git,2775.5086458333,5,31,0,19,212,0,1,213 +voluptuous,-0.403966828,1.2358837228,-0.7514608215,https://salsa.debian.org/python-team/packages/voluptuous, https://github.com/alecthomas/voluptuous,4900.0540740741,38,69,0,73,81,0,0,132 +voms,-0.756674276,-0.2090198319,-0.9203293452,https://salsa.debian.org/ellert/voms, https://github.com/italiangrid/voms,3745.5262731482,4,20,0,8,29,0,5,35 +waitress,-0.001435195,0.7796936159,-0.2577457307,https://salsa.debian.org/python-team/packages/waitress, https://github.com/Pylons/waitress.git,4372.6596990741,10,50,0,48,135,0,0,153 +wal2json,-1.8275745539,0.5424600488,-2.3404171148,https://salsa.debian.org/postgresql/wal2json, https://github.com/eulerto/wal2json.git,3393.2528703704,6,15,0,13,173,0,0,177 +wand,-0.67759885,-0.1056309981,-0.8962104321,https://salsa.debian.org/debian/wand, https://github.com/emcconville/wand,4461.4997222222,24,94,1,85,430,0,0,439 +WavPack,0.5006437508,1.2816911597,0.1442013441,https://salsa.debian.org/multimedia-team/wavpack, https://github.com/dbry/WavPack,5719.9072569445,11,19,0,26,86,0,0,87 +libwbxml,0.5716576747,2.0439677491,-0.0953236447,https://salsa.debian.org/debian/wbxml2, https://github.com/libwbxml/libwbxml.git,5170.821412037,0,19,0,15,25,0,0,28 +wcwidth,0.3330909557,1.8989641963,-0.0738762364,https://salsa.debian.org/python-team/packages/wcwidth, https://github.com/jquast/wcwidth,3540.9241550926,5,18,0,16,80,0,0,81 +websocketpp,-0.3732259601,1.2705562016,-0.7134226458,https://salsa.debian.org/debian/websocketpp, https://github.com/zaphoyd/websocketpp.git,3911.9273263889,7,63,0,40,237,0,21,277 +websploit,-0.4221028192,2.1023366852,-1.0726176237,https://salsa.debian.org/pkg-security-team/websploit, https://github.com/websploit/websploit,0.0014814815,1,1,0,1,3,0,0,4 +weevely3,-0.2507372174,2.1708290167,-0.8636427805,https://salsa.debian.org/pkg-security-team/weevely, https://github.com/epinna/weevely3.git,3185.5150578704,7,21,0,18,24,0,3,39 +welle.io,-1.1503735792,0.8698707092,-1.5560375998,https://salsa.debian.org/debian-hamradio-team/welle.io, https://github.com/AlbrechtL/welle.io,2902.9566203704,11,44,0,35,243,0,3,249 +weresync,0.8686224385,5.3149179418,-0.6110888212,https://salsa.debian.org/python-team/packages/weresync, https://github.com/DonyorM/weresync.git,2224.0163194445,5,4,0,4,47,0,0,47 +weupnp,-1.9200689609,0.314231077,-2.3479232511,https://salsa.debian.org/debian/weupnp, https://github.com/bitletorg/weupnp.git,896.40375,1,9,0,8,23,0,2,27 +wfmath,-0.3893875883,0.837955788,-0.9792345009,https://salsa.debian.org/games-team/wfmath, https://github.com/worldforge/wfmath,5506.8696990741,0,8,0,7,8,0,0,9 +wfuzz,0.3494531903,3.0367255196,-0.346839296,https://salsa.debian.org/pkg-security-team/wfuzz, https://github.com/xmendez/wfuzz.git,3000.7348148148,13,27,0,24,91,0,5,111 +whatthepatch,-1.2344880678,1.15651314,-1.8143537794,https://salsa.debian.org/python-team/packages/whatthepatch, https://github.com/cscorley/whatthepatch,3792.0029513889,6,11,0,11,23,0,0,23 +when,-0.2471365546,1.4766184372,-0.8165939727,https://salsa.debian.org/carnil/when, https://github.com/bcrowell/when/issues/new,2746.3319791667,2,17,0,0,0,0,0,0 +whichcraft,-0.303651311,1.9645474175,-0.7638381926,https://salsa.debian.org/python-team/packages/whichcraft, https://github.com/cookiecutter/whichcraft,2896.9858101852,2,14,0,8,22,0,0,22 +wanderlust,-0.3325500668,0.46879212,-0.6623736703,https://salsa.debian.org/debian/wl, https://github.com/wanderlust/wanderlust,5747.0710416667,6,25,0,16,85,0,0,85 +wanderlust,-0.9633885518,-0.6844818162,-1.0856880817,https://salsa.debian.org/debian/wl-beta, https://github.com/wanderlust/wanderlust,5747.0710416667,6,25,0,16,85,0,0,85 +WPEBackend-fdo,0.5730095986,3.296980661,-0.0681747088,https://salsa.debian.org/webkit-team/wpebackend-fdo, https://github.com/Igalia/WPEBackend-fdo,2058.3566319445,11,16,1,15,33,0,0,35 +Xastir,0.1089482482,0.8635088142,-0.3202862478,https://salsa.debian.org/debian-hamradio-team/xastir, https://github.com/Xastir/Xastir.git,5658.7705902778,2,27,0,23,47,0,1,57 +xcape,0.1031866498,2.6635244357,-0.4881717246,https://salsa.debian.org/debian/xcape, https://github.com/alols/xcape,2160.4542361111,3,26,0,19,215,0,0,216 +xcffib,0.3422766078,1.6439736239,-0.2089170835,https://salsa.debian.org/python-team/packages/xcffib, https://github.com/tych0/xcffib.git,3466.6135069445,10,9,0,14,67,0,0,67 +xCHM,0.2106957608,0.7959718479,-0.0859691061,https://salsa.debian.org/debian/xchm, https://github.com/rzvncj/xCHM.git,5664.2862037037,3,5,0,6,25,0,0,25 +xcscope.el,0.2222567121,2.7358133073,-0.5096652742,https://salsa.debian.org/debian/xcscope-el, https://github.com/dkogan/xcscope.el,3521.9445949074,2,6,0,6,30,0,0,31 +xdffileio,-0.3370360933,3.1399742139,-1.5172901103,https://salsa.debian.org/med-team/xdffileio, https://github.com/mmlabs-mindmaze/xdffileio.git,3980.6902777778,1,9,0,3,4,0,0,6 +xdms-debian,-0.3245085497,1.1111188277,-0.7327199722,https://github.com/glaubitz/xdms-debian,https://github.com/glaubitz/xdms-debian,2621.1444212963,2,1,0,3,2,0,0,5 +xdotool,1.2968912917,2.6433354619,0.5854640504,https://salsa.debian.org/debian/xdotool, https://github.com/jordansissel/xdotool.git,5532.0414351852,34,28,0,50,581,0,0,582 +xen-tools,0.1849226805,0.4044499915,0.02937965,https://github.com/xen-tools/xen-tools,https://github.com/xen-tools/xen-tools,5773.4961921296,25,18,2,29,33,0,0,52 +xmldiff,0.559598996,1.5801414897,0.007932953,https://salsa.debian.org/debian/xmldiff, https://github.com/Shoobx/xmldiff.git,5659.7240162037,11,15,0,19,92,0,0,95 +xmltv,-0.0141973655,0.1968271173,-0.1465991903,https://salsa.debian.org/nickm/xmltv, https://github.com/XMLTV/xmltv.git,5729.3252314815,14,54,0,44,137,0,0,159 +xmoto,-0.0128577775,0.350476721,-0.2212793709,https://salsa.debian.org/games-team/xmoto, https://github.com/xmoto/xmoto,5752.6098148148,7,30,1,14,32,0,1,34 +yadm,0.155795293,2.4789916734,-0.5346609613,https://salsa.debian.org/debian/yadm, https://github.com/TheLocehiliosan/yadm,1719.5473611111,26,32,0,34,348,0,0,348 +yanc,-1.5009992611,1.4616219544,-2.2668515294,https://salsa.debian.org/python-team/packages/yanc, https://github.com/0compute/yanc,1361.9793865741,0,3,0,2,13,0,0,13 +yatm,-0.9969942564,0.469884003,-1.3959449427,https://salsa.debian.org/debian/yatm, https://github.com/mlang/yatm.git,2272.488912037,0,3,0,1,4,0,0,5 +yder,-0.5735586705,1.4948558419,-1.0176765614,https://salsa.debian.org/debian-iot-team/oauth2/yder.git, https://github.com/babelouest/yder,1282.873275463,2,11,0,9,16,0,0,16 +ydpdict,-1.6620122332,-0.9650225761,-1.8878460738,https://github.com/porridge/ydpdict,https://github.com/porridge/ydpdict,5724.9537731482,0,4,0,3,0,0,0,3